aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.am28
-rw-r--r--Makefile.in133
-rw-r--r--src/google_breakpad/processor/basic_source_line_resolver.h6
-rw-r--r--src/google_breakpad/processor/fast_source_line_resolver.h107
-rw-r--r--src/google_breakpad/processor/source_line_resolver_base.h17
-rw-r--r--src/processor/address_map.h1
-rw-r--r--src/processor/basic_source_line_resolver_types.h2
-rw-r--r--src/processor/contained_range_map.h1
-rw-r--r--src/processor/fast_source_line_resolver.cc278
-rw-r--r--src/processor/fast_source_line_resolver_types.h179
-rw-r--r--src/processor/fast_source_line_resolver_unittest.cc477
-rw-r--r--src/processor/module_comparer.cc302
-rw-r--r--src/processor/module_comparer.h98
-rw-r--r--src/processor/module_factory.h12
-rw-r--r--src/processor/range_map.h1
-rw-r--r--src/processor/static_contained_range_map-inl.h1
-rw-r--r--src/processor/static_map_unittest.cc4
-rw-r--r--src/processor/testdata/module0.out22151
18 files changed, 23790 insertions, 8 deletions
diff --git a/Makefile.am b/Makefile.am
index f444a706..4eefc88e 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -85,6 +85,7 @@ src_libbreakpad_a_SOURCES = \
src/google_breakpad/processor/code_module.h \
src/google_breakpad/processor/code_modules.h \
src/google_breakpad/processor/exploitability.h \
+ src/google_breakpad/processor/fast_source_line_resolver.h \
src/google_breakpad/processor/memory_region.h \
src/google_breakpad/processor/minidump.h \
src/google_breakpad/processor/minidump_processor.h \
@@ -116,6 +117,8 @@ src_libbreakpad_a_SOURCES = \
src/processor/exploitability.cc \
src/processor/exploitability_win.h \
src/processor/exploitability_win.cc \
+ src/processor/fast_source_line_resolver_types.h \
+ src/processor/fast_source_line_resolver.cc \
src/processor/linked_ptr.h \
src/processor/logging.h \
src/processor/logging.cc \
@@ -123,6 +126,9 @@ src_libbreakpad_a_SOURCES = \
src/processor/map_serializers.h \
src/processor/minidump.cc \
src/processor/minidump_processor.cc \
+ src/processor/module_comparer.cc \
+ src/processor/module_comparer.h \
+ src/processor/module_factory.h \
src/processor/network_interface.h \
src/processor/network_source_line_resolver.cc \
src/processor/network_source_line_server.cc \
@@ -221,6 +227,7 @@ check_PROGRAMS += \
src/processor/contained_range_map_unittest \
src/processor/disassembler_x86_unittest \
src/processor/exploitability_unittest \
+ src/processor/fast_source_line_resolver_unittest \
src/processor/map_serializers_unittest \
src/processor/minidump_processor_unittest \
src/processor/minidump_unittest \
@@ -414,6 +421,27 @@ src_processor_disassembler_x86_unittest_LDADD = \
src/processor/disassembler_x86.o \
src/third_party/libdisasm/libdisasm.a
+src_processor_fast_source_line_resolver_unittest_SOURCES = \
+ src/processor/fast_source_line_resolver_unittest.cc \
+ src/testing/gtest/src/gtest-all.cc \
+ src/testing/src/gmock-all.cc
+src_processor_fast_source_line_resolver_unittest_CPPFLAGS = \
+ -I$(top_srcdir)/src \
+ -I$(top_srcdir)/src/testing/include \
+ -I$(top_srcdir)/src/testing/gtest/include \
+ -I$(top_srcdir)/src/testing/gtest \
+ -I$(top_srcdir)/src/testing
+src_processor_fast_source_line_resolver_unittest_LDADD = \
+ src/processor/fast_source_line_resolver.o \
+ src/processor/basic_source_line_resolver.o \
+ src/processor/cfi_frame_info.o \
+ src/processor/module_comparer.o \
+ src/processor/module_serializer.o \
+ src/processor/pathname_stripper.o \
+ src/processor/logging.o \
+ src/processor/source_line_resolver_base.o \
+ src/processor/tokenize.o
+
src_processor_map_serializers_unittest_SOURCES = \
src/processor/map_serializers_unittest.cc \
src/testing/gtest/src/gtest-all.cc \
diff --git a/Makefile.in b/Makefile.in
index 275ba44e..72692687 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -88,6 +88,7 @@ check_PROGRAMS = $(am__EXEEXT_3) $(am__EXEEXT_4) $(am__EXEEXT_5)
@DISABLE_PROCESSOR_FALSE@ src/processor/contained_range_map_unittest \
@DISABLE_PROCESSOR_FALSE@ src/processor/disassembler_x86_unittest \
@DISABLE_PROCESSOR_FALSE@ src/processor/exploitability_unittest \
+@DISABLE_PROCESSOR_FALSE@ src/processor/fast_source_line_resolver_unittest \
@DISABLE_PROCESSOR_FALSE@ src/processor/map_serializers_unittest \
@DISABLE_PROCESSOR_FALSE@ src/processor/minidump_processor_unittest \
@DISABLE_PROCESSOR_FALSE@ src/processor/minidump_unittest \
@@ -191,6 +192,7 @@ am__src_libbreakpad_a_SOURCES_DIST = \
src/google_breakpad/processor/code_module.h \
src/google_breakpad/processor/code_modules.h \
src/google_breakpad/processor/exploitability.h \
+ src/google_breakpad/processor/fast_source_line_resolver.h \
src/google_breakpad/processor/memory_region.h \
src/google_breakpad/processor/minidump.h \
src/google_breakpad/processor/minidump_processor.h \
@@ -218,11 +220,15 @@ am__src_libbreakpad_a_SOURCES_DIST = \
src/processor/disassembler_x86.cc \
src/processor/exploitability.cc \
src/processor/exploitability_win.h \
- src/processor/exploitability_win.cc src/processor/linked_ptr.h \
- src/processor/logging.h src/processor/logging.cc \
- src/processor/map_serializers-inl.h \
+ src/processor/exploitability_win.cc \
+ src/processor/fast_source_line_resolver_types.h \
+ src/processor/fast_source_line_resolver.cc \
+ src/processor/linked_ptr.h src/processor/logging.h \
+ src/processor/logging.cc src/processor/map_serializers-inl.h \
src/processor/map_serializers.h src/processor/minidump.cc \
src/processor/minidump_processor.cc \
+ src/processor/module_comparer.cc \
+ src/processor/module_comparer.h src/processor/module_factory.h \
src/processor/network_interface.h \
src/processor/network_source_line_resolver.cc \
src/processor/network_source_line_server.cc \
@@ -270,9 +276,11 @@ am__src_libbreakpad_a_SOURCES_DIST = \
@DISABLE_PROCESSOR_FALSE@ src/processor/disassembler_x86.$(OBJEXT) \
@DISABLE_PROCESSOR_FALSE@ src/processor/exploitability.$(OBJEXT) \
@DISABLE_PROCESSOR_FALSE@ src/processor/exploitability_win.$(OBJEXT) \
+@DISABLE_PROCESSOR_FALSE@ src/processor/fast_source_line_resolver.$(OBJEXT) \
@DISABLE_PROCESSOR_FALSE@ src/processor/logging.$(OBJEXT) \
@DISABLE_PROCESSOR_FALSE@ src/processor/minidump.$(OBJEXT) \
@DISABLE_PROCESSOR_FALSE@ src/processor/minidump_processor.$(OBJEXT) \
+@DISABLE_PROCESSOR_FALSE@ src/processor/module_comparer.$(OBJEXT) \
@DISABLE_PROCESSOR_FALSE@ src/processor/network_source_line_resolver.$(OBJEXT) \
@DISABLE_PROCESSOR_FALSE@ src/processor/network_source_line_server.$(OBJEXT) \
@DISABLE_PROCESSOR_FALSE@ src/processor/pathname_stripper.$(OBJEXT) \
@@ -346,6 +354,7 @@ src_third_party_libdisasm_libdisasm_a_OBJECTS = \
@DISABLE_PROCESSOR_FALSE@ src/processor/contained_range_map_unittest$(EXEEXT) \
@DISABLE_PROCESSOR_FALSE@ src/processor/disassembler_x86_unittest$(EXEEXT) \
@DISABLE_PROCESSOR_FALSE@ src/processor/exploitability_unittest$(EXEEXT) \
+@DISABLE_PROCESSOR_FALSE@ src/processor/fast_source_line_resolver_unittest$(EXEEXT) \
@DISABLE_PROCESSOR_FALSE@ src/processor/map_serializers_unittest$(EXEEXT) \
@DISABLE_PROCESSOR_FALSE@ src/processor/minidump_processor_unittest$(EXEEXT) \
@DISABLE_PROCESSOR_FALSE@ src/processor/minidump_unittest$(EXEEXT) \
@@ -520,6 +529,23 @@ src_processor_exploitability_unittest_OBJECTS = \
@DISABLE_PROCESSOR_FALSE@ src/processor/stackwalker_x86.o \
@DISABLE_PROCESSOR_FALSE@ src/processor/tokenize.o \
@DISABLE_PROCESSOR_FALSE@ src/third_party/libdisasm/libdisasm.a
+am__src_processor_fast_source_line_resolver_unittest_SOURCES_DIST = \
+ src/processor/fast_source_line_resolver_unittest.cc \
+ src/testing/gtest/src/gtest-all.cc \
+ src/testing/src/gmock-all.cc
+@DISABLE_PROCESSOR_FALSE@am_src_processor_fast_source_line_resolver_unittest_OBJECTS = src/processor/src_processor_fast_source_line_resolver_unittest-fast_source_line_resolver_unittest.$(OBJEXT) \
+@DISABLE_PROCESSOR_FALSE@ src/testing/gtest/src/src_processor_fast_source_line_resolver_unittest-gtest-all.$(OBJEXT) \
+@DISABLE_PROCESSOR_FALSE@ src/testing/src/src_processor_fast_source_line_resolver_unittest-gmock-all.$(OBJEXT)
+src_processor_fast_source_line_resolver_unittest_OBJECTS = $(am_src_processor_fast_source_line_resolver_unittest_OBJECTS)
+@DISABLE_PROCESSOR_FALSE@src_processor_fast_source_line_resolver_unittest_DEPENDENCIES = src/processor/fast_source_line_resolver.o \
+@DISABLE_PROCESSOR_FALSE@ src/processor/basic_source_line_resolver.o \
+@DISABLE_PROCESSOR_FALSE@ src/processor/cfi_frame_info.o \
+@DISABLE_PROCESSOR_FALSE@ src/processor/module_comparer.o \
+@DISABLE_PROCESSOR_FALSE@ src/processor/module_serializer.o \
+@DISABLE_PROCESSOR_FALSE@ src/processor/pathname_stripper.o \
+@DISABLE_PROCESSOR_FALSE@ src/processor/logging.o \
+@DISABLE_PROCESSOR_FALSE@ src/processor/source_line_resolver_base.o \
+@DISABLE_PROCESSOR_FALSE@ src/processor/tokenize.o
am__src_processor_map_serializers_unittest_SOURCES_DIST = \
src/processor/map_serializers_unittest.cc \
src/testing/gtest/src/gtest-all.cc \
@@ -889,6 +915,7 @@ SOURCES = $(src_client_linux_libbreakpad_client_a_SOURCES) \
$(src_processor_contained_range_map_unittest_SOURCES) \
$(src_processor_disassembler_x86_unittest_SOURCES) \
$(src_processor_exploitability_unittest_SOURCES) \
+ $(src_processor_fast_source_line_resolver_unittest_SOURCES) \
$(src_processor_map_serializers_unittest_SOURCES) \
$(src_processor_minidump_dump_SOURCES) \
$(src_processor_minidump_processor_unittest_SOURCES) \
@@ -924,6 +951,7 @@ DIST_SOURCES = \
$(am__src_processor_contained_range_map_unittest_SOURCES_DIST) \
$(am__src_processor_disassembler_x86_unittest_SOURCES_DIST) \
$(am__src_processor_exploitability_unittest_SOURCES_DIST) \
+ $(am__src_processor_fast_source_line_resolver_unittest_SOURCES_DIST) \
$(am__src_processor_map_serializers_unittest_SOURCES_DIST) \
$(am__src_processor_minidump_dump_SOURCES_DIST) \
$(am__src_processor_minidump_processor_unittest_SOURCES_DIST) \
@@ -1101,6 +1129,7 @@ lib_LIBRARIES = $(am__append_1) $(am__append_3)
@DISABLE_PROCESSOR_FALSE@ src/google_breakpad/processor/code_module.h \
@DISABLE_PROCESSOR_FALSE@ src/google_breakpad/processor/code_modules.h \
@DISABLE_PROCESSOR_FALSE@ src/google_breakpad/processor/exploitability.h \
+@DISABLE_PROCESSOR_FALSE@ src/google_breakpad/processor/fast_source_line_resolver.h \
@DISABLE_PROCESSOR_FALSE@ src/google_breakpad/processor/memory_region.h \
@DISABLE_PROCESSOR_FALSE@ src/google_breakpad/processor/minidump.h \
@DISABLE_PROCESSOR_FALSE@ src/google_breakpad/processor/minidump_processor.h \
@@ -1132,6 +1161,8 @@ lib_LIBRARIES = $(am__append_1) $(am__append_3)
@DISABLE_PROCESSOR_FALSE@ src/processor/exploitability.cc \
@DISABLE_PROCESSOR_FALSE@ src/processor/exploitability_win.h \
@DISABLE_PROCESSOR_FALSE@ src/processor/exploitability_win.cc \
+@DISABLE_PROCESSOR_FALSE@ src/processor/fast_source_line_resolver_types.h \
+@DISABLE_PROCESSOR_FALSE@ src/processor/fast_source_line_resolver.cc \
@DISABLE_PROCESSOR_FALSE@ src/processor/linked_ptr.h \
@DISABLE_PROCESSOR_FALSE@ src/processor/logging.h \
@DISABLE_PROCESSOR_FALSE@ src/processor/logging.cc \
@@ -1139,6 +1170,9 @@ lib_LIBRARIES = $(am__append_1) $(am__append_3)
@DISABLE_PROCESSOR_FALSE@ src/processor/map_serializers.h \
@DISABLE_PROCESSOR_FALSE@ src/processor/minidump.cc \
@DISABLE_PROCESSOR_FALSE@ src/processor/minidump_processor.cc \
+@DISABLE_PROCESSOR_FALSE@ src/processor/module_comparer.cc \
+@DISABLE_PROCESSOR_FALSE@ src/processor/module_comparer.h \
+@DISABLE_PROCESSOR_FALSE@ src/processor/module_factory.h \
@DISABLE_PROCESSOR_FALSE@ src/processor/network_interface.h \
@DISABLE_PROCESSOR_FALSE@ src/processor/network_source_line_resolver.cc \
@DISABLE_PROCESSOR_FALSE@ src/processor/network_source_line_server.cc \
@@ -1381,6 +1415,29 @@ TESTS_ENVIRONMENT =
@DISABLE_PROCESSOR_FALSE@ src/processor/disassembler_x86.o \
@DISABLE_PROCESSOR_FALSE@ src/third_party/libdisasm/libdisasm.a
+@DISABLE_PROCESSOR_FALSE@src_processor_fast_source_line_resolver_unittest_SOURCES = \
+@DISABLE_PROCESSOR_FALSE@ src/processor/fast_source_line_resolver_unittest.cc \
+@DISABLE_PROCESSOR_FALSE@ src/testing/gtest/src/gtest-all.cc \
+@DISABLE_PROCESSOR_FALSE@ src/testing/src/gmock-all.cc
+
+@DISABLE_PROCESSOR_FALSE@src_processor_fast_source_line_resolver_unittest_CPPFLAGS = \
+@DISABLE_PROCESSOR_FALSE@ -I$(top_srcdir)/src \
+@DISABLE_PROCESSOR_FALSE@ -I$(top_srcdir)/src/testing/include \
+@DISABLE_PROCESSOR_FALSE@ -I$(top_srcdir)/src/testing/gtest/include \
+@DISABLE_PROCESSOR_FALSE@ -I$(top_srcdir)/src/testing/gtest \
+@DISABLE_PROCESSOR_FALSE@ -I$(top_srcdir)/src/testing
+
+@DISABLE_PROCESSOR_FALSE@src_processor_fast_source_line_resolver_unittest_LDADD = \
+@DISABLE_PROCESSOR_FALSE@ src/processor/fast_source_line_resolver.o \
+@DISABLE_PROCESSOR_FALSE@ src/processor/basic_source_line_resolver.o \
+@DISABLE_PROCESSOR_FALSE@ src/processor/cfi_frame_info.o \
+@DISABLE_PROCESSOR_FALSE@ src/processor/module_comparer.o \
+@DISABLE_PROCESSOR_FALSE@ src/processor/module_serializer.o \
+@DISABLE_PROCESSOR_FALSE@ src/processor/pathname_stripper.o \
+@DISABLE_PROCESSOR_FALSE@ src/processor/logging.o \
+@DISABLE_PROCESSOR_FALSE@ src/processor/source_line_resolver_base.o \
+@DISABLE_PROCESSOR_FALSE@ src/processor/tokenize.o
+
@DISABLE_PROCESSOR_FALSE@src_processor_map_serializers_unittest_SOURCES = \
@DISABLE_PROCESSOR_FALSE@ src/processor/map_serializers_unittest.cc \
@DISABLE_PROCESSOR_FALSE@ src/testing/gtest/src/gtest-all.cc \
@@ -2095,6 +2152,9 @@ src/processor/exploitability.$(OBJEXT): src/processor/$(am__dirstamp) \
src/processor/exploitability_win.$(OBJEXT): \
src/processor/$(am__dirstamp) \
src/processor/$(DEPDIR)/$(am__dirstamp)
+src/processor/fast_source_line_resolver.$(OBJEXT): \
+ src/processor/$(am__dirstamp) \
+ src/processor/$(DEPDIR)/$(am__dirstamp)
src/processor/logging.$(OBJEXT): src/processor/$(am__dirstamp) \
src/processor/$(DEPDIR)/$(am__dirstamp)
src/processor/minidump.$(OBJEXT): src/processor/$(am__dirstamp) \
@@ -2102,6 +2162,9 @@ src/processor/minidump.$(OBJEXT): src/processor/$(am__dirstamp) \
src/processor/minidump_processor.$(OBJEXT): \
src/processor/$(am__dirstamp) \
src/processor/$(DEPDIR)/$(am__dirstamp)
+src/processor/module_comparer.$(OBJEXT): \
+ src/processor/$(am__dirstamp) \
+ src/processor/$(DEPDIR)/$(am__dirstamp)
src/processor/network_source_line_resolver.$(OBJEXT): \
src/processor/$(am__dirstamp) \
src/processor/$(DEPDIR)/$(am__dirstamp)
@@ -2401,6 +2464,18 @@ src/testing/src/src_processor_exploitability_unittest-gmock-all.$(OBJEXT): \
src/processor/exploitability_unittest$(EXEEXT): $(src_processor_exploitability_unittest_OBJECTS) $(src_processor_exploitability_unittest_DEPENDENCIES) src/processor/$(am__dirstamp)
@rm -f src/processor/exploitability_unittest$(EXEEXT)
$(CXXLINK) $(src_processor_exploitability_unittest_OBJECTS) $(src_processor_exploitability_unittest_LDADD) $(LIBS)
+src/processor/src_processor_fast_source_line_resolver_unittest-fast_source_line_resolver_unittest.$(OBJEXT): \
+ src/processor/$(am__dirstamp) \
+ src/processor/$(DEPDIR)/$(am__dirstamp)
+src/testing/gtest/src/src_processor_fast_source_line_resolver_unittest-gtest-all.$(OBJEXT): \
+ src/testing/gtest/src/$(am__dirstamp) \
+ src/testing/gtest/src/$(DEPDIR)/$(am__dirstamp)
+src/testing/src/src_processor_fast_source_line_resolver_unittest-gmock-all.$(OBJEXT): \
+ src/testing/src/$(am__dirstamp) \
+ src/testing/src/$(DEPDIR)/$(am__dirstamp)
+src/processor/fast_source_line_resolver_unittest$(EXEEXT): $(src_processor_fast_source_line_resolver_unittest_OBJECTS) $(src_processor_fast_source_line_resolver_unittest_DEPENDENCIES) src/processor/$(am__dirstamp)
+ @rm -f src/processor/fast_source_line_resolver_unittest$(EXEEXT)
+ $(CXXLINK) $(src_processor_fast_source_line_resolver_unittest_OBJECTS) $(src_processor_fast_source_line_resolver_unittest_LDADD) $(LIBS)
src/processor/src_processor_map_serializers_unittest-map_serializers_unittest.$(OBJEXT): \
src/processor/$(am__dirstamp) \
src/processor/$(DEPDIR)/$(am__dirstamp)
@@ -2682,11 +2757,13 @@ mostlyclean-compile:
-rm -f src/processor/disassembler_x86.$(OBJEXT)
-rm -f src/processor/exploitability.$(OBJEXT)
-rm -f src/processor/exploitability_win.$(OBJEXT)
+ -rm -f src/processor/fast_source_line_resolver.$(OBJEXT)
-rm -f src/processor/logging.$(OBJEXT)
-rm -f src/processor/minidump.$(OBJEXT)
-rm -f src/processor/minidump_dump.$(OBJEXT)
-rm -f src/processor/minidump_processor.$(OBJEXT)
-rm -f src/processor/minidump_stackwalk.$(OBJEXT)
+ -rm -f src/processor/module_comparer.$(OBJEXT)
-rm -f src/processor/network_source_line_resolver.$(OBJEXT)
-rm -f src/processor/network_source_line_server.$(OBJEXT)
-rm -f src/processor/pathname_stripper.$(OBJEXT)
@@ -2706,6 +2783,7 @@ mostlyclean-compile:
-rm -f src/processor/src_processor_cfi_frame_info_unittest-cfi_frame_info_unittest.$(OBJEXT)
-rm -f src/processor/src_processor_disassembler_x86_unittest-disassembler_x86_unittest.$(OBJEXT)
-rm -f src/processor/src_processor_exploitability_unittest-exploitability_unittest.$(OBJEXT)
+ -rm -f src/processor/src_processor_fast_source_line_resolver_unittest-fast_source_line_resolver_unittest.$(OBJEXT)
-rm -f src/processor/src_processor_map_serializers_unittest-map_serializers_unittest.$(OBJEXT)
-rm -f src/processor/src_processor_minidump_processor_unittest-minidump_processor_unittest.$(OBJEXT)
-rm -f src/processor/src_processor_minidump_unittest-minidump_unittest.$(OBJEXT)
@@ -2743,6 +2821,7 @@ mostlyclean-compile:
-rm -f src/testing/gtest/src/src_processor_disassembler_x86_unittest-gtest_main.$(OBJEXT)
-rm -f src/testing/gtest/src/src_processor_exploitability_unittest-gtest-all.$(OBJEXT)
-rm -f src/testing/gtest/src/src_processor_exploitability_unittest-gtest_main.$(OBJEXT)
+ -rm -f src/testing/gtest/src/src_processor_fast_source_line_resolver_unittest-gtest-all.$(OBJEXT)
-rm -f src/testing/gtest/src/src_processor_map_serializers_unittest-gtest-all.$(OBJEXT)
-rm -f src/testing/gtest/src/src_processor_minidump_processor_unittest-gtest-all.$(OBJEXT)
-rm -f src/testing/gtest/src/src_processor_minidump_unittest-gtest-all.$(OBJEXT)
@@ -2769,6 +2848,7 @@ mostlyclean-compile:
-rm -f src/testing/src/src_processor_cfi_frame_info_unittest-gmock-all.$(OBJEXT)
-rm -f src/testing/src/src_processor_disassembler_x86_unittest-gmock-all.$(OBJEXT)
-rm -f src/testing/src/src_processor_exploitability_unittest-gmock-all.$(OBJEXT)
+ -rm -f src/testing/src/src_processor_fast_source_line_resolver_unittest-gmock-all.$(OBJEXT)
-rm -f src/testing/src/src_processor_map_serializers_unittest-gmock-all.$(OBJEXT)
-rm -f src/testing/src/src_processor_minidump_processor_unittest-gmock-all.$(OBJEXT)
-rm -f src/testing/src/src_processor_minidump_unittest-gmock-all.$(OBJEXT)
@@ -2835,11 +2915,13 @@ distclean-compile:
@AMDEP_TRUE@@am__include@ @am__quote@src/processor/$(DEPDIR)/disassembler_x86.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/processor/$(DEPDIR)/exploitability.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/processor/$(DEPDIR)/exploitability_win.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@src/processor/$(DEPDIR)/fast_source_line_resolver.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/processor/$(DEPDIR)/logging.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/processor/$(DEPDIR)/minidump.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/processor/$(DEPDIR)/minidump_dump.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/processor/$(DEPDIR)/minidump_processor.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/processor/$(DEPDIR)/minidump_stackwalk.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@src/processor/$(DEPDIR)/module_comparer.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/processor/$(DEPDIR)/network_source_line_resolver.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/processor/$(DEPDIR)/network_source_line_server.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/processor/$(DEPDIR)/pathname_stripper.Po@am__quote@
@@ -2859,6 +2941,7 @@ distclean-compile:
@AMDEP_TRUE@@am__include@ @am__quote@src/processor/$(DEPDIR)/src_processor_cfi_frame_info_unittest-cfi_frame_info_unittest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/processor/$(DEPDIR)/src_processor_disassembler_x86_unittest-disassembler_x86_unittest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/processor/$(DEPDIR)/src_processor_exploitability_unittest-exploitability_unittest.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@src/processor/$(DEPDIR)/src_processor_fast_source_line_resolver_unittest-fast_source_line_resolver_unittest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/processor/$(DEPDIR)/src_processor_map_serializers_unittest-map_serializers_unittest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/processor/$(DEPDIR)/src_processor_minidump_processor_unittest-minidump_processor_unittest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/processor/$(DEPDIR)/src_processor_minidump_unittest-minidump_unittest.Po@am__quote@
@@ -2896,6 +2979,7 @@ distclean-compile:
@AMDEP_TRUE@@am__include@ @am__quote@src/testing/gtest/src/$(DEPDIR)/src_processor_disassembler_x86_unittest-gtest_main.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/testing/gtest/src/$(DEPDIR)/src_processor_exploitability_unittest-gtest-all.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/testing/gtest/src/$(DEPDIR)/src_processor_exploitability_unittest-gtest_main.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@src/testing/gtest/src/$(DEPDIR)/src_processor_fast_source_line_resolver_unittest-gtest-all.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/testing/gtest/src/$(DEPDIR)/src_processor_map_serializers_unittest-gtest-all.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/testing/gtest/src/$(DEPDIR)/src_processor_minidump_processor_unittest-gtest-all.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/testing/gtest/src/$(DEPDIR)/src_processor_minidump_unittest-gtest-all.Po@am__quote@
@@ -2922,6 +3006,7 @@ distclean-compile:
@AMDEP_TRUE@@am__include@ @am__quote@src/testing/src/$(DEPDIR)/src_processor_cfi_frame_info_unittest-gmock-all.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/testing/src/$(DEPDIR)/src_processor_disassembler_x86_unittest-gmock-all.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/testing/src/$(DEPDIR)/src_processor_exploitability_unittest-gmock-all.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@src/testing/src/$(DEPDIR)/src_processor_fast_source_line_resolver_unittest-gmock-all.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/testing/src/$(DEPDIR)/src_processor_map_serializers_unittest-gmock-all.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/testing/src/$(DEPDIR)/src_processor_minidump_processor_unittest-gmock-all.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/testing/src/$(DEPDIR)/src_processor_minidump_unittest-gmock-all.Po@am__quote@
@@ -3501,6 +3586,48 @@ src/testing/src/src_processor_exploitability_unittest-gmock-all.obj: src/testing
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_processor_exploitability_unittest_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/testing/src/src_processor_exploitability_unittest-gmock-all.obj `if test -f 'src/testing/src/gmock-all.cc'; then $(CYGPATH_W) 'src/testing/src/gmock-all.cc'; else $(CYGPATH_W) '$(srcdir)/src/testing/src/gmock-all.cc'; fi`
+src/processor/src_processor_fast_source_line_resolver_unittest-fast_source_line_resolver_unittest.o: src/processor/fast_source_line_resolver_unittest.cc
+@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_processor_fast_source_line_resolver_unittest_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/processor/src_processor_fast_source_line_resolver_unittest-fast_source_line_resolver_unittest.o -MD -MP -MF src/processor/$(DEPDIR)/src_processor_fast_source_line_resolver_unittest-fast_source_line_resolver_unittest.Tpo -c -o src/processor/src_processor_fast_source_line_resolver_unittest-fast_source_line_resolver_unittest.o `test -f 'src/processor/fast_source_line_resolver_unittest.cc' || echo '$(srcdir)/'`src/processor/fast_source_line_resolver_unittest.cc
+@am__fastdepCXX_TRUE@ $(am__mv) src/processor/$(DEPDIR)/src_processor_fast_source_line_resolver_unittest-fast_source_line_resolver_unittest.Tpo src/processor/$(DEPDIR)/src_processor_fast_source_line_resolver_unittest-fast_source_line_resolver_unittest.Po
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/processor/fast_source_line_resolver_unittest.cc' object='src/processor/src_processor_fast_source_line_resolver_unittest-fast_source_line_resolver_unittest.o' libtool=no @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_processor_fast_source_line_resolver_unittest_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/processor/src_processor_fast_source_line_resolver_unittest-fast_source_line_resolver_unittest.o `test -f 'src/processor/fast_source_line_resolver_unittest.cc' || echo '$(srcdir)/'`src/processor/fast_source_line_resolver_unittest.cc
+
+src/processor/src_processor_fast_source_line_resolver_unittest-fast_source_line_resolver_unittest.obj: src/processor/fast_source_line_resolver_unittest.cc
+@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_processor_fast_source_line_resolver_unittest_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/processor/src_processor_fast_source_line_resolver_unittest-fast_source_line_resolver_unittest.obj -MD -MP -MF src/processor/$(DEPDIR)/src_processor_fast_source_line_resolver_unittest-fast_source_line_resolver_unittest.Tpo -c -o src/processor/src_processor_fast_source_line_resolver_unittest-fast_source_line_resolver_unittest.obj `if test -f 'src/processor/fast_source_line_resolver_unittest.cc'; then $(CYGPATH_W) 'src/processor/fast_source_line_resolver_unittest.cc'; else $(CYGPATH_W) '$(srcdir)/src/processor/fast_source_line_resolver_unittest.cc'; fi`
+@am__fastdepCXX_TRUE@ $(am__mv) src/processor/$(DEPDIR)/src_processor_fast_source_line_resolver_unittest-fast_source_line_resolver_unittest.Tpo src/processor/$(DEPDIR)/src_processor_fast_source_line_resolver_unittest-fast_source_line_resolver_unittest.Po
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/processor/fast_source_line_resolver_unittest.cc' object='src/processor/src_processor_fast_source_line_resolver_unittest-fast_source_line_resolver_unittest.obj' libtool=no @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_processor_fast_source_line_resolver_unittest_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/processor/src_processor_fast_source_line_resolver_unittest-fast_source_line_resolver_unittest.obj `if test -f 'src/processor/fast_source_line_resolver_unittest.cc'; then $(CYGPATH_W) 'src/processor/fast_source_line_resolver_unittest.cc'; else $(CYGPATH_W) '$(srcdir)/src/processor/fast_source_line_resolver_unittest.cc'; fi`
+
+src/testing/gtest/src/src_processor_fast_source_line_resolver_unittest-gtest-all.o: src/testing/gtest/src/gtest-all.cc
+@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_processor_fast_source_line_resolver_unittest_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/testing/gtest/src/src_processor_fast_source_line_resolver_unittest-gtest-all.o -MD -MP -MF src/testing/gtest/src/$(DEPDIR)/src_processor_fast_source_line_resolver_unittest-gtest-all.Tpo -c -o src/testing/gtest/src/src_processor_fast_source_line_resolver_unittest-gtest-all.o `test -f 'src/testing/gtest/src/gtest-all.cc' || echo '$(srcdir)/'`src/testing/gtest/src/gtest-all.cc
+@am__fastdepCXX_TRUE@ $(am__mv) src/testing/gtest/src/$(DEPDIR)/src_processor_fast_source_line_resolver_unittest-gtest-all.Tpo src/testing/gtest/src/$(DEPDIR)/src_processor_fast_source_line_resolver_unittest-gtest-all.Po
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/testing/gtest/src/gtest-all.cc' object='src/testing/gtest/src/src_processor_fast_source_line_resolver_unittest-gtest-all.o' libtool=no @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_processor_fast_source_line_resolver_unittest_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/testing/gtest/src/src_processor_fast_source_line_resolver_unittest-gtest-all.o `test -f 'src/testing/gtest/src/gtest-all.cc' || echo '$(srcdir)/'`src/testing/gtest/src/gtest-all.cc
+
+src/testing/gtest/src/src_processor_fast_source_line_resolver_unittest-gtest-all.obj: src/testing/gtest/src/gtest-all.cc
+@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_processor_fast_source_line_resolver_unittest_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/testing/gtest/src/src_processor_fast_source_line_resolver_unittest-gtest-all.obj -MD -MP -MF src/testing/gtest/src/$(DEPDIR)/src_processor_fast_source_line_resolver_unittest-gtest-all.Tpo -c -o src/testing/gtest/src/src_processor_fast_source_line_resolver_unittest-gtest-all.obj `if test -f 'src/testing/gtest/src/gtest-all.cc'; then $(CYGPATH_W) 'src/testing/gtest/src/gtest-all.cc'; else $(CYGPATH_W) '$(srcdir)/src/testing/gtest/src/gtest-all.cc'; fi`
+@am__fastdepCXX_TRUE@ $(am__mv) src/testing/gtest/src/$(DEPDIR)/src_processor_fast_source_line_resolver_unittest-gtest-all.Tpo src/testing/gtest/src/$(DEPDIR)/src_processor_fast_source_line_resolver_unittest-gtest-all.Po
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/testing/gtest/src/gtest-all.cc' object='src/testing/gtest/src/src_processor_fast_source_line_resolver_unittest-gtest-all.obj' libtool=no @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_processor_fast_source_line_resolver_unittest_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/testing/gtest/src/src_processor_fast_source_line_resolver_unittest-gtest-all.obj `if test -f 'src/testing/gtest/src/gtest-all.cc'; then $(CYGPATH_W) 'src/testing/gtest/src/gtest-all.cc'; else $(CYGPATH_W) '$(srcdir)/src/testing/gtest/src/gtest-all.cc'; fi`
+
+src/testing/src/src_processor_fast_source_line_resolver_unittest-gmock-all.o: src/testing/src/gmock-all.cc
+@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_processor_fast_source_line_resolver_unittest_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/testing/src/src_processor_fast_source_line_resolver_unittest-gmock-all.o -MD -MP -MF src/testing/src/$(DEPDIR)/src_processor_fast_source_line_resolver_unittest-gmock-all.Tpo -c -o src/testing/src/src_processor_fast_source_line_resolver_unittest-gmock-all.o `test -f 'src/testing/src/gmock-all.cc' || echo '$(srcdir)/'`src/testing/src/gmock-all.cc
+@am__fastdepCXX_TRUE@ $(am__mv) src/testing/src/$(DEPDIR)/src_processor_fast_source_line_resolver_unittest-gmock-all.Tpo src/testing/src/$(DEPDIR)/src_processor_fast_source_line_resolver_unittest-gmock-all.Po
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/testing/src/gmock-all.cc' object='src/testing/src/src_processor_fast_source_line_resolver_unittest-gmock-all.o' libtool=no @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_processor_fast_source_line_resolver_unittest_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/testing/src/src_processor_fast_source_line_resolver_unittest-gmock-all.o `test -f 'src/testing/src/gmock-all.cc' || echo '$(srcdir)/'`src/testing/src/gmock-all.cc
+
+src/testing/src/src_processor_fast_source_line_resolver_unittest-gmock-all.obj: src/testing/src/gmock-all.cc
+@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_processor_fast_source_line_resolver_unittest_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/testing/src/src_processor_fast_source_line_resolver_unittest-gmock-all.obj -MD -MP -MF src/testing/src/$(DEPDIR)/src_processor_fast_source_line_resolver_unittest-gmock-all.Tpo -c -o src/testing/src/src_processor_fast_source_line_resolver_unittest-gmock-all.obj `if test -f 'src/testing/src/gmock-all.cc'; then $(CYGPATH_W) 'src/testing/src/gmock-all.cc'; else $(CYGPATH_W) '$(srcdir)/src/testing/src/gmock-all.cc'; fi`
+@am__fastdepCXX_TRUE@ $(am__mv) src/testing/src/$(DEPDIR)/src_processor_fast_source_line_resolver_unittest-gmock-all.Tpo src/testing/src/$(DEPDIR)/src_processor_fast_source_line_resolver_unittest-gmock-all.Po
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/testing/src/gmock-all.cc' object='src/testing/src/src_processor_fast_source_line_resolver_unittest-gmock-all.obj' libtool=no @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_processor_fast_source_line_resolver_unittest_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/testing/src/src_processor_fast_source_line_resolver_unittest-gmock-all.obj `if test -f 'src/testing/src/gmock-all.cc'; then $(CYGPATH_W) 'src/testing/src/gmock-all.cc'; else $(CYGPATH_W) '$(srcdir)/src/testing/src/gmock-all.cc'; fi`
+
src/processor/src_processor_map_serializers_unittest-map_serializers_unittest.o: src/processor/map_serializers_unittest.cc
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_processor_map_serializers_unittest_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/processor/src_processor_map_serializers_unittest-map_serializers_unittest.o -MD -MP -MF src/processor/$(DEPDIR)/src_processor_map_serializers_unittest-map_serializers_unittest.Tpo -c -o src/processor/src_processor_map_serializers_unittest-map_serializers_unittest.o `test -f 'src/processor/map_serializers_unittest.cc' || echo '$(srcdir)/'`src/processor/map_serializers_unittest.cc
@am__fastdepCXX_TRUE@ $(am__mv) src/processor/$(DEPDIR)/src_processor_map_serializers_unittest-map_serializers_unittest.Tpo src/processor/$(DEPDIR)/src_processor_map_serializers_unittest-map_serializers_unittest.Po
diff --git a/src/google_breakpad/processor/basic_source_line_resolver.h b/src/google_breakpad/processor/basic_source_line_resolver.h
index 4019049d..6cf99705 100644
--- a/src/google_breakpad/processor/basic_source_line_resolver.h
+++ b/src/google_breakpad/processor/basic_source_line_resolver.h
@@ -64,6 +64,8 @@ class BasicSourceLineResolver : public SourceLineResolverBase {
private:
// friend declarations:
friend class BasicModuleFactory;
+ friend class ModuleComparer;
+ friend class ModuleSerializer;
template<class> friend class SimpleSerializer;
// Function derives from SourceLineResolverBase::Function.
@@ -71,7 +73,9 @@ class BasicSourceLineResolver : public SourceLineResolverBase {
// Module implements SourceLineResolverBase::Module interface.
class Module;
- // Helper method.
+ // Helper methods to manage C-String format symbol data.
+ // See "google_breakpad/processor/source_line_resolver_base.h" for more
+ // comments about these helper methods.
virtual void DeleteDataAfterLoad(char *symbol_data);
// No-op helper methods.
virtual void DeleteDataUnload(const CodeModule *module) { }
diff --git a/src/google_breakpad/processor/fast_source_line_resolver.h b/src/google_breakpad/processor/fast_source_line_resolver.h
new file mode 100644
index 00000000..4bb74f1a
--- /dev/null
+++ b/src/google_breakpad/processor/fast_source_line_resolver.h
@@ -0,0 +1,107 @@
+// Copyright (c) 2010 Google Inc.
+// All rights reserved.
+//
+// Redistribution and use in source and binary forms, with or without
+// modification, are permitted provided that the following conditions are
+// met:
+//
+// * Redistributions of source code must retain the above copyright
+// notice, this list of conditions and the following disclaimer.
+// * Redistributions in binary form must reproduce the above
+// copyright notice, this list of conditions and the following disclaimer
+// in the documentation and/or other materials provided with the
+// distribution.
+// * Neither the name of Google Inc. nor the names of its
+// contributors may be used to endorse or promote products derived from
+// this software without specific prior written permission.
+//
+// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+//
+// fast_source_line_resolver.h: FastSourceLineResolver is derived from
+// SourceLineResolverBase, and is a concrete implementation of
+// SourceLineResolverInterface.
+//
+// FastSourceLineResolver is a sibling class of BasicSourceLineResolver. The
+// difference is FastSourceLineResolver loads a serialized memory chunk of data
+// which can be used directly a Module without parsing or copying of underlying
+// data. Therefore loading a symbol in FastSourceLineResolver is much faster
+// and more memory-efficient than BasicSourceLineResolver.
+//
+// See "source_line_resolver_base.h" and
+// "google_breakpad/source_line_resolver_interface.h" for more reference.
+//
+// Author: Siyang Xie (lambxsy@google.com)
+
+#ifndef GOOGLE_BREAKPAD_PROCESSOR_FAST_SOURCE_LINE_RESOLVER_H__
+#define GOOGLE_BREAKPAD_PROCESSOR_FAST_SOURCE_LINE_RESOLVER_H__
+
+#include <map>
+#include <string>
+
+#include "google_breakpad/processor/source_line_resolver_base.h"
+
+namespace google_breakpad {
+
+using std::map;
+
+class FastSourceLineResolver : public SourceLineResolverBase {
+ public:
+ FastSourceLineResolver();
+ virtual ~FastSourceLineResolver() { }
+
+ using SourceLineResolverBase::FillSourceLineInfo;
+ using SourceLineResolverBase::FindCFIFrameInfo;
+ using SourceLineResolverBase::FindWindowsFrameInfo;
+ using SourceLineResolverBase::HasModule;
+ using SourceLineResolverBase::LoadModule;
+ using SourceLineResolverBase::LoadModuleUsingMapBuffer;
+ using SourceLineResolverBase::LoadModuleUsingMemoryBuffer;
+ using SourceLineResolverBase::UnloadModule;
+
+ private:
+ // Friend declarations.
+ friend class ModuleComparer;
+ friend class ModuleSerializer;
+ friend class FastModuleFactory;
+
+ // Nested types that will derive from corresponding nested types defined in
+ // SourceLineResolverBase.
+ struct Line;
+ struct Function;
+ struct PublicSymbol;
+ class Module;
+
+ // Deserialize raw memory data to construct a WindowsFrameInfo object.
+ static WindowsFrameInfo CopyWFI(const char *raw_memory);
+
+ // Helper methods to manage C-String format symbol data.
+ // See "google_breakpad/processor/source_line_resolver_base.h" for more
+ // comments about these helper methods.
+ virtual void StoreDataBeforeLoad(const CodeModule *module, char *symbol_data);
+ virtual void DeleteDataUnload(const CodeModule *module);
+ virtual void ClearLocalMemory();
+ // No-op helper method.
+ virtual void DeleteDataAfterLoad(char *symbol_data) { }
+
+ // Store memory data allocated in LoadModule and LoadModuleUsingMapBuffer.
+ typedef std::map<string, char*, CompareString> MemoryMap;
+ MemoryMap memory_chunks_;
+
+ // Disallow unwanted copy ctor and assignment operator
+ FastSourceLineResolver(const FastSourceLineResolver&);
+ void operator=(const FastSourceLineResolver&);
+};
+
+} // namespace google_breakpad
+
+#endif // GOOGLE_BREAKPAD_PROCESSOR_FAST_SOURCE_LINE_RESOLVER_H__
diff --git a/src/google_breakpad/processor/source_line_resolver_base.h b/src/google_breakpad/processor/source_line_resolver_base.h
index 3d978877..8113e2ed 100644
--- a/src/google_breakpad/processor/source_line_resolver_base.h
+++ b/src/google_breakpad/processor/source_line_resolver_base.h
@@ -80,9 +80,26 @@ class SourceLineResolverBase : public SourceLineResolverInterface {
virtual CFIFrameInfo *FindCFIFrameInfo(const StackFrame *frame);
// Helper methods to manage C-String format symbol data.
+ // These methods are defined as no-op by default.
+ //
+ // StoreDataBeforeLoad() will be called in LoadModule() and
+ // LoadModuleUsingMapBuffer() to let subclass decide whether or how to store
+ // the dynamicly allocated memory data, before passing the data to
+ // LoadModuleUsingMemoryBuffer() which actually loads the module.
virtual void StoreDataBeforeLoad(const CodeModule *module, char *symbol_data);
+
+ // DeleteDataAfterLoad() will be called at the end of
+ // LoadModuleUsingMemoryBuffer() to let subclass decide whether to delete the
+ // allocated memory data or not (which depends on whether the subclass has
+ // ownership of the data or not).
virtual void DeleteDataAfterLoad(char *symbol_data);
+
+ // DeleteDataUnload() will be called in UnloadModule() to let subclass clean
+ // up dynamicly allocated data associated with the module, if there is any.
virtual void DeleteDataUnload(const CodeModule *module);
+
+ // ClearLocalMemory() will be called in destructor to let subclass clean up
+ // all local memory data it owns, if there is any.
virtual void ClearLocalMemory();
// Nested structs and classes.
diff --git a/src/processor/address_map.h b/src/processor/address_map.h
index 1650882e..2972cbb9 100644
--- a/src/processor/address_map.h
+++ b/src/processor/address_map.h
@@ -69,6 +69,7 @@ class AddressMap {
private:
friend class AddressMapSerializer<AddressType, EntryType>;
+ friend class ModuleComparer;
// Convenience types.
typedef std::map<AddressType, EntryType> AddressToEntryMap;
diff --git a/src/processor/basic_source_line_resolver_types.h b/src/processor/basic_source_line_resolver_types.h
index f40b15b1..87b93db9 100644
--- a/src/processor/basic_source_line_resolver_types.h
+++ b/src/processor/basic_source_line_resolver_types.h
@@ -100,6 +100,8 @@ class BasicSourceLineResolver::Module : public SourceLineResolverBase::Module {
private:
// Friend declarations.
friend class BasicSourceLineResolver;
+ friend class ModuleComparer;
+ friend class ModuleSerializer;
typedef std::map<int, string> FileMap;
diff --git a/src/processor/contained_range_map.h b/src/processor/contained_range_map.h
index dfc95484..1015ae8c 100644
--- a/src/processor/contained_range_map.h
+++ b/src/processor/contained_range_map.h
@@ -106,6 +106,7 @@ class ContainedRangeMap {
private:
friend class ContainedRangeMapSerializer<AddressType, EntryType>;
+ friend class ModuleComparer;
// AddressToRangeMap stores pointers. This makes reparenting simpler in
// StoreRange, because it doesn't need to copy entire objects.
diff --git a/src/processor/fast_source_line_resolver.cc b/src/processor/fast_source_line_resolver.cc
new file mode 100644
index 00000000..5f6cc074
--- /dev/null
+++ b/src/processor/fast_source_line_resolver.cc
@@ -0,0 +1,278 @@
+// Copyright (c) 2010 Google Inc.
+// All rights reserved.
+//
+// Redistribution and use in source and binary forms, with or without
+// modification, are permitted provided that the following conditions are
+// met:
+//
+// * Redistributions of source code must retain the above copyright
+// notice, this list of conditions and the following disclaimer.
+// * Redistributions in binary form must reproduce the above
+// copyright notice, this list of conditions and the following disclaimer
+// in the documentation and/or other materials provided with the
+// distribution.
+// * Neither the name of Google Inc. nor the names of its
+// contributors may be used to endorse or promote products derived from
+// this software without specific prior written permission.
+//
+// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+//
+// fast_source_line_resolver.cc: FastSourceLineResolver is a concrete class that
+// implements SourceLineResolverInterface. Both FastSourceLineResolver and
+// BasicSourceLineResolver inherit from SourceLineResolverBase class to reduce
+// code redundancy.
+//
+// See fast_source_line_resolver.h and fast_source_line_resolver_types.h
+// for more documentation.
+//
+// Author: Siyang Xie (lambxsy@google.com)
+
+#include "google_breakpad/processor/fast_source_line_resolver.h"
+#include "processor/fast_source_line_resolver_types.h"
+
+#include <map>
+#include <utility>
+
+#include "processor/module_factory.h"
+#include "processor/scoped_ptr.h"
+
+using std::map;
+using std::make_pair;
+
+namespace google_breakpad {
+
+FastSourceLineResolver::FastSourceLineResolver()
+ : SourceLineResolverBase(new FastModuleFactory) { }
+
+void FastSourceLineResolver::ClearLocalMemory() {
+ for (MemoryMap::iterator it = memory_chunks_.begin();
+ it != memory_chunks_.end();
+ ++it) {
+ delete it->second;
+ }
+}
+
+void FastSourceLineResolver::DeleteDataUnload(const CodeModule *module) {
+ if (module) {
+ MemoryMap::iterator iter = memory_chunks_.find(module->code_file());
+ if (iter != memory_chunks_.end()) {
+ delete iter->second;
+ }
+ }
+}
+
+void FastSourceLineResolver::StoreDataBeforeLoad(const CodeModule *module,
+ char *symbol_data) {
+ memory_chunks_.insert(make_pair(module->code_file(), symbol_data));
+}
+
+void FastSourceLineResolver::Module::LookupAddress(StackFrame *frame) const {
+ MemAddr address = frame->instruction - frame->module->base_address();
+
+ // First, look for a FUNC record that covers address. Use
+ // RetrieveNearestRange instead of RetrieveRange so that, if there
+ // is no such function, we can use the next function to bound the
+ // extent of the PUBLIC symbol we find, below. This does mean we
+ // need to check that address indeed falls within the function we
+ // find; do the range comparison in an overflow-friendly way.
+ scoped_ptr<Function> func(new Function);
+ const Function* func_ptr = 0;
+ scoped_ptr<PublicSymbol> public_symbol(new PublicSymbol);
+ const PublicSymbol* public_symbol_ptr = 0;
+ MemAddr function_base;
+ MemAddr function_size;
+ MemAddr public_address;
+
+ if (functions_.RetrieveNearestRange(address, func_ptr,
+ &function_base, &function_size) &&
+ address >= function_base && address - function_base < function_size) {
+ func.get()->CopyFrom(func_ptr);
+ frame->function_name = func->name;
+ frame->function_base = frame->module->base_address() + function_base;
+
+ scoped_ptr<Line> line(new Line);
+ const Line* line_ptr = 0;
+ MemAddr line_base;
+ if (func->lines.RetrieveRange(address, line_ptr, &line_base, NULL)) {
+ line.get()->CopyFrom(line_ptr);
+ FileMap::iterator it = files_.find(line->source_file_id);
+ if (it != files_.end()) {
+ frame->source_file_name =
+ files_.find(line->source_file_id).GetValuePtr();
+ }
+ frame->source_line = line->line;
+ frame->source_line_base = frame->module->base_address() + line_base;
+ }
+ } else if (public_symbols_.Retrieve(address,
+ public_symbol_ptr, &public_address) &&
+ (!func_ptr || public_address > function_base)) {
+ public_symbol.get()->CopyFrom(public_symbol_ptr);
+ frame->function_name = public_symbol->name;
+ frame->function_base = frame->module->base_address() + public_address;
+ }
+}
+
+// WFI: WindowsFrameInfo.
+// Returns a WFI object reading from a raw memory chunk of data
+WindowsFrameInfo FastSourceLineResolver::CopyWFI(const char *raw) {
+ // The first 4Bytes of int data are unused.
+ // They corresponds to "int valid;" data member of WFI.
+ const u_int32_t *para_uint32 = reinterpret_cast<const u_int32_t*>(
+ raw + sizeof(int32_t));
+
+ u_int32_t prolog_size = para_uint32[0];;
+ u_int32_t epilog_size = para_uint32[1];
+ u_int32_t parameter_size = para_uint32[2];
+ u_int32_t saved_register_size = para_uint32[3];
+ u_int32_t local_size = para_uint32[4];
+ u_int32_t max_stack_size = para_uint32[5];
+ const char *boolean = reinterpret_cast<const char*>(para_uint32 + 6);
+ bool allocates_base_pointer = (*boolean != 0);
+ std::string program_string = boolean + 1;
+
+ return WindowsFrameInfo(prolog_size,
+ epilog_size,
+ parameter_size,
+ saved_register_size,
+ local_size,
+ max_stack_size,
+ allocates_base_pointer,
+ program_string);
+}
+
+// Loads a map from the given buffer in char* type.
+// Does NOT take ownership of mem_buffer.
+// In addition, treat mem_buffer as const char*.
+bool FastSourceLineResolver::Module::LoadMapFromMemory(char *mem_buffer) {
+ if (!mem_buffer) return false;
+
+ const u_int32_t *map_sizes = reinterpret_cast<const u_int32_t*>(mem_buffer);
+
+ unsigned int header_size = kNumberMaps_ * sizeof(unsigned int);
+
+ // offsets[]: an array of offset addresses (with respect to mem_buffer),
+ // for each "Static***Map" component of Module.
+ // "Static***Map": static version of std::map or map wrapper, i.e., StaticMap,
+ // StaticAddressMap, StaticContainedRangeMap, and StaticRangeMap.
+ unsigned int offsets[kNumberMaps_];
+ offsets[0] = header_size;
+ for (int i = 1; i < kNumberMaps_; ++i) {
+ offsets[i] = offsets[i - 1] + map_sizes[i - 1];
+ }
+
+ // Use pointers to construct Static*Map data members in Module:
+ int map_id = 0;
+ files_ = StaticMap<int, char>(mem_buffer + offsets[map_id++]);
+ functions_ =
+ StaticRangeMap<MemAddr, Function>(mem_buffer + offsets[map_id++]);
+ public_symbols_ =
+ StaticAddressMap<MemAddr, PublicSymbol>(mem_buffer + offsets[map_id++]);
+ for (int i = 0; i < WindowsFrameInfo::STACK_INFO_LAST; ++i)
+ windows_frame_info_[i] =
+ StaticContainedRangeMap<MemAddr, char>(mem_buffer + offsets[map_id++]);
+
+ cfi_initial_rules_ =
+ StaticRangeMap<MemAddr, char>(mem_buffer + offsets[map_id++]);
+ cfi_delta_rules_ = StaticMap<MemAddr, char>(mem_buffer + offsets[map_id++]);
+
+ return true;
+}
+
+WindowsFrameInfo *FastSourceLineResolver::Module::FindWindowsFrameInfo(
+ const StackFrame *frame) const {
+ MemAddr address = frame->instruction - frame->module->base_address();
+ scoped_ptr<WindowsFrameInfo> result(new WindowsFrameInfo());
+
+ // We only know about WindowsFrameInfo::STACK_INFO_FRAME_DATA and
+ // WindowsFrameInfo::STACK_INFO_FPO. Prefer them in this order.
+ // WindowsFrameInfo::STACK_INFO_FRAME_DATA is the newer type that
+ // includes its own program string.
+ // WindowsFrameInfo::STACK_INFO_FPO is the older type
+ // corresponding to the FPO_DATA struct. See stackwalker_x86.cc.
+ const char* frame_info_ptr;
+ if ((windows_frame_info_[WindowsFrameInfo::STACK_INFO_FRAME_DATA]
+ .RetrieveRange(address, frame_info_ptr))
+ || (windows_frame_info_[WindowsFrameInfo::STACK_INFO_FPO]
+ .RetrieveRange(address, frame_info_ptr))) {
+ result->CopyFrom(CopyWFI(frame_info_ptr));
+ return result.release();
+ }
+
+ // Even without a relevant STACK line, many functions contain
+ // information about how much space their parameters consume on the
+ // stack. Use RetrieveNearestRange instead of RetrieveRange, so that
+ // we can use the function to bound the extent of the PUBLIC symbol,
+ // below. However, this does mean we need to check that ADDRESS
+ // falls within the retrieved function's range; do the range
+ // comparison in an overflow-friendly way.
+ scoped_ptr<Function> function(new Function);
+ const Function* function_ptr = 0;
+ MemAddr function_base, function_size;
+ if (functions_.RetrieveNearestRange(address, function_ptr,
+ &function_base, &function_size) &&
+ address >= function_base && address - function_base < function_size) {
+ function.get()->CopyFrom(function_ptr);
+ result->parameter_size = function->parameter_size;
+ result->valid |= WindowsFrameInfo::VALID_PARAMETER_SIZE;
+ return result.release();
+ }
+
+ // PUBLIC symbols might have a parameter size. Use the function we
+ // found above to limit the range the public symbol covers.
+ scoped_ptr<PublicSymbol> public_symbol(new PublicSymbol);
+ const PublicSymbol* public_symbol_ptr = 0;
+ MemAddr public_address;
+ if (public_symbols_.Retrieve(address, public_symbol_ptr, &public_address) &&
+ (!function_ptr || public_address > function_base)) {
+ public_symbol.get()->CopyFrom(public_symbol_ptr);
+ result->parameter_size = public_symbol->parameter_size;
+ }
+
+ return NULL;
+}
+
+CFIFrameInfo *FastSourceLineResolver::Module::FindCFIFrameInfo(
+ const StackFrame *frame) const {
+ MemAddr address = frame->instruction - frame->module->base_address();
+ MemAddr initial_base, initial_size;
+ const char* initial_rules = NULL;
+
+ // Find the initial rule whose range covers this address. That
+ // provides an initial set of register recovery rules. Then, walk
+ // forward from the initial rule's starting address to frame's
+ // instruction address, applying delta rules.
+ if (!cfi_initial_rules_.RetrieveRange(address, initial_rules,
+ &initial_base, &initial_size)) {
+ return NULL;
+ }
+
+ // Create a frame info structure, and populate it with the rules from
+ // the STACK CFI INIT record.
+ scoped_ptr<CFIFrameInfo> rules(new CFIFrameInfo());
+ if (!ParseCFIRuleSet(initial_rules, rules.get()))
+ return NULL;
+
+ // Find the first delta rule that falls within the initial rule's range.
+ StaticMap<MemAddr, char>::iterator delta =
+ cfi_delta_rules_.lower_bound(initial_base);
+
+ // Apply delta rules up to and including the frame's address.
+ while (delta != cfi_delta_rules_.end() && delta.GetKey() <= address) {
+ ParseCFIRuleSet(delta.GetValuePtr(), rules.get());
+ delta++;
+ }
+
+ return rules.release();
+}
+
+} // namespace google_breakpad
diff --git a/src/processor/fast_source_line_resolver_types.h b/src/processor/fast_source_line_resolver_types.h
new file mode 100644
index 00000000..377bab63
--- /dev/null
+++ b/src/processor/fast_source_line_resolver_types.h
@@ -0,0 +1,179 @@
+// Copyright (c) 2010 Google Inc.
+// All rights reserved.
+//
+// Redistribution and use in source and binary forms, with or without
+// modification, are permitted provided that the following conditions are
+// met:
+//
+// * Redistributions of source code must retain the above copyright
+// notice, this list of conditions and the following disclaimer.
+// * Redistributions in binary form must reproduce the above
+// copyright notice, this list of conditions and the following disclaimer
+// in the documentation and/or other materials provided with the
+// distribution.
+// * Neither the name of Google Inc. nor the names of its
+// contributors may be used to endorse or promote products derived from
+// this software without specific prior written permission.
+//
+// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+//
+// fast_source_line_resolver_types.h: definition of nested classes/structs in
+// FastSourceLineResolver. It moves the definitions out of
+// fast_source_line_resolver.cc, so that other classes could have access
+// to these private nested types without including fast_source_line_resolver.cc
+//
+// Author: lambxsy@google.com (Siyang Xie)
+
+#ifndef PROCESSOR_FAST_SOURCE_LINE_RESOLVER_TYPES_H__
+#define PROCESSOR_FAST_SOURCE_LINE_RESOLVER_TYPES_H__
+
+#include "google_breakpad/processor/fast_source_line_resolver.h"
+#include "processor/source_line_resolver_base_types.h"
+
+#include <map>
+#include <string>
+
+#include "google_breakpad/processor/stack_frame.h"
+#include "processor/cfi_frame_info.h"
+#include "processor/static_address_map-inl.h"
+#include "processor/static_contained_range_map-inl.h"
+#include "processor/static_map.h"
+#include "processor/static_range_map-inl.h"
+#include "processor/windows_frame_info.h"
+
+namespace google_breakpad {
+
+struct FastSourceLineResolver::Line : public SourceLineResolverBase::Line {
+ void CopyFrom(const Line *line_ptr) {
+ const char *raw = reinterpret_cast<const char*>(line_ptr);
+ CopyFrom(raw);
+ }
+
+ // De-serialize the memory data of a Line.
+ void CopyFrom(const char *raw) {
+ address = *(reinterpret_cast<const MemAddr*>(raw));
+ size = *(reinterpret_cast<const MemAddr*>(raw + sizeof(address)));
+ source_file_id = *(reinterpret_cast<const int32_t *>(
+ raw + 2 * sizeof(address)));
+ line = *(reinterpret_cast<const int32_t*>(
+ raw + 2 * sizeof(address) + sizeof(source_file_id)));
+ }
+};
+
+struct FastSourceLineResolver::Function :
+public SourceLineResolverBase::Function {
+ void CopyFrom(const Function *func_ptr) {
+ const char *raw = reinterpret_cast<const char*>(func_ptr);
+ CopyFrom(raw);
+ }
+
+ // De-serialize the memory data of a Function.
+ void CopyFrom(const char *raw) {
+ size_t name_size = strlen(raw) + 1;
+ name = raw;
+ address = *(reinterpret_cast<const MemAddr*>(raw + name_size));
+ size = *(reinterpret_cast<const MemAddr*>(
+ raw + name_size + sizeof(MemAddr)));
+ parameter_size = *(reinterpret_cast<const int32_t*>(
+ raw + name_size + 2 * sizeof(MemAddr)));
+ lines = StaticRangeMap<MemAddr, Line>(
+ raw + name_size + 2 * sizeof(MemAddr) + sizeof(int32_t));
+ }
+
+ StaticRangeMap<MemAddr, Line> lines;
+};
+
+struct FastSourceLineResolver::PublicSymbol :
+public SourceLineResolverBase::PublicSymbol {
+ void CopyFrom(const PublicSymbol *public_symbol_ptr) {
+ const char *raw = reinterpret_cast<const char*>(public_symbol_ptr);
+ CopyFrom(raw);
+ }
+
+ // De-serialize the memory data of a PublicSymbol.
+ void CopyFrom(const char *raw) {
+ size_t name_size = strlen(raw) + 1;
+ name = raw;
+ address = *(reinterpret_cast<const MemAddr*>(raw + name_size));
+ parameter_size = *(reinterpret_cast<const int32_t*>(
+ raw + name_size + sizeof(MemAddr)));
+ }
+};
+
+class FastSourceLineResolver::Module: public SourceLineResolverBase::Module {
+ public:
+ explicit Module(const string &name) : name_(name) { }
+ virtual ~Module() { }
+
+ // Looks up the given relative address, and fills the StackFrame struct
+ // with the result.
+ virtual void LookupAddress(StackFrame *frame) const;
+
+ // Loads a map from the given buffer in char* type.
+ virtual bool LoadMapFromMemory(char *memory_buffer);
+
+ // If Windows stack walking information is available covering ADDRESS,
+ // return a WindowsFrameInfo structure describing it. If the information
+ // is not available, returns NULL. A NULL return value does not indicate
+ // an error. The caller takes ownership of any returned WindowsFrameInfo
+ // object.
+ virtual WindowsFrameInfo *FindWindowsFrameInfo(const StackFrame *frame) const;
+
+ // If CFI stack walking information is available covering ADDRESS,
+ // return a CFIFrameInfo structure describing it. If the information
+ // is not available, return NULL. The caller takes ownership of any
+ // returned CFIFrameInfo object.
+ virtual CFIFrameInfo *FindCFIFrameInfo(const StackFrame *frame) const;
+
+ private:
+ friend class FastSourceLineResolver;
+ friend class ModuleComparer;
+ typedef StaticMap<int, char> FileMap;
+
+ // Number of serialized map components of Module.
+ static const int kNumberMaps_ = 5 + WindowsFrameInfo::STACK_INFO_LAST;
+
+ string name_;
+ StaticMap<int, char> files_;
+ StaticRangeMap<MemAddr, Function> functions_;
+ StaticAddressMap<MemAddr, PublicSymbol> public_symbols_;
+
+ // Each element in the array is a ContainedRangeMap for a type
+ // listed in WindowsFrameInfoTypes. These are split by type because
+ // there may be overlaps between maps of different types, but some
+ // information is only available as certain types.
+ StaticContainedRangeMap<MemAddr, char>
+ windows_frame_info_[WindowsFrameInfo::STACK_INFO_LAST];
+
+ // DWARF CFI stack walking data. The Module stores the initial rule sets
+ // and rule deltas as strings, just as they appear in the symbol file:
+ // although the file may contain hundreds of thousands of STACK CFI
+ // records, walking a stack will only ever use a few of them, so it's
+ // best to delay parsing a record until it's actually needed.
+ //
+ // STACK CFI INIT records: for each range, an initial set of register
+ // recovery rules. The RangeMap's itself gives the starting and ending
+ // addresses.
+ StaticRangeMap<MemAddr, char> cfi_initial_rules_;
+
+ // STACK CFI records: at a given address, the changes to the register
+ // recovery rules that take effect at that address. The map key is the
+ // starting address; the ending address is the key of the next entry in
+ // this map, or the end of the range as given by the cfi_initial_rules_
+ // entry (which FindCFIFrameInfo looks up first).
+ StaticMap<MemAddr, char> cfi_delta_rules_;
+};
+
+} // namespace google_breakpad
+
+#endif // PROCESSOR_FAST_SOURCE_LINE_RESOLVER_TYPES_H__
diff --git a/src/processor/fast_source_line_resolver_unittest.cc b/src/processor/fast_source_line_resolver_unittest.cc
new file mode 100644
index 00000000..6a9bcb14
--- /dev/null
+++ b/src/processor/fast_source_line_resolver_unittest.cc
@@ -0,0 +1,477 @@
+// Copyright (c) 2010 Google Inc.
+// All rights reserved.
+//
+// Redistribution and use in source and binary forms, with or without
+// modification, are permitted provided that the following conditions are
+// met:
+//
+// * Redistributions of source code must retain the above copyright
+// notice, this list of conditions and the following disclaimer.
+// * Redistributions in binary form must reproduce the above
+// copyright notice, this list of conditions and the following disclaimer
+// in the documentation and/or other materials provided with the
+// distribution.
+// * Neither the name of Google Inc. nor the names of its
+// contributors may be used to endorse or promote products derived from
+// this software without specific prior written permission.
+//
+// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+//
+// fast_source_line_resolver_unittest.cc: Unit tests for FastSourceLineResolver.
+// Two different approaches for testing fast source line resolver:
+// First, use the same unit test data for basic source line resolver.
+// Second, read data from symbol files, load them as basic modules, and then
+// serialize them and load the serialized data as fast modules. Then compare
+// modules to assure the fast module contains exactly the same data as
+// basic module.
+//
+// Author: Siyang Xie (lambxsy@google.com)
+
+#include <stdio.h>
+
+#include <sstream>
+#include <string>
+
+#include "breakpad_googletest_includes.h"
+#include "google_breakpad/processor/code_module.h"
+#include "google_breakpad/processor/stack_frame.h"
+#include "google_breakpad/processor/memory_region.h"
+#include "processor/logging.h"
+#include "processor/module_serializer.h"
+#include "processor/module_comparer.h"
+
+namespace {
+
+using std::string;
+using google_breakpad::SourceLineResolverBase;
+using google_breakpad::BasicSourceLineResolver;
+using google_breakpad::FastSourceLineResolver;
+using google_breakpad::ModuleSerializer;
+using google_breakpad::ModuleComparer;
+using google_breakpad::CFIFrameInfo;
+using google_breakpad::CodeModule;
+using google_breakpad::MemoryRegion;
+using google_breakpad::StackFrame;
+using google_breakpad::WindowsFrameInfo;
+using google_breakpad::linked_ptr;
+using google_breakpad::scoped_ptr;
+
+class TestCodeModule : public CodeModule {
+ public:
+ explicit TestCodeModule(string code_file) : code_file_(code_file) {}
+ virtual ~TestCodeModule() {}
+
+ virtual u_int64_t base_address() const { return 0; }
+ virtual u_int64_t size() const { return 0xb000; }
+ virtual string code_file() const { return code_file_; }
+ virtual string code_identifier() const { return ""; }
+ virtual string debug_file() const { return ""; }
+ virtual string debug_identifier() const { return ""; }
+ virtual string version() const { return ""; }
+ virtual const CodeModule* Copy() const {
+ return new TestCodeModule(code_file_);
+ }
+
+ private:
+ string code_file_;
+};
+
+// A mock memory region object, for use by the STACK CFI tests.
+class MockMemoryRegion: public MemoryRegion {
+ u_int64_t GetBase() const { return 0x10000; }
+ u_int32_t GetSize() const { return 0x01000; }
+ bool GetMemoryAtAddress(u_int64_t address, u_int8_t *value) const {
+ *value = address & 0xff;
+ return true;
+ }
+ bool GetMemoryAtAddress(u_int64_t address, u_int16_t *value) const {
+ *value = address & 0xffff;
+ return true;
+ }
+ bool GetMemoryAtAddress(u_int64_t address, u_int32_t *value) const {
+ switch (address) {
+ case 0x10008: *value = 0x98ecadc3; break; // saved %ebx
+ case 0x1000c: *value = 0x878f7524; break; // saved %esi
+ case 0x10010: *value = 0x6312f9a5; break; // saved %edi
+ case 0x10014: *value = 0x10038; break; // caller's %ebp
+ case 0x10018: *value = 0xf6438648; break; // return address
+ default: *value = 0xdeadbeef; break; // junk
+ }
+ return true;
+ }
+ bool GetMemoryAtAddress(u_int64_t address, u_int64_t *value) const {
+ *value = address;
+ return true;
+ }
+};
+
+// Verify that, for every association in ACTUAL, EXPECTED has the same
+// association. (That is, ACTUAL's associations should be a subset of
+// EXPECTED's.) Also verify that ACTUAL has associations for ".ra" and
+// ".cfa".
+static bool VerifyRegisters(
+ const char *file, int line,
+ const CFIFrameInfo::RegisterValueMap<u_int32_t> &expected,
+ const CFIFrameInfo::RegisterValueMap<u_int32_t> &actual) {
+ CFIFrameInfo::RegisterValueMap<u_int32_t>::const_iterator a;
+ a = actual.find(".cfa");
+ if (a == actual.end())
+ return false;
+ a = actual.find(".ra");
+ if (a == actual.end())
+ return false;
+ for (a = actual.begin(); a != actual.end(); a++) {
+ CFIFrameInfo::RegisterValueMap<u_int32_t>::const_iterator e =
+ expected.find(a->first);
+ if (e == expected.end()) {
+ fprintf(stderr, "%s:%d: unexpected register '%s' recovered, value 0x%x\n",
+ file, line, a->first.c_str(), a->second);
+ return false;
+ }
+ if (e->second != a->second) {
+ fprintf(stderr,
+ "%s:%d: register '%s' recovered value was 0x%x, expected 0x%x\n",
+ file, line, a->first.c_str(), a->second, e->second);
+ return false;
+ }
+ // Don't complain if this doesn't recover all registers. Although
+ // the DWARF spec says that unmentioned registers are undefined,
+ // GCC uses omission to mean that they are unchanged.
+ }
+ return true;
+}
+
+static bool VerifyEmpty(const StackFrame &frame) {
+ if (frame.function_name.empty() &&
+ frame.source_file_name.empty() &&
+ frame.source_line == 0)
+ return true;
+ return false;
+}
+
+static void ClearSourceLineInfo(StackFrame *frame) {
+ frame->function_name.clear();
+ frame->module = NULL;
+ frame->source_file_name.clear();
+ frame->source_line = 0;
+}
+
+class TestFastSourceLineResolver : public ::testing::Test {
+ public:
+ void SetUp() {
+ testdata_dir = string(getenv("srcdir") ? getenv("srcdir") : ".") +
+ "/src/processor/testdata";
+ }
+
+ string symbol_file(int file_index) {
+ std::stringstream ss;
+ ss << testdata_dir << "/module" << file_index << ".out";
+ return ss.str();
+ }
+
+ ModuleSerializer serializer;
+ BasicSourceLineResolver basic_resolver;
+ FastSourceLineResolver fast_resolver;
+ ModuleComparer module_comparer;
+
+ string testdata_dir;
+};
+
+// Test adapted from basic_source_line_resolver_unittest.
+TEST_F(TestFastSourceLineResolver, TestLoadAndResolve) {
+ TestCodeModule module1("module1");
+ ASSERT_TRUE(basic_resolver.LoadModule(&module1, symbol_file(1)));
+ ASSERT_TRUE(basic_resolver.HasModule(&module1));
+ // Convert module1 to fast_module:
+ ASSERT_TRUE(serializer.ConvertOneModule(
+ module1.code_file(), &basic_resolver, &fast_resolver));
+ ASSERT_TRUE(fast_resolver.HasModule(&module1));
+
+ TestCodeModule module2("module2");
+ ASSERT_TRUE(basic_resolver.LoadModule(&module2, symbol_file(2)));
+ ASSERT_TRUE(basic_resolver.HasModule(&module2));
+ // Convert module2 to fast_module:
+ ASSERT_TRUE(serializer.ConvertOneModule(
+ module2.code_file(), &basic_resolver, &fast_resolver));
+ ASSERT_TRUE(fast_resolver.HasModule(&module2));
+
+ StackFrame frame;
+ scoped_ptr<WindowsFrameInfo> windows_frame_info;
+ scoped_ptr<CFIFrameInfo> cfi_frame_info;
+ frame.instruction = 0x1000;
+ frame.module = NULL;
+ fast_resolver.FillSourceLineInfo(&frame);
+ ASSERT_FALSE(frame.module);
+ ASSERT_TRUE(frame.function_name.empty());
+ ASSERT_EQ(frame.function_base, 0);
+ ASSERT_TRUE(frame.source_file_name.empty());
+ ASSERT_EQ(frame.source_line, 0);
+ ASSERT_EQ(frame.source_line_base, 0);
+
+ frame.module = &module1;
+ fast_resolver.FillSourceLineInfo(&frame);
+ ASSERT_EQ(frame.function_name, "Function1_1");
+ ASSERT_TRUE(frame.module);
+ ASSERT_EQ(frame.module->code_file(), "module1");
+ ASSERT_EQ(frame.function_base, 0x1000);
+ ASSERT_EQ(frame.source_file_name, "file1_1.cc");
+ ASSERT_EQ(frame.source_line, 44);
+ ASSERT_EQ(frame.source_line_base, 0x1000);
+ windows_frame_info.reset(fast_resolver.FindWindowsFrameInfo(&frame));
+ ASSERT_TRUE(windows_frame_info.get());
+ ASSERT_FALSE(windows_frame_info->allocates_base_pointer);
+ ASSERT_EQ(windows_frame_info->program_string,
+ "$eip 4 + ^ = $esp $ebp 8 + = $ebp $ebp ^ =");
+
+ ClearSourceLineInfo(&frame);
+ frame.instruction = 0x800;
+ frame.module = &module1;
+ fast_resolver.FillSourceLineInfo(&frame);
+ ASSERT_TRUE(VerifyEmpty(frame));
+ windows_frame_info.reset(fast_resolver.FindWindowsFrameInfo(&frame));
+ ASSERT_FALSE(windows_frame_info.get());
+
+ frame.instruction = 0x1280;
+ fast_resolver.FillSourceLineInfo(&frame);
+ ASSERT_EQ(frame.function_name, "Function1_3");
+ ASSERT_TRUE(frame.source_file_name.empty());
+ ASSERT_EQ(frame.source_line, 0);
+ windows_frame_info.reset(fast_resolver.FindWindowsFrameInfo(&frame));
+ ASSERT_TRUE(windows_frame_info.get());
+ ASSERT_FALSE(windows_frame_info->allocates_base_pointer);
+ ASSERT_TRUE(windows_frame_info->program_string.empty());
+
+ frame.instruction = 0x1380;
+ fast_resolver.FillSourceLineInfo(&frame);
+ ASSERT_EQ(frame.function_name, "Function1_4");
+ ASSERT_TRUE(frame.source_file_name.empty());
+ ASSERT_EQ(frame.source_line, 0);
+ windows_frame_info.reset(fast_resolver.FindWindowsFrameInfo(&frame));
+ ASSERT_TRUE(windows_frame_info.get());
+ ASSERT_FALSE(windows_frame_info->allocates_base_pointer);
+ ASSERT_FALSE(windows_frame_info->program_string.empty());
+
+ frame.instruction = 0x2000;
+ windows_frame_info.reset(fast_resolver.FindWindowsFrameInfo(&frame));
+ ASSERT_FALSE(windows_frame_info.get());
+
+ // module1 has STACK CFI records covering 3d40..3def;
+ // module2 has STACK CFI records covering 3df0..3e9f;
+ // check that FindCFIFrameInfo doesn't claim to find any outside those ranges.
+ frame.instruction = 0x3d3f;
+ frame.module = &module1;
+ cfi_frame_info.reset(fast_resolver.FindCFIFrameInfo(&frame));
+ ASSERT_FALSE(cfi_frame_info.get());
+
+ frame.instruction = 0x3e9f;
+ frame.module = &module1;
+ cfi_frame_info.reset(fast_resolver.FindCFIFrameInfo(&frame));
+ ASSERT_FALSE(cfi_frame_info.get());
+
+ CFIFrameInfo::RegisterValueMap<u_int32_t> current_registers;
+ CFIFrameInfo::RegisterValueMap<u_int32_t> caller_registers;
+ CFIFrameInfo::RegisterValueMap<u_int32_t> expected_caller_registers;
+ MockMemoryRegion memory;
+
+ // Regardless of which instruction evaluation takes place at, it
+ // should produce the same values for the caller's registers.
+ expected_caller_registers[".cfa"] = 0x1001c;
+ expected_caller_registers[".ra"] = 0xf6438648;
+ expected_caller_registers["$ebp"] = 0x10038;
+ expected_caller_registers["$ebx"] = 0x98ecadc3;
+ expected_caller_registers["$esi"] = 0x878f7524;
+ expected_caller_registers["$edi"] = 0x6312f9a5;
+
+ frame.instruction = 0x3d40;
+ frame.module = &module1;
+ current_registers.clear();
+ current_registers["$esp"] = 0x10018;
+ current_registers["$ebp"] = 0x10038;
+ current_registers["$ebx"] = 0x98ecadc3;
+ current_registers["$esi"] = 0x878f7524;
+ current_registers["$edi"] = 0x6312f9a5;
+ cfi_frame_info.reset(fast_resolver.FindCFIFrameInfo(&frame));
+ ASSERT_TRUE(cfi_frame_info.get());
+ ASSERT_TRUE(cfi_frame_info.get()
+ ->FindCallerRegs<u_int32_t>(current_registers, memory,
+ &caller_registers));
+ ASSERT_TRUE(VerifyRegisters(__FILE__, __LINE__,
+ expected_caller_registers, caller_registers));
+
+ frame.instruction = 0x3d41;
+ current_registers["$esp"] = 0x10014;
+ cfi_frame_info.reset(fast_resolver.FindCFIFrameInfo(&frame));
+ ASSERT_TRUE(cfi_frame_info.get());
+ ASSERT_TRUE(cfi_frame_info.get()
+ ->FindCallerRegs<u_int32_t>(current_registers, memory,
+ &caller_registers));
+ ASSERT_TRUE(VerifyRegisters(__FILE__, __LINE__,
+ expected_caller_registers, caller_registers));
+
+ frame.instruction = 0x3d43;
+ current_registers["$ebp"] = 0x10014;
+ cfi_frame_info.reset(fast_resolver.FindCFIFrameInfo(&frame));
+ ASSERT_TRUE(cfi_frame_info.get());
+ ASSERT_TRUE(cfi_frame_info.get()
+ ->FindCallerRegs<u_int32_t>(current_registers, memory,
+ &caller_registers));
+ VerifyRegisters(__FILE__, __LINE__,
+ expected_caller_registers, caller_registers);
+
+ frame.instruction = 0x3d54;
+ current_registers["$ebx"] = 0x6864f054U;
+ cfi_frame_info.reset(fast_resolver.FindCFIFrameInfo(&frame));
+ ASSERT_TRUE(cfi_frame_info.get());
+ ASSERT_TRUE(cfi_frame_info.get()
+ ->FindCallerRegs<u_int32_t>(current_registers, memory,
+ &caller_registers));
+ VerifyRegisters(__FILE__, __LINE__,
+ expected_caller_registers, caller_registers);
+
+ frame.instruction = 0x3d5a;
+ current_registers["$esi"] = 0x6285f79aU;
+ cfi_frame_info.reset(fast_resolver.FindCFIFrameInfo(&frame));
+ ASSERT_TRUE(cfi_frame_info.get());
+ ASSERT_TRUE(cfi_frame_info.get()
+ ->FindCallerRegs<u_int32_t>(current_registers, memory,
+ &caller_registers));
+ VerifyRegisters(__FILE__, __LINE__,
+ expected_caller_registers, caller_registers);
+
+ frame.instruction = 0x3d84;
+ current_registers["$edi"] = 0x64061449U;
+ cfi_frame_info.reset(fast_resolver.FindCFIFrameInfo(&frame));
+ ASSERT_TRUE(cfi_frame_info.get());
+ ASSERT_TRUE(cfi_frame_info.get()
+ ->FindCallerRegs<u_int32_t>(current_registers, memory,
+ &caller_registers));
+ VerifyRegisters(__FILE__, __LINE__,
+ expected_caller_registers, caller_registers);
+
+ frame.instruction = 0x2900;
+ frame.module = &module1;
+ fast_resolver.FillSourceLineInfo(&frame);
+ ASSERT_EQ(frame.function_name, string("PublicSymbol"));
+
+ frame.instruction = 0x4000;
+ frame.module = &module1;
+ fast_resolver.FillSourceLineInfo(&frame);
+ ASSERT_EQ(frame.function_name, string("LargeFunction"));
+
+ frame.instruction = 0x2181;
+ frame.module = &module2;
+ fast_resolver.FillSourceLineInfo(&frame);
+ ASSERT_EQ(frame.function_name, "Function2_2");
+ ASSERT_EQ(frame.function_base, 0x2170);
+ ASSERT_TRUE(frame.module);
+ ASSERT_EQ(frame.module->code_file(), "module2");
+ ASSERT_EQ(frame.source_file_name, "file2_2.cc");
+ ASSERT_EQ(frame.source_line, 21);
+ ASSERT_EQ(frame.source_line_base, 0x2180);
+ windows_frame_info.reset(fast_resolver.FindWindowsFrameInfo(&frame));
+ ASSERT_TRUE(windows_frame_info.get());
+ ASSERT_EQ(windows_frame_info->prolog_size, 1);
+
+ frame.instruction = 0x216f;
+ fast_resolver.FillSourceLineInfo(&frame);
+ ASSERT_EQ(frame.function_name, "Public2_1");
+
+ ClearSourceLineInfo(&frame);
+ frame.instruction = 0x219f;
+ frame.module = &module2;
+ fast_resolver.FillSourceLineInfo(&frame);
+ ASSERT_TRUE(frame.function_name.empty());
+
+ frame.instruction = 0x21a0;
+ frame.module = &module2;
+ fast_resolver.FillSourceLineInfo(&frame);
+ ASSERT_EQ(frame.function_name, "Public2_2");
+}
+
+TEST_F(TestFastSourceLineResolver, TestInvalidLoads) {
+ TestCodeModule module3("module3");
+ ASSERT_FALSE(basic_resolver.LoadModule(&module3,
+ testdata_dir + "/module3_bad.out"));
+ ASSERT_FALSE(basic_resolver.HasModule(&module3));
+ // Convert module3 to fast_module:
+ ASSERT_FALSE(serializer.ConvertOneModule(module3.code_file(),
+ &basic_resolver,
+ &fast_resolver));
+ ASSERT_FALSE(fast_resolver.HasModule(&module3));
+
+ TestCodeModule module4("module4");
+ ASSERT_FALSE(basic_resolver.LoadModule(&module4,
+ testdata_dir + "/module4_bad.out"));
+ ASSERT_FALSE(basic_resolver.HasModule(&module4));
+ // Convert module4 to fast_module:
+ ASSERT_FALSE(serializer.ConvertOneModule(module4.code_file(),
+ &basic_resolver,
+ &fast_resolver));
+ ASSERT_FALSE(fast_resolver.HasModule(&module4));
+
+ TestCodeModule module5("module5");
+ ASSERT_FALSE(fast_resolver.LoadModule(&module5,
+ testdata_dir + "/invalid-filename"));
+ ASSERT_FALSE(fast_resolver.HasModule(&module5));
+
+ TestCodeModule invalidmodule("invalid-module");
+ ASSERT_FALSE(fast_resolver.HasModule(&invalidmodule));
+}
+
+TEST_F(TestFastSourceLineResolver, TestUnload) {
+ TestCodeModule module1("module1");
+ ASSERT_FALSE(basic_resolver.HasModule(&module1));
+
+ ASSERT_TRUE(basic_resolver.LoadModule(&module1, symbol_file(1)));
+ ASSERT_TRUE(basic_resolver.HasModule(&module1));
+ // Convert module1 to fast_module.
+ ASSERT_TRUE(serializer.ConvertOneModule(module1.code_file(),
+ &basic_resolver,
+ &fast_resolver));
+ ASSERT_TRUE(fast_resolver.HasModule(&module1));
+ basic_resolver.UnloadModule(&module1);
+ fast_resolver.UnloadModule(&module1);
+ ASSERT_FALSE(fast_resolver.HasModule(&module1));
+
+ ASSERT_TRUE(basic_resolver.LoadModule(&module1, symbol_file(1)));
+ ASSERT_TRUE(basic_resolver.HasModule(&module1));
+ // Convert module1 to fast_module.
+ ASSERT_TRUE(serializer.ConvertOneModule(module1.code_file(),
+ &basic_resolver,
+ &fast_resolver));
+ ASSERT_TRUE(fast_resolver.HasModule(&module1));
+}
+
+TEST_F(TestFastSourceLineResolver, CompareModule) {
+ char *symbol_data;
+ string symbol_data_string;
+ string filename;
+
+ for (int module_index = 0; module_index < 3; ++module_index) {
+ std::stringstream ss;
+ ss << testdata_dir << "/module" << module_index << ".out";
+ filename = ss.str();
+ ASSERT_TRUE(SourceLineResolverBase::ReadSymbolFile(
+ &symbol_data, symbol_file(module_index)));
+ symbol_data_string = symbol_data;
+ delete symbol_data;
+ ASSERT_TRUE(module_comparer.Compare(symbol_data_string));
+ }
+}
+
+} // namespace
+
+int main(int argc, char *argv[]) {
+ ::testing::InitGoogleTest(&argc, argv);
+ return RUN_ALL_TESTS();
+}
diff --git a/src/processor/module_comparer.cc b/src/processor/module_comparer.cc
new file mode 100644
index 00000000..85605dc3
--- /dev/null
+++ b/src/processor/module_comparer.cc
@@ -0,0 +1,302 @@
+// Copyright (c) 2010, Google Inc.
+// All rights reserved.
+//
+// Redistribution and use in source and binary forms, with or without
+// modification, are permitted provided that the following conditions are
+// met:
+//
+// * Redistributions of source code must retain the above copyright
+// notice, this list of conditions and the following disclaimer.
+// * Redistributions in binary form must reproduce the above
+// copyright notice, this list of conditions and the following disclaimer
+// in the documentation and/or other materials provided with the
+// distribution.
+// * Neither the name of Google Inc. nor the names of its
+// contributors may be used to endorse or promote products derived from
+// this software without specific prior written permission.
+//
+// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+//
+// module_comparer.cc: ModuleComparer implementation.
+// See module_comparer.h for documentation.
+//
+// Author: lambxsy@google.com (Siyang Xie)
+
+#include "processor/module_comparer.h"
+
+#include <map>
+#include <string>
+
+#include "processor/basic_code_module.h"
+#include "processor/logging.h"
+#include "processor/scoped_ptr.h"
+
+#define ASSERT_TRUE(condition) \
+ if (!(condition)) { \
+ BPLOG(ERROR) << "FAIL: " << #condition << " @ " \
+ << __FILE__ << ":" << __LINE__; \
+ return false; \
+ }
+
+#define ASSERT_FALSE(condition) ASSERT_TRUE(!(condition))
+
+namespace google_breakpad {
+
+bool ModuleComparer::Compare(const string &symbol_data) {
+ // Empty CodeModule with only a name "test":
+ BasicCodeModule code_module(0, 0, "test", "", "", "", "");
+
+ // Load BasicSourceLineResolver::Module.
+ BPLOG(INFO) << "Unserialized size = " << symbol_data.size() << " Bytes";
+ basic_resolver_->LoadModuleUsingMapBuffer(&code_module, symbol_data);
+ BasicModule *old_module = dynamic_cast<BasicModule*>(
+ basic_resolver_->modules_->at("test"));
+
+ // Serialize BasicSourceLineResolver::Module.
+ unsigned int serialized_size = 0;
+ char *mem = serializer_.Serialize(*old_module, &serialized_size);
+ ASSERT_TRUE(mem);
+ BPLOG(INFO) << "Serialized size = " << serialized_size << " Bytes";
+
+ // Load FastSourceLineResolver::Module using serialized data.
+ ASSERT_TRUE(fast_resolver_->LoadModuleUsingMemoryBuffer(&code_module, mem));
+ FastModule *new_module = dynamic_cast<FastModule*>(
+ fast_resolver_->modules_->at("test"));
+
+ // Compare FastSourceLineResolver::Module with
+ // BasicSourceLineResolver::Module.
+ ASSERT_TRUE(CompareModule(old_module, new_module));
+
+ // Clean up.
+ basic_resolver_->UnloadModule(&code_module);
+ fast_resolver_->UnloadModule(&code_module);
+
+ return true;
+}
+
+// Traversal the content of module and do comparison
+bool ModuleComparer::CompareModule(const BasicModule *basic_module,
+ const FastModule *fast_module) const {
+ // Compare name_.
+ ASSERT_TRUE(basic_module->name_ == fast_module->name_);
+
+ // Compare files_:
+ {
+ BasicModule::FileMap::const_iterator iter1 = basic_module->files_.begin();
+ FastModule::FileMap::iterator iter2 = fast_module->files_.begin();
+ while (iter1 != basic_module->files_.end()
+ && iter2 != fast_module->files_.end()) {
+ ASSERT_TRUE(iter1->first == iter2.GetKey());
+ string tmp(iter2.GetValuePtr());
+ ASSERT_TRUE(iter1->second == tmp);
+ ++iter1;
+ ++iter2;
+ }
+ ASSERT_TRUE(iter1 == basic_module->files_.end());
+ ASSERT_TRUE(iter2 == fast_module->files_.end());
+ }
+
+ // Compare functions_:
+ {
+ RangeMap<MemAddr, linked_ptr<BasicFunc> >::MapConstIterator iter1;
+ StaticRangeMap<MemAddr, FastFunc>::MapConstIterator iter2;
+ iter1 = basic_module->functions_.map_.begin();
+ iter2 = fast_module->functions_.map_.begin();
+ while (iter1 != basic_module->functions_.map_.end()
+ && iter2 != fast_module->functions_.map_.end()) {
+ ASSERT_TRUE(iter1->first == iter2.GetKey());
+ ASSERT_TRUE(iter1->second.base() == iter2.GetValuePtr()->base());
+ ASSERT_TRUE(CompareFunction(
+ iter1->second.entry().get(), iter2.GetValuePtr()->entryptr()));
+ ++iter1;
+ ++iter2;
+ }
+ ASSERT_TRUE(iter1 == basic_module->functions_.map_.end());
+ ASSERT_TRUE(iter2 == fast_module->functions_.map_.end());
+ }
+
+ // Compare public_symbols_:
+ {
+ AddressMap<MemAddr, linked_ptr<BasicPubSymbol> >::MapConstIterator iter1;
+ StaticAddressMap<MemAddr, FastPubSymbol>::MapConstIterator iter2;
+ iter1 = basic_module->public_symbols_.map_.begin();
+ iter2 = fast_module->public_symbols_.map_.begin();
+ while (iter1 != basic_module->public_symbols_.map_.end()
+ && iter2 != fast_module->public_symbols_.map_.end()) {
+ ASSERT_TRUE(iter1->first == iter2.GetKey());
+ ASSERT_TRUE(ComparePubSymbol(
+ iter1->second.get(), iter2.GetValuePtr()));
+ ++iter1;
+ ++iter2;
+ }
+ ASSERT_TRUE(iter1 == basic_module->public_symbols_.map_.end());
+ ASSERT_TRUE(iter2 == fast_module->public_symbols_.map_.end());
+ }
+
+ // Compare windows_frame_info_[]:
+ for (int i = 0; i < WindowsFrameInfo::STACK_INFO_LAST; ++i) {
+ ASSERT_TRUE(CompareCRM(&(basic_module->windows_frame_info_[i]),
+ &(fast_module->windows_frame_info_[i])));
+ }
+
+ // Compare cfi_initial_rules_:
+ {
+ RangeMap<MemAddr, string>::MapConstIterator iter1;
+ StaticRangeMap<MemAddr, char>::MapConstIterator iter2;
+ iter1 = basic_module->cfi_initial_rules_.map_.begin();
+ iter2 = fast_module->cfi_initial_rules_.map_.begin();
+ while (iter1 != basic_module->cfi_initial_rules_.map_.end()
+ && iter2 != fast_module->cfi_initial_rules_.map_.end()) {
+ ASSERT_TRUE(iter1->first == iter2.GetKey());
+ ASSERT_TRUE(iter1->second.base() == iter2.GetValuePtr()->base());
+ string tmp(iter2.GetValuePtr()->entryptr());
+ ASSERT_TRUE(iter1->second.entry() == tmp);
+ ++iter1;
+ ++iter2;
+ }
+ ASSERT_TRUE(iter1 == basic_module->cfi_initial_rules_.map_.end());
+ ASSERT_TRUE(iter2 == fast_module->cfi_initial_rules_.map_.end());
+ }
+
+ // Compare cfi_delta_rules_:
+ {
+ map<MemAddr, string>::const_iterator iter1;
+ StaticMap<MemAddr, char>::iterator iter2;
+ iter1 = basic_module->cfi_delta_rules_.begin();
+ iter2 = fast_module->cfi_delta_rules_.begin();
+ while (iter1 != basic_module->cfi_delta_rules_.end()
+ && iter2 != fast_module->cfi_delta_rules_.end()) {
+ ASSERT_TRUE(iter1->first == iter2.GetKey());
+ string tmp(iter2.GetValuePtr());
+ ASSERT_TRUE(iter1->second == tmp);
+ ++iter1;
+ ++iter2;
+ }
+ ASSERT_TRUE(iter1 == basic_module->cfi_delta_rules_.end());
+ ASSERT_TRUE(iter2 == fast_module->cfi_delta_rules_.end());
+ }
+
+ return true;
+}
+
+bool ModuleComparer::CompareFunction(const BasicFunc *basic_func,
+ const FastFunc *fast_func_raw) const {
+ FastFunc* fast_func = new FastFunc();
+ fast_func->CopyFrom(fast_func_raw);
+ ASSERT_TRUE(basic_func->name == fast_func->name);
+ ASSERT_TRUE(basic_func->address == fast_func->address);
+ ASSERT_TRUE(basic_func->size == fast_func->size);
+
+ // compare range map of lines:
+ RangeMap<MemAddr, linked_ptr<BasicLine> >::MapConstIterator iter1;
+ StaticRangeMap<MemAddr, FastLine>::MapConstIterator iter2;
+ iter1 = basic_func->lines.map_.begin();
+ iter2 = fast_func->lines.map_.begin();
+ while (iter1 != basic_func->lines.map_.end()
+ && iter2 != fast_func->lines.map_.end()) {
+ ASSERT_TRUE(iter1->first == iter2.GetKey());
+ ASSERT_TRUE(iter1->second.base() == iter2.GetValuePtr()->base());
+ ASSERT_TRUE(CompareLine(iter1->second.entry().get(),
+ iter2.GetValuePtr()->entryptr()));
+ ++iter1;
+ ++iter2;
+ }
+ ASSERT_TRUE(iter1 == basic_func->lines.map_.end());
+ ASSERT_TRUE(iter2 == fast_func->lines.map_.end());
+
+ delete fast_func;
+ return true;
+}
+
+bool ModuleComparer::CompareLine(const BasicLine *basic_line,
+ const FastLine *fast_line_raw) const {
+ FastLine *fast_line = new FastLine;
+ fast_line->CopyFrom(fast_line_raw);
+
+ ASSERT_TRUE(basic_line->address == fast_line->address);
+ ASSERT_TRUE(basic_line->size == fast_line->size);
+ ASSERT_TRUE(basic_line->source_file_id == fast_line->source_file_id);
+ ASSERT_TRUE(basic_line->line == fast_line->line);
+
+ delete fast_line;
+ return true;
+}
+
+bool ModuleComparer::ComparePubSymbol(const BasicPubSymbol* basic_ps,
+ const FastPubSymbol* fastps_raw) const {
+ FastPubSymbol *fast_ps = new FastPubSymbol;
+ fast_ps->CopyFrom(fastps_raw);
+ ASSERT_TRUE(basic_ps->name == fast_ps->name);
+ ASSERT_TRUE(basic_ps->address == fast_ps->address);
+ ASSERT_TRUE(basic_ps->parameter_size == fast_ps->parameter_size);
+ delete fast_ps;
+ return true;
+}
+
+bool ModuleComparer::CompareWFI(const WindowsFrameInfo& wfi1,
+ const WindowsFrameInfo& wfi2) const {
+ ASSERT_TRUE(wfi1.valid == wfi2.valid);
+ ASSERT_TRUE(wfi1.prolog_size == wfi2.prolog_size);
+ ASSERT_TRUE(wfi1.epilog_size == wfi2.epilog_size);
+ ASSERT_TRUE(wfi1.parameter_size == wfi2.parameter_size);
+ ASSERT_TRUE(wfi1.saved_register_size == wfi2.saved_register_size);
+ ASSERT_TRUE(wfi1.local_size == wfi2.local_size);
+ ASSERT_TRUE(wfi1.max_stack_size == wfi2.max_stack_size);
+ ASSERT_TRUE(wfi1.allocates_base_pointer == wfi2.allocates_base_pointer);
+ ASSERT_TRUE(wfi1.program_string == wfi2.program_string);
+ return true;
+}
+
+// Compare ContainedRangeMap
+bool ModuleComparer::CompareCRM(
+ const ContainedRangeMap<MemAddr, linked_ptr<WFI> >* basic_crm,
+ const StaticContainedRangeMap<MemAddr, char>* fast_crm) const {
+ ASSERT_TRUE(basic_crm->base_ == fast_crm->base_);
+
+ if (!basic_crm->entry_.get() || !fast_crm->entry_ptr_) {
+ // empty entry:
+ ASSERT_TRUE(!basic_crm->entry_.get() && !fast_crm->entry_ptr_);
+ } else {
+ WFI newwfi;
+ newwfi.CopyFrom(fast_resolver_->CopyWFI(fast_crm->entry_ptr_));
+ ASSERT_TRUE(CompareWFI(*(basic_crm->entry_.get()), newwfi));
+ }
+
+ if ((!basic_crm->map_ || basic_crm->map_->empty())
+ || fast_crm->map_.empty()) {
+ ASSERT_TRUE((!basic_crm->map_ || basic_crm->map_->empty())
+ && fast_crm->map_.empty());
+ } else {
+ ContainedRangeMap<MemAddr, linked_ptr<WFI> >::MapConstIterator iter1;
+ StaticContainedRangeMap<MemAddr, char>::MapConstIterator iter2;
+ iter1 = basic_crm->map_->begin();
+ iter2 = fast_crm->map_.begin();
+ while (iter1 != basic_crm->map_->end()
+ && iter2 != fast_crm->map_.end()) {
+ ASSERT_TRUE(iter1->first == iter2.GetKey());
+ StaticContainedRangeMap<MemAddr, char> *child =
+ new StaticContainedRangeMap<MemAddr, char>(
+ reinterpret_cast<const char*>(iter2.GetValuePtr()));
+ ASSERT_TRUE(CompareCRM(iter1->second, child));
+ delete child;
+ ++iter1;
+ ++iter2;
+ }
+ ASSERT_TRUE(iter1 == basic_crm->map_->end());
+ ASSERT_TRUE(iter2 == fast_crm->map_.end());
+ }
+
+ return true;
+}
+
+} // namespace google_breakpad
diff --git a/src/processor/module_comparer.h b/src/processor/module_comparer.h
new file mode 100644
index 00000000..fcbd5177
--- /dev/null
+++ b/src/processor/module_comparer.h
@@ -0,0 +1,98 @@
+// Copyright (c) 2010, Google Inc.
+// All rights reserved.
+//
+// Redistribution and use in source and binary forms, with or without
+// modification, are permitted provided that the following conditions are
+// met:
+//
+// * Redistributions of source code must retain the above copyright
+// notice, this list of conditions and the following disclaimer.
+// * Redistributions in binary form must reproduce the above
+// copyright notice, this list of conditions and the following disclaimer
+// in the documentation and/or other materials provided with the
+// distribution.
+// * Neither the name of Google Inc. nor the names of its
+// contributors may be used to endorse or promote products derived from
+// this software without specific prior written permission.
+//
+// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+//
+// module_comparer.h: ModuleComparer reads a string format of symbol file, and
+// loads the symbol into both BasicSourceLineResolver::Module and
+// FastSourceLineResolve::Module. It then traverses both Modules and compare
+// the content of data to verify the correctness of new fast module.
+// ModuleCompare class is a tool to verify correctness of a loaded
+// FastSourceLineResolver::Module instance, i.e., in-memory representation of
+// parsed symbol. ModuleComparer class should be used for testing purpose only,
+// e.g., in fast_source_line_resolver_unittest.
+//
+// Author: lambxsy@google.com (Siyang Xie)
+
+#ifndef PROCESSOR_MODULE_COMPARER_H__
+#define PROCESSOR_MODULE_COMPARER_H__
+
+#include <string>
+
+#include "processor/basic_source_line_resolver_types.h"
+#include "processor/fast_source_line_resolver_types.h"
+#include "processor/module_serializer.h"
+#include "processor/windows_frame_info.h"
+
+namespace google_breakpad {
+
+class ModuleComparer {
+ public:
+ ModuleComparer(): fast_resolver_(new FastSourceLineResolver),
+ basic_resolver_(new BasicSourceLineResolver) { }
+ ~ModuleComparer() {
+ delete fast_resolver_;
+ delete basic_resolver_;
+ }
+
+ // BasicSourceLineResolver loads its module using the symbol data,
+ // ModuleSerializer serialize the loaded module into a memory chunk,
+ // FastSourceLineResolver loads its module using the serialized memory chunk,
+ // Then, traverse both modules together and compare underlying data
+ // return true if both modules contain exactly same data.
+ bool Compare(const string &symbol_data);
+
+ private:
+ typedef BasicSourceLineResolver::Module BasicModule;
+ typedef FastSourceLineResolver::Module FastModule;
+ typedef BasicSourceLineResolver::Function BasicFunc;
+ typedef FastSourceLineResolver::Function FastFunc;
+ typedef BasicSourceLineResolver::Line BasicLine;
+ typedef FastSourceLineResolver::Line FastLine;
+ typedef BasicSourceLineResolver::PublicSymbol BasicPubSymbol;
+ typedef FastSourceLineResolver::PublicSymbol FastPubSymbol;
+ typedef WindowsFrameInfo WFI;
+
+ bool CompareModule(const BasicModule *oldmodule,
+ const FastModule *newmodule) const;
+ bool CompareFunction(const BasicFunc *oldfunc, const FastFunc *newfunc) const;
+ bool CompareLine(const BasicLine *oldline, const FastLine *newline) const;
+ bool ComparePubSymbol(const BasicPubSymbol*, const FastPubSymbol*) const;
+ bool CompareWFI(const WindowsFrameInfo&, const WindowsFrameInfo&) const;
+
+ // Compare ContainedRangeMap
+ bool CompareCRM(const ContainedRangeMap<MemAddr, linked_ptr<WFI> >*,
+ const StaticContainedRangeMap<MemAddr, char>*) const;
+
+ FastSourceLineResolver *fast_resolver_;
+ BasicSourceLineResolver *basic_resolver_;
+ ModuleSerializer serializer_;
+};
+
+} // namespace google_breakpad
+
+#endif // PROCESSOR_MODULE_COMPARER_H__
diff --git a/src/processor/module_factory.h b/src/processor/module_factory.h
index e0e528e5..7aa7caa5 100644
--- a/src/processor/module_factory.h
+++ b/src/processor/module_factory.h
@@ -36,8 +36,9 @@
#ifndef PROCESSOR_MODULE_FACTORY_H__
#define PROCESSOR_MODULE_FACTORY_H__
-#include "processor/source_line_resolver_base_types.h"
#include "processor/basic_source_line_resolver_types.h"
+#include "processor/fast_source_line_resolver_types.h"
+#include "processor/source_line_resolver_base_types.h"
namespace google_breakpad {
@@ -57,6 +58,15 @@ class BasicModuleFactory : public ModuleFactory {
}
};
+class FastModuleFactory : public ModuleFactory {
+ public:
+ virtual ~FastModuleFactory() { }
+ virtual FastSourceLineResolver::Module* CreateModule(
+ const string &name) const {
+ return new FastSourceLineResolver::Module(name);
+ }
+};
+
} // namespace google_breakpad
#endif // PROCESSOR_MODULE_FACTORY_H__
diff --git a/src/processor/range_map.h b/src/processor/range_map.h
index bf6dee17..2572e492 100644
--- a/src/processor/range_map.h
+++ b/src/processor/range_map.h
@@ -96,6 +96,7 @@ class RangeMap {
private:
// Friend declarations.
+ friend class ModuleComparer;
friend class RangeMapSerializer<AddressType, EntryType>;
class Range {
diff --git a/src/processor/static_contained_range_map-inl.h b/src/processor/static_contained_range_map-inl.h
index 57bfbcb5..46f9bbb5 100644
--- a/src/processor/static_contained_range_map-inl.h
+++ b/src/processor/static_contained_range_map-inl.h
@@ -50,7 +50,6 @@ StaticContainedRangeMap<AddressType, EntryType>::StaticContainedRangeMap(
entry_ptr_(reinterpret_cast<const EntryType *>(
base + sizeof(base_) + sizeof(entry_size_))),
map_(base + sizeof(base_) + sizeof(entry_size_) + entry_size_) {
-
if (entry_size_ == 0)
entry_ptr_ = NULL;
}
diff --git a/src/processor/static_map_unittest.cc b/src/processor/static_map_unittest.cc
index 4172cac7..eb1e1354 100644
--- a/src/processor/static_map_unittest.cc
+++ b/src/processor/static_map_unittest.cc
@@ -314,7 +314,7 @@ class TestValidMap : public ::testing::Test {
TEST_F(TestValidMap, TestEmptyMap) {
int test_case = 0;
// Assert memory size allocated during serialization is correct.
- ASSERT_EQ(correct_size[test_case], size[test_case]);;
+ ASSERT_EQ(correct_size[test_case], size[test_case]);
// Sanity check of serialized data:
ASSERT_TRUE(test_map[test_case].ValidateInMemoryStructure());
@@ -365,7 +365,7 @@ TEST_F(TestValidMap, Test100Elements) {
TEST_F(TestValidMap, Test1000RandomElements) {
int test_case = 3;
// Assert memory size allocated during serialization is correct.
- ASSERT_EQ(correct_size[test_case], size[test_case]);;
+ ASSERT_EQ(correct_size[test_case], size[test_case]);
// Sanity check of serialized data:
ASSERT_TRUE(test_map[test_case].ValidateInMemoryStructure());
diff --git a/src/processor/testdata/module0.out b/src/processor/testdata/module0.out
new file mode 100644
index 00000000..72fb4daa
--- /dev/null
+++ b/src/processor/testdata/module0.out
@@ -0,0 +1,22151 @@
+MODULE windows x86 5A9832E5287241C1838ED98914E9B7FF1 test_app.pdb
+FILE 1 c:\program files\microsoft visual studio 8\vc\platformsdk\include\winbase.h
+FILE 2 c:\program files\microsoft visual studio 8\vc\include\typeinfo
+FILE 3 c:\breakpad\trunk\src\common\windows\guid_string.h
+FILE 4 c:\program files\microsoft visual studio 8\vc\platformsdk\include\rpcdce.h
+FILE 5 c:\program files\microsoft visual studio 8\vc\platformsdk\include\winreg.h
+FILE 6 c:\program files\microsoft visual studio 8\vc\platformsdk\include\objidl.h
+FILE 7 c:\program files\microsoft visual studio 8\vc\platformsdk\include\wtypes.h
+FILE 8 c:\program files\microsoft visual studio 8\vc\platformsdk\include\tvout.h
+FILE 9 c:\program files\microsoft visual studio 8\vc\include\malloc.h
+FILE 10 c:\program files\microsoft visual studio 8\vc\platformsdk\include\pshpack2.h
+FILE 11 c:\program files\microsoft visual studio 8\vc\platformsdk\include\winuser.h
+FILE 12 c:\breakpad\trunk\src\client\windows\handler\exception_handler.cc
+FILE 13 c:\program files\microsoft visual studio 8\vc\platformsdk\include\urlmon.h
+FILE 14 c:\program files\microsoft visual studio 8\vc\platformsdk\include\wincon.h
+FILE 15 c:\program files\microsoft visual studio 8\vc\platformsdk\include\imm.h
+FILE 16 c:\program files\microsoft visual studio 8\vc\platformsdk\include\rpcdcep.h
+FILE 17 c:\program files\microsoft visual studio 8\vc\include\xstring
+FILE 18 c:\program files\microsoft visual studio 8\vc\platformsdk\include\winver.h
+FILE 19 c:\program files\microsoft visual studio 8\vc\include\xmemory
+FILE 20 c:\program files\microsoft visual studio 8\vc\include\new
+FILE 21 c:\program files\microsoft visual studio 8\vc\platformsdk\include\pshpack4.h
+FILE 22 c:\program files\microsoft visual studio 8\vc\platformsdk\include\reason.h
+FILE 23 c:\program files\microsoft visual studio 8\vc\include\vector
+FILE 24 c:\program files\microsoft visual studio 8\vc\include\memory
+FILE 25 c:\program files\microsoft visual studio 8\vc\include\wtime.inl
+FILE 26 c:\program files\microsoft visual studio 8\vc\include\iterator
+FILE 27 c:\program files\microsoft visual studio 8\vc\platformsdk\include\propidl.h
+FILE 28 c:\program files\microsoft visual studio 8\vc\platformsdk\include\pshpack1.h
+FILE 29 c:\program files\microsoft visual studio 8\vc\platformsdk\include\specstrings.h
+FILE 30 c:\program files\microsoft visual studio 8\vc\platformsdk\include\basetsd.h
+FILE 31 c:\program files\microsoft visual studio 8\vc\platformsdk\include\winerror.h
+FILE 32 c:\program files\microsoft visual studio 8\vc\include\assert.h
+FILE 33 c:\program files\microsoft visual studio 8\vc\platformsdk\include\poppack.h
+FILE 34 c:\program files\microsoft visual studio 8\vc\include\cstdio
+FILE 35 c:\program files\microsoft visual studio 8\vc\include\stdio.h
+FILE 36 c:\program files\microsoft visual studio 8\vc\platformsdk\include\rpcnterr.h
+FILE 37 c:\program files\microsoft visual studio 8\vc\platformsdk\include\rpcasync.h
+FILE 38 c:\program files\microsoft visual studio 8\vc\platformsdk\include\rpcnsi.h
+FILE 39 c:\program files\microsoft visual studio 8\vc\include\stdlib.h
+FILE 40 c:\program files\microsoft visual studio 8\vc\platformsdk\include\servprov.h
+FILE 41 c:\program files\microsoft visual studio 8\vc\include\limits.h
+FILE 42 c:\program files\microsoft visual studio 8\vc\platformsdk\include\rpcndr.h
+FILE 43 c:\breakpad\trunk\src\client\windows\handler\exception_handler.h
+FILE 44 c:\program files\microsoft visual studio 8\vc\platformsdk\include\rpcnsip.h
+FILE 45 c:\program files\microsoft visual studio 8\vc\platformsdk\include\dbghelp.h
+FILE 46 c:\program files\microsoft visual studio 8\vc\platformsdk\include\winnetwk.h
+FILE 47 c:\program files\microsoft visual studio 8\vc\include\share.h
+FILE 48 c:\program files\microsoft visual studio 8\vc\platformsdk\include\pshpack8.h
+FILE 49 c:\program files\microsoft visual studio 8\vc\platformsdk\include\stralign.h
+FILE 50 c:\breakpad\trunk\src\google_breakpad\common\minidump_format.h
+FILE 51 c:\breakpad\trunk\src\google_breakpad\common\breakpad_types.h
+FILE 52 c:\program files\microsoft visual studio 8\vc\include\xdebug
+FILE 53 c:\program files\microsoft visual studio 8\vc\include\stdarg.h
+FILE 54 c:\program files\microsoft visual studio 8\vc\platformsdk\include\windef.h
+FILE 55 c:\program files\microsoft visual studio 8\vc\platformsdk\include\winsvc.h
+FILE 56 c:\program files\microsoft visual studio 8\vc\platformsdk\include\wingdi.h
+FILE 57 c:\program files\microsoft visual studio 8\vc\include\xlocinfo
+FILE 58 c:\program files\microsoft visual studio 8\vc\include\xlocinfo.h
+FILE 59 c:\program files\microsoft visual studio 8\vc\platformsdk\include\oleidl.h
+FILE 60 c:\program files\microsoft visual studio 8\vc\include\locale.h
+FILE 61 c:\program files\microsoft visual studio 8\vc\include\string
+FILE 62 c:\program files\microsoft visual studio 8\vc\include\istream
+FILE 63 c:\breakpad\trunk\src\common\windows\string_utils-inl.h
+FILE 64 c:\program files\microsoft visual studio 8\vc\include\ostream
+FILE 65 c:\program files\microsoft visual studio 8\vc\include\xutility
+FILE 66 c:\program files\microsoft visual studio 8\vc\include\wchar.h
+FILE 67 c:\program files\microsoft visual studio 8\vc\include\utility
+FILE 68 c:\program files\microsoft visual studio 8\vc\include\ios
+FILE 69 c:\program files\microsoft visual studio 8\vc\include\xlocnum
+FILE 70 c:\program files\microsoft visual studio 8\vc\include\iosfwd
+FILE 71 c:\program files\microsoft visual studio 8\vc\include\swprintf.inl
+FILE 72 c:\program files\microsoft visual studio 8\vc\platformsdk\include\guiddef.h
+FILE 73 c:\program files\microsoft visual studio 8\vc\include\cwchar
+FILE 74 c:\program files\microsoft visual studio 8\vc\include\climits
+FILE 75 c:\program files\microsoft visual studio 8\vc\include\crtdbg.h
+FILE 76 c:\program files\microsoft visual studio 8\vc\include\cstdlib
+FILE 77 c:\program files\microsoft visual studio 8\vc\include\streambuf
+FILE 78 c:\program files\microsoft visual studio 8\vc\include\xiosbase
+FILE 79 c:\program files\microsoft visual studio 8\vc\include\xlocale
+FILE 80 c:\program files\microsoft visual studio 8\vc\include\cstring
+FILE 81 c:\program files\microsoft visual studio 8\vc\platformsdk\include\mcx.h
+FILE 82 c:\program files\microsoft visual studio 8\vc\include\stdexcept
+FILE 83 c:\program files\microsoft visual studio 8\vc\include\exception
+FILE 84 c:\program files\microsoft visual studio 8\vc\include\xstddef
+FILE 85 c:\program files\microsoft visual studio 8\vc\platformsdk\include\objbase.h
+FILE 86 c:\program files\microsoft visual studio 8\vc\include\cstddef
+FILE 87 c:\program files\microsoft visual studio 8\vc\platformsdk\include\unknwn.h
+FILE 88 c:\program files\microsoft visual studio 8\vc\platformsdk\include\rpc.h
+FILE 89 c:\program files\microsoft visual studio 8\vc\include\stddef.h
+FILE 90 c:\program files\microsoft visual studio 8\vc\include\cassert
+FILE 91 c:\program files\microsoft visual studio 8\vc\platformsdk\include\ole2.h
+FILE 92 c:\program files\microsoft visual studio 8\vc\platformsdk\include\windows.h
+FILE 93 c:\program files\microsoft visual studio 8\vc\include\yvals.h
+FILE 94 c:\program files\microsoft visual studio 8\vc\platformsdk\include\oleauto.h
+FILE 95 c:\program files\microsoft visual studio 8\vc\include\excpt.h
+FILE 96 c:\program files\microsoft visual studio 8\vc\include\use_ansi.h
+FILE 97 c:\program files\microsoft visual studio 8\vc\platformsdk\include\cguid.h
+FILE 98 c:\program files\microsoft visual studio 8\vc\include\crtdefs.h
+FILE 99 c:\program files\microsoft visual studio 8\vc\platformsdk\include\msxml.h
+FILE 100 c:\program files\microsoft visual studio 8\vc\platformsdk\include\oaidl.h
+FILE 101 c:\program files\microsoft visual studio 8\vc\include\sal.h
+FILE 102 c:\program files\microsoft visual studio 8\vc\include\vadefs.h
+FILE 103 c:\program files\microsoft visual studio 8\vc\platformsdk\include\winnt.h
+FILE 104 c:\program files\microsoft visual studio 8\vc\include\ctype.h
+FILE 105 c:\program files\microsoft visual studio 8\vc\include\eh.h
+FILE 106 c:\program files\microsoft visual studio 8\vc\platformsdk\include\winnls.h
+FILE 107 c:\program files\microsoft visual studio 8\vc\include\string.h
+FILE 108 c:\program files\microsoft visual studio 8\vc\include\ctype.h
+FILE 109 c:\program files\microsoft visual studio 8\vc\include\xutility
+FILE 110 c:\program files\microsoft visual studio 8\vc\include\utility
+FILE 111 c:\program files\microsoft visual studio 8\vc\include\iosfwd
+FILE 112 c:\program files\microsoft visual studio 8\vc\include\cwchar
+FILE 113 c:\program files\microsoft visual studio 8\vc\include\crtdbg.h
+FILE 114 c:\program files\microsoft visual studio 8\vc\include\stdexcept
+FILE 115 c:\program files\microsoft visual studio 8\vc\include\exception
+FILE 116 c:\program files\microsoft visual studio 8\vc\include\xstddef
+FILE 117 c:\program files\microsoft visual studio 8\vc\include\cstddef
+FILE 118 c:\program files\microsoft visual studio 8\vc\include\stddef.h
+FILE 119 c:\program files\microsoft visual studio 8\vc\include\eh.h
+FILE 120 c:\program files\microsoft visual studio 8\vc\include\streambuf
+FILE 121 c:\program files\microsoft visual studio 8\vc\include\xiosbase
+FILE 122 c:\program files\microsoft visual studio 8\vc\include\xlocale
+FILE 123 c:\program files\microsoft visual studio 8\vc\include\cstring
+FILE 124 c:\program files\microsoft visual studio 8\vc\include\string.h
+FILE 125 c:\program files\microsoft visual studio 8\vc\include\typeinfo
+FILE 126 c:\breakpad\trunk\src\common\windows\guid_string.cc
+FILE 127 c:\breakpad\trunk\src\common\windows\string_utils-inl.h
+FILE 128 c:\program files\microsoft visual studio 8\vc\include\stdarg.h
+FILE 129 c:\program files\microsoft visual studio 8\vc\include\string
+FILE 130 c:\program files\microsoft visual studio 8\vc\include\istream
+FILE 131 c:\program files\microsoft visual studio 8\vc\include\ostream
+FILE 132 c:\program files\microsoft visual studio 8\vc\include\ios
+FILE 133 c:\program files\microsoft visual studio 8\vc\include\xlocnum
+FILE 134 c:\program files\microsoft visual studio 8\vc\include\climits
+FILE 135 c:\program files\microsoft visual studio 8\vc\include\yvals.h
+FILE 136 c:\program files\microsoft visual studio 8\vc\include\use_ansi.h
+FILE 137 c:\program files\microsoft visual studio 8\vc\include\cstdlib
+FILE 138 c:\program files\microsoft visual studio 8\vc\include\stdlib.h
+FILE 139 c:\program files\microsoft visual studio 8\vc\include\malloc.h
+FILE 140 c:\breakpad\trunk\src\common\windows\guid_string.h
+FILE 141 c:\program files\microsoft visual studio 8\vc\platformsdk\include\guiddef.h
+FILE 142 c:\program files\microsoft visual studio 8\vc\include\share.h
+FILE 143 c:\program files\microsoft visual studio 8\vc\include\xstring
+FILE 144 c:\program files\microsoft visual studio 8\vc\include\xmemory
+FILE 145 c:\program files\microsoft visual studio 8\vc\include\new
+FILE 146 c:\program files\microsoft visual studio 8\vc\include\locale.h
+FILE 147 c:\program files\microsoft visual studio 8\vc\include\swprintf.inl
+FILE 148 c:\program files\microsoft visual studio 8\vc\include\limits.h
+FILE 149 c:\program files\microsoft visual studio 8\vc\include\wchar.h
+FILE 150 c:\program files\microsoft visual studio 8\vc\include\cstdio
+FILE 151 c:\program files\microsoft visual studio 8\vc\include\crtdefs.h
+FILE 152 c:\program files\microsoft visual studio 8\vc\include\stdio.h
+FILE 153 c:\program files\microsoft visual studio 8\vc\include\wtime.inl
+FILE 154 c:\program files\microsoft visual studio 8\vc\include\sal.h
+FILE 155 c:\program files\microsoft visual studio 8\vc\include\xdebug
+FILE 156 c:\program files\microsoft visual studio 8\vc\include\vadefs.h
+FILE 157 c:\program files\microsoft visual studio 8\vc\include\xlocinfo
+FILE 158 c:\program files\microsoft visual studio 8\vc\include\xlocinfo.h
+FILE 159 c:\program files\microsoft visual studio 8\vc\platformsdk\include\winnetwk.h
+FILE 160 c:\program files\microsoft visual studio 8\vc\platformsdk\include\urlmon.h
+FILE 161 c:\program files\microsoft visual studio 8\vc\platformsdk\include\pshpack8.h
+FILE 162 c:\program files\microsoft visual studio 8\vc\platformsdk\include\cderr.h
+FILE 163 c:\program files\microsoft visual studio 8\vc\platformsdk\include\shellapi.h
+FILE 164 c:\program files\microsoft visual studio 8\vc\platformsdk\include\dde.h
+FILE 165 c:\program files\microsoft visual studio 8\vc\include\vector
+FILE 166 c:\program files\microsoft visual studio 8\vc\include\stdio.h
+FILE 167 c:\program files\microsoft visual studio 8\vc\include\memory
+FILE 168 c:\program files\microsoft visual studio 8\vc\include\iterator
+FILE 169 c:\program files\microsoft visual studio 8\vc\include\malloc.h
+FILE 170 c:\program files\microsoft visual studio 8\vc\include\stdarg.h
+FILE 171 c:\program files\microsoft visual studio 8\vc\platformsdk\include\windef.h
+FILE 172 c:\program files\microsoft visual studio 8\vc\platformsdk\include\wingdi.h
+FILE 173 c:\program files\microsoft visual studio 8\vc\platformsdk\include\imm.h
+FILE 174 c:\program files\microsoft visual studio 8\vc\platformsdk\include\mmsystem.h
+FILE 175 c:\program files\microsoft visual studio 8\vc\platformsdk\include\winioctl.h
+FILE 176 c:\program files\microsoft visual studio 8\vc\platformsdk\include\guiddef.h
+FILE 177 c:\program files\microsoft visual studio 8\vc\platformsdk\include\winsmcrd.h
+FILE 178 c:\test_app.cc
+FILE 179 c:\program files\microsoft visual studio 8\vc\platformsdk\include\oaidl.h
+FILE 180 c:\program files\microsoft visual studio 8\vc\platformsdk\include\nb30.h
+FILE 181 c:\program files\microsoft visual studio 8\vc\include\xstring
+FILE 182 c:\program files\microsoft visual studio 8\vc\include\xmemory
+FILE 183 c:\program files\microsoft visual studio 8\vc\include\new
+FILE 184 c:\program files\microsoft visual studio 8\vc\platformsdk\include\oleidl.h
+FILE 185 c:\program files\microsoft visual studio 8\vc\platformsdk\include\winnls.h
+FILE 186 c:\breakpad\trunk\src\google_breakpad\common\minidump_format.h
+FILE 187 c:\program files\microsoft visual studio 8\vc\include\string.h
+FILE 188 c:\breakpad\trunk\src\google_breakpad\common\breakpad_types.h
+FILE 189 c:\program files\microsoft visual studio 8\vc\platformsdk\include\winnt.h
+FILE 190 c:\program files\microsoft visual studio 8\vc\include\ctype.h
+FILE 191 c:\program files\microsoft visual studio 8\vc\include\wtime.inl
+FILE 192 c:\program files\microsoft visual studio 8\vc\platformsdk\include\winbase.h
+FILE 193 c:\program files\microsoft visual studio 8\vc\platformsdk\include\propidl.h
+FILE 194 c:\breakpad\trunk\src\client\windows\handler\exception_handler.h
+FILE 195 c:\program files\microsoft visual studio 8\vc\include\stdlib.h
+FILE 196 c:\program files\microsoft visual studio 8\vc\include\swprintf.inl
+FILE 197 c:\program files\microsoft visual studio 8\vc\include\limits.h
+FILE 198 c:\program files\microsoft visual studio 8\vc\platformsdk\include\winreg.h
+FILE 199 c:\program files\microsoft visual studio 8\vc\platformsdk\include\rpc.h
+FILE 200 c:\program files\microsoft visual studio 8\vc\platformsdk\include\ole2.h
+FILE 201 c:\program files\microsoft visual studio 8\vc\platformsdk\include\winscard.h
+FILE 202 c:\program files\microsoft visual studio 8\vc\platformsdk\include\objbase.h
+FILE 203 c:\program files\microsoft visual studio 8\vc\platformsdk\include\wtypes.h
+FILE 204 c:\program files\microsoft visual studio 8\vc\platformsdk\include\rpcndr.h
+FILE 205 c:\program files\microsoft visual studio 8\vc\platformsdk\include\rpcdce.h
+FILE 206 c:\program files\microsoft visual studio 8\vc\platformsdk\include\rpcnsip.h
+FILE 207 c:\program files\microsoft visual studio 8\vc\include\share.h
+FILE 208 c:\program files\microsoft visual studio 8\vc\platformsdk\include\tvout.h
+FILE 209 c:\program files\microsoft visual studio 8\vc\include\use_ansi.h
+FILE 210 c:\program files\microsoft visual studio 8\vc\platformsdk\include\winefs.h
+FILE 211 c:\program files\microsoft visual studio 8\vc\platformsdk\include\pshpack2.h
+FILE 212 c:\program files\microsoft visual studio 8\vc\platformsdk\include\commdlg.h
+FILE 213 c:\program files\microsoft visual studio 8\vc\platformsdk\include\unknwn.h
+FILE 214 c:\program files\microsoft visual studio 8\vc\platformsdk\include\winsock.h
+FILE 215 c:\program files\microsoft visual studio 8\vc\platformsdk\include\stralign.h
+FILE 216 c:\program files\microsoft visual studio 8\vc\platformsdk\include\winuser.h
+FILE 217 c:\program files\microsoft visual studio 8\vc\platformsdk\include\servprov.h
+FILE 218 c:\program files\microsoft visual studio 8\vc\include\xdebug
+FILE 219 c:\program files\microsoft visual studio 8\vc\platformsdk\include\winsvc.h
+FILE 220 c:\program files\microsoft visual studio 8\vc\platformsdk\include\wincon.h
+FILE 221 c:\program files\microsoft visual studio 8\vc\include\xlocinfo
+FILE 222 c:\program files\microsoft visual studio 8\vc\include\xlocinfo.h
+FILE 223 c:\program files\microsoft visual studio 8\vc\include\locale.h
+FILE 224 c:\program files\microsoft visual studio 8\vc\platformsdk\include\cguid.h
+FILE 225 c:\program files\microsoft visual studio 8\vc\include\string
+FILE 226 c:\program files\microsoft visual studio 8\vc\platformsdk\include\winver.h
+FILE 227 c:\program files\microsoft visual studio 8\vc\include\istream
+FILE 228 c:\program files\microsoft visual studio 8\vc\include\ostream
+FILE 229 c:\program files\microsoft visual studio 8\vc\include\xutility
+FILE 230 c:\program files\microsoft visual studio 8\vc\platformsdk\include\winperf.h
+FILE 231 c:\program files\microsoft visual studio 8\vc\platformsdk\include\pshpack4.h
+FILE 232 c:\program files\microsoft visual studio 8\vc\include\utility
+FILE 233 c:\program files\microsoft visual studio 8\vc\include\ios
+FILE 234 c:\program files\microsoft visual studio 8\vc\include\xlocnum
+FILE 235 c:\program files\microsoft visual studio 8\vc\include\crtdbg.h
+FILE 236 c:\program files\microsoft visual studio 8\vc\include\iosfwd
+FILE 237 c:\program files\microsoft visual studio 8\vc\platformsdk\include\rpcdcep.h
+FILE 238 c:\program files\microsoft visual studio 8\vc\include\cwchar
+FILE 239 c:\program files\microsoft visual studio 8\vc\include\climits
+FILE 240 c:\program files\microsoft visual studio 8\vc\include\wchar.h
+FILE 241 c:\program files\microsoft visual studio 8\vc\include\cstdlib
+FILE 242 c:\program files\microsoft visual studio 8\vc\platformsdk\include\mcx.h
+FILE 243 c:\program files\microsoft visual studio 8\vc\include\streambuf
+FILE 244 c:\program files\microsoft visual studio 8\vc\include\xiosbase
+FILE 245 c:\program files\microsoft visual studio 8\vc\platformsdk\include\reason.h
+FILE 246 c:\program files\microsoft visual studio 8\vc\include\xlocale
+FILE 247 c:\program files\microsoft visual studio 8\vc\platformsdk\include\dlgs.h
+FILE 248 c:\program files\microsoft visual studio 8\vc\include\cstring
+FILE 249 c:\program files\microsoft visual studio 8\vc\include\stdexcept
+FILE 250 c:\program files\microsoft visual studio 8\vc\platformsdk\include\pshpack1.h
+FILE 251 c:\program files\microsoft visual studio 8\vc\include\exception
+FILE 252 c:\program files\microsoft visual studio 8\vc\include\xstddef
+FILE 253 c:\program files\microsoft visual studio 8\vc\platformsdk\include\specstrings.h
+FILE 254 c:\program files\microsoft visual studio 8\vc\include\cstddef
+FILE 255 c:\program files\microsoft visual studio 8\vc\platformsdk\include\basetsd.h
+FILE 256 c:\program files\microsoft visual studio 8\vc\include\stddef.h
+FILE 257 c:\program files\microsoft visual studio 8\vc\platformsdk\include\winerror.h
+FILE 258 c:\program files\microsoft visual studio 8\vc\platformsdk\include\wincrypt.h
+FILE 259 c:\program files\microsoft visual studio 8\vc\platformsdk\include\poppack.h
+FILE 260 c:\program files\microsoft visual studio 8\vc\platformsdk\include\winspool.h
+FILE 261 c:\program files\microsoft visual studio 8\vc\platformsdk\include\oleauto.h
+FILE 262 c:\program files\microsoft visual studio 8\vc\platformsdk\include\prsht.h
+FILE 263 c:\program files\microsoft visual studio 8\vc\platformsdk\include\objidl.h
+FILE 264 c:\program files\microsoft visual studio 8\vc\include\cstdio
+FILE 265 c:\program files\microsoft visual studio 8\vc\include\yvals.h
+FILE 266 c:\program files\microsoft visual studio 8\vc\include\eh.h
+FILE 267 c:\program files\microsoft visual studio 8\vc\platformsdk\include\lzexpand.h
+FILE 268 c:\program files\microsoft visual studio 8\vc\platformsdk\include\ddeml.h
+FILE 269 c:\program files\microsoft visual studio 8\vc\include\crtdefs.h
+FILE 270 c:\program files\microsoft visual studio 8\vc\include\sal.h
+FILE 271 c:\program files\microsoft visual studio 8\vc\include\vadefs.h
+FILE 272 c:\program files\microsoft visual studio 8\vc\platformsdk\include\dbghelp.h
+FILE 273 c:\program files\microsoft visual studio 8\vc\platformsdk\include\rpcnterr.h
+FILE 274 c:\program files\microsoft visual studio 8\vc\platformsdk\include\rpcasync.h
+FILE 275 c:\program files\microsoft visual studio 8\vc\platformsdk\include\rpcnsi.h
+FILE 276 c:\program files\microsoft visual studio 8\vc\include\typeinfo
+FILE 277 c:\program files\microsoft visual studio 8\vc\platformsdk\include\windows.h
+FILE 278 c:\program files\microsoft visual studio 8\vc\include\excpt.h
+FILE 279 c:\program files\microsoft visual studio 8\vc\platformsdk\include\msxml.h
+FILE 280 f:\sp\vctools\crt_bld\self_x86\crt\src\xdebug
+FILE 281 f:\sp\vctools\crt_bld\self_x86\crt\src\streambuf
+FILE 282 f:\sp\vctools\crt_bld\self_x86\crt\src\xiosbase
+FILE 283 f:\sp\vctools\crt_bld\self_x86\crt\src\xlocale
+FILE 284 f:\sp\vctools\crt_bld\self_x86\crt\src\cstring
+FILE 285 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 286 f:\sp\vctools\crt_bld\self_x86\crt\src\xlocinfo
+FILE 287 f:\sp\vctools\crt_bld\self_x86\crt\src\xlocinfo.h
+FILE 288 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 289 f:\sp\vctools\crt_bld\self_x86\crt\src\share.h
+FILE 290 f:\sp\vctools\crt_bld\self_x86\crt\src\use_ansi.h
+FILE 291 f:\sp\vctools\crt_bld\self_x86\crt\src\string.cpp
+FILE 292 f:\sp\vctools\crt_bld\self_x86\crt\src\typeinfo
+FILE 293 f:\sp\vctools\crt_bld\self_x86\crt\src\xutility
+FILE 294 f:\sp\vctools\crt_bld\self_x86\crt\src\utility
+FILE 295 f:\sp\vctools\crt_bld\self_x86\crt\src\iosfwd
+FILE 296 f:\sp\vctools\crt_bld\self_x86\crt\src\cwchar
+FILE 297 f:\sp\vctools\crt_bld\self_x86\crt\src\wchar.h
+FILE 298 f:\sp\vctools\crt_bld\self_x86\crt\src\stdexcept
+FILE 299 f:\sp\vctools\crt_bld\self_x86\crt\src\exception
+FILE 300 f:\sp\vctools\crt_bld\self_x86\crt\src\xstddef
+FILE 301 f:\sp\vctools\crt_bld\self_x86\crt\src\cstddef
+FILE 302 f:\sp\vctools\crt_bld\self_x86\crt\src\stddef.h
+FILE 303 f:\sp\vctools\crt_bld\self_x86\crt\src\istream
+FILE 304 f:\sp\vctools\crt_bld\self_x86\crt\src\ostream
+FILE 305 f:\sp\vctools\crt_bld\self_x86\crt\src\ios
+FILE 306 f:\sp\vctools\crt_bld\self_x86\crt\src\xlocnum
+FILE 307 f:\sp\vctools\crt_bld\self_x86\crt\src\eh.h
+FILE 308 f:\sp\vctools\crt_bld\self_x86\crt\src\cstdlib
+FILE 309 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 310 f:\sp\vctools\crt_bld\self_x86\crt\src\climits
+FILE 311 f:\sp\vctools\crt_bld\self_x86\crt\src\yvals.h
+FILE 312 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 313 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 314 f:\sp\vctools\crt_bld\self_x86\crt\src\wtime.inl
+FILE 315 f:\sp\vctools\crt_bld\self_x86\crt\src\swprintf.inl
+FILE 316 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 317 f:\sp\vctools\crt_bld\self_x86\crt\src\cstdio
+FILE 318 f:\sp\vctools\crt_bld\self_x86\crt\src\stdio.h
+FILE 319 f:\sp\vctools\crt_bld\self_x86\crt\src\malloc.h
+FILE 320 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 321 f:\sp\vctools\crt_bld\self_x86\crt\src\locale.h
+FILE 322 f:\sp\public\sdk\inc\ddbanned.h
+FILE 323 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 324 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 325 f:\sp\vctools\crt_bld\self_x86\crt\src\xstring
+FILE 326 f:\sp\vctools\crt_bld\self_x86\crt\src\xmemory
+FILE 327 f:\sp\vctools\crt_bld\self_x86\crt\src\new
+FILE 328 f:\sp\public\sdk\inc\reason.h
+FILE 329 f:\sp\public\sdk\inc\wincon.h
+FILE 330 f:\sp\public\sdk\inc\pshpack2.h
+FILE 331 f:\sp\public\sdk\inc\mcx.h
+FILE 332 f:\sp\public\sdk\inc\winuser.h
+FILE 333 f:\sp\public\sdk\inc\winnls.h
+FILE 334 f:\sp\public\sdk\inc\guiddef.h
+FILE 335 f:\sp\public\sdk\inc\specstrings.h
+FILE 336 f:\sp\public\sdk\inc\basetsd.h
+FILE 337 f:\sp\public\sdk\inc\stralign.h
+FILE 338 f:\sp\public\sdk\inc\tvout.h
+FILE 339 f:\sp\public\sdk\inc\winsvc.h
+FILE 340 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\string.h
+FILE 341 f:\sp\public\sdk\inc\wingdi.h
+FILE 342 f:\sp\public\sdk\inc\pshpack4.h
+FILE 343 f:\sp\public\sdk\inc\poppack.h
+FILE 344 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\sect_attribs.h
+FILE 345 f:\sp\public\sdk\inc\winnetwk.h
+FILE 346 f:\sp\public\sdk\inc\imm.h
+FILE 347 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\stdarg.h
+FILE 348 f:\sp\public\sdk\inc\windef.h
+FILE 349 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\crtdbg.h
+FILE 350 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\tran\i386\cpu_disp.c
+FILE 351 f:\sp\public\sdk\inc\pshpack1.h
+FILE 352 f:\sp\public\sdk\inc\winver.h
+FILE 353 f:\sp\public\sdk\inc\windows.h
+FILE 354 f:\sp\public\sdk\inc\winnt.h
+FILE 355 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\excpt.h
+FILE 356 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\ctype.h
+FILE 357 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\crtdefs.h
+FILE 358 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\sal.h
+FILE 359 f:\sp\public\sdk\inc\ddbanned.h
+FILE 360 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\vadefs.h
+FILE 361 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\cruntime.h
+FILE 362 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\errno.h
+FILE 363 f:\sp\public\sdk\inc\winreg.h
+FILE 364 f:\sp\public\sdk\inc\winbase.h
+FILE 365 f:\sp\public\sdk\inc\winerror.h
+FILE 366 f:\sp\public\sdk\inc\pshpack8.h
+FILE 367 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\internal.h
+FILE 368 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\limits.h
+FILE 369 f:\sp\public\sdk\inc\reason.h
+FILE 370 f:\sp\public\sdk\inc\wincon.h
+FILE 371 f:\sp\public\sdk\inc\pshpack2.h
+FILE 372 f:\sp\public\sdk\inc\mcx.h
+FILE 373 f:\sp\public\sdk\inc\winuser.h
+FILE 374 f:\sp\public\sdk\inc\winnls.h
+FILE 375 f:\sp\public\sdk\inc\guiddef.h
+FILE 376 f:\sp\public\sdk\inc\specstrings.h
+FILE 377 f:\sp\public\sdk\inc\basetsd.h
+FILE 378 f:\sp\public\sdk\inc\stralign.h
+FILE 379 f:\sp\public\sdk\inc\tvout.h
+FILE 380 f:\sp\public\sdk\inc\winsvc.h
+FILE 381 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\string.h
+FILE 382 f:\sp\public\sdk\inc\wingdi.h
+FILE 383 f:\sp\public\sdk\inc\pshpack4.h
+FILE 384 f:\sp\public\sdk\inc\poppack.h
+FILE 385 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\sect_attribs.h
+FILE 386 f:\sp\public\sdk\inc\winnetwk.h
+FILE 387 f:\sp\public\sdk\inc\imm.h
+FILE 388 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\stdarg.h
+FILE 389 f:\sp\public\sdk\inc\windef.h
+FILE 390 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\crtdbg.h
+FILE 391 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\tran\i386\mathfcns.c
+FILE 392 f:\sp\public\sdk\inc\pshpack1.h
+FILE 393 f:\sp\public\sdk\inc\winver.h
+FILE 394 f:\sp\public\sdk\inc\windows.h
+FILE 395 f:\sp\public\sdk\inc\winnt.h
+FILE 396 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\excpt.h
+FILE 397 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\ctype.h
+FILE 398 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\crtdefs.h
+FILE 399 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\sal.h
+FILE 400 f:\sp\public\sdk\inc\ddbanned.h
+FILE 401 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\vadefs.h
+FILE 402 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\cruntime.h
+FILE 403 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\errno.h
+FILE 404 f:\sp\public\sdk\inc\winreg.h
+FILE 405 f:\sp\public\sdk\inc\winbase.h
+FILE 406 f:\sp\public\sdk\inc\winerror.h
+FILE 407 f:\sp\public\sdk\inc\pshpack8.h
+FILE 408 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\internal.h
+FILE 409 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\limits.h
+FILE 410 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 411 f:\sp\public\sdk\inc\winreg.h
+FILE 412 f:\sp\public\sdk\inc\winbase.h
+FILE 413 f:\sp\public\sdk\inc\winerror.h
+FILE 414 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 415 f:\sp\public\sdk\inc\windef.h
+FILE 416 f:\sp\vctools\crt_bld\self_x86\crt\src\ctime.h
+FILE 417 f:\sp\vctools\crt_bld\self_x86\crt\src\wtime.inl
+FILE 418 f:\sp\vctools\crt_bld\self_x86\crt\src\time.h
+FILE 419 f:\sp\public\sdk\inc\pshpack8.h
+FILE 420 f:\sp\public\sdk\inc\reason.h
+FILE 421 f:\sp\public\sdk\inc\wincon.h
+FILE 422 f:\sp\vctools\crt_bld\self_x86\crt\src\time.inl
+FILE 423 f:\sp\public\sdk\inc\pshpack2.h
+FILE 424 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 425 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 426 f:\sp\public\sdk\inc\mcx.h
+FILE 427 f:\sp\public\sdk\inc\winuser.h
+FILE 428 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 429 f:\sp\public\sdk\inc\winnls.h
+FILE 430 f:\sp\public\sdk\inc\guiddef.h
+FILE 431 f:\sp\public\sdk\inc\stralign.h
+FILE 432 f:\sp\public\sdk\inc\winnt.h
+FILE 433 f:\sp\public\sdk\inc\specstrings.h
+FILE 434 f:\sp\public\sdk\inc\basetsd.h
+FILE 435 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 436 f:\sp\public\sdk\inc\tvout.h
+FILE 437 f:\sp\public\sdk\inc\winsvc.h
+FILE 438 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 439 f:\sp\public\sdk\inc\wingdi.h
+FILE 440 f:\sp\vctools\crt_bld\self_x86\crt\src\tzset.c
+FILE 441 f:\sp\public\sdk\inc\pshpack4.h
+FILE 442 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 443 f:\sp\public\sdk\inc\poppack.h
+FILE 444 f:\sp\public\sdk\inc\winnetwk.h
+FILE 445 f:\sp\public\sdk\inc\imm.h
+FILE 446 f:\sp\public\sdk\inc\ddbanned.h
+FILE 447 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 448 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 449 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 450 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 451 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 452 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 453 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 454 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 455 f:\sp\public\sdk\inc\windows.h
+FILE 456 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 457 f:\sp\public\sdk\inc\pshpack1.h
+FILE 458 f:\sp\public\sdk\inc\winver.h
+FILE 459 f:\sp\vctools\crt_bld\self_x86\crt\src\time.inl
+FILE 460 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 461 f:\sp\public\sdk\inc\winnt.h
+FILE 462 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 463 f:\sp\public\sdk\inc\winreg.h
+FILE 464 f:\sp\public\sdk\inc\winbase.h
+FILE 465 f:\sp\public\sdk\inc\winerror.h
+FILE 466 f:\sp\public\sdk\inc\pshpack8.h
+FILE 467 f:\sp\public\sdk\inc\reason.h
+FILE 468 f:\sp\public\sdk\inc\wincon.h
+FILE 469 f:\sp\public\sdk\inc\pshpack2.h
+FILE 470 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 471 f:\sp\public\sdk\inc\mcx.h
+FILE 472 f:\sp\public\sdk\inc\winuser.h
+FILE 473 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 474 f:\sp\public\sdk\inc\winnls.h
+FILE 475 f:\sp\public\sdk\inc\guiddef.h
+FILE 476 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 477 f:\sp\public\sdk\inc\stralign.h
+FILE 478 f:\sp\public\sdk\inc\specstrings.h
+FILE 479 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 480 f:\sp\public\sdk\inc\basetsd.h
+FILE 481 f:\sp\public\sdk\inc\windows.h
+FILE 482 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 483 f:\sp\public\sdk\inc\tvout.h
+FILE 484 f:\sp\public\sdk\inc\winsvc.h
+FILE 485 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 486 f:\sp\public\sdk\inc\wingdi.h
+FILE 487 f:\sp\vctools\crt_bld\self_x86\crt\src\timeset.c
+FILE 488 f:\sp\public\sdk\inc\pshpack4.h
+FILE 489 f:\sp\public\sdk\inc\poppack.h
+FILE 490 f:\sp\public\sdk\inc\winnetwk.h
+FILE 491 f:\sp\public\sdk\inc\imm.h
+FILE 492 f:\sp\public\sdk\inc\ddbanned.h
+FILE 493 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 494 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 495 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 496 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 497 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 498 f:\sp\public\sdk\inc\windef.h
+FILE 499 f:\sp\public\sdk\inc\pshpack1.h
+FILE 500 f:\sp\vctools\crt_bld\self_x86\crt\src\wtime.inl
+FILE 501 f:\sp\vctools\crt_bld\self_x86\crt\src\time.h
+FILE 502 f:\sp\public\sdk\inc\winver.h
+FILE 503 f:\sp\public\sdk\inc\wincon.h
+FILE 504 f:\sp\vctools\crt_bld\self_x86\crt\src\time.h
+FILE 505 f:\sp\public\sdk\inc\imm.h
+FILE 506 f:\sp\public\sdk\inc\winbase.h
+FILE 507 f:\sp\public\sdk\inc\wingdi.h
+FILE 508 f:\sp\public\sdk\inc\winver.h
+FILE 509 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 510 f:\sp\public\sdk\inc\windows.h
+FILE 511 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 512 f:\sp\public\sdk\inc\pshpack2.h
+FILE 513 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 514 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 515 f:\sp\public\sdk\inc\reason.h
+FILE 516 f:\sp\vctools\crt_bld\self_x86\crt\src\strftime.c
+FILE 517 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 518 f:\sp\public\sdk\inc\specstrings.h
+FILE 519 f:\sp\public\sdk\inc\basetsd.h
+FILE 520 f:\sp\public\sdk\inc\pshpack4.h
+FILE 521 f:\sp\vctools\crt_bld\self_x86\crt\src\wtime.inl
+FILE 522 f:\sp\public\sdk\inc\winnetwk.h
+FILE 523 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 524 f:\sp\public\sdk\inc\stralign.h
+FILE 525 f:\sp\vctools\crt_bld\self_x86\crt\src\time.inl
+FILE 526 f:\sp\public\sdk\inc\poppack.h
+FILE 527 f:\sp\public\sdk\inc\winsvc.h
+FILE 528 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 529 f:\sp\public\sdk\inc\windef.h
+FILE 530 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 531 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 532 f:\sp\public\sdk\inc\winuser.h
+FILE 533 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 534 f:\sp\public\sdk\inc\mcx.h
+FILE 535 f:\sp\public\sdk\inc\pshpack8.h
+FILE 536 f:\sp\public\sdk\inc\guiddef.h
+FILE 537 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 538 f:\sp\public\sdk\inc\winnt.h
+FILE 539 f:\sp\public\sdk\inc\winnls.h
+FILE 540 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 541 f:\sp\public\sdk\inc\pshpack1.h
+FILE 542 f:\sp\vctools\crt_bld\self_x86\crt\src\locale.h
+FILE 543 f:\sp\public\sdk\inc\winerror.h
+FILE 544 f:\sp\vctools\crt_bld\self_x86\crt\src\malloc.h
+FILE 545 f:\sp\public\sdk\inc\winreg.h
+FILE 546 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 547 f:\sp\public\sdk\inc\ddbanned.h
+FILE 548 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 549 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 550 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 551 f:\sp\public\sdk\inc\tvout.h
+FILE 552 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 553 f:\sp\public\sdk\inc\poppack.h
+FILE 554 f:\sp\public\sdk\inc\winnetwk.h
+FILE 555 f:\sp\public\sdk\inc\imm.h
+FILE 556 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 557 f:\sp\public\sdk\inc\windef.h
+FILE 558 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 559 f:\sp\public\sdk\inc\pshpack1.h
+FILE 560 f:\sp\public\sdk\inc\winver.h
+FILE 561 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 562 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 563 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 564 f:\sp\public\sdk\inc\winnt.h
+FILE 565 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 566 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 567 f:\sp\public\sdk\inc\winreg.h
+FILE 568 f:\sp\vctools\crt_bld\self_x86\crt\src\days.c
+FILE 569 f:\sp\public\sdk\inc\winbase.h
+FILE 570 f:\sp\public\sdk\inc\winerror.h
+FILE 571 f:\sp\public\sdk\inc\pshpack8.h
+FILE 572 f:\sp\public\sdk\inc\reason.h
+FILE 573 f:\sp\public\sdk\inc\wincon.h
+FILE 574 f:\sp\public\sdk\inc\ddbanned.h
+FILE 575 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 576 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 577 f:\sp\public\sdk\inc\pshpack2.h
+FILE 578 f:\sp\public\sdk\inc\mcx.h
+FILE 579 f:\sp\public\sdk\inc\winuser.h
+FILE 580 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 581 f:\sp\public\sdk\inc\winnls.h
+FILE 582 f:\sp\public\sdk\inc\guiddef.h
+FILE 583 f:\sp\public\sdk\inc\windows.h
+FILE 584 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 585 f:\sp\public\sdk\inc\specstrings.h
+FILE 586 f:\sp\public\sdk\inc\basetsd.h
+FILE 587 f:\sp\public\sdk\inc\stralign.h
+FILE 588 f:\sp\public\sdk\inc\tvout.h
+FILE 589 f:\sp\public\sdk\inc\winsvc.h
+FILE 590 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 591 f:\sp\public\sdk\inc\wingdi.h
+FILE 592 f:\sp\public\sdk\inc\pshpack4.h
+FILE 593 f:\sp\public\sdk\inc\wincon.h
+FILE 594 f:\sp\public\sdk\inc\imm.h
+FILE 595 f:\sp\public\sdk\inc\winbase.h
+FILE 596 f:\sp\public\sdk\inc\wingdi.h
+FILE 597 f:\sp\public\sdk\inc\winver.h
+FILE 598 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 599 f:\sp\public\sdk\inc\windows.h
+FILE 600 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 601 f:\sp\public\sdk\inc\pshpack2.h
+FILE 602 f:\sp\public\sdk\inc\reason.h
+FILE 603 f:\sp\vctools\crt_bld\self_x86\crt\src\strnicol.c
+FILE 604 f:\sp\vctools\crt_bld\self_x86\crt\src\awint.h
+FILE 605 f:\sp\public\sdk\inc\specstrings.h
+FILE 606 f:\sp\public\sdk\inc\basetsd.h
+FILE 607 f:\sp\public\sdk\inc\pshpack4.h
+FILE 608 f:\sp\vctools\crt_bld\self_x86\crt\src\malloc.h
+FILE 609 f:\sp\public\sdk\inc\winnetwk.h
+FILE 610 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 611 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 612 f:\sp\public\sdk\inc\stralign.h
+FILE 613 f:\sp\public\sdk\inc\poppack.h
+FILE 614 f:\sp\public\sdk\inc\winsvc.h
+FILE 615 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 616 f:\sp\public\sdk\inc\windef.h
+FILE 617 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 618 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 619 f:\sp\public\sdk\inc\winuser.h
+FILE 620 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 621 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 622 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 623 f:\sp\public\sdk\inc\mcx.h
+FILE 624 f:\sp\public\sdk\inc\pshpack8.h
+FILE 625 f:\sp\public\sdk\inc\guiddef.h
+FILE 626 f:\sp\public\sdk\inc\winnt.h
+FILE 627 f:\sp\public\sdk\inc\winnls.h
+FILE 628 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 629 f:\sp\public\sdk\inc\pshpack1.h
+FILE 630 f:\sp\public\sdk\inc\winerror.h
+FILE 631 f:\sp\public\sdk\inc\winreg.h
+FILE 632 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 633 f:\sp\public\sdk\inc\ddbanned.h
+FILE 634 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 635 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 636 f:\sp\vctools\crt_bld\self_x86\crt\src\locale.h
+FILE 637 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 638 f:\sp\public\sdk\inc\tvout.h
+FILE 639 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 640 f:\sp\public\sdk\inc\mcx.h
+FILE 641 f:\sp\public\sdk\inc\pshpack8.h
+FILE 642 f:\sp\public\sdk\inc\winnt.h
+FILE 643 f:\sp\vctools\crt_bld\self_x86\crt\src\locale.h
+FILE 644 f:\sp\public\sdk\inc\specstrings.h
+FILE 645 f:\sp\public\sdk\inc\basetsd.h
+FILE 646 f:\sp\public\sdk\inc\winnls.h
+FILE 647 f:\sp\public\sdk\inc\pshpack1.h
+FILE 648 f:\sp\public\sdk\inc\winerror.h
+FILE 649 f:\sp\public\sdk\inc\winreg.h
+FILE 650 f:\sp\vctools\crt_bld\self_x86\crt\src\strnicmp.c
+FILE 651 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 652 f:\sp\public\sdk\inc\tvout.h
+FILE 653 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 654 f:\sp\public\sdk\inc\wincon.h
+FILE 655 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 656 f:\sp\public\sdk\inc\imm.h
+FILE 657 f:\sp\public\sdk\inc\guiddef.h
+FILE 658 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 659 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 660 f:\sp\public\sdk\inc\winbase.h
+FILE 661 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 662 f:\sp\public\sdk\inc\wingdi.h
+FILE 663 f:\sp\public\sdk\inc\windows.h
+FILE 664 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 665 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 666 f:\sp\public\sdk\inc\winver.h
+FILE 667 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 668 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 669 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 670 f:\sp\public\sdk\inc\pshpack2.h
+FILE 671 f:\sp\public\sdk\inc\reason.h
+FILE 672 f:\sp\public\sdk\inc\pshpack4.h
+FILE 673 f:\sp\public\sdk\inc\winnetwk.h
+FILE 674 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 675 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 676 f:\sp\public\sdk\inc\stralign.h
+FILE 677 f:\sp\public\sdk\inc\windef.h
+FILE 678 f:\sp\public\sdk\inc\poppack.h
+FILE 679 f:\sp\public\sdk\inc\winsvc.h
+FILE 680 f:\sp\public\sdk\inc\ddbanned.h
+FILE 681 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 682 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 683 f:\sp\public\sdk\inc\winuser.h
+FILE 684 f:\sp\public\sdk\inc\mcx.h
+FILE 685 f:\sp\public\sdk\inc\pshpack8.h
+FILE 686 f:\sp\public\sdk\inc\winnt.h
+FILE 687 f:\sp\public\sdk\inc\specstrings.h
+FILE 688 f:\sp\public\sdk\inc\basetsd.h
+FILE 689 f:\sp\public\sdk\inc\winnls.h
+FILE 690 f:\sp\public\sdk\inc\pshpack1.h
+FILE 691 f:\sp\public\sdk\inc\winerror.h
+FILE 692 f:\sp\public\sdk\inc\winreg.h
+FILE 693 f:\sp\vctools\crt_bld\self_x86\crt\src\stricmp.c
+FILE 694 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 695 f:\sp\public\sdk\inc\tvout.h
+FILE 696 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 697 f:\sp\public\sdk\inc\wincon.h
+FILE 698 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 699 f:\sp\public\sdk\inc\imm.h
+FILE 700 f:\sp\public\sdk\inc\guiddef.h
+FILE 701 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 702 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 703 f:\sp\public\sdk\inc\winbase.h
+FILE 704 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 705 f:\sp\public\sdk\inc\wingdi.h
+FILE 706 f:\sp\public\sdk\inc\windows.h
+FILE 707 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 708 f:\sp\vctools\crt_bld\self_x86\crt\src\locale.h
+FILE 709 f:\sp\public\sdk\inc\winver.h
+FILE 710 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 711 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 712 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 713 f:\sp\public\sdk\inc\pshpack2.h
+FILE 714 f:\sp\public\sdk\inc\reason.h
+FILE 715 f:\sp\public\sdk\inc\pshpack4.h
+FILE 716 f:\sp\public\sdk\inc\winnetwk.h
+FILE 717 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 718 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 719 f:\sp\public\sdk\inc\stralign.h
+FILE 720 f:\sp\public\sdk\inc\windef.h
+FILE 721 f:\sp\public\sdk\inc\poppack.h
+FILE 722 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 723 f:\sp\public\sdk\inc\winsvc.h
+FILE 724 f:\sp\public\sdk\inc\ddbanned.h
+FILE 725 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 726 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 727 f:\sp\public\sdk\inc\winuser.h
+FILE 728 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 729 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 730 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 731 f:\sp\vctools\crt_bld\self_x86\crt\src\wcslen.c
+FILE 732 f:\sp\public\sdk\inc\ddbanned.h
+FILE 733 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 734 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 735 f:\sp\public\sdk\inc\winnt.h
+FILE 736 f:\sp\public\sdk\inc\pshpack4.h
+FILE 737 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 738 f:\sp\public\sdk\inc\poppack.h
+FILE 739 f:\sp\vctools\crt_bld\self_x86\crt\src\tcsncpy_s.inl
+FILE 740 f:\sp\public\sdk\inc\winnetwk.h
+FILE 741 f:\sp\public\sdk\inc\imm.h
+FILE 742 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 743 f:\sp\public\sdk\inc\pshpack1.h
+FILE 744 f:\sp\public\sdk\inc\winver.h
+FILE 745 f:\sp\vctools\crt_bld\self_x86\crt\src\internal_securecrt.h
+FILE 746 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 747 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 748 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 749 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 750 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 751 f:\sp\public\sdk\inc\guiddef.h
+FILE 752 f:\sp\public\sdk\inc\windows.h
+FILE 753 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 754 f:\sp\public\sdk\inc\specstrings.h
+FILE 755 f:\sp\public\sdk\inc\basetsd.h
+FILE 756 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 757 f:\sp\public\sdk\inc\winreg.h
+FILE 758 f:\sp\vctools\crt_bld\self_x86\crt\src\strncpy_s.c
+FILE 759 f:\sp\public\sdk\inc\winbase.h
+FILE 760 f:\sp\public\sdk\inc\winerror.h
+FILE 761 f:\sp\public\sdk\inc\pshpack8.h
+FILE 762 f:\sp\public\sdk\inc\reason.h
+FILE 763 f:\sp\public\sdk\inc\wincon.h
+FILE 764 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 765 f:\sp\public\sdk\inc\ddbanned.h
+FILE 766 f:\sp\public\sdk\inc\windef.h
+FILE 767 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 768 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 769 f:\sp\public\sdk\inc\pshpack2.h
+FILE 770 f:\sp\public\sdk\inc\mcx.h
+FILE 771 f:\sp\public\sdk\inc\winuser.h
+FILE 772 f:\sp\public\sdk\inc\winnls.h
+FILE 773 f:\sp\public\sdk\inc\stralign.h
+FILE 774 f:\sp\public\sdk\inc\tvout.h
+FILE 775 f:\sp\public\sdk\inc\winsvc.h
+FILE 776 f:\sp\public\sdk\inc\wingdi.h
+FILE 777 f:\sp\public\sdk\inc\winnt.h
+FILE 778 f:\sp\public\sdk\inc\pshpack4.h
+FILE 779 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 780 f:\sp\public\sdk\inc\poppack.h
+FILE 781 f:\sp\vctools\crt_bld\self_x86\crt\src\tcscpy_s.inl
+FILE 782 f:\sp\public\sdk\inc\winnetwk.h
+FILE 783 f:\sp\public\sdk\inc\imm.h
+FILE 784 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 785 f:\sp\public\sdk\inc\pshpack1.h
+FILE 786 f:\sp\public\sdk\inc\winver.h
+FILE 787 f:\sp\vctools\crt_bld\self_x86\crt\src\internal_securecrt.h
+FILE 788 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 789 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 790 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 791 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 792 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 793 f:\sp\public\sdk\inc\guiddef.h
+FILE 794 f:\sp\public\sdk\inc\windows.h
+FILE 795 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 796 f:\sp\public\sdk\inc\specstrings.h
+FILE 797 f:\sp\public\sdk\inc\basetsd.h
+FILE 798 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 799 f:\sp\public\sdk\inc\winreg.h
+FILE 800 f:\sp\vctools\crt_bld\self_x86\crt\src\strcpy_s.c
+FILE 801 f:\sp\public\sdk\inc\winbase.h
+FILE 802 f:\sp\public\sdk\inc\winerror.h
+FILE 803 f:\sp\public\sdk\inc\pshpack8.h
+FILE 804 f:\sp\public\sdk\inc\reason.h
+FILE 805 f:\sp\public\sdk\inc\wincon.h
+FILE 806 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 807 f:\sp\public\sdk\inc\ddbanned.h
+FILE 808 f:\sp\public\sdk\inc\windef.h
+FILE 809 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 810 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 811 f:\sp\public\sdk\inc\pshpack2.h
+FILE 812 f:\sp\public\sdk\inc\mcx.h
+FILE 813 f:\sp\public\sdk\inc\winuser.h
+FILE 814 f:\sp\public\sdk\inc\winnls.h
+FILE 815 f:\sp\public\sdk\inc\stralign.h
+FILE 816 f:\sp\public\sdk\inc\tvout.h
+FILE 817 f:\sp\public\sdk\inc\winsvc.h
+FILE 818 f:\sp\public\sdk\inc\wingdi.h
+FILE 819 f:\sp\public\sdk\inc\winnt.h
+FILE 820 f:\sp\public\sdk\inc\pshpack4.h
+FILE 821 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 822 f:\sp\public\sdk\inc\poppack.h
+FILE 823 f:\sp\vctools\crt_bld\self_x86\crt\src\tcscat_s.inl
+FILE 824 f:\sp\public\sdk\inc\winnetwk.h
+FILE 825 f:\sp\public\sdk\inc\imm.h
+FILE 826 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 827 f:\sp\public\sdk\inc\pshpack1.h
+FILE 828 f:\sp\public\sdk\inc\winver.h
+FILE 829 f:\sp\vctools\crt_bld\self_x86\crt\src\internal_securecrt.h
+FILE 830 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 831 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 832 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 833 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 834 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 835 f:\sp\public\sdk\inc\guiddef.h
+FILE 836 f:\sp\public\sdk\inc\windows.h
+FILE 837 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 838 f:\sp\public\sdk\inc\specstrings.h
+FILE 839 f:\sp\public\sdk\inc\basetsd.h
+FILE 840 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 841 f:\sp\public\sdk\inc\winreg.h
+FILE 842 f:\sp\vctools\crt_bld\self_x86\crt\src\strcat_s.c
+FILE 843 f:\sp\public\sdk\inc\winbase.h
+FILE 844 f:\sp\public\sdk\inc\winerror.h
+FILE 845 f:\sp\public\sdk\inc\pshpack8.h
+FILE 846 f:\sp\public\sdk\inc\reason.h
+FILE 847 f:\sp\public\sdk\inc\wincon.h
+FILE 848 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 849 f:\sp\public\sdk\inc\ddbanned.h
+FILE 850 f:\sp\public\sdk\inc\windef.h
+FILE 851 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 852 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 853 f:\sp\public\sdk\inc\pshpack2.h
+FILE 854 f:\sp\public\sdk\inc\mcx.h
+FILE 855 f:\sp\public\sdk\inc\winuser.h
+FILE 856 f:\sp\public\sdk\inc\winnls.h
+FILE 857 f:\sp\public\sdk\inc\stralign.h
+FILE 858 f:\sp\public\sdk\inc\tvout.h
+FILE 859 f:\sp\public\sdk\inc\winsvc.h
+FILE 860 f:\sp\public\sdk\inc\wingdi.h
+FILE 861 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 862 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 863 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 864 f:\sp\vctools\crt_bld\self_x86\crt\src\strlen_s.c
+FILE 865 f:\sp\public\sdk\inc\ddbanned.h
+FILE 866 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 867 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 868 F:\SP\vctools\crt_bld\SELF_X86\crt\src\intel\strpbrk.asm
+FILE 869 F:\SP\vctools\crt_bld\SELF_X86\crt\src\Intel\STRSPN.ASM
+FILE 870 F:\SP\vctools\crt_bld\SELF_X86\crt\src\cruntime.inc
+FILE 871 F:\SP\vctools\crt_bld\SELF_X86\crt\src\intel\_strnicm.asm
+FILE 872 F:\SP\vctools\crt_bld\SELF_X86\crt\src\cruntime.inc
+FILE 873 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 874 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 875 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 876 f:\sp\vctools\crt_bld\self_x86\crt\src\intel\strncmp.c
+FILE 877 f:\sp\public\sdk\inc\ddbanned.h
+FILE 878 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 879 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 880 F:\SP\vctools\crt_bld\SELF_X86\crt\src\intel\strlen.asm
+FILE 881 F:\SP\vctools\crt_bld\SELF_X86\crt\src\cruntime.inc
+FILE 882 f:\sp\public\sdk\inc\pshpack2.h
+FILE 883 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 884 f:\sp\public\sdk\inc\mcx.h
+FILE 885 f:\sp\public\sdk\inc\winuser.h
+FILE 886 f:\sp\public\sdk\inc\winnls.h
+FILE 887 f:\sp\public\sdk\inc\stralign.h
+FILE 888 f:\sp\public\sdk\inc\tvout.h
+FILE 889 f:\sp\public\sdk\inc\winsvc.h
+FILE 890 f:\sp\public\sdk\inc\wingdi.h
+FILE 891 f:\sp\public\sdk\inc\winnt.h
+FILE 892 f:\sp\public\sdk\inc\pshpack4.h
+FILE 893 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 894 f:\sp\public\sdk\inc\poppack.h
+FILE 895 f:\sp\public\sdk\inc\winnetwk.h
+FILE 896 f:\sp\public\sdk\inc\imm.h
+FILE 897 f:\sp\vctools\crt_bld\self_x86\crt\src\malloc.h
+FILE 898 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 899 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 900 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 901 f:\sp\vctools\crt_bld\self_x86\crt\src\strdup.c
+FILE 902 f:\sp\public\sdk\inc\pshpack1.h
+FILE 903 f:\sp\public\sdk\inc\winver.h
+FILE 904 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 905 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 906 f:\sp\public\sdk\inc\guiddef.h
+FILE 907 f:\sp\public\sdk\inc\windows.h
+FILE 908 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 909 f:\sp\public\sdk\inc\specstrings.h
+FILE 910 f:\sp\public\sdk\inc\basetsd.h
+FILE 911 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 912 f:\sp\public\sdk\inc\winreg.h
+FILE 913 f:\sp\public\sdk\inc\ddbanned.h
+FILE 914 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 915 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 916 f:\sp\public\sdk\inc\winbase.h
+FILE 917 f:\sp\public\sdk\inc\winerror.h
+FILE 918 f:\sp\public\sdk\inc\pshpack8.h
+FILE 919 f:\sp\public\sdk\inc\reason.h
+FILE 920 f:\sp\public\sdk\inc\wincon.h
+FILE 921 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 922 f:\sp\public\sdk\inc\windef.h
+FILE 923 F:\SP\vctools\crt_bld\SELF_X86\crt\src\intel\strcspn.asm
+FILE 924 F:\SP\vctools\crt_bld\SELF_X86\crt\src\Intel\STRSPN.ASM
+FILE 925 F:\SP\vctools\crt_bld\SELF_X86\crt\src\cruntime.inc
+FILE 926 F:\SP\vctools\crt_bld\SELF_X86\crt\src\intel\strcmp.asm
+FILE 927 F:\SP\vctools\crt_bld\SELF_X86\crt\src\cruntime.inc
+FILE 928 F:\SP\vctools\crt_bld\SELF_X86\crt\src\intel\strchr.asm
+FILE 929 F:\SP\vctools\crt_bld\SELF_X86\crt\src\cruntime.inc
+FILE 930 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\string\i386\p4_memset.c
+FILE 931 f:\sp\public\sdk\inc\ddbanned.h
+FILE 932 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\vadefs.h
+FILE 933 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\cruntime.h
+FILE 934 F:\SP\vctools\crt_bld\SELF_X86\crt\src\intel\memset.asm
+FILE 935 F:\SP\vctools\crt_bld\SELF_X86\crt\src\cruntime.inc
+FILE 936 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 937 f:\sp\public\sdk\inc\poppack.h
+FILE 938 f:\sp\public\sdk\inc\winnetwk.h
+FILE 939 f:\sp\public\sdk\inc\imm.h
+FILE 940 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 941 f:\sp\public\sdk\inc\pshpack1.h
+FILE 942 f:\sp\public\sdk\inc\winver.h
+FILE 943 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 944 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 945 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 946 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 947 f:\sp\public\sdk\inc\guiddef.h
+FILE 948 f:\sp\public\sdk\inc\windows.h
+FILE 949 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 950 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 951 f:\sp\public\sdk\inc\specstrings.h
+FILE 952 f:\sp\public\sdk\inc\basetsd.h
+FILE 953 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 954 f:\sp\public\sdk\inc\winreg.h
+FILE 955 f:\sp\vctools\crt_bld\self_x86\crt\src\memmove_s.c
+FILE 956 f:\sp\public\sdk\inc\winbase.h
+FILE 957 f:\sp\public\sdk\inc\winerror.h
+FILE 958 f:\sp\public\sdk\inc\pshpack8.h
+FILE 959 f:\sp\public\sdk\inc\reason.h
+FILE 960 f:\sp\public\sdk\inc\wincon.h
+FILE 961 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 962 f:\sp\public\sdk\inc\windef.h
+FILE 963 f:\sp\public\sdk\inc\ddbanned.h
+FILE 964 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 965 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 966 f:\sp\public\sdk\inc\pshpack2.h
+FILE 967 f:\sp\public\sdk\inc\mcx.h
+FILE 968 f:\sp\public\sdk\inc\winuser.h
+FILE 969 f:\sp\public\sdk\inc\winnls.h
+FILE 970 f:\sp\public\sdk\inc\stralign.h
+FILE 971 f:\sp\public\sdk\inc\tvout.h
+FILE 972 f:\sp\public\sdk\inc\winsvc.h
+FILE 973 f:\sp\public\sdk\inc\wingdi.h
+FILE 974 f:\sp\public\sdk\inc\winnt.h
+FILE 975 f:\sp\public\sdk\inc\pshpack4.h
+FILE 976 F:\SP\vctools\crt_bld\SELF_X86\crt\src\intel\memmove.asm
+FILE 977 F:\SP\vctools\crt_bld\SELF_X86\crt\src\Intel\MEMCPY.ASM
+FILE 978 F:\SP\vctools\crt_bld\SELF_X86\crt\src\cruntime.inc
+FILE 979 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\string\i386\memcmp.c
+FILE 980 f:\sp\public\sdk\inc\ddbanned.h
+FILE 981 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\vadefs.h
+FILE 982 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\cruntime.h
+FILE 983 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 984 f:\sp\public\sdk\inc\poppack.h
+FILE 985 f:\sp\public\sdk\inc\winnetwk.h
+FILE 986 f:\sp\public\sdk\inc\imm.h
+FILE 987 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 988 f:\sp\public\sdk\inc\pshpack1.h
+FILE 989 f:\sp\public\sdk\inc\winver.h
+FILE 990 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 991 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 992 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 993 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 994 f:\sp\public\sdk\inc\guiddef.h
+FILE 995 f:\sp\public\sdk\inc\windows.h
+FILE 996 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 997 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 998 f:\sp\public\sdk\inc\specstrings.h
+FILE 999 f:\sp\public\sdk\inc\basetsd.h
+FILE 1000 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 1001 f:\sp\public\sdk\inc\winreg.h
+FILE 1002 f:\sp\vctools\crt_bld\self_x86\crt\src\memcpy_s.c
+FILE 1003 f:\sp\public\sdk\inc\winbase.h
+FILE 1004 f:\sp\public\sdk\inc\winerror.h
+FILE 1005 f:\sp\public\sdk\inc\pshpack8.h
+FILE 1006 f:\sp\public\sdk\inc\reason.h
+FILE 1007 f:\sp\public\sdk\inc\wincon.h
+FILE 1008 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 1009 f:\sp\public\sdk\inc\windef.h
+FILE 1010 f:\sp\public\sdk\inc\ddbanned.h
+FILE 1011 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 1012 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 1013 f:\sp\public\sdk\inc\pshpack2.h
+FILE 1014 f:\sp\public\sdk\inc\mcx.h
+FILE 1015 f:\sp\public\sdk\inc\winuser.h
+FILE 1016 f:\sp\public\sdk\inc\winnls.h
+FILE 1017 f:\sp\public\sdk\inc\stralign.h
+FILE 1018 f:\sp\public\sdk\inc\tvout.h
+FILE 1019 f:\sp\public\sdk\inc\winsvc.h
+FILE 1020 f:\sp\public\sdk\inc\wingdi.h
+FILE 1021 f:\sp\public\sdk\inc\winnt.h
+FILE 1022 f:\sp\public\sdk\inc\pshpack4.h
+FILE 1023 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\string\i386\p4_memcpy.c
+FILE 1024 f:\sp\public\sdk\inc\ddbanned.h
+FILE 1025 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\vadefs.h
+FILE 1026 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\cruntime.h
+FILE 1027 F:\SP\vctools\crt_bld\SELF_X86\crt\src\intel\memcpy.asm
+FILE 1028 F:\SP\vctools\crt_bld\SELF_X86\crt\src\cruntime.inc
+FILE 1029 f:\sp\vctools\crt_bld\self_x86\crt\src\stdio.h
+FILE 1030 f:\sp\public\sdk\inc\wincon.h
+FILE 1031 f:\sp\public\sdk\inc\imm.h
+FILE 1032 f:\sp\public\sdk\inc\winbase.h
+FILE 1033 f:\sp\public\sdk\inc\wingdi.h
+FILE 1034 f:\sp\public\sdk\inc\winver.h
+FILE 1035 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 1036 f:\sp\public\sdk\inc\windows.h
+FILE 1037 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 1038 f:\sp\public\sdk\inc\pshpack2.h
+FILE 1039 f:\sp\public\sdk\inc\reason.h
+FILE 1040 f:\sp\vctools\crt_bld\self_x86\crt\src\woutputs.c
+FILE 1041 f:\sp\vctools\crt_bld\self_x86\crt\src\fltintrn.h
+FILE 1042 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 1043 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 1044 f:\sp\public\sdk\inc\specstrings.h
+FILE 1045 f:\sp\public\sdk\inc\basetsd.h
+FILE 1046 f:\sp\public\sdk\inc\pshpack4.h
+FILE 1047 f:\sp\public\sdk\inc\winnetwk.h
+FILE 1048 f:\sp\public\sdk\inc\stralign.h
+FILE 1049 f:\sp\public\sdk\inc\poppack.h
+FILE 1050 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 1051 f:\sp\public\sdk\inc\winsvc.h
+FILE 1052 f:\sp\public\sdk\inc\windef.h
+FILE 1053 f:\sp\vctools\crt_bld\self_x86\crt\src\output.c
+FILE 1054 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 1055 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 1056 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 1057 f:\sp\public\sdk\inc\winuser.h
+FILE 1058 f:\sp\public\sdk\inc\mcx.h
+FILE 1059 f:\sp\public\sdk\inc\pshpack8.h
+FILE 1060 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 1061 f:\sp\public\sdk\inc\guiddef.h
+FILE 1062 f:\sp\public\sdk\inc\winnt.h
+FILE 1063 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 1064 f:\sp\public\sdk\inc\winnls.h
+FILE 1065 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 1066 f:\sp\public\sdk\inc\pshpack1.h
+FILE 1067 f:\sp\vctools\crt_bld\self_x86\crt\src\wtime.inl
+FILE 1068 f:\sp\public\sdk\inc\winerror.h
+FILE 1069 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 1070 f:\sp\vctools\crt_bld\self_x86\crt\src\cvt.h
+FILE 1071 f:\sp\vctools\crt_bld\self_x86\crt\src\conio.h
+FILE 1072 f:\sp\public\sdk\inc\winreg.h
+FILE 1073 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 1074 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 1075 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 1076 f:\sp\public\sdk\inc\ddbanned.h
+FILE 1077 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 1078 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 1079 f:\sp\vctools\crt_bld\self_x86\crt\src\swprintf.inl
+FILE 1080 f:\sp\public\sdk\inc\tvout.h
+FILE 1081 f:\sp\vctools\crt_bld\self_x86\crt\src\stddef.h
+FILE 1082 f:\sp\vctools\crt_bld\self_x86\crt\src\tchar.h
+FILE 1083 f:\sp\vctools\crt_bld\self_x86\crt\src\wchar.h
+FILE 1084 f:\sp\vctools\crt_bld\self_x86\crt\src\stdio.h
+FILE 1085 f:\sp\public\sdk\inc\wincon.h
+FILE 1086 f:\sp\public\sdk\inc\imm.h
+FILE 1087 f:\sp\public\sdk\inc\winbase.h
+FILE 1088 f:\sp\public\sdk\inc\wingdi.h
+FILE 1089 f:\sp\public\sdk\inc\winver.h
+FILE 1090 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 1091 f:\sp\public\sdk\inc\windows.h
+FILE 1092 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 1093 f:\sp\public\sdk\inc\pshpack2.h
+FILE 1094 f:\sp\public\sdk\inc\reason.h
+FILE 1095 f:\sp\vctools\crt_bld\self_x86\crt\src\woutputp.c
+FILE 1096 f:\sp\vctools\crt_bld\self_x86\crt\src\fltintrn.h
+FILE 1097 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 1098 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 1099 f:\sp\public\sdk\inc\specstrings.h
+FILE 1100 f:\sp\public\sdk\inc\basetsd.h
+FILE 1101 f:\sp\public\sdk\inc\pshpack4.h
+FILE 1102 f:\sp\public\sdk\inc\winnetwk.h
+FILE 1103 f:\sp\public\sdk\inc\stralign.h
+FILE 1104 f:\sp\public\sdk\inc\poppack.h
+FILE 1105 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 1106 f:\sp\public\sdk\inc\winsvc.h
+FILE 1107 f:\sp\public\sdk\inc\windef.h
+FILE 1108 f:\sp\vctools\crt_bld\self_x86\crt\src\output.c
+FILE 1109 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 1110 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 1111 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 1112 f:\sp\public\sdk\inc\winuser.h
+FILE 1113 f:\sp\public\sdk\inc\mcx.h
+FILE 1114 f:\sp\public\sdk\inc\pshpack8.h
+FILE 1115 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 1116 f:\sp\public\sdk\inc\guiddef.h
+FILE 1117 f:\sp\public\sdk\inc\winnt.h
+FILE 1118 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 1119 f:\sp\public\sdk\inc\winnls.h
+FILE 1120 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 1121 f:\sp\public\sdk\inc\pshpack1.h
+FILE 1122 f:\sp\vctools\crt_bld\self_x86\crt\src\wtime.inl
+FILE 1123 f:\sp\public\sdk\inc\winerror.h
+FILE 1124 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 1125 f:\sp\vctools\crt_bld\self_x86\crt\src\cvt.h
+FILE 1126 f:\sp\vctools\crt_bld\self_x86\crt\src\conio.h
+FILE 1127 f:\sp\public\sdk\inc\winreg.h
+FILE 1128 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 1129 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 1130 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 1131 f:\sp\public\sdk\inc\ddbanned.h
+FILE 1132 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 1133 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 1134 f:\sp\vctools\crt_bld\self_x86\crt\src\swprintf.inl
+FILE 1135 f:\sp\public\sdk\inc\tvout.h
+FILE 1136 f:\sp\vctools\crt_bld\self_x86\crt\src\stddef.h
+FILE 1137 f:\sp\vctools\crt_bld\self_x86\crt\src\tchar.h
+FILE 1138 f:\sp\vctools\crt_bld\self_x86\crt\src\wchar.h
+FILE 1139 f:\sp\vctools\crt_bld\self_x86\crt\src\stdio.h
+FILE 1140 f:\sp\public\sdk\inc\wincon.h
+FILE 1141 f:\sp\public\sdk\inc\imm.h
+FILE 1142 f:\sp\public\sdk\inc\winbase.h
+FILE 1143 f:\sp\public\sdk\inc\wingdi.h
+FILE 1144 f:\sp\public\sdk\inc\winver.h
+FILE 1145 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 1146 f:\sp\public\sdk\inc\windows.h
+FILE 1147 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 1148 f:\sp\public\sdk\inc\pshpack2.h
+FILE 1149 f:\sp\public\sdk\inc\reason.h
+FILE 1150 f:\sp\vctools\crt_bld\self_x86\crt\src\woutput.c
+FILE 1151 f:\sp\vctools\crt_bld\self_x86\crt\src\fltintrn.h
+FILE 1152 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 1153 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 1154 f:\sp\public\sdk\inc\specstrings.h
+FILE 1155 f:\sp\public\sdk\inc\basetsd.h
+FILE 1156 f:\sp\public\sdk\inc\pshpack4.h
+FILE 1157 f:\sp\public\sdk\inc\winnetwk.h
+FILE 1158 f:\sp\public\sdk\inc\stralign.h
+FILE 1159 f:\sp\public\sdk\inc\poppack.h
+FILE 1160 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 1161 f:\sp\public\sdk\inc\winsvc.h
+FILE 1162 f:\sp\public\sdk\inc\windef.h
+FILE 1163 f:\sp\vctools\crt_bld\self_x86\crt\src\output.c
+FILE 1164 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 1165 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 1166 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 1167 f:\sp\public\sdk\inc\winuser.h
+FILE 1168 f:\sp\public\sdk\inc\mcx.h
+FILE 1169 f:\sp\public\sdk\inc\pshpack8.h
+FILE 1170 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 1171 f:\sp\public\sdk\inc\guiddef.h
+FILE 1172 f:\sp\public\sdk\inc\winnt.h
+FILE 1173 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 1174 f:\sp\public\sdk\inc\winnls.h
+FILE 1175 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 1176 f:\sp\public\sdk\inc\pshpack1.h
+FILE 1177 f:\sp\vctools\crt_bld\self_x86\crt\src\wtime.inl
+FILE 1178 f:\sp\public\sdk\inc\winerror.h
+FILE 1179 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 1180 f:\sp\vctools\crt_bld\self_x86\crt\src\cvt.h
+FILE 1181 f:\sp\vctools\crt_bld\self_x86\crt\src\conio.h
+FILE 1182 f:\sp\public\sdk\inc\winreg.h
+FILE 1183 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 1184 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 1185 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 1186 f:\sp\public\sdk\inc\ddbanned.h
+FILE 1187 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 1188 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 1189 f:\sp\vctools\crt_bld\self_x86\crt\src\swprintf.inl
+FILE 1190 f:\sp\public\sdk\inc\tvout.h
+FILE 1191 f:\sp\vctools\crt_bld\self_x86\crt\src\stddef.h
+FILE 1192 f:\sp\vctools\crt_bld\self_x86\crt\src\tchar.h
+FILE 1193 f:\sp\vctools\crt_bld\self_x86\crt\src\wchar.h
+FILE 1194 f:\sp\vctools\crt_bld\self_x86\crt\src\stdio.h
+FILE 1195 f:\sp\public\sdk\inc\wincon.h
+FILE 1196 f:\sp\public\sdk\inc\imm.h
+FILE 1197 f:\sp\public\sdk\inc\winbase.h
+FILE 1198 f:\sp\public\sdk\inc\wingdi.h
+FILE 1199 f:\sp\public\sdk\inc\winver.h
+FILE 1200 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 1201 f:\sp\public\sdk\inc\windows.h
+FILE 1202 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 1203 f:\sp\public\sdk\inc\pshpack2.h
+FILE 1204 f:\sp\public\sdk\inc\reason.h
+FILE 1205 f:\sp\vctools\crt_bld\self_x86\crt\src\fltintrn.h
+FILE 1206 f:\sp\vctools\crt_bld\self_x86\crt\src\outputs.c
+FILE 1207 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 1208 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 1209 f:\sp\public\sdk\inc\specstrings.h
+FILE 1210 f:\sp\public\sdk\inc\basetsd.h
+FILE 1211 f:\sp\public\sdk\inc\pshpack4.h
+FILE 1212 f:\sp\public\sdk\inc\winnetwk.h
+FILE 1213 f:\sp\public\sdk\inc\stralign.h
+FILE 1214 f:\sp\public\sdk\inc\poppack.h
+FILE 1215 f:\sp\public\sdk\inc\winsvc.h
+FILE 1216 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 1217 f:\sp\public\sdk\inc\windef.h
+FILE 1218 f:\sp\vctools\crt_bld\self_x86\crt\src\output.c
+FILE 1219 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 1220 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 1221 f:\sp\public\sdk\inc\winuser.h
+FILE 1222 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 1223 f:\sp\public\sdk\inc\mcx.h
+FILE 1224 f:\sp\public\sdk\inc\pshpack8.h
+FILE 1225 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 1226 f:\sp\public\sdk\inc\guiddef.h
+FILE 1227 f:\sp\public\sdk\inc\winnt.h
+FILE 1228 f:\sp\public\sdk\inc\winnls.h
+FILE 1229 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 1230 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 1231 f:\sp\public\sdk\inc\pshpack1.h
+FILE 1232 f:\sp\public\sdk\inc\winerror.h
+FILE 1233 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 1234 f:\sp\vctools\crt_bld\self_x86\crt\src\cvt.h
+FILE 1235 f:\sp\vctools\crt_bld\self_x86\crt\src\conio.h
+FILE 1236 f:\sp\public\sdk\inc\winreg.h
+FILE 1237 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 1238 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 1239 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 1240 f:\sp\public\sdk\inc\ddbanned.h
+FILE 1241 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 1242 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 1243 f:\sp\vctools\crt_bld\self_x86\crt\src\swprintf.inl
+FILE 1244 f:\sp\public\sdk\inc\tvout.h
+FILE 1245 f:\sp\vctools\crt_bld\self_x86\crt\src\stddef.h
+FILE 1246 f:\sp\vctools\crt_bld\self_x86\crt\src\tchar.h
+FILE 1247 f:\sp\vctools\crt_bld\self_x86\crt\src\stdio.h
+FILE 1248 f:\sp\public\sdk\inc\wincon.h
+FILE 1249 f:\sp\public\sdk\inc\imm.h
+FILE 1250 f:\sp\public\sdk\inc\winbase.h
+FILE 1251 f:\sp\public\sdk\inc\wingdi.h
+FILE 1252 f:\sp\public\sdk\inc\winver.h
+FILE 1253 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 1254 f:\sp\public\sdk\inc\windows.h
+FILE 1255 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 1256 f:\sp\public\sdk\inc\pshpack2.h
+FILE 1257 f:\sp\public\sdk\inc\reason.h
+FILE 1258 f:\sp\vctools\crt_bld\self_x86\crt\src\fltintrn.h
+FILE 1259 f:\sp\vctools\crt_bld\self_x86\crt\src\outputp.c
+FILE 1260 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 1261 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 1262 f:\sp\public\sdk\inc\specstrings.h
+FILE 1263 f:\sp\public\sdk\inc\basetsd.h
+FILE 1264 f:\sp\public\sdk\inc\pshpack4.h
+FILE 1265 f:\sp\public\sdk\inc\winnetwk.h
+FILE 1266 f:\sp\public\sdk\inc\stralign.h
+FILE 1267 f:\sp\public\sdk\inc\poppack.h
+FILE 1268 f:\sp\public\sdk\inc\winsvc.h
+FILE 1269 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 1270 f:\sp\public\sdk\inc\windef.h
+FILE 1271 f:\sp\vctools\crt_bld\self_x86\crt\src\output.c
+FILE 1272 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 1273 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 1274 f:\sp\public\sdk\inc\winuser.h
+FILE 1275 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 1276 f:\sp\public\sdk\inc\mcx.h
+FILE 1277 f:\sp\public\sdk\inc\pshpack8.h
+FILE 1278 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 1279 f:\sp\public\sdk\inc\guiddef.h
+FILE 1280 f:\sp\public\sdk\inc\winnt.h
+FILE 1281 f:\sp\public\sdk\inc\winnls.h
+FILE 1282 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 1283 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 1284 f:\sp\public\sdk\inc\pshpack1.h
+FILE 1285 f:\sp\public\sdk\inc\winerror.h
+FILE 1286 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 1287 f:\sp\vctools\crt_bld\self_x86\crt\src\cvt.h
+FILE 1288 f:\sp\vctools\crt_bld\self_x86\crt\src\conio.h
+FILE 1289 f:\sp\public\sdk\inc\winreg.h
+FILE 1290 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 1291 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 1292 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 1293 f:\sp\public\sdk\inc\ddbanned.h
+FILE 1294 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 1295 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 1296 f:\sp\vctools\crt_bld\self_x86\crt\src\swprintf.inl
+FILE 1297 f:\sp\public\sdk\inc\tvout.h
+FILE 1298 f:\sp\vctools\crt_bld\self_x86\crt\src\stddef.h
+FILE 1299 f:\sp\vctools\crt_bld\self_x86\crt\src\tchar.h
+FILE 1300 f:\sp\vctools\crt_bld\self_x86\crt\src\stdio.h
+FILE 1301 f:\sp\public\sdk\inc\wincon.h
+FILE 1302 f:\sp\public\sdk\inc\imm.h
+FILE 1303 f:\sp\public\sdk\inc\winbase.h
+FILE 1304 f:\sp\public\sdk\inc\wingdi.h
+FILE 1305 f:\sp\public\sdk\inc\winver.h
+FILE 1306 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 1307 f:\sp\public\sdk\inc\windows.h
+FILE 1308 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 1309 f:\sp\public\sdk\inc\pshpack2.h
+FILE 1310 f:\sp\public\sdk\inc\reason.h
+FILE 1311 f:\sp\vctools\crt_bld\self_x86\crt\src\fltintrn.h
+FILE 1312 f:\sp\vctools\crt_bld\self_x86\crt\src\output.c
+FILE 1313 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 1314 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 1315 f:\sp\public\sdk\inc\specstrings.h
+FILE 1316 f:\sp\public\sdk\inc\basetsd.h
+FILE 1317 f:\sp\public\sdk\inc\pshpack4.h
+FILE 1318 f:\sp\public\sdk\inc\winnetwk.h
+FILE 1319 f:\sp\public\sdk\inc\stralign.h
+FILE 1320 f:\sp\public\sdk\inc\poppack.h
+FILE 1321 f:\sp\public\sdk\inc\winsvc.h
+FILE 1322 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 1323 f:\sp\public\sdk\inc\windef.h
+FILE 1324 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 1325 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 1326 f:\sp\public\sdk\inc\winuser.h
+FILE 1327 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 1328 f:\sp\public\sdk\inc\mcx.h
+FILE 1329 f:\sp\public\sdk\inc\pshpack8.h
+FILE 1330 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 1331 f:\sp\public\sdk\inc\guiddef.h
+FILE 1332 f:\sp\public\sdk\inc\winnt.h
+FILE 1333 f:\sp\public\sdk\inc\winnls.h
+FILE 1334 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 1335 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 1336 f:\sp\public\sdk\inc\pshpack1.h
+FILE 1337 f:\sp\public\sdk\inc\winerror.h
+FILE 1338 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 1339 f:\sp\vctools\crt_bld\self_x86\crt\src\cvt.h
+FILE 1340 f:\sp\vctools\crt_bld\self_x86\crt\src\conio.h
+FILE 1341 f:\sp\public\sdk\inc\winreg.h
+FILE 1342 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 1343 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 1344 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 1345 f:\sp\public\sdk\inc\ddbanned.h
+FILE 1346 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 1347 f:\sp\vctools\crt_bld\self_x86\crt\src\swprintf.inl
+FILE 1348 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 1349 f:\sp\public\sdk\inc\tvout.h
+FILE 1350 f:\sp\vctools\crt_bld\self_x86\crt\src\stddef.h
+FILE 1351 f:\sp\vctools\crt_bld\self_x86\crt\src\tchar.h
+FILE 1352 f:\sp\public\sdk\inc\stralign.h
+FILE 1353 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 1354 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 1355 f:\sp\public\sdk\inc\tvout.h
+FILE 1356 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 1357 f:\sp\public\sdk\inc\windows.h
+FILE 1358 f:\sp\public\sdk\inc\winsvc.h
+FILE 1359 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 1360 f:\sp\vctools\crt_bld\self_x86\crt\src\stddef.h
+FILE 1361 f:\sp\public\sdk\inc\wingdi.h
+FILE 1362 f:\sp\public\sdk\inc\pshpack4.h
+FILE 1363 f:\sp\public\sdk\inc\poppack.h
+FILE 1364 f:\sp\public\sdk\inc\winnetwk.h
+FILE 1365 f:\sp\public\sdk\inc\imm.h
+FILE 1366 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 1367 f:\sp\vctools\crt_bld\self_x86\crt\src\swprintf.inl
+FILE 1368 f:\sp\vctools\crt_bld\self_x86\crt\src\wchar.h
+FILE 1369 f:\sp\public\sdk\inc\windef.h
+FILE 1370 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 1371 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 1372 f:\sp\public\sdk\inc\pshpack1.h
+FILE 1373 f:\sp\public\sdk\inc\winver.h
+FILE 1374 f:\sp\vctools\crt_bld\self_x86\crt\src\vswprnc.c
+FILE 1375 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 1376 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 1377 f:\sp\public\sdk\inc\winnt.h
+FILE 1378 f:\sp\public\sdk\inc\winreg.h
+FILE 1379 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 1380 f:\sp\vctools\crt_bld\self_x86\crt\src\vswprint.c
+FILE 1381 f:\sp\vctools\crt_bld\self_x86\crt\src\stdio.h
+FILE 1382 f:\sp\public\sdk\inc\winbase.h
+FILE 1383 f:\sp\public\sdk\inc\winerror.h
+FILE 1384 f:\sp\public\sdk\inc\ddbanned.h
+FILE 1385 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 1386 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 1387 f:\sp\public\sdk\inc\pshpack8.h
+FILE 1388 f:\sp\public\sdk\inc\guiddef.h
+FILE 1389 f:\sp\public\sdk\inc\specstrings.h
+FILE 1390 f:\sp\public\sdk\inc\basetsd.h
+FILE 1391 f:\sp\public\sdk\inc\reason.h
+FILE 1392 f:\sp\public\sdk\inc\wincon.h
+FILE 1393 f:\sp\vctools\crt_bld\self_x86\crt\src\wtime.inl
+FILE 1394 f:\sp\public\sdk\inc\pshpack2.h
+FILE 1395 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 1396 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 1397 f:\sp\public\sdk\inc\mcx.h
+FILE 1398 f:\sp\public\sdk\inc\winuser.h
+FILE 1399 f:\sp\public\sdk\inc\winnls.h
+FILE 1400 f:\sp\public\sdk\inc\pshpack1.h
+FILE 1401 f:\sp\public\sdk\inc\winver.h
+FILE 1402 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 1403 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 1404 f:\sp\public\sdk\inc\winnt.h
+FILE 1405 f:\sp\public\sdk\inc\winreg.h
+FILE 1406 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 1407 f:\sp\public\sdk\inc\winbase.h
+FILE 1408 f:\sp\public\sdk\inc\winerror.h
+FILE 1409 f:\sp\public\sdk\inc\pshpack8.h
+FILE 1410 f:\sp\public\sdk\inc\guiddef.h
+FILE 1411 f:\sp\vctools\crt_bld\self_x86\crt\src\stdio.h
+FILE 1412 f:\sp\public\sdk\inc\specstrings.h
+FILE 1413 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 1414 f:\sp\public\sdk\inc\basetsd.h
+FILE 1415 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 1416 f:\sp\public\sdk\inc\reason.h
+FILE 1417 f:\sp\vctools\crt_bld\self_x86\crt\src\wtime.inl
+FILE 1418 f:\sp\public\sdk\inc\wincon.h
+FILE 1419 f:\sp\public\sdk\inc\pshpack2.h
+FILE 1420 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 1421 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 1422 f:\sp\public\sdk\inc\mcx.h
+FILE 1423 f:\sp\public\sdk\inc\winuser.h
+FILE 1424 f:\sp\public\sdk\inc\winnls.h
+FILE 1425 f:\sp\vctools\crt_bld\self_x86\crt\src\vswprint.c
+FILE 1426 f:\sp\public\sdk\inc\stralign.h
+FILE 1427 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 1428 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 1429 f:\sp\public\sdk\inc\tvout.h
+FILE 1430 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 1431 f:\sp\public\sdk\inc\windows.h
+FILE 1432 f:\sp\public\sdk\inc\winsvc.h
+FILE 1433 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 1434 f:\sp\vctools\crt_bld\self_x86\crt\src\stddef.h
+FILE 1435 f:\sp\vctools\crt_bld\self_x86\crt\src\swprintf.inl
+FILE 1436 f:\sp\public\sdk\inc\wingdi.h
+FILE 1437 f:\sp\public\sdk\inc\pshpack4.h
+FILE 1438 f:\sp\public\sdk\inc\poppack.h
+FILE 1439 f:\sp\public\sdk\inc\ddbanned.h
+FILE 1440 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 1441 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 1442 f:\sp\vctools\crt_bld\self_x86\crt\src\wchar.h
+FILE 1443 f:\sp\public\sdk\inc\winnetwk.h
+FILE 1444 f:\sp\public\sdk\inc\imm.h
+FILE 1445 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 1446 f:\sp\public\sdk\inc\windef.h
+FILE 1447 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 1448 f:\sp\public\sdk\inc\windef.h
+FILE 1449 f:\sp\public\sdk\inc\pshpack1.h
+FILE 1450 f:\sp\public\sdk\inc\winver.h
+FILE 1451 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 1452 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 1453 f:\sp\public\sdk\inc\winnt.h
+FILE 1454 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 1455 f:\sp\public\sdk\inc\winreg.h
+FILE 1456 f:\sp\vctools\crt_bld\self_x86\crt\src\stdio.h
+FILE 1457 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 1458 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 1459 f:\sp\public\sdk\inc\winbase.h
+FILE 1460 f:\sp\public\sdk\inc\winerror.h
+FILE 1461 f:\sp\public\sdk\inc\pshpack8.h
+FILE 1462 f:\sp\vctools\crt_bld\self_x86\crt\src\vfprintf.c
+FILE 1463 f:\sp\public\sdk\inc\reason.h
+FILE 1464 f:\sp\public\sdk\inc\wincon.h
+FILE 1465 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 1466 f:\sp\vctools\crt_bld\self_x86\crt\src\swprintf.inl
+FILE 1467 f:\sp\public\sdk\inc\pshpack2.h
+FILE 1468 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 1469 f:\sp\vctools\crt_bld\self_x86\crt\src\file2.h
+FILE 1470 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 1471 f:\sp\public\sdk\inc\mcx.h
+FILE 1472 f:\sp\public\sdk\inc\winuser.h
+FILE 1473 f:\sp\public\sdk\inc\winnls.h
+FILE 1474 f:\sp\public\sdk\inc\guiddef.h
+FILE 1475 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 1476 f:\sp\public\sdk\inc\windows.h
+FILE 1477 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 1478 f:\sp\public\sdk\inc\specstrings.h
+FILE 1479 f:\sp\public\sdk\inc\basetsd.h
+FILE 1480 f:\sp\public\sdk\inc\stralign.h
+FILE 1481 f:\sp\public\sdk\inc\tvout.h
+FILE 1482 f:\sp\public\sdk\inc\ddbanned.h
+FILE 1483 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 1484 f:\sp\vctools\crt_bld\self_x86\crt\src\stddef.h
+FILE 1485 f:\sp\public\sdk\inc\winsvc.h
+FILE 1486 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 1487 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 1488 f:\sp\public\sdk\inc\wingdi.h
+FILE 1489 f:\sp\public\sdk\inc\pshpack4.h
+FILE 1490 f:\sp\public\sdk\inc\poppack.h
+FILE 1491 f:\sp\public\sdk\inc\winnetwk.h
+FILE 1492 f:\sp\public\sdk\inc\imm.h
+FILE 1493 f:\sp\public\sdk\inc\windef.h
+FILE 1494 f:\sp\public\sdk\inc\pshpack1.h
+FILE 1495 f:\sp\public\sdk\inc\winver.h
+FILE 1496 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 1497 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 1498 f:\sp\public\sdk\inc\winnt.h
+FILE 1499 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 1500 f:\sp\public\sdk\inc\winreg.h
+FILE 1501 f:\sp\vctools\crt_bld\self_x86\crt\src\stdio.h
+FILE 1502 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 1503 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 1504 f:\sp\public\sdk\inc\winbase.h
+FILE 1505 f:\sp\public\sdk\inc\winerror.h
+FILE 1506 f:\sp\public\sdk\inc\pshpack8.h
+FILE 1507 f:\sp\vctools\crt_bld\self_x86\crt\src\vprintf.c
+FILE 1508 f:\sp\public\sdk\inc\reason.h
+FILE 1509 f:\sp\public\sdk\inc\wincon.h
+FILE 1510 f:\sp\vctools\crt_bld\self_x86\crt\src\file2.h
+FILE 1511 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 1512 f:\sp\public\sdk\inc\pshpack2.h
+FILE 1513 f:\sp\vctools\crt_bld\self_x86\crt\src\swprintf.inl
+FILE 1514 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 1515 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 1516 f:\sp\public\sdk\inc\mcx.h
+FILE 1517 f:\sp\public\sdk\inc\winuser.h
+FILE 1518 f:\sp\public\sdk\inc\winnls.h
+FILE 1519 f:\sp\public\sdk\inc\guiddef.h
+FILE 1520 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 1521 f:\sp\public\sdk\inc\windows.h
+FILE 1522 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 1523 f:\sp\public\sdk\inc\specstrings.h
+FILE 1524 f:\sp\public\sdk\inc\basetsd.h
+FILE 1525 f:\sp\public\sdk\inc\stralign.h
+FILE 1526 f:\sp\public\sdk\inc\tvout.h
+FILE 1527 f:\sp\public\sdk\inc\ddbanned.h
+FILE 1528 f:\sp\public\sdk\inc\winsvc.h
+FILE 1529 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 1530 f:\sp\vctools\crt_bld\self_x86\crt\src\stddef.h
+FILE 1531 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 1532 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 1533 f:\sp\public\sdk\inc\wingdi.h
+FILE 1534 f:\sp\public\sdk\inc\pshpack4.h
+FILE 1535 f:\sp\public\sdk\inc\poppack.h
+FILE 1536 f:\sp\public\sdk\inc\winnetwk.h
+FILE 1537 f:\sp\public\sdk\inc\imm.h
+FILE 1538 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 1539 f:\sp\public\sdk\inc\pshpack1.h
+FILE 1540 f:\sp\public\sdk\inc\winver.h
+FILE 1541 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 1542 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 1543 f:\sp\public\sdk\inc\winnt.h
+FILE 1544 f:\sp\public\sdk\inc\winreg.h
+FILE 1545 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 1546 f:\sp\public\sdk\inc\winbase.h
+FILE 1547 f:\sp\public\sdk\inc\winerror.h
+FILE 1548 f:\sp\public\sdk\inc\pshpack8.h
+FILE 1549 f:\sp\public\sdk\inc\guiddef.h
+FILE 1550 f:\sp\vctools\crt_bld\self_x86\crt\src\stdio.h
+FILE 1551 f:\sp\public\sdk\inc\specstrings.h
+FILE 1552 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 1553 f:\sp\public\sdk\inc\basetsd.h
+FILE 1554 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 1555 f:\sp\public\sdk\inc\reason.h
+FILE 1556 f:\sp\vctools\crt_bld\self_x86\crt\src\wtime.inl
+FILE 1557 f:\sp\public\sdk\inc\wincon.h
+FILE 1558 f:\sp\public\sdk\inc\pshpack2.h
+FILE 1559 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 1560 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 1561 f:\sp\public\sdk\inc\mcx.h
+FILE 1562 f:\sp\public\sdk\inc\winuser.h
+FILE 1563 f:\sp\public\sdk\inc\winnls.h
+FILE 1564 f:\sp\vctools\crt_bld\self_x86\crt\src\swprintf.c
+FILE 1565 f:\sp\public\sdk\inc\stralign.h
+FILE 1566 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 1567 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 1568 f:\sp\public\sdk\inc\tvout.h
+FILE 1569 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 1570 f:\sp\public\sdk\inc\windows.h
+FILE 1571 f:\sp\public\sdk\inc\winsvc.h
+FILE 1572 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 1573 f:\sp\vctools\crt_bld\self_x86\crt\src\stddef.h
+FILE 1574 f:\sp\vctools\crt_bld\self_x86\crt\src\swprintf.inl
+FILE 1575 f:\sp\public\sdk\inc\wingdi.h
+FILE 1576 f:\sp\public\sdk\inc\pshpack4.h
+FILE 1577 f:\sp\public\sdk\inc\poppack.h
+FILE 1578 f:\sp\public\sdk\inc\ddbanned.h
+FILE 1579 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 1580 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 1581 f:\sp\vctools\crt_bld\self_x86\crt\src\wchar.h
+FILE 1582 f:\sp\public\sdk\inc\winnetwk.h
+FILE 1583 f:\sp\public\sdk\inc\imm.h
+FILE 1584 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 1585 f:\sp\public\sdk\inc\windef.h
+FILE 1586 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 1587 f:\sp\public\sdk\inc\windef.h
+FILE 1588 f:\sp\public\sdk\inc\pshpack1.h
+FILE 1589 f:\sp\public\sdk\inc\winver.h
+FILE 1590 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 1591 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 1592 f:\sp\public\sdk\inc\winnt.h
+FILE 1593 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 1594 f:\sp\public\sdk\inc\winreg.h
+FILE 1595 f:\sp\vctools\crt_bld\self_x86\crt\src\stdio.h
+FILE 1596 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 1597 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 1598 f:\sp\public\sdk\inc\winbase.h
+FILE 1599 f:\sp\public\sdk\inc\winerror.h
+FILE 1600 f:\sp\public\sdk\inc\pshpack8.h
+FILE 1601 f:\sp\vctools\crt_bld\self_x86\crt\src\printf.c
+FILE 1602 f:\sp\public\sdk\inc\reason.h
+FILE 1603 f:\sp\public\sdk\inc\wincon.h
+FILE 1604 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 1605 f:\sp\vctools\crt_bld\self_x86\crt\src\swprintf.inl
+FILE 1606 f:\sp\public\sdk\inc\pshpack2.h
+FILE 1607 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 1608 f:\sp\vctools\crt_bld\self_x86\crt\src\file2.h
+FILE 1609 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 1610 f:\sp\public\sdk\inc\mcx.h
+FILE 1611 f:\sp\public\sdk\inc\winuser.h
+FILE 1612 f:\sp\public\sdk\inc\winnls.h
+FILE 1613 f:\sp\public\sdk\inc\guiddef.h
+FILE 1614 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 1615 f:\sp\public\sdk\inc\windows.h
+FILE 1616 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 1617 f:\sp\public\sdk\inc\specstrings.h
+FILE 1618 f:\sp\public\sdk\inc\basetsd.h
+FILE 1619 f:\sp\public\sdk\inc\stralign.h
+FILE 1620 f:\sp\public\sdk\inc\tvout.h
+FILE 1621 f:\sp\public\sdk\inc\ddbanned.h
+FILE 1622 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 1623 f:\sp\vctools\crt_bld\self_x86\crt\src\stddef.h
+FILE 1624 f:\sp\public\sdk\inc\winsvc.h
+FILE 1625 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 1626 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 1627 f:\sp\vctools\crt_bld\self_x86\crt\src\process.h
+FILE 1628 f:\sp\public\sdk\inc\wingdi.h
+FILE 1629 f:\sp\public\sdk\inc\pshpack4.h
+FILE 1630 f:\sp\public\sdk\inc\poppack.h
+FILE 1631 f:\sp\public\sdk\inc\winnetwk.h
+FILE 1632 f:\sp\public\sdk\inc\imm.h
+FILE 1633 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 1634 f:\sp\public\sdk\inc\windef.h
+FILE 1635 f:\sp\public\sdk\inc\pshpack1.h
+FILE 1636 f:\sp\public\sdk\inc\winver.h
+FILE 1637 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 1638 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 1639 f:\sp\public\sdk\inc\winnt.h
+FILE 1640 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 1641 f:\sp\public\sdk\inc\winreg.h
+FILE 1642 f:\sp\vctools\crt_bld\self_x86\crt\src\stdio.h
+FILE 1643 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 1644 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 1645 f:\sp\public\sdk\inc\winbase.h
+FILE 1646 f:\sp\public\sdk\inc\winerror.h
+FILE 1647 f:\sp\public\sdk\inc\pshpack8.h
+FILE 1648 f:\sp\vctools\crt_bld\self_x86\crt\src\fprintf.c
+FILE 1649 f:\sp\public\sdk\inc\reason.h
+FILE 1650 f:\sp\public\sdk\inc\wincon.h
+FILE 1651 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 1652 f:\sp\vctools\crt_bld\self_x86\crt\src\swprintf.inl
+FILE 1653 f:\sp\public\sdk\inc\pshpack2.h
+FILE 1654 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 1655 f:\sp\vctools\crt_bld\self_x86\crt\src\file2.h
+FILE 1656 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 1657 f:\sp\public\sdk\inc\mcx.h
+FILE 1658 f:\sp\public\sdk\inc\winuser.h
+FILE 1659 f:\sp\public\sdk\inc\winnls.h
+FILE 1660 f:\sp\public\sdk\inc\guiddef.h
+FILE 1661 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 1662 f:\sp\public\sdk\inc\windows.h
+FILE 1663 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 1664 f:\sp\public\sdk\inc\specstrings.h
+FILE 1665 f:\sp\public\sdk\inc\basetsd.h
+FILE 1666 f:\sp\public\sdk\inc\stralign.h
+FILE 1667 f:\sp\public\sdk\inc\tvout.h
+FILE 1668 f:\sp\public\sdk\inc\ddbanned.h
+FILE 1669 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 1670 f:\sp\vctools\crt_bld\self_x86\crt\src\stddef.h
+FILE 1671 f:\sp\public\sdk\inc\winsvc.h
+FILE 1672 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 1673 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 1674 f:\sp\public\sdk\inc\wingdi.h
+FILE 1675 f:\sp\public\sdk\inc\pshpack4.h
+FILE 1676 f:\sp\public\sdk\inc\poppack.h
+FILE 1677 f:\sp\public\sdk\inc\winnetwk.h
+FILE 1678 f:\sp\public\sdk\inc\imm.h
+FILE 1679 f:\sp\public\sdk\inc\pshpack1.h
+FILE 1680 f:\sp\public\sdk\inc\winver.h
+FILE 1681 f:\sp\public\sdk\inc\winnt.h
+FILE 1682 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 1683 f:\sp\public\sdk\inc\winreg.h
+FILE 1684 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 1685 f:\sp\public\sdk\inc\winbase.h
+FILE 1686 f:\sp\public\sdk\inc\winerror.h
+FILE 1687 f:\sp\public\sdk\inc\pshpack8.h
+FILE 1688 f:\sp\vctools\crt_bld\self_x86\crt\src\sect_attribs.h
+FILE 1689 f:\sp\public\sdk\inc\reason.h
+FILE 1690 f:\sp\public\sdk\inc\wincon.h
+FILE 1691 f:\sp\public\sdk\inc\pshpack2.h
+FILE 1692 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 1693 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 1694 f:\sp\public\sdk\inc\mcx.h
+FILE 1695 f:\sp\public\sdk\inc\winuser.h
+FILE 1696 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 1697 f:\sp\public\sdk\inc\winnls.h
+FILE 1698 f:\sp\public\sdk\inc\guiddef.h
+FILE 1699 f:\sp\public\sdk\inc\windows.h
+FILE 1700 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 1701 f:\sp\public\sdk\inc\specstrings.h
+FILE 1702 f:\sp\public\sdk\inc\basetsd.h
+FILE 1703 f:\sp\public\sdk\inc\stralign.h
+FILE 1704 f:\sp\vctools\crt_bld\self_x86\crt\src\fflush.c
+FILE 1705 f:\sp\vctools\crt_bld\self_x86\crt\src\file2.h
+FILE 1706 f:\sp\vctools\crt_bld\self_x86\crt\src\io.h
+FILE 1707 f:\sp\public\sdk\inc\tvout.h
+FILE 1708 f:\sp\public\sdk\inc\winsvc.h
+FILE 1709 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 1710 f:\sp\public\sdk\inc\wingdi.h
+FILE 1711 f:\sp\public\sdk\inc\pshpack4.h
+FILE 1712 f:\sp\vctools\crt_bld\self_x86\crt\src\stdio.h
+FILE 1713 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 1714 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 1715 f:\sp\public\sdk\inc\poppack.h
+FILE 1716 f:\sp\public\sdk\inc\ddbanned.h
+FILE 1717 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 1718 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 1719 f:\sp\public\sdk\inc\winnetwk.h
+FILE 1720 f:\sp\public\sdk\inc\imm.h
+FILE 1721 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 1722 f:\sp\public\sdk\inc\windef.h
+FILE 1723 f:\sp\vctools\crt_bld\self_x86\crt\src\swprintf.inl
+FILE 1724 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 1725 f:\sp\public\sdk\inc\pshpack8.h
+FILE 1726 f:\sp\public\sdk\inc\reason.h
+FILE 1727 f:\sp\public\sdk\inc\wincon.h
+FILE 1728 f:\sp\public\sdk\inc\pshpack2.h
+FILE 1729 f:\sp\public\sdk\inc\mcx.h
+FILE 1730 f:\sp\public\sdk\inc\winuser.h
+FILE 1731 f:\sp\public\sdk\inc\winnls.h
+FILE 1732 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 1733 f:\sp\public\sdk\inc\windef.h
+FILE 1734 f:\sp\public\sdk\inc\stralign.h
+FILE 1735 f:\sp\vctools\crt_bld\self_x86\crt\src\file2.h
+FILE 1736 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 1737 f:\sp\public\sdk\inc\tvout.h
+FILE 1738 f:\sp\public\sdk\inc\winsvc.h
+FILE 1739 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 1740 f:\sp\public\sdk\inc\wingdi.h
+FILE 1741 f:\sp\public\sdk\inc\pshpack4.h
+FILE 1742 f:\sp\vctools\crt_bld\self_x86\crt\src\stdio.h
+FILE 1743 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 1744 f:\sp\public\sdk\inc\poppack.h
+FILE 1745 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 1746 f:\sp\public\sdk\inc\winnt.h
+FILE 1747 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 1748 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 1749 f:\sp\public\sdk\inc\winnetwk.h
+FILE 1750 f:\sp\public\sdk\inc\imm.h
+FILE 1751 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 1752 f:\sp\vctools\crt_bld\self_x86\crt\src\fclose.c
+FILE 1753 f:\sp\vctools\crt_bld\self_x86\crt\src\swprintf.inl
+FILE 1754 f:\sp\public\sdk\inc\pshpack1.h
+FILE 1755 f:\sp\public\sdk\inc\winver.h
+FILE 1756 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 1757 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 1758 f:\sp\public\sdk\inc\guiddef.h
+FILE 1759 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 1760 f:\sp\public\sdk\inc\ddbanned.h
+FILE 1761 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 1762 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 1763 f:\sp\public\sdk\inc\specstrings.h
+FILE 1764 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 1765 f:\sp\public\sdk\inc\basetsd.h
+FILE 1766 f:\sp\public\sdk\inc\windows.h
+FILE 1767 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 1768 f:\sp\vctools\crt_bld\self_x86\crt\src\io.h
+FILE 1769 f:\sp\public\sdk\inc\winreg.h
+FILE 1770 f:\sp\public\sdk\inc\winbase.h
+FILE 1771 f:\sp\public\sdk\inc\winerror.h
+FILE 1772 f:\sp\public\sdk\inc\poppack.h
+FILE 1773 f:\sp\vctools\crt_bld\self_x86\crt\src\file2.h
+FILE 1774 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 1775 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 1776 f:\sp\public\sdk\inc\winnetwk.h
+FILE 1777 f:\sp\public\sdk\inc\imm.h
+FILE 1778 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 1779 f:\sp\public\sdk\inc\windef.h
+FILE 1780 f:\sp\public\sdk\inc\pshpack1.h
+FILE 1781 f:\sp\public\sdk\inc\winver.h
+FILE 1782 f:\sp\public\sdk\inc\windows.h
+FILE 1783 f:\sp\public\sdk\inc\winnt.h
+FILE 1784 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 1785 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 1786 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 1787 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 1788 f:\sp\vctools\crt_bld\self_x86\crt\src\malloc.h
+FILE 1789 f:\sp\vctools\crt_bld\self_x86\crt\src\swprintf.inl
+FILE 1790 f:\sp\public\sdk\inc\winreg.h
+FILE 1791 f:\sp\public\sdk\inc\winbase.h
+FILE 1792 f:\sp\vctools\crt_bld\self_x86\crt\src\closeall.c
+FILE 1793 f:\sp\public\sdk\inc\winerror.h
+FILE 1794 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 1795 f:\sp\public\sdk\inc\pshpack8.h
+FILE 1796 f:\sp\vctools\crt_bld\self_x86\crt\src\stdio.h
+FILE 1797 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 1798 f:\sp\public\sdk\inc\reason.h
+FILE 1799 f:\sp\public\sdk\inc\wincon.h
+FILE 1800 f:\sp\public\sdk\inc\ddbanned.h
+FILE 1801 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 1802 f:\sp\public\sdk\inc\pshpack2.h
+FILE 1803 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 1804 f:\sp\public\sdk\inc\mcx.h
+FILE 1805 f:\sp\public\sdk\inc\winuser.h
+FILE 1806 f:\sp\public\sdk\inc\winnls.h
+FILE 1807 f:\sp\public\sdk\inc\guiddef.h
+FILE 1808 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 1809 f:\sp\public\sdk\inc\specstrings.h
+FILE 1810 f:\sp\public\sdk\inc\basetsd.h
+FILE 1811 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 1812 f:\sp\public\sdk\inc\stralign.h
+FILE 1813 f:\sp\public\sdk\inc\tvout.h
+FILE 1814 f:\sp\public\sdk\inc\winsvc.h
+FILE 1815 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 1816 f:\sp\public\sdk\inc\wingdi.h
+FILE 1817 f:\sp\public\sdk\inc\pshpack4.h
+FILE 1818 f:\sp\public\sdk\inc\pshpack8.h
+FILE 1819 f:\sp\public\sdk\inc\reason.h
+FILE 1820 f:\sp\public\sdk\inc\wincon.h
+FILE 1821 f:\sp\public\sdk\inc\pshpack2.h
+FILE 1822 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 1823 f:\sp\public\sdk\inc\mcx.h
+FILE 1824 f:\sp\public\sdk\inc\winuser.h
+FILE 1825 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 1826 f:\sp\public\sdk\inc\winnls.h
+FILE 1827 f:\sp\public\sdk\inc\guiddef.h
+FILE 1828 f:\sp\public\sdk\inc\windows.h
+FILE 1829 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 1830 f:\sp\public\sdk\inc\specstrings.h
+FILE 1831 f:\sp\public\sdk\inc\basetsd.h
+FILE 1832 f:\sp\public\sdk\inc\stralign.h
+FILE 1833 f:\sp\vctools\crt_bld\self_x86\crt\src\file2.h
+FILE 1834 f:\sp\vctools\crt_bld\self_x86\crt\src\io.h
+FILE 1835 f:\sp\public\sdk\inc\tvout.h
+FILE 1836 f:\sp\public\sdk\inc\winsvc.h
+FILE 1837 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 1838 f:\sp\public\sdk\inc\wingdi.h
+FILE 1839 f:\sp\public\sdk\inc\pshpack4.h
+FILE 1840 f:\sp\vctools\crt_bld\self_x86\crt\src\malloc.h
+FILE 1841 f:\sp\vctools\crt_bld\self_x86\crt\src\stdio.h
+FILE 1842 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 1843 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 1844 f:\sp\public\sdk\inc\poppack.h
+FILE 1845 f:\sp\public\sdk\inc\winnetwk.h
+FILE 1846 f:\sp\public\sdk\inc\imm.h
+FILE 1847 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 1848 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 1849 f:\sp\public\sdk\inc\windef.h
+FILE 1850 f:\sp\vctools\crt_bld\self_x86\crt\src\_sftbuf.c
+FILE 1851 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 1852 f:\sp\vctools\crt_bld\self_x86\crt\src\swprintf.inl
+FILE 1853 f:\sp\public\sdk\inc\pshpack1.h
+FILE 1854 f:\sp\public\sdk\inc\winver.h
+FILE 1855 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 1856 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 1857 f:\sp\public\sdk\inc\ddbanned.h
+FILE 1858 f:\sp\public\sdk\inc\winnt.h
+FILE 1859 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 1860 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 1861 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 1862 f:\sp\public\sdk\inc\winreg.h
+FILE 1863 f:\sp\public\sdk\inc\winbase.h
+FILE 1864 f:\sp\public\sdk\inc\winerror.h
+FILE 1865 f:\sp\public\sdk\inc\pshpack1.h
+FILE 1866 f:\sp\public\sdk\inc\winver.h
+FILE 1867 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 1868 f:\sp\public\sdk\inc\winnt.h
+FILE 1869 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 1870 f:\sp\public\sdk\inc\winreg.h
+FILE 1871 f:\sp\public\sdk\inc\winbase.h
+FILE 1872 f:\sp\vctools\crt_bld\self_x86\crt\src\file2.h
+FILE 1873 f:\sp\vctools\crt_bld\self_x86\crt\src\malloc.h
+FILE 1874 f:\sp\public\sdk\inc\winerror.h
+FILE 1875 f:\sp\public\sdk\inc\pshpack8.h
+FILE 1876 f:\sp\public\sdk\inc\reason.h
+FILE 1877 f:\sp\vctools\crt_bld\self_x86\crt\src\stdio.h
+FILE 1878 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 1879 f:\sp\public\sdk\inc\wincon.h
+FILE 1880 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 1881 f:\sp\public\sdk\inc\pshpack2.h
+FILE 1882 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 1883 f:\sp\public\sdk\inc\mcx.h
+FILE 1884 f:\sp\public\sdk\inc\winuser.h
+FILE 1885 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 1886 f:\sp\public\sdk\inc\winnls.h
+FILE 1887 f:\sp\public\sdk\inc\guiddef.h
+FILE 1888 f:\sp\public\sdk\inc\windows.h
+FILE 1889 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 1890 f:\sp\public\sdk\inc\specstrings.h
+FILE 1891 f:\sp\public\sdk\inc\basetsd.h
+FILE 1892 f:\sp\public\sdk\inc\stralign.h
+FILE 1893 f:\sp\vctools\crt_bld\self_x86\crt\src\_getbuf.c
+FILE 1894 f:\sp\public\sdk\inc\tvout.h
+FILE 1895 f:\sp\public\sdk\inc\winsvc.h
+FILE 1896 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 1897 f:\sp\public\sdk\inc\wingdi.h
+FILE 1898 f:\sp\vctools\crt_bld\self_x86\crt\src\swprintf.inl
+FILE 1899 f:\sp\public\sdk\inc\pshpack4.h
+FILE 1900 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 1901 f:\sp\public\sdk\inc\poppack.h
+FILE 1902 f:\sp\public\sdk\inc\ddbanned.h
+FILE 1903 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 1904 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 1905 f:\sp\public\sdk\inc\winnetwk.h
+FILE 1906 f:\sp\public\sdk\inc\imm.h
+FILE 1907 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 1908 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 1909 f:\sp\public\sdk\inc\windef.h
+FILE 1910 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 1911 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 1912 f:\sp\public\sdk\inc\windef.h
+FILE 1913 f:\sp\public\sdk\inc\pshpack1.h
+FILE 1914 f:\sp\public\sdk\inc\winver.h
+FILE 1915 f:\sp\vctools\crt_bld\self_x86\crt\src\file2.h
+FILE 1916 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 1917 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 1918 f:\sp\public\sdk\inc\winnt.h
+FILE 1919 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 1920 f:\sp\public\sdk\inc\winreg.h
+FILE 1921 f:\sp\vctools\crt_bld\self_x86\crt\src\stdio.h
+FILE 1922 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 1923 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 1924 f:\sp\public\sdk\inc\winbase.h
+FILE 1925 f:\sp\public\sdk\inc\winerror.h
+FILE 1926 f:\sp\public\sdk\inc\pshpack8.h
+FILE 1927 f:\sp\vctools\crt_bld\self_x86\crt\src\_freebuf.c
+FILE 1928 f:\sp\public\sdk\inc\reason.h
+FILE 1929 f:\sp\public\sdk\inc\wincon.h
+FILE 1930 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 1931 f:\sp\vctools\crt_bld\self_x86\crt\src\swprintf.inl
+FILE 1932 f:\sp\public\sdk\inc\pshpack2.h
+FILE 1933 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 1934 f:\sp\public\sdk\inc\mcx.h
+FILE 1935 f:\sp\public\sdk\inc\winuser.h
+FILE 1936 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 1937 f:\sp\public\sdk\inc\winnls.h
+FILE 1938 f:\sp\public\sdk\inc\guiddef.h
+FILE 1939 f:\sp\public\sdk\inc\windows.h
+FILE 1940 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 1941 f:\sp\public\sdk\inc\specstrings.h
+FILE 1942 f:\sp\public\sdk\inc\basetsd.h
+FILE 1943 f:\sp\public\sdk\inc\stralign.h
+FILE 1944 f:\sp\public\sdk\inc\tvout.h
+FILE 1945 f:\sp\public\sdk\inc\ddbanned.h
+FILE 1946 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 1947 f:\sp\public\sdk\inc\winsvc.h
+FILE 1948 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 1949 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 1950 f:\sp\public\sdk\inc\wingdi.h
+FILE 1951 f:\sp\public\sdk\inc\pshpack4.h
+FILE 1952 f:\sp\public\sdk\inc\poppack.h
+FILE 1953 f:\sp\public\sdk\inc\winnetwk.h
+FILE 1954 f:\sp\public\sdk\inc\imm.h
+FILE 1955 f:\sp\public\sdk\inc\specstrings.h
+FILE 1956 f:\sp\public\sdk\inc\basetsd.h
+FILE 1957 f:\sp\public\sdk\inc\reason.h
+FILE 1958 f:\sp\public\sdk\inc\wincon.h
+FILE 1959 f:\sp\public\sdk\inc\pshpack2.h
+FILE 1960 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 1961 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 1962 f:\sp\public\sdk\inc\mcx.h
+FILE 1963 f:\sp\public\sdk\inc\winuser.h
+FILE 1964 f:\sp\public\sdk\inc\winnls.h
+FILE 1965 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 1966 f:\sp\public\sdk\inc\stralign.h
+FILE 1967 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 1968 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 1969 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 1970 f:\sp\public\sdk\inc\windows.h
+FILE 1971 f:\sp\public\sdk\inc\tvout.h
+FILE 1972 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 1973 f:\sp\public\sdk\inc\winsvc.h
+FILE 1974 f:\sp\vctools\crt_bld\self_x86\crt\src\tchar.h
+FILE 1975 f:\sp\vctools\crt_bld\self_x86\crt\src\file2.h
+FILE 1976 f:\sp\public\sdk\inc\wingdi.h
+FILE 1977 f:\sp\vctools\crt_bld\self_x86\crt\src\io.h
+FILE 1978 f:\sp\public\sdk\inc\pshpack4.h
+FILE 1979 f:\sp\public\sdk\inc\poppack.h
+FILE 1980 f:\sp\vctools\crt_bld\self_x86\crt\src\_flsbuf.c
+FILE 1981 f:\sp\vctools\crt_bld\self_x86\crt\src\stdio.h
+FILE 1982 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 1983 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 1984 f:\sp\public\sdk\inc\winnetwk.h
+FILE 1985 f:\sp\vctools\crt_bld\self_x86\crt\src\wtime.inl
+FILE 1986 f:\sp\public\sdk\inc\imm.h
+FILE 1987 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 1988 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 1989 f:\sp\vctools\crt_bld\self_x86\crt\src\_flswbuf.c
+FILE 1990 f:\sp\public\sdk\inc\windef.h
+FILE 1991 f:\sp\vctools\crt_bld\self_x86\crt\src\malloc.h
+FILE 1992 f:\sp\public\sdk\inc\pshpack1.h
+FILE 1993 f:\sp\vctools\crt_bld\self_x86\crt\src\swprintf.inl
+FILE 1994 f:\sp\public\sdk\inc\winver.h
+FILE 1995 f:\sp\public\sdk\inc\ddbanned.h
+FILE 1996 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 1997 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 1998 f:\sp\public\sdk\inc\winnt.h
+FILE 1999 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 2000 f:\sp\public\sdk\inc\winreg.h
+FILE 2001 f:\sp\vctools\crt_bld\self_x86\crt\src\msdos.h
+FILE 2002 f:\sp\vctools\crt_bld\self_x86\crt\src\wchar.h
+FILE 2003 f:\sp\public\sdk\inc\winbase.h
+FILE 2004 f:\sp\public\sdk\inc\winerror.h
+FILE 2005 f:\sp\public\sdk\inc\pshpack8.h
+FILE 2006 f:\sp\public\sdk\inc\guiddef.h
+FILE 2007 f:\sp\public\sdk\inc\basetsd.h
+FILE 2008 f:\sp\public\sdk\inc\reason.h
+FILE 2009 f:\sp\public\sdk\inc\wincon.h
+FILE 2010 f:\sp\public\sdk\inc\pshpack2.h
+FILE 2011 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 2012 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 2013 f:\sp\public\sdk\inc\mcx.h
+FILE 2014 f:\sp\public\sdk\inc\winuser.h
+FILE 2015 f:\sp\public\sdk\inc\winnls.h
+FILE 2016 f:\sp\public\sdk\inc\stralign.h
+FILE 2017 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 2018 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 2019 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 2020 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 2021 f:\sp\public\sdk\inc\tvout.h
+FILE 2022 f:\sp\public\sdk\inc\windows.h
+FILE 2023 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 2024 f:\sp\public\sdk\inc\winsvc.h
+FILE 2025 f:\sp\vctools\crt_bld\self_x86\crt\src\tchar.h
+FILE 2026 f:\sp\vctools\crt_bld\self_x86\crt\src\mbstring.h
+FILE 2027 f:\sp\public\sdk\inc\wingdi.h
+FILE 2028 f:\sp\vctools\crt_bld\self_x86\crt\src\file2.h
+FILE 2029 f:\sp\vctools\crt_bld\self_x86\crt\src\io.h
+FILE 2030 f:\sp\public\sdk\inc\pshpack4.h
+FILE 2031 f:\sp\public\sdk\inc\poppack.h
+FILE 2032 f:\sp\vctools\crt_bld\self_x86\crt\src\stdio.h
+FILE 2033 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 2034 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 2035 f:\sp\public\sdk\inc\winnetwk.h
+FILE 2036 f:\sp\public\sdk\inc\imm.h
+FILE 2037 f:\sp\vctools\crt_bld\self_x86\crt\src\wtime.inl
+FILE 2038 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 2039 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 2040 f:\sp\public\sdk\inc\windef.h
+FILE 2041 f:\sp\vctools\crt_bld\self_x86\crt\src\_flsbuf.c
+FILE 2042 f:\sp\vctools\crt_bld\self_x86\crt\src\malloc.h
+FILE 2043 f:\sp\public\sdk\inc\pshpack1.h
+FILE 2044 f:\sp\vctools\crt_bld\self_x86\crt\src\swprintf.inl
+FILE 2045 f:\sp\public\sdk\inc\winver.h
+FILE 2046 f:\sp\public\sdk\inc\ddbanned.h
+FILE 2047 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 2048 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 2049 f:\sp\public\sdk\inc\winnt.h
+FILE 2050 f:\sp\public\sdk\inc\winreg.h
+FILE 2051 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 2052 f:\sp\vctools\crt_bld\self_x86\crt\src\msdos.h
+FILE 2053 f:\sp\vctools\crt_bld\self_x86\crt\src\wchar.h
+FILE 2054 f:\sp\public\sdk\inc\winbase.h
+FILE 2055 f:\sp\public\sdk\inc\winerror.h
+FILE 2056 f:\sp\public\sdk\inc\pshpack8.h
+FILE 2057 f:\sp\public\sdk\inc\guiddef.h
+FILE 2058 f:\sp\public\sdk\inc\specstrings.h
+FILE 2059 f:\sp\vctools\crt_bld\self_x86\crt\src\rterr.h
+FILE 2060 f:\sp\public\sdk\inc\reason.h
+FILE 2061 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 2062 f:\sp\public\sdk\inc\wincon.h
+FILE 2063 f:\sp\public\sdk\inc\pshpack2.h
+FILE 2064 f:\sp\public\sdk\inc\mcx.h
+FILE 2065 f:\sp\public\sdk\inc\winuser.h
+FILE 2066 f:\sp\public\sdk\inc\winnls.h
+FILE 2067 f:\sp\public\sdk\inc\guiddef.h
+FILE 2068 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 2069 f:\sp\public\sdk\inc\specstrings.h
+FILE 2070 f:\sp\public\sdk\inc\basetsd.h
+FILE 2071 f:\sp\public\sdk\inc\stralign.h
+FILE 2072 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 2073 f:\sp\public\sdk\inc\tvout.h
+FILE 2074 f:\sp\public\sdk\inc\winsvc.h
+FILE 2075 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 2076 f:\sp\public\sdk\inc\wingdi.h
+FILE 2077 f:\sp\public\sdk\inc\pshpack4.h
+FILE 2078 f:\sp\public\sdk\inc\poppack.h
+FILE 2079 f:\sp\vctools\crt_bld\self_x86\crt\src\sect_attribs.h
+FILE 2080 f:\sp\vctools\crt_bld\self_x86\crt\src\file2.h
+FILE 2081 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 2082 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 2083 f:\sp\public\sdk\inc\winnetwk.h
+FILE 2084 f:\sp\public\sdk\inc\imm.h
+FILE 2085 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 2086 f:\sp\public\sdk\inc\windef.h
+FILE 2087 f:\sp\vctools\crt_bld\self_x86\crt\src\_file.c
+FILE 2088 f:\sp\public\sdk\inc\pshpack1.h
+FILE 2089 f:\sp\public\sdk\inc\winver.h
+FILE 2090 f:\sp\public\sdk\inc\windows.h
+FILE 2091 f:\sp\public\sdk\inc\winnt.h
+FILE 2092 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 2093 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 2094 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 2095 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 2096 f:\sp\public\sdk\inc\ddbanned.h
+FILE 2097 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 2098 f:\sp\vctools\crt_bld\self_x86\crt\src\malloc.h
+FILE 2099 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 2100 f:\sp\vctools\crt_bld\self_x86\crt\src\swprintf.inl
+FILE 2101 f:\sp\public\sdk\inc\winreg.h
+FILE 2102 f:\sp\public\sdk\inc\winbase.h
+FILE 2103 f:\sp\public\sdk\inc\winerror.h
+FILE 2104 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 2105 f:\sp\public\sdk\inc\pshpack8.h
+FILE 2106 f:\sp\vctools\crt_bld\self_x86\crt\src\stdio.h
+FILE 2107 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 2108 f:\sp\public\sdk\inc\windef.h
+FILE 2109 f:\sp\public\sdk\inc\pshpack1.h
+FILE 2110 f:\sp\public\sdk\inc\winver.h
+FILE 2111 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 2112 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 2113 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 2114 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 2115 f:\sp\public\sdk\inc\winnt.h
+FILE 2116 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 2117 f:\sp\public\sdk\inc\winreg.h
+FILE 2118 f:\sp\vctools\crt_bld\self_x86\crt\src\stdio.h
+FILE 2119 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 2120 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 2121 f:\sp\public\sdk\inc\winbase.h
+FILE 2122 f:\sp\public\sdk\inc\winerror.h
+FILE 2123 f:\sp\public\sdk\inc\pshpack8.h
+FILE 2124 f:\sp\vctools\crt_bld\self_x86\crt\src\fputwc.c
+FILE 2125 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 2126 f:\sp\public\sdk\inc\reason.h
+FILE 2127 f:\sp\public\sdk\inc\wincon.h
+FILE 2128 f:\sp\public\sdk\inc\pshpack2.h
+FILE 2129 f:\sp\vctools\crt_bld\self_x86\crt\src\swprintf.inl
+FILE 2130 f:\sp\vctools\crt_bld\self_x86\crt\src\tchar.h
+FILE 2131 f:\sp\public\sdk\inc\mcx.h
+FILE 2132 f:\sp\public\sdk\inc\winuser.h
+FILE 2133 f:\sp\vctools\crt_bld\self_x86\crt\src\mbstring.h
+FILE 2134 f:\sp\public\sdk\inc\winnls.h
+FILE 2135 f:\sp\public\sdk\inc\guiddef.h
+FILE 2136 f:\sp\vctools\crt_bld\self_x86\crt\src\msdos.h
+FILE 2137 f:\sp\vctools\crt_bld\self_x86\crt\src\wchar.h
+FILE 2138 f:\sp\public\sdk\inc\stralign.h
+FILE 2139 f:\sp\public\sdk\inc\specstrings.h
+FILE 2140 f:\sp\vctools\crt_bld\self_x86\crt\src\file2.h
+FILE 2141 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 2142 f:\sp\public\sdk\inc\basetsd.h
+FILE 2143 f:\sp\public\sdk\inc\windows.h
+FILE 2144 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 2145 f:\sp\public\sdk\inc\tvout.h
+FILE 2146 f:\sp\public\sdk\inc\ddbanned.h
+FILE 2147 f:\sp\public\sdk\inc\winsvc.h
+FILE 2148 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 2149 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 2150 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 2151 f:\sp\public\sdk\inc\wingdi.h
+FILE 2152 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 2153 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 2154 f:\sp\public\sdk\inc\pshpack4.h
+FILE 2155 f:\sp\public\sdk\inc\poppack.h
+FILE 2156 f:\sp\vctools\crt_bld\self_x86\crt\src\wtime.inl
+FILE 2157 f:\sp\public\sdk\inc\winnetwk.h
+FILE 2158 f:\sp\public\sdk\inc\imm.h
+FILE 2159 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 2160 f:\sp\public\sdk\inc\poppack.h
+FILE 2161 f:\sp\vctools\crt_bld\self_x86\crt\src\stdio.h
+FILE 2162 f:\sp\public\sdk\inc\winnetwk.h
+FILE 2163 f:\sp\public\sdk\inc\imm.h
+FILE 2164 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 2165 f:\sp\public\sdk\inc\windef.h
+FILE 2166 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 2167 f:\sp\public\sdk\inc\pshpack1.h
+FILE 2168 f:\sp\public\sdk\inc\winver.h
+FILE 2169 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 2170 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 2171 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 2172 f:\sp\public\sdk\inc\winnt.h
+FILE 2173 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 2174 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 2175 f:\sp\public\sdk\inc\winreg.h
+FILE 2176 f:\sp\vctools\crt_bld\self_x86\crt\src\fileno.c
+FILE 2177 f:\sp\public\sdk\inc\winbase.h
+FILE 2178 f:\sp\public\sdk\inc\winerror.h
+FILE 2179 f:\sp\public\sdk\inc\pshpack8.h
+FILE 2180 f:\sp\public\sdk\inc\reason.h
+FILE 2181 f:\sp\public\sdk\inc\wincon.h
+FILE 2182 f:\sp\public\sdk\inc\ddbanned.h
+FILE 2183 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 2184 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 2185 f:\sp\public\sdk\inc\pshpack2.h
+FILE 2186 f:\sp\public\sdk\inc\mcx.h
+FILE 2187 f:\sp\public\sdk\inc\winuser.h
+FILE 2188 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 2189 f:\sp\public\sdk\inc\winnls.h
+FILE 2190 f:\sp\public\sdk\inc\guiddef.h
+FILE 2191 f:\sp\public\sdk\inc\windows.h
+FILE 2192 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 2193 f:\sp\vctools\crt_bld\self_x86\crt\src\swprintf.inl
+FILE 2194 f:\sp\public\sdk\inc\specstrings.h
+FILE 2195 f:\sp\public\sdk\inc\basetsd.h
+FILE 2196 f:\sp\public\sdk\inc\stralign.h
+FILE 2197 f:\sp\public\sdk\inc\tvout.h
+FILE 2198 f:\sp\public\sdk\inc\winsvc.h
+FILE 2199 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 2200 f:\sp\public\sdk\inc\wingdi.h
+FILE 2201 f:\sp\public\sdk\inc\pshpack4.h
+FILE 2202 f:\sp\public\sdk\inc\pshpack2.h
+FILE 2203 f:\sp\public\sdk\inc\winreg.h
+FILE 2204 f:\sp\public\sdk\inc\guiddef.h
+FILE 2205 f:\sp\public\sdk\inc\windows.h
+FILE 2206 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 2207 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 2208 f:\sp\public\sdk\inc\specstrings.h
+FILE 2209 f:\sp\public\sdk\inc\basetsd.h
+FILE 2210 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 2211 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 2212 f:\sp\public\sdk\inc\pshpack4.h
+FILE 2213 f:\sp\public\sdk\inc\reason.h
+FILE 2214 f:\sp\public\sdk\inc\wincon.h
+FILE 2215 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 2216 f:\sp\public\sdk\inc\poppack.h
+FILE 2217 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 2218 f:\sp\vctools\crt_bld\self_x86\crt\src\sect_attribs.h
+FILE 2219 f:\sp\public\sdk\inc\mcx.h
+FILE 2220 f:\sp\public\sdk\inc\winuser.h
+FILE 2221 f:\sp\public\sdk\inc\winnls.h
+FILE 2222 f:\sp\public\sdk\inc\stralign.h
+FILE 2223 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 2224 f:\sp\public\sdk\inc\windef.h
+FILE 2225 f:\sp\public\sdk\inc\tvout.h
+FILE 2226 f:\sp\public\sdk\inc\winsvc.h
+FILE 2227 f:\sp\vctools\crt_bld\self_x86\crt\src\tidtable.c
+FILE 2228 f:\sp\public\sdk\inc\wingdi.h
+FILE 2229 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 2230 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 2231 f:\sp\public\sdk\inc\winnt.h
+FILE 2232 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 2233 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 2234 f:\sp\public\sdk\inc\winnetwk.h
+FILE 2235 f:\sp\public\sdk\inc\imm.h
+FILE 2236 f:\sp\public\sdk\inc\ddbanned.h
+FILE 2237 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 2238 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 2239 f:\sp\vctools\crt_bld\self_x86\crt\src\mbstring.h
+FILE 2240 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 2241 f:\sp\public\sdk\inc\winbase.h
+FILE 2242 f:\sp\public\sdk\inc\winerror.h
+FILE 2243 f:\sp\public\sdk\inc\pshpack1.h
+FILE 2244 f:\sp\vctools\crt_bld\self_x86\crt\src\stddef.h
+FILE 2245 f:\sp\vctools\crt_bld\self_x86\crt\src\memory.h
+FILE 2246 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 2247 f:\sp\vctools\crt_bld\self_x86\crt\src\msdos.h
+FILE 2248 f:\sp\vctools\crt_bld\self_x86\crt\src\rterr.h
+FILE 2249 f:\sp\public\sdk\inc\pshpack8.h
+FILE 2250 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 2251 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 2252 f:\sp\public\sdk\inc\winver.h
+FILE 2253 f:\sp\public\sdk\inc\pshpack4.h
+FILE 2254 f:\sp\vctools\crt_bld\self_x86\crt\src\rterr.h
+FILE 2255 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 2256 f:\sp\public\sdk\inc\poppack.h
+FILE 2257 f:\sp\public\sdk\inc\winnt.h
+FILE 2258 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 2259 f:\sp\public\sdk\inc\winnetwk.h
+FILE 2260 f:\sp\vctools\crt_bld\self_x86\crt\src\tchar.h
+FILE 2261 f:\sp\public\sdk\inc\imm.h
+FILE 2262 f:\sp\vctools\crt_bld\self_x86\crt\src\mbstring.h
+FILE 2263 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 2264 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 2265 f:\sp\public\sdk\inc\pshpack1.h
+FILE 2266 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 2267 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 2268 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 2269 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 2270 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 2271 f:\sp\public\sdk\inc\winver.h
+FILE 2272 f:\sp\public\sdk\inc\guiddef.h
+FILE 2273 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 2274 f:\sp\public\sdk\inc\specstrings.h
+FILE 2275 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 2276 f:\sp\public\sdk\inc\basetsd.h
+FILE 2277 f:\sp\public\sdk\inc\windows.h
+FILE 2278 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 2279 f:\sp\public\sdk\inc\winreg.h
+FILE 2280 f:\sp\vctools\crt_bld\self_x86\crt\src\stdenvp.c
+FILE 2281 f:\sp\public\sdk\inc\winbase.h
+FILE 2282 f:\sp\public\sdk\inc\winerror.h
+FILE 2283 f:\sp\public\sdk\inc\pshpack8.h
+FILE 2284 f:\sp\public\sdk\inc\reason.h
+FILE 2285 f:\sp\public\sdk\inc\ddbanned.h
+FILE 2286 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 2287 f:\sp\public\sdk\inc\wincon.h
+FILE 2288 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 2289 f:\sp\public\sdk\inc\pshpack2.h
+FILE 2290 f:\sp\public\sdk\inc\mcx.h
+FILE 2291 f:\sp\public\sdk\inc\winuser.h
+FILE 2292 f:\sp\public\sdk\inc\winnls.h
+FILE 2293 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 2294 f:\sp\public\sdk\inc\windef.h
+FILE 2295 f:\sp\public\sdk\inc\stralign.h
+FILE 2296 f:\sp\public\sdk\inc\tvout.h
+FILE 2297 f:\sp\public\sdk\inc\winsvc.h
+FILE 2298 f:\sp\public\sdk\inc\wingdi.h
+FILE 2299 f:\sp\public\sdk\inc\poppack.h
+FILE 2300 f:\sp\vctools\crt_bld\self_x86\crt\src\dos.h
+FILE 2301 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 2302 f:\sp\vctools\crt_bld\self_x86\crt\src\rterr.h
+FILE 2303 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 2304 f:\sp\public\sdk\inc\winnetwk.h
+FILE 2305 f:\sp\public\sdk\inc\imm.h
+FILE 2306 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 2307 f:\sp\public\sdk\inc\windef.h
+FILE 2308 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 2309 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 2310 f:\sp\vctools\crt_bld\self_x86\crt\src\tchar.h
+FILE 2311 f:\sp\vctools\crt_bld\self_x86\crt\src\mbstring.h
+FILE 2312 f:\sp\vctools\crt_bld\self_x86\crt\src\mbctype.h
+FILE 2313 f:\sp\public\sdk\inc\pshpack1.h
+FILE 2314 f:\sp\public\sdk\inc\winver.h
+FILE 2315 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 2316 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 2317 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 2318 f:\sp\public\sdk\inc\winnt.h
+FILE 2319 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 2320 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 2321 f:\sp\public\sdk\inc\winreg.h
+FILE 2322 f:\sp\vctools\crt_bld\self_x86\crt\src\stdargv.c
+FILE 2323 f:\sp\public\sdk\inc\winbase.h
+FILE 2324 f:\sp\public\sdk\inc\winerror.h
+FILE 2325 f:\sp\public\sdk\inc\pshpack8.h
+FILE 2326 f:\sp\public\sdk\inc\reason.h
+FILE 2327 f:\sp\public\sdk\inc\wincon.h
+FILE 2328 f:\sp\public\sdk\inc\ddbanned.h
+FILE 2329 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 2330 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 2331 f:\sp\public\sdk\inc\pshpack2.h
+FILE 2332 f:\sp\public\sdk\inc\mcx.h
+FILE 2333 f:\sp\public\sdk\inc\winuser.h
+FILE 2334 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 2335 f:\sp\public\sdk\inc\winnls.h
+FILE 2336 f:\sp\public\sdk\inc\guiddef.h
+FILE 2337 f:\sp\public\sdk\inc\windows.h
+FILE 2338 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 2339 f:\sp\public\sdk\inc\specstrings.h
+FILE 2340 f:\sp\public\sdk\inc\basetsd.h
+FILE 2341 f:\sp\public\sdk\inc\stralign.h
+FILE 2342 f:\sp\public\sdk\inc\tvout.h
+FILE 2343 f:\sp\public\sdk\inc\winsvc.h
+FILE 2344 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 2345 f:\sp\public\sdk\inc\wingdi.h
+FILE 2346 f:\sp\public\sdk\inc\pshpack4.h
+FILE 2347 f:\sp\public\sdk\inc\reason.h
+FILE 2348 f:\sp\public\sdk\inc\wincon.h
+FILE 2349 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 2350 f:\sp\public\sdk\inc\poppack.h
+FILE 2351 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 2352 f:\sp\public\sdk\inc\mcx.h
+FILE 2353 f:\sp\public\sdk\inc\winuser.h
+FILE 2354 f:\sp\public\sdk\inc\winnls.h
+FILE 2355 f:\sp\public\sdk\inc\stralign.h
+FILE 2356 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 2357 f:\sp\public\sdk\inc\windef.h
+FILE 2358 f:\sp\public\sdk\inc\tvout.h
+FILE 2359 f:\sp\public\sdk\inc\winsvc.h
+FILE 2360 f:\sp\public\sdk\inc\wingdi.h
+FILE 2361 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 2362 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 2363 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 2364 f:\sp\public\sdk\inc\winnt.h
+FILE 2365 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 2366 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 2367 f:\sp\public\sdk\inc\winnetwk.h
+FILE 2368 f:\sp\public\sdk\inc\imm.h
+FILE 2369 f:\sp\vctools\crt_bld\self_x86\crt\src\winheap.h
+FILE 2370 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 2371 f:\sp\vctools\crt_bld\self_x86\crt\src\mlock.c
+FILE 2372 f:\sp\public\sdk\inc\winbase.h
+FILE 2373 f:\sp\public\sdk\inc\winerror.h
+FILE 2374 f:\sp\public\sdk\inc\pshpack1.h
+FILE 2375 f:\sp\vctools\crt_bld\self_x86\crt\src\rterr.h
+FILE 2376 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 2377 f:\sp\vctools\crt_bld\self_x86\crt\src\stddef.h
+FILE 2378 f:\sp\public\sdk\inc\pshpack8.h
+FILE 2379 f:\sp\vctools\crt_bld\self_x86\crt\src\swprintf.inl
+FILE 2380 f:\sp\vctools\crt_bld\self_x86\crt\src\malloc.h
+FILE 2381 f:\sp\public\sdk\inc\winver.h
+FILE 2382 f:\sp\public\sdk\inc\ddbanned.h
+FILE 2383 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 2384 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 2385 f:\sp\public\sdk\inc\pshpack2.h
+FILE 2386 f:\sp\public\sdk\inc\winreg.h
+FILE 2387 f:\sp\public\sdk\inc\guiddef.h
+FILE 2388 f:\sp\public\sdk\inc\windows.h
+FILE 2389 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 2390 f:\sp\public\sdk\inc\specstrings.h
+FILE 2391 f:\sp\public\sdk\inc\basetsd.h
+FILE 2392 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 2393 f:\sp\vctools\crt_bld\self_x86\crt\src\stdio.h
+FILE 2394 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 2395 f:\sp\public\sdk\inc\pshpack4.h
+FILE 2396 f:\sp\public\sdk\inc\poppack.h
+FILE 2397 f:\sp\vctools\crt_bld\self_x86\crt\src\stddef.h
+FILE 2398 f:\sp\vctools\crt_bld\self_x86\crt\src\stdio.h
+FILE 2399 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 2400 f:\sp\public\sdk\inc\winnetwk.h
+FILE 2401 f:\sp\public\sdk\inc\imm.h
+FILE 2402 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 2403 f:\sp\public\sdk\inc\windef.h
+FILE 2404 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 2405 f:\sp\public\sdk\inc\pshpack1.h
+FILE 2406 f:\sp\public\sdk\inc\winver.h
+FILE 2407 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 2408 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 2409 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 2410 f:\sp\vctools\crt_bld\self_x86\crt\src\rterr.h
+FILE 2411 f:\sp\public\sdk\inc\winnt.h
+FILE 2412 f:\sp\vctools\crt_bld\self_x86\crt\src\cmsgs.h
+FILE 2413 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 2414 f:\sp\vctools\crt_bld\self_x86\crt\src\awint.h
+FILE 2415 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 2416 f:\sp\public\sdk\inc\winreg.h
+FILE 2417 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 2418 f:\sp\vctools\crt_bld\self_x86\crt\src\crt0msg.c
+FILE 2419 f:\sp\public\sdk\inc\winbase.h
+FILE 2420 f:\sp\public\sdk\inc\winerror.h
+FILE 2421 f:\sp\public\sdk\inc\pshpack8.h
+FILE 2422 f:\sp\public\sdk\inc\reason.h
+FILE 2423 f:\sp\public\sdk\inc\wincon.h
+FILE 2424 f:\sp\public\sdk\inc\ddbanned.h
+FILE 2425 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 2426 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 2427 f:\sp\public\sdk\inc\pshpack2.h
+FILE 2428 f:\sp\public\sdk\inc\mcx.h
+FILE 2429 f:\sp\public\sdk\inc\winuser.h
+FILE 2430 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 2431 f:\sp\public\sdk\inc\winnls.h
+FILE 2432 f:\sp\public\sdk\inc\guiddef.h
+FILE 2433 f:\sp\public\sdk\inc\windows.h
+FILE 2434 f:\sp\vctools\crt_bld\self_x86\crt\src\swprintf.inl
+FILE 2435 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 2436 f:\sp\public\sdk\inc\specstrings.h
+FILE 2437 f:\sp\public\sdk\inc\basetsd.h
+FILE 2438 f:\sp\public\sdk\inc\stralign.h
+FILE 2439 f:\sp\public\sdk\inc\tvout.h
+FILE 2440 f:\sp\public\sdk\inc\winsvc.h
+FILE 2441 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 2442 f:\sp\public\sdk\inc\wingdi.h
+FILE 2443 f:\sp\public\sdk\inc\pshpack4.h
+FILE 2444 f:\sp\public\sdk\inc\pshpack1.h
+FILE 2445 f:\sp\public\sdk\inc\winver.h
+FILE 2446 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 2447 f:\sp\public\sdk\inc\winnt.h
+FILE 2448 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 2449 f:\sp\public\sdk\inc\winreg.h
+FILE 2450 f:\sp\public\sdk\inc\winbase.h
+FILE 2451 f:\sp\public\sdk\inc\winerror.h
+FILE 2452 f:\sp\vctools\crt_bld\self_x86\crt\src\sect_attribs.h
+FILE 2453 f:\sp\public\sdk\inc\pshpack8.h
+FILE 2454 f:\sp\public\sdk\inc\reason.h
+FILE 2455 f:\sp\public\sdk\inc\wincon.h
+FILE 2456 f:\sp\public\sdk\inc\pshpack2.h
+FILE 2457 f:\sp\vctools\crt_bld\self_x86\crt\src\crt0init.c
+FILE 2458 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 2459 f:\sp\public\sdk\inc\mcx.h
+FILE 2460 f:\sp\public\sdk\inc\winuser.h
+FILE 2461 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 2462 f:\sp\public\sdk\inc\winnls.h
+FILE 2463 f:\sp\public\sdk\inc\guiddef.h
+FILE 2464 f:\sp\public\sdk\inc\windows.h
+FILE 2465 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 2466 f:\sp\public\sdk\inc\specstrings.h
+FILE 2467 f:\sp\public\sdk\inc\basetsd.h
+FILE 2468 f:\sp\public\sdk\inc\stralign.h
+FILE 2469 f:\sp\public\sdk\inc\tvout.h
+FILE 2470 f:\sp\public\sdk\inc\winsvc.h
+FILE 2471 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 2472 f:\sp\public\sdk\inc\wingdi.h
+FILE 2473 f:\sp\vctools\crt_bld\self_x86\crt\src\stdio.h
+FILE 2474 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 2475 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 2476 f:\sp\public\sdk\inc\pshpack4.h
+FILE 2477 f:\sp\public\sdk\inc\ddbanned.h
+FILE 2478 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 2479 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 2480 f:\sp\public\sdk\inc\poppack.h
+FILE 2481 f:\sp\public\sdk\inc\winnetwk.h
+FILE 2482 f:\sp\public\sdk\inc\imm.h
+FILE 2483 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 2484 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 2485 f:\sp\public\sdk\inc\windef.h
+FILE 2486 f:\sp\vctools\crt_bld\self_x86\crt\src\swprintf.inl
+FILE 2487 f:\sp\public\sdk\inc\poppack.h
+FILE 2488 f:\sp\vctools\crt_bld\self_x86\crt\src\rterr.h
+FILE 2489 f:\sp\public\sdk\inc\winnetwk.h
+FILE 2490 f:\sp\public\sdk\inc\imm.h
+FILE 2491 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 2492 f:\sp\public\sdk\inc\windef.h
+FILE 2493 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 2494 f:\sp\public\sdk\inc\pshpack1.h
+FILE 2495 f:\sp\public\sdk\inc\winver.h
+FILE 2496 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 2497 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 2498 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 2499 f:\sp\public\sdk\inc\winnt.h
+FILE 2500 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 2501 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 2502 f:\sp\public\sdk\inc\winreg.h
+FILE 2503 f:\sp\vctools\crt_bld\self_x86\crt\src\crt0fp.c
+FILE 2504 f:\sp\public\sdk\inc\winbase.h
+FILE 2505 f:\sp\public\sdk\inc\winerror.h
+FILE 2506 f:\sp\public\sdk\inc\pshpack8.h
+FILE 2507 f:\sp\public\sdk\inc\reason.h
+FILE 2508 f:\sp\public\sdk\inc\wincon.h
+FILE 2509 f:\sp\public\sdk\inc\ddbanned.h
+FILE 2510 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 2511 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 2512 f:\sp\public\sdk\inc\pshpack2.h
+FILE 2513 f:\sp\public\sdk\inc\mcx.h
+FILE 2514 f:\sp\public\sdk\inc\winuser.h
+FILE 2515 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 2516 f:\sp\public\sdk\inc\winnls.h
+FILE 2517 f:\sp\public\sdk\inc\guiddef.h
+FILE 2518 f:\sp\public\sdk\inc\windows.h
+FILE 2519 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 2520 f:\sp\public\sdk\inc\specstrings.h
+FILE 2521 f:\sp\public\sdk\inc\basetsd.h
+FILE 2522 f:\sp\public\sdk\inc\stralign.h
+FILE 2523 f:\sp\public\sdk\inc\tvout.h
+FILE 2524 f:\sp\public\sdk\inc\winsvc.h
+FILE 2525 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 2526 f:\sp\public\sdk\inc\wingdi.h
+FILE 2527 f:\sp\public\sdk\inc\pshpack4.h
+FILE 2528 f:\sp\vctools\crt_bld\self_x86\crt\src\process.h
+FILE 2529 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 2530 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 2531 f:\sp\public\sdk\inc\pshpack4.h
+FILE 2532 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 2533 f:\sp\public\sdk\inc\reason.h
+FILE 2534 f:\sp\public\sdk\inc\wincon.h
+FILE 2535 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 2536 f:\sp\public\sdk\inc\poppack.h
+FILE 2537 f:\sp\vctools\crt_bld\self_x86\crt\src\sect_attribs.h
+FILE 2538 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 2539 f:\sp\public\sdk\inc\mcx.h
+FILE 2540 f:\sp\public\sdk\inc\winuser.h
+FILE 2541 f:\sp\public\sdk\inc\winnls.h
+FILE 2542 f:\sp\public\sdk\inc\stralign.h
+FILE 2543 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 2544 f:\sp\public\sdk\inc\windef.h
+FILE 2545 f:\sp\public\sdk\inc\tvout.h
+FILE 2546 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 2547 f:\sp\public\sdk\inc\winsvc.h
+FILE 2548 f:\sp\public\sdk\inc\wingdi.h
+FILE 2549 f:\sp\vctools\crt_bld\self_x86\crt\src\msdos.h
+FILE 2550 f:\sp\vctools\crt_bld\self_x86\crt\src\rtcapi.h
+FILE 2551 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 2552 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 2553 f:\sp\vctools\crt_bld\self_x86\crt\src\mbdata.h
+FILE 2554 f:\sp\vctools\crt_bld\self_x86\crt\src\mbctype.h
+FILE 2555 f:\sp\vctools\crt_bld\self_x86\crt\src\swprintf.inl
+FILE 2556 f:\sp\public\sdk\inc\winnt.h
+FILE 2557 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 2558 f:\sp\public\sdk\inc\winnetwk.h
+FILE 2559 f:\sp\public\sdk\inc\imm.h
+FILE 2560 f:\sp\vctools\crt_bld\self_x86\crt\src\crt0dat.c
+FILE 2561 f:\sp\public\sdk\inc\winbase.h
+FILE 2562 f:\sp\public\sdk\inc\winerror.h
+FILE 2563 f:\sp\public\sdk\inc\pshpack1.h
+FILE 2564 f:\sp\vctools\crt_bld\self_x86\crt\src\stdio.h
+FILE 2565 f:\sp\public\sdk\inc\pshpack8.h
+FILE 2566 f:\sp\public\sdk\inc\winver.h
+FILE 2567 f:\sp\public\sdk\inc\ddbanned.h
+FILE 2568 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 2569 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 2570 f:\sp\vctools\crt_bld\self_x86\crt\src\dos.h
+FILE 2571 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 2572 f:\sp\public\sdk\inc\pshpack2.h
+FILE 2573 f:\sp\public\sdk\inc\winreg.h
+FILE 2574 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 2575 f:\sp\public\sdk\inc\guiddef.h
+FILE 2576 f:\sp\public\sdk\inc\windows.h
+FILE 2577 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 2578 f:\sp\public\sdk\inc\specstrings.h
+FILE 2579 f:\sp\public\sdk\inc\basetsd.h
+FILE 2580 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 2581 f:\sp\public\sdk\inc\tvout.h
+FILE 2582 f:\sp\public\sdk\inc\winsvc.h
+FILE 2583 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 2584 f:\sp\public\sdk\inc\wingdi.h
+FILE 2585 f:\sp\public\sdk\inc\pshpack4.h
+FILE 2586 f:\sp\vctools\crt_bld\self_x86\crt\src\awint.h
+FILE 2587 f:\sp\vctools\crt_bld\self_x86\crt\src\rterr.h
+FILE 2588 f:\sp\vctools\crt_bld\self_x86\crt\src\rtcapi.h
+FILE 2589 f:\sp\public\sdk\inc\poppack.h
+FILE 2590 f:\sp\vctools\crt_bld\self_x86\crt\src\process.h
+FILE 2591 f:\sp\vctools\crt_bld\self_x86\crt\src\tchar.h
+FILE 2592 f:\sp\vctools\crt_bld\self_x86\crt\src\mbstring.h
+FILE 2593 f:\sp\public\sdk\inc\winnetwk.h
+FILE 2594 f:\sp\public\sdk\inc\imm.h
+FILE 2595 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 2596 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 2597 f:\sp\public\sdk\inc\windef.h
+FILE 2598 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 2599 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 2600 f:\sp\vctools\crt_bld\self_x86\crt\src\dos.h
+FILE 2601 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 2602 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 2603 f:\sp\public\sdk\inc\pshpack1.h
+FILE 2604 f:\sp\public\sdk\inc\winver.h
+FILE 2605 f:\sp\public\sdk\inc\winnt.h
+FILE 2606 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 2607 f:\sp\vctools\crt_bld\self_x86\crt\src\locale.h
+FILE 2608 f:\sp\vctools\crt_bld\self_x86\crt\src\crt0.c
+FILE 2609 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 2610 f:\sp\public\sdk\inc\winreg.h
+FILE 2611 f:\sp\public\sdk\inc\winbase.h
+FILE 2612 f:\sp\public\sdk\inc\winerror.h
+FILE 2613 f:\sp\public\sdk\inc\ddbanned.h
+FILE 2614 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 2615 f:\sp\public\sdk\inc\pshpack8.h
+FILE 2616 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 2617 f:\sp\public\sdk\inc\reason.h
+FILE 2618 f:\sp\public\sdk\inc\wincon.h
+FILE 2619 f:\sp\public\sdk\inc\pshpack2.h
+FILE 2620 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 2621 f:\sp\public\sdk\inc\mcx.h
+FILE 2622 f:\sp\public\sdk\inc\winuser.h
+FILE 2623 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 2624 f:\sp\public\sdk\inc\winnls.h
+FILE 2625 f:\sp\public\sdk\inc\guiddef.h
+FILE 2626 f:\sp\public\sdk\inc\windows.h
+FILE 2627 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 2628 f:\sp\public\sdk\inc\specstrings.h
+FILE 2629 f:\sp\public\sdk\inc\basetsd.h
+FILE 2630 f:\sp\vctools\crt_bld\self_x86\crt\src\sect_attribs.h
+FILE 2631 f:\sp\public\sdk\inc\stralign.h
+FILE 2632 F:\SP\vctools\crt_bld\SELF_X86\crt\src\intel\alloca16.asm
+FILE 2633 F:\SP\vctools\crt_bld\SELF_X86\crt\src\cruntime.inc
+FILE 2634 F:\SP\vctools\crt_bld\SELF_X86\crt\src\intel\chkstk.asm
+FILE 2635 F:\SP\vctools\crt_bld\SELF_X86\crt\src\cruntime.inc
+FILE 2636 f:\sp\public\sdk\inc\wincon.h
+FILE 2637 f:\sp\public\sdk\inc\imm.h
+FILE 2638 f:\sp\public\sdk\inc\winbase.h
+FILE 2639 f:\sp\public\sdk\inc\wingdi.h
+FILE 2640 f:\sp\public\sdk\inc\winver.h
+FILE 2641 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\limits.h
+FILE 2642 f:\sp\public\sdk\inc\windows.h
+FILE 2643 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\excpt.h
+FILE 2644 f:\sp\public\sdk\inc\pshpack2.h
+FILE 2645 f:\sp\public\sdk\inc\reason.h
+FILE 2646 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\rtc\initsect.cpp
+FILE 2647 f:\sp\public\sdk\inc\specstrings.h
+FILE 2648 f:\sp\public\sdk\inc\basetsd.h
+FILE 2649 f:\sp\public\sdk\inc\pshpack4.h
+FILE 2650 f:\sp\public\sdk\inc\winnetwk.h
+FILE 2651 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\errno.h
+FILE 2652 f:\sp\public\sdk\inc\stralign.h
+FILE 2653 f:\sp\public\sdk\inc\poppack.h
+FILE 2654 f:\sp\public\sdk\inc\winsvc.h
+FILE 2655 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\stdarg.h
+FILE 2656 f:\sp\public\sdk\inc\windef.h
+FILE 2657 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\internal.h
+FILE 2658 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\crtdefs.h
+FILE 2659 f:\sp\public\sdk\inc\winuser.h
+FILE 2660 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\sal.h
+FILE 2661 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\sect_attribs.h
+FILE 2662 f:\sp\public\sdk\inc\mcx.h
+FILE 2663 f:\sp\public\sdk\inc\pshpack8.h
+FILE 2664 f:\sp\public\sdk\inc\guiddef.h
+FILE 2665 f:\sp\public\sdk\inc\winnt.h
+FILE 2666 f:\sp\public\sdk\inc\winnls.h
+FILE 2667 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\ctype.h
+FILE 2668 f:\sp\public\sdk\inc\pshpack1.h
+FILE 2669 f:\sp\public\sdk\inc\winerror.h
+FILE 2670 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\rtcapi.h
+FILE 2671 f:\sp\public\sdk\inc\winreg.h
+FILE 2672 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\string.h
+FILE 2673 f:\sp\public\sdk\inc\ddbanned.h
+FILE 2674 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\vadefs.h
+FILE 2675 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\cruntime.h
+FILE 2676 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\rtcpriv.h
+FILE 2677 f:\sp\public\sdk\inc\tvout.h
+FILE 2678 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\malloc.h
+FILE 2679 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\crtdbg.h
+FILE 2680 f:\sp\public\sdk\inc\poppack.h
+FILE 2681 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 2682 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 2683 f:\sp\public\sdk\inc\winnetwk.h
+FILE 2684 f:\sp\public\sdk\inc\imm.h
+FILE 2685 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 2686 f:\sp\public\sdk\inc\windef.h
+FILE 2687 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 2688 f:\sp\public\sdk\inc\pshpack1.h
+FILE 2689 f:\sp\public\sdk\inc\winver.h
+FILE 2690 f:\sp\public\sdk\inc\windows.h
+FILE 2691 f:\sp\public\sdk\inc\winnt.h
+FILE 2692 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 2693 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 2694 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 2695 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 2696 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 2697 f:\sp\public\sdk\inc\winreg.h
+FILE 2698 f:\sp\public\sdk\inc\winbase.h
+FILE 2699 f:\sp\vctools\crt_bld\self_x86\crt\src\wtombenv.c
+FILE 2700 f:\sp\public\sdk\inc\winerror.h
+FILE 2701 f:\sp\public\sdk\inc\pshpack8.h
+FILE 2702 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 2703 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 2704 f:\sp\public\sdk\inc\reason.h
+FILE 2705 f:\sp\public\sdk\inc\wincon.h
+FILE 2706 f:\sp\public\sdk\inc\ddbanned.h
+FILE 2707 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 2708 f:\sp\public\sdk\inc\pshpack2.h
+FILE 2709 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 2710 f:\sp\public\sdk\inc\mcx.h
+FILE 2711 f:\sp\public\sdk\inc\winuser.h
+FILE 2712 f:\sp\public\sdk\inc\winnls.h
+FILE 2713 f:\sp\public\sdk\inc\guiddef.h
+FILE 2714 f:\sp\public\sdk\inc\specstrings.h
+FILE 2715 f:\sp\public\sdk\inc\basetsd.h
+FILE 2716 f:\sp\public\sdk\inc\stralign.h
+FILE 2717 f:\sp\public\sdk\inc\tvout.h
+FILE 2718 f:\sp\public\sdk\inc\winsvc.h
+FILE 2719 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 2720 f:\sp\public\sdk\inc\wingdi.h
+FILE 2721 f:\sp\public\sdk\inc\pshpack4.h
+FILE 2722 f:\sp\public\sdk\inc\winnt.h
+FILE 2723 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 2724 f:\sp\public\sdk\inc\winreg.h
+FILE 2725 f:\sp\public\sdk\inc\winbase.h
+FILE 2726 f:\sp\public\sdk\inc\winerror.h
+FILE 2727 f:\sp\public\sdk\inc\pshpack8.h
+FILE 2728 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 2729 f:\sp\public\sdk\inc\reason.h
+FILE 2730 f:\sp\public\sdk\inc\wincon.h
+FILE 2731 f:\sp\vctools\crt_bld\self_x86\crt\src\float.h
+FILE 2732 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 2733 f:\sp\public\sdk\inc\pshpack2.h
+FILE 2734 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 2735 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 2736 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 2737 f:\sp\public\sdk\inc\mcx.h
+FILE 2738 f:\sp\public\sdk\inc\winuser.h
+FILE 2739 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 2740 f:\sp\public\sdk\inc\winnls.h
+FILE 2741 f:\sp\public\sdk\inc\guiddef.h
+FILE 2742 f:\sp\public\sdk\inc\windows.h
+FILE 2743 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 2744 f:\sp\public\sdk\inc\specstrings.h
+FILE 2745 f:\sp\public\sdk\inc\basetsd.h
+FILE 2746 f:\sp\public\sdk\inc\stralign.h
+FILE 2747 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 2748 f:\sp\vctools\crt_bld\self_x86\crt\src\signal.h
+FILE 2749 f:\sp\public\sdk\inc\tvout.h
+FILE 2750 f:\sp\public\sdk\inc\winsvc.h
+FILE 2751 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 2752 f:\sp\vctools\crt_bld\self_x86\crt\src\winxfltr.c
+FILE 2753 f:\sp\public\sdk\inc\wingdi.h
+FILE 2754 f:\sp\public\sdk\inc\pshpack4.h
+FILE 2755 f:\sp\vctools\crt_bld\self_x86\crt\src\stddef.h
+FILE 2756 f:\sp\public\sdk\inc\poppack.h
+FILE 2757 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 2758 f:\sp\public\sdk\inc\winnetwk.h
+FILE 2759 f:\sp\public\sdk\inc\imm.h
+FILE 2760 f:\sp\public\sdk\inc\ddbanned.h
+FILE 2761 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 2762 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 2763 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 2764 f:\sp\public\sdk\inc\windef.h
+FILE 2765 f:\sp\vctools\crt_bld\self_x86\crt\src\crtwrn.h
+FILE 2766 f:\sp\public\sdk\inc\pshpack1.h
+FILE 2767 f:\sp\public\sdk\inc\winver.h
+FILE 2768 f:\sp\public\sdk\inc\winnetwk.h
+FILE 2769 f:\sp\public\sdk\inc\imm.h
+FILE 2770 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 2771 f:\sp\public\sdk\inc\windef.h
+FILE 2772 f:\sp\public\sdk\inc\pshpack1.h
+FILE 2773 f:\sp\public\sdk\inc\winver.h
+FILE 2774 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 2775 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 2776 f:\sp\public\sdk\inc\winnt.h
+FILE 2777 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 2778 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 2779 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 2780 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 2781 f:\sp\public\sdk\inc\winreg.h
+FILE 2782 f:\sp\public\sdk\inc\winbase.h
+FILE 2783 f:\sp\vctools\crt_bld\self_x86\crt\src\malloc.h
+FILE 2784 f:\sp\public\sdk\inc\winerror.h
+FILE 2785 f:\sp\vctools\crt_bld\self_x86\crt\src\winsig.c
+FILE 2786 f:\sp\public\sdk\inc\pshpack8.h
+FILE 2787 f:\sp\public\sdk\inc\reason.h
+FILE 2788 f:\sp\public\sdk\inc\wincon.h
+FILE 2789 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 2790 f:\sp\public\sdk\inc\pshpack2.h
+FILE 2791 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 2792 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 2793 f:\sp\public\sdk\inc\mcx.h
+FILE 2794 f:\sp\public\sdk\inc\winuser.h
+FILE 2795 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 2796 f:\sp\public\sdk\inc\winnls.h
+FILE 2797 f:\sp\public\sdk\inc\guiddef.h
+FILE 2798 f:\sp\public\sdk\inc\windows.h
+FILE 2799 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 2800 f:\sp\public\sdk\inc\specstrings.h
+FILE 2801 f:\sp\public\sdk\inc\ddbanned.h
+FILE 2802 f:\sp\public\sdk\inc\basetsd.h
+FILE 2803 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 2804 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 2805 f:\sp\public\sdk\inc\stralign.h
+FILE 2806 f:\sp\vctools\crt_bld\self_x86\crt\src\signal.h
+FILE 2807 f:\sp\public\sdk\inc\tvout.h
+FILE 2808 f:\sp\public\sdk\inc\winsvc.h
+FILE 2809 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 2810 f:\sp\public\sdk\inc\wingdi.h
+FILE 2811 f:\sp\vctools\crt_bld\self_x86\crt\src\float.h
+FILE 2812 f:\sp\vctools\crt_bld\self_x86\crt\src\crtwrn.h
+FILE 2813 f:\sp\public\sdk\inc\pshpack4.h
+FILE 2814 f:\sp\vctools\crt_bld\self_x86\crt\src\stddef.h
+FILE 2815 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 2816 f:\sp\public\sdk\inc\poppack.h
+FILE 2817 f:\sp\vctools\crt_bld\self_x86\crt\src\malloc.h
+FILE 2818 f:\sp\public\sdk\inc\wincon.h
+FILE 2819 f:\sp\public\sdk\inc\imm.h
+FILE 2820 f:\sp\public\sdk\inc\winbase.h
+FILE 2821 f:\sp\public\sdk\inc\wingdi.h
+FILE 2822 f:\sp\public\sdk\inc\winver.h
+FILE 2823 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 2824 f:\sp\public\sdk\inc\windows.h
+FILE 2825 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 2826 f:\sp\public\sdk\inc\pshpack2.h
+FILE 2827 f:\sp\public\sdk\inc\reason.h
+FILE 2828 f:\sp\vctools\crt_bld\self_x86\crt\src\w_str.c
+FILE 2829 f:\sp\public\sdk\inc\specstrings.h
+FILE 2830 f:\sp\public\sdk\inc\basetsd.h
+FILE 2831 f:\sp\public\sdk\inc\pshpack4.h
+FILE 2832 f:\sp\vctools\crt_bld\self_x86\crt\src\locale.h
+FILE 2833 f:\sp\public\sdk\inc\winnetwk.h
+FILE 2834 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 2835 f:\sp\public\sdk\inc\stralign.h
+FILE 2836 f:\sp\public\sdk\inc\poppack.h
+FILE 2837 f:\sp\public\sdk\inc\winsvc.h
+FILE 2838 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 2839 f:\sp\public\sdk\inc\windef.h
+FILE 2840 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 2841 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 2842 f:\sp\public\sdk\inc\winuser.h
+FILE 2843 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 2844 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 2845 f:\sp\public\sdk\inc\mcx.h
+FILE 2846 f:\sp\public\sdk\inc\pshpack8.h
+FILE 2847 f:\sp\public\sdk\inc\guiddef.h
+FILE 2848 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 2849 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 2850 f:\sp\public\sdk\inc\winnt.h
+FILE 2851 f:\sp\public\sdk\inc\winnls.h
+FILE 2852 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 2853 f:\sp\public\sdk\inc\pshpack1.h
+FILE 2854 f:\sp\vctools\crt_bld\self_x86\crt\src\awint.h
+FILE 2855 f:\sp\public\sdk\inc\winerror.h
+FILE 2856 f:\sp\public\sdk\inc\winreg.h
+FILE 2857 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 2858 f:\sp\public\sdk\inc\ddbanned.h
+FILE 2859 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 2860 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 2861 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 2862 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 2863 f:\sp\public\sdk\inc\tvout.h
+FILE 2864 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 2865 f:\sp\public\sdk\inc\wincon.h
+FILE 2866 f:\sp\public\sdk\inc\imm.h
+FILE 2867 f:\sp\public\sdk\inc\winbase.h
+FILE 2868 f:\sp\public\sdk\inc\wingdi.h
+FILE 2869 f:\sp\public\sdk\inc\winver.h
+FILE 2870 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 2871 f:\sp\public\sdk\inc\windows.h
+FILE 2872 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 2873 f:\sp\public\sdk\inc\pshpack2.h
+FILE 2874 f:\sp\vctools\crt_bld\self_x86\crt\src\locale.h
+FILE 2875 f:\sp\public\sdk\inc\reason.h
+FILE 2876 f:\sp\vctools\crt_bld\self_x86\crt\src\w_loc.c
+FILE 2877 f:\sp\public\sdk\inc\specstrings.h
+FILE 2878 f:\sp\public\sdk\inc\basetsd.h
+FILE 2879 f:\sp\public\sdk\inc\pshpack4.h
+FILE 2880 f:\sp\vctools\crt_bld\self_x86\crt\src\awint.h
+FILE 2881 f:\sp\public\sdk\inc\winnetwk.h
+FILE 2882 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 2883 f:\sp\public\sdk\inc\stralign.h
+FILE 2884 f:\sp\public\sdk\inc\poppack.h
+FILE 2885 f:\sp\public\sdk\inc\winsvc.h
+FILE 2886 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 2887 f:\sp\public\sdk\inc\windef.h
+FILE 2888 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 2889 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 2890 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 2891 f:\sp\public\sdk\inc\winuser.h
+FILE 2892 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 2893 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 2894 f:\sp\public\sdk\inc\mcx.h
+FILE 2895 f:\sp\vctools\crt_bld\self_x86\crt\src\malloc.h
+FILE 2896 f:\sp\public\sdk\inc\pshpack8.h
+FILE 2897 f:\sp\public\sdk\inc\guiddef.h
+FILE 2898 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 2899 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 2900 f:\sp\public\sdk\inc\winnt.h
+FILE 2901 f:\sp\public\sdk\inc\winnls.h
+FILE 2902 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 2903 f:\sp\public\sdk\inc\pshpack1.h
+FILE 2904 f:\sp\public\sdk\inc\winerror.h
+FILE 2905 f:\sp\public\sdk\inc\winreg.h
+FILE 2906 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 2907 f:\sp\public\sdk\inc\ddbanned.h
+FILE 2908 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 2909 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 2910 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 2911 f:\sp\public\sdk\inc\tvout.h
+FILE 2912 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 2913 f:\sp\public\sdk\inc\poppack.h
+FILE 2914 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 2915 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 2916 f:\sp\public\sdk\inc\winnetwk.h
+FILE 2917 f:\sp\public\sdk\inc\imm.h
+FILE 2918 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 2919 f:\sp\public\sdk\inc\windef.h
+FILE 2920 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 2921 f:\sp\vctools\crt_bld\self_x86\crt\src\wchar.h
+FILE 2922 f:\sp\public\sdk\inc\pshpack1.h
+FILE 2923 f:\sp\public\sdk\inc\winver.h
+FILE 2924 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 2925 f:\sp\vctools\crt_bld\self_x86\crt\src\awint.h
+FILE 2926 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 2927 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 2928 f:\sp\public\sdk\inc\winnt.h
+FILE 2929 f:\sp\vctools\crt_bld\self_x86\crt\src\swprintf.inl
+FILE 2930 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 2931 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 2932 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 2933 f:\sp\public\sdk\inc\winreg.h
+FILE 2934 f:\sp\vctools\crt_bld\self_x86\crt\src\convrtcp.c
+FILE 2935 f:\sp\public\sdk\inc\winbase.h
+FILE 2936 f:\sp\public\sdk\inc\winerror.h
+FILE 2937 f:\sp\public\sdk\inc\pshpack8.h
+FILE 2938 f:\sp\vctools\crt_bld\self_x86\crt\src\malloc.h
+FILE 2939 f:\sp\public\sdk\inc\reason.h
+FILE 2940 f:\sp\public\sdk\inc\wincon.h
+FILE 2941 f:\sp\public\sdk\inc\ddbanned.h
+FILE 2942 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 2943 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 2944 f:\sp\public\sdk\inc\pshpack2.h
+FILE 2945 f:\sp\public\sdk\inc\mcx.h
+FILE 2946 f:\sp\public\sdk\inc\winuser.h
+FILE 2947 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 2948 f:\sp\vctools\crt_bld\self_x86\crt\src\wtime.inl
+FILE 2949 f:\sp\public\sdk\inc\winnls.h
+FILE 2950 f:\sp\public\sdk\inc\guiddef.h
+FILE 2951 f:\sp\public\sdk\inc\windows.h
+FILE 2952 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 2953 f:\sp\public\sdk\inc\specstrings.h
+FILE 2954 f:\sp\public\sdk\inc\basetsd.h
+FILE 2955 f:\sp\public\sdk\inc\stralign.h
+FILE 2956 f:\sp\public\sdk\inc\tvout.h
+FILE 2957 f:\sp\public\sdk\inc\winsvc.h
+FILE 2958 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 2959 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 2960 f:\sp\public\sdk\inc\wingdi.h
+FILE 2961 f:\sp\vctools\crt_bld\self_x86\crt\src\locale.h
+FILE 2962 f:\sp\public\sdk\inc\pshpack4.h
+FILE 2963 f:\sp\public\sdk\inc\winerror.h
+FILE 2964 f:\sp\public\sdk\inc\pshpack8.h
+FILE 2965 f:\sp\public\sdk\inc\reason.h
+FILE 2966 f:\sp\vctools\crt_bld\self_x86\crt\src\awint.h
+FILE 2967 f:\sp\public\sdk\inc\wincon.h
+FILE 2968 f:\sp\vctools\crt_bld\self_x86\crt\src\rterr.h
+FILE 2969 f:\sp\public\sdk\inc\pshpack2.h
+FILE 2970 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 2971 f:\sp\public\sdk\inc\mcx.h
+FILE 2972 f:\sp\public\sdk\inc\winuser.h
+FILE 2973 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 2974 f:\sp\public\sdk\inc\winnls.h
+FILE 2975 f:\sp\public\sdk\inc\guiddef.h
+FILE 2976 f:\sp\public\sdk\inc\windows.h
+FILE 2977 f:\sp\vctools\crt_bld\self_x86\crt\src\mbctype.h
+FILE 2978 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 2979 f:\sp\public\sdk\inc\specstrings.h
+FILE 2980 f:\sp\public\sdk\inc\basetsd.h
+FILE 2981 f:\sp\public\sdk\inc\stralign.h
+FILE 2982 f:\sp\public\sdk\inc\tvout.h
+FILE 2983 f:\sp\public\sdk\inc\winsvc.h
+FILE 2984 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 2985 f:\sp\public\sdk\inc\wingdi.h
+FILE 2986 f:\sp\vctools\crt_bld\self_x86\crt\src\malloc.h
+FILE 2987 f:\sp\vctools\crt_bld\self_x86\crt\src\locale.h
+FILE 2988 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 2989 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 2990 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 2991 f:\sp\public\sdk\inc\pshpack4.h
+FILE 2992 f:\sp\public\sdk\inc\poppack.h
+FILE 2993 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 2994 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 2995 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.c
+FILE 2996 f:\sp\public\sdk\inc\winnetwk.h
+FILE 2997 f:\sp\public\sdk\inc\imm.h
+FILE 2998 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 2999 f:\sp\public\sdk\inc\windef.h
+FILE 3000 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 3001 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 3002 f:\sp\public\sdk\inc\pshpack1.h
+FILE 3003 f:\sp\public\sdk\inc\ddbanned.h
+FILE 3004 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 3005 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 3006 f:\sp\public\sdk\inc\winver.h
+FILE 3007 f:\sp\public\sdk\inc\winnt.h
+FILE 3008 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 3009 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 3010 f:\sp\public\sdk\inc\winreg.h
+FILE 3011 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 3012 f:\sp\public\sdk\inc\winbase.h
+FILE 3013 f:\sp\public\sdk\inc\poppack.h
+FILE 3014 f:\sp\vctools\crt_bld\self_x86\crt\src\tchar.h
+FILE 3015 f:\sp\vctools\crt_bld\self_x86\crt\src\mbstring.h
+FILE 3016 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 3017 f:\sp\public\sdk\inc\winnetwk.h
+FILE 3018 f:\sp\public\sdk\inc\imm.h
+FILE 3019 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 3020 f:\sp\public\sdk\inc\windef.h
+FILE 3021 f:\sp\vctools\crt_bld\self_x86\crt\src\rterr.h
+FILE 3022 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 3023 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 3024 f:\sp\public\sdk\inc\pshpack1.h
+FILE 3025 f:\sp\public\sdk\inc\winver.h
+FILE 3026 f:\sp\public\sdk\inc\windows.h
+FILE 3027 f:\sp\public\sdk\inc\winnt.h
+FILE 3028 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 3029 f:\sp\vctools\crt_bld\self_x86\crt\src\awint.h
+FILE 3030 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 3031 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 3032 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 3033 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 3034 f:\sp\public\sdk\inc\winreg.h
+FILE 3035 f:\sp\public\sdk\inc\winbase.h
+FILE 3036 f:\sp\vctools\crt_bld\self_x86\crt\src\setenv.c
+FILE 3037 f:\sp\public\sdk\inc\winerror.h
+FILE 3038 f:\sp\public\sdk\inc\pshpack8.h
+FILE 3039 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 3040 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 3041 f:\sp\public\sdk\inc\reason.h
+FILE 3042 f:\sp\public\sdk\inc\wincon.h
+FILE 3043 f:\sp\public\sdk\inc\ddbanned.h
+FILE 3044 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 3045 f:\sp\public\sdk\inc\pshpack2.h
+FILE 3046 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 3047 f:\sp\public\sdk\inc\mcx.h
+FILE 3048 f:\sp\public\sdk\inc\winuser.h
+FILE 3049 f:\sp\public\sdk\inc\winnls.h
+FILE 3050 f:\sp\public\sdk\inc\guiddef.h
+FILE 3051 f:\sp\public\sdk\inc\specstrings.h
+FILE 3052 f:\sp\public\sdk\inc\basetsd.h
+FILE 3053 f:\sp\public\sdk\inc\stralign.h
+FILE 3054 f:\sp\public\sdk\inc\tvout.h
+FILE 3055 f:\sp\public\sdk\inc\winsvc.h
+FILE 3056 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 3057 f:\sp\public\sdk\inc\wingdi.h
+FILE 3058 f:\sp\public\sdk\inc\pshpack4.h
+FILE 3059 f:\sp\public\sdk\inc\poppack.h
+FILE 3060 f:\sp\public\sdk\inc\winnetwk.h
+FILE 3061 f:\sp\public\sdk\inc\imm.h
+FILE 3062 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 3063 f:\sp\public\sdk\inc\windef.h
+FILE 3064 f:\sp\public\sdk\inc\pshpack1.h
+FILE 3065 f:\sp\public\sdk\inc\winver.h
+FILE 3066 f:\sp\public\sdk\inc\windows.h
+FILE 3067 f:\sp\public\sdk\inc\winnt.h
+FILE 3068 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 3069 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 3070 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 3071 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 3072 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 3073 f:\sp\public\sdk\inc\winreg.h
+FILE 3074 f:\sp\public\sdk\inc\winbase.h
+FILE 3075 f:\sp\vctools\crt_bld\self_x86\crt\src\rand_s.c
+FILE 3076 f:\sp\public\sdk\inc\winerror.h
+FILE 3077 f:\sp\public\sdk\inc\pshpack8.h
+FILE 3078 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 3079 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 3080 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 3081 f:\sp\public\sdk\inc\reason.h
+FILE 3082 f:\sp\public\sdk\inc\wincon.h
+FILE 3083 f:\sp\public\sdk\inc\ddbanned.h
+FILE 3084 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 3085 f:\sp\public\sdk\inc\pshpack2.h
+FILE 3086 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 3087 f:\sp\public\sdk\inc\mcx.h
+FILE 3088 f:\sp\public\sdk\inc\winuser.h
+FILE 3089 f:\sp\vctools\crt_bld\self_x86\crt\src\stddef.h
+FILE 3090 f:\sp\public\sdk\inc\winnls.h
+FILE 3091 f:\sp\public\sdk\inc\guiddef.h
+FILE 3092 f:\sp\public\sdk\inc\specstrings.h
+FILE 3093 f:\sp\public\sdk\inc\basetsd.h
+FILE 3094 f:\sp\public\sdk\inc\stralign.h
+FILE 3095 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 3096 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 3097 f:\sp\public\sdk\inc\tvout.h
+FILE 3098 f:\sp\public\sdk\inc\winsvc.h
+FILE 3099 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 3100 f:\sp\public\sdk\inc\wingdi.h
+FILE 3101 f:\sp\public\sdk\inc\pshpack4.h
+FILE 3102 f:\sp\public\sdk\inc\poppack.h
+FILE 3103 f:\sp\vctools\crt_bld\self_x86\crt\src\rterr.h
+FILE 3104 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 3105 f:\sp\public\sdk\inc\winnetwk.h
+FILE 3106 f:\sp\public\sdk\inc\imm.h
+FILE 3107 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 3108 f:\sp\public\sdk\inc\windef.h
+FILE 3109 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 3110 f:\sp\public\sdk\inc\pshpack1.h
+FILE 3111 f:\sp\public\sdk\inc\winver.h
+FILE 3112 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 3113 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 3114 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 3115 f:\sp\public\sdk\inc\winnt.h
+FILE 3116 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 3117 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 3118 f:\sp\public\sdk\inc\winreg.h
+FILE 3119 f:\sp\vctools\crt_bld\self_x86\crt\src\purevirt.c
+FILE 3120 f:\sp\public\sdk\inc\winbase.h
+FILE 3121 f:\sp\public\sdk\inc\winerror.h
+FILE 3122 f:\sp\public\sdk\inc\pshpack8.h
+FILE 3123 f:\sp\public\sdk\inc\reason.h
+FILE 3124 f:\sp\public\sdk\inc\wincon.h
+FILE 3125 f:\sp\public\sdk\inc\ddbanned.h
+FILE 3126 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 3127 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 3128 f:\sp\public\sdk\inc\pshpack2.h
+FILE 3129 f:\sp\public\sdk\inc\mcx.h
+FILE 3130 f:\sp\public\sdk\inc\winuser.h
+FILE 3131 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 3132 f:\sp\public\sdk\inc\winnls.h
+FILE 3133 f:\sp\public\sdk\inc\guiddef.h
+FILE 3134 f:\sp\public\sdk\inc\windows.h
+FILE 3135 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 3136 f:\sp\public\sdk\inc\specstrings.h
+FILE 3137 f:\sp\public\sdk\inc\basetsd.h
+FILE 3138 f:\sp\public\sdk\inc\stralign.h
+FILE 3139 f:\sp\public\sdk\inc\tvout.h
+FILE 3140 f:\sp\public\sdk\inc\winsvc.h
+FILE 3141 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 3142 f:\sp\public\sdk\inc\wingdi.h
+FILE 3143 f:\sp\public\sdk\inc\pshpack4.h
+FILE 3144 f:\sp\public\sdk\inc\poppack.h
+FILE 3145 f:\sp\public\sdk\inc\winnetwk.h
+FILE 3146 f:\sp\public\sdk\inc\imm.h
+FILE 3147 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 3148 f:\sp\public\sdk\inc\windef.h
+FILE 3149 f:\sp\public\sdk\inc\pshpack1.h
+FILE 3150 f:\sp\public\sdk\inc\winver.h
+FILE 3151 f:\sp\public\sdk\inc\windows.h
+FILE 3152 f:\sp\public\sdk\inc\winnt.h
+FILE 3153 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 3154 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 3155 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 3156 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 3157 f:\sp\public\sdk\inc\winreg.h
+FILE 3158 f:\sp\public\sdk\inc\winbase.h
+FILE 3159 f:\sp\vctools\crt_bld\self_x86\crt\src\pesect.c
+FILE 3160 f:\sp\public\sdk\inc\winerror.h
+FILE 3161 f:\sp\public\sdk\inc\pshpack8.h
+FILE 3162 f:\sp\public\sdk\inc\reason.h
+FILE 3163 f:\sp\public\sdk\inc\wincon.h
+FILE 3164 f:\sp\public\sdk\inc\ddbanned.h
+FILE 3165 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 3166 f:\sp\public\sdk\inc\pshpack2.h
+FILE 3167 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 3168 f:\sp\public\sdk\inc\mcx.h
+FILE 3169 f:\sp\public\sdk\inc\winuser.h
+FILE 3170 f:\sp\public\sdk\inc\winnls.h
+FILE 3171 f:\sp\public\sdk\inc\guiddef.h
+FILE 3172 f:\sp\public\sdk\inc\specstrings.h
+FILE 3173 f:\sp\public\sdk\inc\basetsd.h
+FILE 3174 f:\sp\public\sdk\inc\stralign.h
+FILE 3175 f:\sp\public\sdk\inc\tvout.h
+FILE 3176 f:\sp\public\sdk\inc\winsvc.h
+FILE 3177 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 3178 f:\sp\public\sdk\inc\wingdi.h
+FILE 3179 f:\sp\public\sdk\inc\pshpack4.h
+FILE 3180 f:\sp\public\sdk\inc\winerror.h
+FILE 3181 f:\sp\public\sdk\inc\pshpack1.h
+FILE 3182 f:\sp\public\sdk\inc\pshpack8.h
+FILE 3183 f:\sp\public\sdk\inc\winver.h
+FILE 3184 f:\sp\public\sdk\inc\pshpack2.h
+FILE 3185 f:\sp\public\sdk\inc\winreg.h
+FILE 3186 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 3187 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 3188 f:\sp\public\sdk\inc\guiddef.h
+FILE 3189 f:\sp\public\sdk\inc\windows.h
+FILE 3190 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 3191 f:\sp\vctools\crt_bld\self_x86\crt\src\mbctype.h
+FILE 3192 f:\sp\public\sdk\inc\specstrings.h
+FILE 3193 f:\sp\public\sdk\inc\basetsd.h
+FILE 3194 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 3195 f:\sp\vctools\crt_bld\self_x86\crt\src\locale.h
+FILE 3196 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 3197 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 3198 f:\sp\public\sdk\inc\pshpack4.h
+FILE 3199 f:\sp\public\sdk\inc\reason.h
+FILE 3200 f:\sp\public\sdk\inc\wincon.h
+FILE 3201 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 3202 f:\sp\public\sdk\inc\poppack.h
+FILE 3203 f:\sp\public\sdk\inc\mcx.h
+FILE 3204 f:\sp\public\sdk\inc\winuser.h
+FILE 3205 f:\sp\public\sdk\inc\winnls.h
+FILE 3206 f:\sp\vctools\crt_bld\self_x86\crt\src\nlsdata2.c
+FILE 3207 f:\sp\public\sdk\inc\stralign.h
+FILE 3208 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 3209 f:\sp\public\sdk\inc\windef.h
+FILE 3210 f:\sp\public\sdk\inc\tvout.h
+FILE 3211 f:\sp\public\sdk\inc\winsvc.h
+FILE 3212 f:\sp\public\sdk\inc\wingdi.h
+FILE 3213 f:\sp\public\sdk\inc\ddbanned.h
+FILE 3214 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 3215 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 3216 f:\sp\public\sdk\inc\winnt.h
+FILE 3217 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 3218 f:\sp\public\sdk\inc\winnetwk.h
+FILE 3219 f:\sp\public\sdk\inc\imm.h
+FILE 3220 f:\sp\public\sdk\inc\winbase.h
+FILE 3221 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 3222 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 3223 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 3224 f:\sp\vctools\crt_bld\self_x86\crt\src\nlsdata1.c
+FILE 3225 f:\sp\public\sdk\inc\ddbanned.h
+FILE 3226 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 3227 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 3228 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 3229 f:\sp\vctools\crt_bld\self_x86\crt\src\nlsint.h
+FILE 3230 f:\sp\public\sdk\inc\reason.h
+FILE 3231 f:\sp\public\sdk\inc\wincon.h
+FILE 3232 f:\sp\public\sdk\inc\pshpack2.h
+FILE 3233 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 3234 f:\sp\public\sdk\inc\mcx.h
+FILE 3235 f:\sp\public\sdk\inc\winuser.h
+FILE 3236 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 3237 f:\sp\vctools\crt_bld\self_x86\crt\src\rterr.h
+FILE 3238 f:\sp\public\sdk\inc\winnls.h
+FILE 3239 f:\sp\public\sdk\inc\guiddef.h
+FILE 3240 f:\sp\public\sdk\inc\windows.h
+FILE 3241 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 3242 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 3243 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 3244 f:\sp\public\sdk\inc\specstrings.h
+FILE 3245 f:\sp\public\sdk\inc\basetsd.h
+FILE 3246 f:\sp\public\sdk\inc\stralign.h
+FILE 3247 f:\sp\public\sdk\inc\tvout.h
+FILE 3248 f:\sp\public\sdk\inc\winsvc.h
+FILE 3249 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 3250 f:\sp\public\sdk\inc\wingdi.h
+FILE 3251 f:\sp\public\sdk\inc\pshpack4.h
+FILE 3252 f:\sp\public\sdk\inc\poppack.h
+FILE 3253 f:\sp\vctools\crt_bld\self_x86\crt\src\sect_attribs.h
+FILE 3254 f:\sp\public\sdk\inc\winnetwk.h
+FILE 3255 f:\sp\public\sdk\inc\imm.h
+FILE 3256 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 3257 f:\sp\public\sdk\inc\windef.h
+FILE 3258 f:\sp\vctools\crt_bld\self_x86\crt\src\malloc.h
+FILE 3259 f:\sp\vctools\crt_bld\self_x86\crt\src\onexit.c
+FILE 3260 f:\sp\public\sdk\inc\pshpack1.h
+FILE 3261 f:\sp\public\sdk\inc\winver.h
+FILE 3262 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 3263 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 3264 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 3265 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 3266 f:\sp\public\sdk\inc\winnt.h
+FILE 3267 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 3268 f:\sp\public\sdk\inc\ddbanned.h
+FILE 3269 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 3270 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 3271 f:\sp\public\sdk\inc\winreg.h
+FILE 3272 f:\sp\public\sdk\inc\winbase.h
+FILE 3273 f:\sp\public\sdk\inc\winerror.h
+FILE 3274 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 3275 f:\sp\public\sdk\inc\pshpack8.h
+FILE 3276 f:\sp\public\sdk\inc\winbase.h
+FILE 3277 f:\sp\public\sdk\inc\winerror.h
+FILE 3278 f:\sp\public\sdk\inc\pshpack1.h
+FILE 3279 f:\sp\public\sdk\inc\pshpack8.h
+FILE 3280 f:\sp\public\sdk\inc\winver.h
+FILE 3281 f:\sp\public\sdk\inc\pshpack2.h
+FILE 3282 f:\sp\public\sdk\inc\winreg.h
+FILE 3283 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 3284 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 3285 f:\sp\public\sdk\inc\guiddef.h
+FILE 3286 f:\sp\public\sdk\inc\windows.h
+FILE 3287 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 3288 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 3289 f:\sp\public\sdk\inc\specstrings.h
+FILE 3290 f:\sp\public\sdk\inc\basetsd.h
+FILE 3291 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 3292 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 3293 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 3294 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 3295 f:\sp\public\sdk\inc\pshpack4.h
+FILE 3296 f:\sp\public\sdk\inc\reason.h
+FILE 3297 f:\sp\public\sdk\inc\wincon.h
+FILE 3298 f:\sp\public\sdk\inc\poppack.h
+FILE 3299 f:\sp\public\sdk\inc\mcx.h
+FILE 3300 f:\sp\public\sdk\inc\winuser.h
+FILE 3301 f:\sp\public\sdk\inc\winnls.h
+FILE 3302 f:\sp\vctools\crt_bld\self_x86\crt\src\lconv.c
+FILE 3303 f:\sp\public\sdk\inc\stralign.h
+FILE 3304 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 3305 f:\sp\public\sdk\inc\windef.h
+FILE 3306 f:\sp\public\sdk\inc\tvout.h
+FILE 3307 f:\sp\public\sdk\inc\winsvc.h
+FILE 3308 f:\sp\public\sdk\inc\wingdi.h
+FILE 3309 f:\sp\public\sdk\inc\ddbanned.h
+FILE 3310 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 3311 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 3312 f:\sp\vctools\crt_bld\self_x86\crt\src\locale.h
+FILE 3313 f:\sp\public\sdk\inc\winnt.h
+FILE 3314 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 3315 f:\sp\public\sdk\inc\winnetwk.h
+FILE 3316 f:\sp\public\sdk\inc\imm.h
+FILE 3317 f:\sp\public\sdk\inc\guiddef.h
+FILE 3318 f:\sp\public\sdk\inc\winnt.h
+FILE 3319 f:\sp\public\sdk\inc\winnls.h
+FILE 3320 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 3321 f:\sp\public\sdk\inc\pshpack1.h
+FILE 3322 f:\sp\public\sdk\inc\winerror.h
+FILE 3323 f:\sp\public\sdk\inc\winreg.h
+FILE 3324 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 3325 f:\sp\vctools\crt_bld\self_x86\crt\src\rterr.h
+FILE 3326 f:\sp\public\sdk\inc\tvout.h
+FILE 3327 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 3328 f:\sp\vctools\crt_bld\self_x86\crt\src\invarg.c
+FILE 3329 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 3330 f:\sp\public\sdk\inc\wincon.h
+FILE 3331 f:\sp\public\sdk\inc\imm.h
+FILE 3332 f:\sp\public\sdk\inc\winbase.h
+FILE 3333 f:\sp\public\sdk\inc\wingdi.h
+FILE 3334 f:\sp\public\sdk\inc\winver.h
+FILE 3335 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 3336 f:\sp\public\sdk\inc\windows.h
+FILE 3337 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 3338 f:\sp\public\sdk\inc\pshpack2.h
+FILE 3339 f:\sp\public\sdk\inc\reason.h
+FILE 3340 f:\sp\vctools\crt_bld\self_x86\crt\src\sect_attribs.h
+FILE 3341 f:\sp\public\sdk\inc\specstrings.h
+FILE 3342 f:\sp\public\sdk\inc\basetsd.h
+FILE 3343 f:\sp\public\sdk\inc\pshpack4.h
+FILE 3344 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 3345 f:\sp\public\sdk\inc\winnetwk.h
+FILE 3346 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 3347 f:\sp\public\sdk\inc\stralign.h
+FILE 3348 f:\sp\public\sdk\inc\poppack.h
+FILE 3349 f:\sp\public\sdk\inc\winsvc.h
+FILE 3350 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 3351 f:\sp\public\sdk\inc\windef.h
+FILE 3352 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 3353 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 3354 f:\sp\public\sdk\inc\winuser.h
+FILE 3355 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 3356 f:\sp\public\sdk\inc\ddbanned.h
+FILE 3357 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 3358 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 3359 f:\sp\public\sdk\inc\mcx.h
+FILE 3360 f:\sp\public\sdk\inc\pshpack8.h
+FILE 3361 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 3362 f:\sp\vctools\crt_bld\self_x86\crt\src\malloc.h
+FILE 3363 f:\sp\public\sdk\inc\pshpack4.h
+FILE 3364 f:\sp\public\sdk\inc\poppack.h
+FILE 3365 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 3366 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 3367 f:\sp\public\sdk\inc\winnetwk.h
+FILE 3368 f:\sp\public\sdk\inc\imm.h
+FILE 3369 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 3370 f:\sp\public\sdk\inc\windef.h
+FILE 3371 f:\sp\public\sdk\inc\pshpack1.h
+FILE 3372 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 3373 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 3374 f:\sp\public\sdk\inc\winver.h
+FILE 3375 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 3376 f:\sp\public\sdk\inc\winnt.h
+FILE 3377 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 3378 f:\sp\public\sdk\inc\winreg.h
+FILE 3379 f:\sp\vctools\crt_bld\self_x86\crt\src\inittime.c
+FILE 3380 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 3381 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 3382 f:\sp\public\sdk\inc\winbase.h
+FILE 3383 f:\sp\public\sdk\inc\winerror.h
+FILE 3384 f:\sp\public\sdk\inc\pshpack8.h
+FILE 3385 f:\sp\vctools\crt_bld\self_x86\crt\src\locale.h
+FILE 3386 f:\sp\public\sdk\inc\reason.h
+FILE 3387 f:\sp\public\sdk\inc\ddbanned.h
+FILE 3388 f:\sp\public\sdk\inc\wincon.h
+FILE 3389 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 3390 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 3391 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 3392 f:\sp\public\sdk\inc\pshpack2.h
+FILE 3393 f:\sp\public\sdk\inc\mcx.h
+FILE 3394 f:\sp\public\sdk\inc\winuser.h
+FILE 3395 f:\sp\public\sdk\inc\winnls.h
+FILE 3396 f:\sp\public\sdk\inc\guiddef.h
+FILE 3397 f:\sp\public\sdk\inc\stralign.h
+FILE 3398 f:\sp\public\sdk\inc\specstrings.h
+FILE 3399 f:\sp\public\sdk\inc\basetsd.h
+FILE 3400 f:\sp\public\sdk\inc\windows.h
+FILE 3401 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 3402 f:\sp\public\sdk\inc\tvout.h
+FILE 3403 f:\sp\public\sdk\inc\winsvc.h
+FILE 3404 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 3405 f:\sp\public\sdk\inc\wingdi.h
+FILE 3406 f:\sp\vctools\crt_bld\self_x86\crt\src\malloc.h
+FILE 3407 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 3408 f:\sp\public\sdk\inc\pshpack4.h
+FILE 3409 f:\sp\public\sdk\inc\poppack.h
+FILE 3410 f:\sp\public\sdk\inc\winnt.h
+FILE 3411 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 3412 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 3413 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 3414 f:\sp\public\sdk\inc\winnetwk.h
+FILE 3415 f:\sp\public\sdk\inc\imm.h
+FILE 3416 f:\sp\public\sdk\inc\pshpack1.h
+FILE 3417 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 3418 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 3419 f:\sp\public\sdk\inc\winver.h
+FILE 3420 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 3421 f:\sp\public\sdk\inc\guiddef.h
+FILE 3422 f:\sp\public\sdk\inc\specstrings.h
+FILE 3423 f:\sp\public\sdk\inc\basetsd.h
+FILE 3424 f:\sp\public\sdk\inc\windows.h
+FILE 3425 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 3426 f:\sp\public\sdk\inc\winreg.h
+FILE 3427 f:\sp\vctools\crt_bld\self_x86\crt\src\initnum.c
+FILE 3428 f:\sp\vctools\crt_bld\self_x86\crt\src\nlsint.h
+FILE 3429 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 3430 f:\sp\public\sdk\inc\winbase.h
+FILE 3431 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 3432 f:\sp\public\sdk\inc\winerror.h
+FILE 3433 f:\sp\public\sdk\inc\pshpack8.h
+FILE 3434 f:\sp\vctools\crt_bld\self_x86\crt\src\locale.h
+FILE 3435 f:\sp\public\sdk\inc\reason.h
+FILE 3436 f:\sp\public\sdk\inc\ddbanned.h
+FILE 3437 f:\sp\public\sdk\inc\wincon.h
+FILE 3438 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 3439 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 3440 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 3441 f:\sp\public\sdk\inc\pshpack2.h
+FILE 3442 f:\sp\public\sdk\inc\mcx.h
+FILE 3443 f:\sp\public\sdk\inc\winuser.h
+FILE 3444 f:\sp\public\sdk\inc\winnls.h
+FILE 3445 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 3446 f:\sp\public\sdk\inc\windef.h
+FILE 3447 f:\sp\public\sdk\inc\stralign.h
+FILE 3448 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 3449 f:\sp\public\sdk\inc\tvout.h
+FILE 3450 f:\sp\public\sdk\inc\winsvc.h
+FILE 3451 f:\sp\public\sdk\inc\wingdi.h
+FILE 3452 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 3453 f:\sp\vctools\crt_bld\self_x86\crt\src\malloc.h
+FILE 3454 f:\sp\public\sdk\inc\pshpack4.h
+FILE 3455 f:\sp\public\sdk\inc\poppack.h
+FILE 3456 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 3457 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 3458 f:\sp\public\sdk\inc\winnetwk.h
+FILE 3459 f:\sp\public\sdk\inc\imm.h
+FILE 3460 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 3461 f:\sp\public\sdk\inc\windef.h
+FILE 3462 f:\sp\public\sdk\inc\pshpack1.h
+FILE 3463 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 3464 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 3465 f:\sp\public\sdk\inc\winver.h
+FILE 3466 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 3467 f:\sp\public\sdk\inc\winnt.h
+FILE 3468 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 3469 f:\sp\public\sdk\inc\winreg.h
+FILE 3470 f:\sp\vctools\crt_bld\self_x86\crt\src\initmon.c
+FILE 3471 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 3472 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 3473 f:\sp\public\sdk\inc\winbase.h
+FILE 3474 f:\sp\public\sdk\inc\winerror.h
+FILE 3475 f:\sp\public\sdk\inc\pshpack8.h
+FILE 3476 f:\sp\vctools\crt_bld\self_x86\crt\src\locale.h
+FILE 3477 f:\sp\public\sdk\inc\reason.h
+FILE 3478 f:\sp\public\sdk\inc\ddbanned.h
+FILE 3479 f:\sp\public\sdk\inc\wincon.h
+FILE 3480 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 3481 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 3482 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 3483 f:\sp\public\sdk\inc\pshpack2.h
+FILE 3484 f:\sp\public\sdk\inc\mcx.h
+FILE 3485 f:\sp\public\sdk\inc\winuser.h
+FILE 3486 f:\sp\public\sdk\inc\winnls.h
+FILE 3487 f:\sp\public\sdk\inc\guiddef.h
+FILE 3488 f:\sp\public\sdk\inc\stralign.h
+FILE 3489 f:\sp\public\sdk\inc\specstrings.h
+FILE 3490 f:\sp\public\sdk\inc\basetsd.h
+FILE 3491 f:\sp\public\sdk\inc\windows.h
+FILE 3492 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 3493 f:\sp\public\sdk\inc\tvout.h
+FILE 3494 f:\sp\public\sdk\inc\winsvc.h
+FILE 3495 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 3496 f:\sp\public\sdk\inc\wingdi.h
+FILE 3497 f:\sp\public\sdk\inc\winbase.h
+FILE 3498 f:\sp\public\sdk\inc\winerror.h
+FILE 3499 f:\sp\public\sdk\inc\pshpack1.h
+FILE 3500 f:\sp\public\sdk\inc\pshpack8.h
+FILE 3501 f:\sp\public\sdk\inc\winver.h
+FILE 3502 f:\sp\public\sdk\inc\pshpack2.h
+FILE 3503 f:\sp\public\sdk\inc\winreg.h
+FILE 3504 f:\sp\public\sdk\inc\guiddef.h
+FILE 3505 f:\sp\vctools\crt_bld\self_x86\crt\src\awint.h
+FILE 3506 f:\sp\public\sdk\inc\specstrings.h
+FILE 3507 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 3508 f:\sp\public\sdk\inc\basetsd.h
+FILE 3509 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 3510 f:\sp\public\sdk\inc\windows.h
+FILE 3511 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 3512 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 3513 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 3514 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 3515 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 3516 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 3517 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 3518 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 3519 f:\sp\public\sdk\inc\pshpack4.h
+FILE 3520 f:\sp\public\sdk\inc\reason.h
+FILE 3521 f:\sp\public\sdk\inc\wincon.h
+FILE 3522 f:\sp\public\sdk\inc\poppack.h
+FILE 3523 f:\sp\vctools\crt_bld\self_x86\crt\src\inithelp.c
+FILE 3524 f:\sp\public\sdk\inc\mcx.h
+FILE 3525 f:\sp\public\sdk\inc\winuser.h
+FILE 3526 f:\sp\public\sdk\inc\winnls.h
+FILE 3527 f:\sp\public\sdk\inc\stralign.h
+FILE 3528 f:\sp\public\sdk\inc\tvout.h
+FILE 3529 f:\sp\public\sdk\inc\winsvc.h
+FILE 3530 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 3531 f:\sp\public\sdk\inc\wingdi.h
+FILE 3532 f:\sp\public\sdk\inc\windef.h
+FILE 3533 f:\sp\public\sdk\inc\ddbanned.h
+FILE 3534 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 3535 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 3536 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 3537 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 3538 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 3539 f:\sp\public\sdk\inc\winnetwk.h
+FILE 3540 f:\sp\public\sdk\inc\imm.h
+FILE 3541 f:\sp\vctools\crt_bld\self_x86\crt\src\locale.h
+FILE 3542 f:\sp\public\sdk\inc\winnt.h
+FILE 3543 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 3544 f:\sp\vctools\crt_bld\self_x86\crt\src\malloc.h
+FILE 3545 f:\sp\public\sdk\inc\pshpack4.h
+FILE 3546 f:\sp\public\sdk\inc\poppack.h
+FILE 3547 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 3548 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 3549 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 3550 f:\sp\public\sdk\inc\winnetwk.h
+FILE 3551 f:\sp\public\sdk\inc\imm.h
+FILE 3552 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 3553 f:\sp\public\sdk\inc\windef.h
+FILE 3554 f:\sp\public\sdk\inc\pshpack1.h
+FILE 3555 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 3556 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 3557 f:\sp\public\sdk\inc\winver.h
+FILE 3558 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 3559 f:\sp\public\sdk\inc\winnt.h
+FILE 3560 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 3561 f:\sp\public\sdk\inc\winreg.h
+FILE 3562 f:\sp\vctools\crt_bld\self_x86\crt\src\initctyp.c
+FILE 3563 f:\sp\vctools\crt_bld\self_x86\crt\src\awint.h
+FILE 3564 f:\sp\public\sdk\inc\winbase.h
+FILE 3565 f:\sp\public\sdk\inc\winerror.h
+FILE 3566 f:\sp\public\sdk\inc\pshpack8.h
+FILE 3567 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 3568 f:\sp\vctools\crt_bld\self_x86\crt\src\locale.h
+FILE 3569 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 3570 f:\sp\public\sdk\inc\reason.h
+FILE 3571 f:\sp\public\sdk\inc\ddbanned.h
+FILE 3572 f:\sp\public\sdk\inc\wincon.h
+FILE 3573 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 3574 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 3575 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 3576 f:\sp\public\sdk\inc\pshpack2.h
+FILE 3577 f:\sp\public\sdk\inc\mcx.h
+FILE 3578 f:\sp\public\sdk\inc\winuser.h
+FILE 3579 f:\sp\public\sdk\inc\winnls.h
+FILE 3580 f:\sp\public\sdk\inc\guiddef.h
+FILE 3581 f:\sp\public\sdk\inc\stralign.h
+FILE 3582 f:\sp\public\sdk\inc\specstrings.h
+FILE 3583 f:\sp\public\sdk\inc\basetsd.h
+FILE 3584 f:\sp\public\sdk\inc\windows.h
+FILE 3585 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 3586 f:\sp\public\sdk\inc\tvout.h
+FILE 3587 f:\sp\public\sdk\inc\winsvc.h
+FILE 3588 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 3589 f:\sp\public\sdk\inc\wingdi.h
+FILE 3590 f:\sp\public\sdk\inc\poppack.h
+FILE 3591 f:\sp\vctools\crt_bld\self_x86\crt\src\rterr.h
+FILE 3592 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 3593 f:\sp\public\sdk\inc\winnetwk.h
+FILE 3594 f:\sp\public\sdk\inc\imm.h
+FILE 3595 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 3596 f:\sp\public\sdk\inc\windef.h
+FILE 3597 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 3598 f:\sp\public\sdk\inc\pshpack1.h
+FILE 3599 f:\sp\public\sdk\inc\winver.h
+FILE 3600 f:\sp\public\sdk\inc\windows.h
+FILE 3601 f:\sp\public\sdk\inc\winnt.h
+FILE 3602 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 3603 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 3604 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 3605 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 3606 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 3607 f:\sp\public\sdk\inc\winreg.h
+FILE 3608 f:\sp\public\sdk\inc\winbase.h
+FILE 3609 f:\sp\vctools\crt_bld\self_x86\crt\src\initcrit.c
+FILE 3610 f:\sp\public\sdk\inc\winerror.h
+FILE 3611 f:\sp\public\sdk\inc\pshpack8.h
+FILE 3612 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 3613 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 3614 f:\sp\public\sdk\inc\reason.h
+FILE 3615 f:\sp\public\sdk\inc\wincon.h
+FILE 3616 f:\sp\public\sdk\inc\ddbanned.h
+FILE 3617 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 3618 f:\sp\public\sdk\inc\pshpack2.h
+FILE 3619 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 3620 f:\sp\public\sdk\inc\mcx.h
+FILE 3621 f:\sp\public\sdk\inc\winuser.h
+FILE 3622 f:\sp\public\sdk\inc\winnls.h
+FILE 3623 f:\sp\public\sdk\inc\guiddef.h
+FILE 3624 f:\sp\public\sdk\inc\specstrings.h
+FILE 3625 f:\sp\public\sdk\inc\basetsd.h
+FILE 3626 f:\sp\public\sdk\inc\stralign.h
+FILE 3627 f:\sp\public\sdk\inc\tvout.h
+FILE 3628 f:\sp\public\sdk\inc\winsvc.h
+FILE 3629 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 3630 f:\sp\public\sdk\inc\wingdi.h
+FILE 3631 f:\sp\public\sdk\inc\pshpack4.h
+FILE 3632 f:\sp\public\sdk\inc\poppack.h
+FILE 3633 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 3634 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 3635 f:\sp\public\sdk\inc\winnetwk.h
+FILE 3636 f:\sp\public\sdk\inc\imm.h
+FILE 3637 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 3638 f:\sp\public\sdk\inc\windef.h
+FILE 3639 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 3640 f:\sp\public\sdk\inc\pshpack1.h
+FILE 3641 f:\sp\public\sdk\inc\winver.h
+FILE 3642 f:\sp\public\sdk\inc\windows.h
+FILE 3643 f:\sp\public\sdk\inc\winnt.h
+FILE 3644 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 3645 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 3646 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 3647 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 3648 f:\sp\public\sdk\inc\winreg.h
+FILE 3649 f:\sp\public\sdk\inc\winbase.h
+FILE 3650 f:\sp\vctools\crt_bld\self_x86\crt\src\initcoll.c
+FILE 3651 f:\sp\public\sdk\inc\winerror.h
+FILE 3652 f:\sp\public\sdk\inc\pshpack8.h
+FILE 3653 f:\sp\vctools\crt_bld\self_x86\crt\src\locale.h
+FILE 3654 f:\sp\public\sdk\inc\reason.h
+FILE 3655 f:\sp\public\sdk\inc\wincon.h
+FILE 3656 f:\sp\public\sdk\inc\ddbanned.h
+FILE 3657 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 3658 f:\sp\public\sdk\inc\pshpack2.h
+FILE 3659 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 3660 f:\sp\public\sdk\inc\mcx.h
+FILE 3661 f:\sp\public\sdk\inc\winuser.h
+FILE 3662 f:\sp\public\sdk\inc\winnls.h
+FILE 3663 f:\sp\public\sdk\inc\guiddef.h
+FILE 3664 f:\sp\public\sdk\inc\specstrings.h
+FILE 3665 f:\sp\public\sdk\inc\basetsd.h
+FILE 3666 f:\sp\public\sdk\inc\stralign.h
+FILE 3667 f:\sp\public\sdk\inc\tvout.h
+FILE 3668 f:\sp\public\sdk\inc\winsvc.h
+FILE 3669 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 3670 f:\sp\public\sdk\inc\wingdi.h
+FILE 3671 f:\sp\public\sdk\inc\pshpack4.h
+FILE 3672 f:\sp\public\sdk\inc\poppack.h
+FILE 3673 f:\sp\public\sdk\inc\winnetwk.h
+FILE 3674 f:\sp\public\sdk\inc\imm.h
+FILE 3675 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 3676 f:\sp\public\sdk\inc\windef.h
+FILE 3677 f:\binaries.x86ret\vcboot\inc\mm3dnow.h
+FILE 3678 f:\sp\public\sdk\inc\pshpack1.h
+FILE 3679 f:\sp\vctools\crt_bld\self_x86\crt\src\malloc.h
+FILE 3680 f:\sp\public\sdk\inc\winver.h
+FILE 3681 f:\sp\public\sdk\inc\windows.h
+FILE 3682 f:\sp\public\sdk\inc\winnt.h
+FILE 3683 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 3684 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 3685 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 3686 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 3687 f:\sp\public\sdk\inc\winreg.h
+FILE 3688 f:\sp\public\sdk\inc\winbase.h
+FILE 3689 f:\sp\vctools\crt_bld\self_x86\crt\src\gs_support.c
+FILE 3690 f:\sp\public\sdk\inc\winerror.h
+FILE 3691 f:\sp\public\sdk\inc\pshpack8.h
+FILE 3692 f:\sp\vctools\crt_bld\self_x86\crt\src\intrin.h
+FILE 3693 f:\sp\vctools\crt_bld\self_x86\crt\src\setjmp.h
+FILE 3694 f:\sp\public\sdk\inc\reason.h
+FILE 3695 f:\sp\public\sdk\inc\wincon.h
+FILE 3696 f:\sp\public\sdk\inc\ddbanned.h
+FILE 3697 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 3698 f:\sp\public\sdk\inc\pshpack2.h
+FILE 3699 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 3700 f:\sp\public\sdk\inc\mcx.h
+FILE 3701 f:\sp\public\sdk\inc\winuser.h
+FILE 3702 f:\sp\public\sdk\inc\winnls.h
+FILE 3703 f:\sp\public\sdk\inc\guiddef.h
+FILE 3704 f:\sp\public\sdk\inc\specstrings.h
+FILE 3705 f:\sp\public\sdk\inc\basetsd.h
+FILE 3706 f:\sp\vctools\crt_bld\self_x86\crt\src\stddef.h
+FILE 3707 f:\sp\public\sdk\inc\stralign.h
+FILE 3708 f:\sp\public\sdk\inc\tvout.h
+FILE 3709 f:\sp\public\sdk\inc\winsvc.h
+FILE 3710 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 3711 f:\sp\public\sdk\inc\wingdi.h
+FILE 3712 f:\binaries.x86ret\vcboot\inc\emmintrin.h
+FILE 3713 f:\binaries.x86ret\vcboot\inc\xmmintrin.h
+FILE 3714 f:\binaries.x86ret\vcboot\inc\mmintrin.h
+FILE 3715 f:\sp\public\sdk\inc\pshpack4.h
+FILE 3716 f:\sp\public\sdk\inc\poppack.h
+FILE 3717 f:\sp\public\sdk\inc\winnetwk.h
+FILE 3718 f:\sp\public\sdk\inc\imm.h
+FILE 3719 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 3720 f:\sp\public\sdk\inc\windef.h
+FILE 3721 f:\sp\public\sdk\inc\pshpack1.h
+FILE 3722 f:\sp\public\sdk\inc\winver.h
+FILE 3723 f:\sp\public\sdk\inc\windows.h
+FILE 3724 f:\sp\public\sdk\inc\winnt.h
+FILE 3725 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 3726 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 3727 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 3728 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 3729 f:\sp\public\sdk\inc\winreg.h
+FILE 3730 f:\sp\public\sdk\inc\winbase.h
+FILE 3731 f:\sp\vctools\crt_bld\self_x86\crt\src\gs_report.c
+FILE 3732 f:\sp\public\sdk\inc\winerror.h
+FILE 3733 f:\sp\public\sdk\inc\pshpack8.h
+FILE 3734 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 3735 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 3736 f:\sp\public\sdk\inc\reason.h
+FILE 3737 f:\sp\public\sdk\inc\wincon.h
+FILE 3738 f:\sp\public\sdk\inc\ddbanned.h
+FILE 3739 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 3740 f:\sp\public\sdk\inc\pshpack2.h
+FILE 3741 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 3742 f:\sp\public\sdk\inc\mcx.h
+FILE 3743 f:\sp\public\sdk\inc\winuser.h
+FILE 3744 f:\sp\public\sdk\inc\winnls.h
+FILE 3745 f:\sp\public\sdk\inc\guiddef.h
+FILE 3746 f:\sp\public\sdk\inc\specstrings.h
+FILE 3747 f:\sp\public\sdk\inc\basetsd.h
+FILE 3748 f:\sp\public\sdk\inc\stralign.h
+FILE 3749 f:\sp\public\sdk\inc\tvout.h
+FILE 3750 f:\sp\public\sdk\inc\winsvc.h
+FILE 3751 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 3752 f:\sp\public\sdk\inc\wingdi.h
+FILE 3753 f:\sp\public\sdk\inc\pshpack4.h
+FILE 3754 f:\sp\public\sdk\inc\poppack.h
+FILE 3755 f:\sp\public\sdk\inc\winnetwk.h
+FILE 3756 f:\sp\public\sdk\inc\imm.h
+FILE 3757 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 3758 f:\sp\public\sdk\inc\windef.h
+FILE 3759 f:\sp\public\sdk\inc\pshpack1.h
+FILE 3760 f:\sp\public\sdk\inc\winver.h
+FILE 3761 f:\sp\public\sdk\inc\windows.h
+FILE 3762 f:\sp\public\sdk\inc\winnt.h
+FILE 3763 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 3764 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 3765 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 3766 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 3767 f:\sp\public\sdk\inc\winreg.h
+FILE 3768 f:\sp\public\sdk\inc\winbase.h
+FILE 3769 f:\sp\vctools\crt_bld\self_x86\crt\src\gs_cookie.c
+FILE 3770 f:\sp\public\sdk\inc\winerror.h
+FILE 3771 f:\sp\public\sdk\inc\pshpack8.h
+FILE 3772 f:\sp\public\sdk\inc\reason.h
+FILE 3773 f:\sp\public\sdk\inc\wincon.h
+FILE 3774 f:\sp\public\sdk\inc\ddbanned.h
+FILE 3775 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 3776 f:\sp\public\sdk\inc\pshpack2.h
+FILE 3777 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 3778 f:\sp\public\sdk\inc\mcx.h
+FILE 3779 f:\sp\public\sdk\inc\winuser.h
+FILE 3780 f:\sp\public\sdk\inc\winnls.h
+FILE 3781 f:\sp\public\sdk\inc\guiddef.h
+FILE 3782 f:\sp\public\sdk\inc\specstrings.h
+FILE 3783 f:\sp\public\sdk\inc\basetsd.h
+FILE 3784 f:\sp\public\sdk\inc\stralign.h
+FILE 3785 f:\sp\public\sdk\inc\tvout.h
+FILE 3786 f:\sp\public\sdk\inc\winsvc.h
+FILE 3787 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 3788 f:\sp\public\sdk\inc\wingdi.h
+FILE 3789 f:\sp\public\sdk\inc\pshpack4.h
+FILE 3790 f:\sp\public\sdk\inc\winerror.h
+FILE 3791 f:\sp\public\sdk\inc\pshpack1.h
+FILE 3792 f:\sp\public\sdk\inc\pshpack8.h
+FILE 3793 f:\sp\public\sdk\inc\winver.h
+FILE 3794 f:\sp\public\sdk\inc\pshpack2.h
+FILE 3795 f:\sp\public\sdk\inc\winreg.h
+FILE 3796 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 3797 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 3798 f:\sp\public\sdk\inc\guiddef.h
+FILE 3799 f:\sp\public\sdk\inc\windows.h
+FILE 3800 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 3801 f:\sp\public\sdk\inc\specstrings.h
+FILE 3802 f:\sp\public\sdk\inc\basetsd.h
+FILE 3803 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 3804 f:\sp\vctools\crt_bld\self_x86\crt\src\locale.h
+FILE 3805 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 3806 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 3807 f:\sp\public\sdk\inc\pshpack4.h
+FILE 3808 f:\sp\public\sdk\inc\reason.h
+FILE 3809 f:\sp\public\sdk\inc\wincon.h
+FILE 3810 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 3811 f:\sp\public\sdk\inc\poppack.h
+FILE 3812 f:\sp\public\sdk\inc\mcx.h
+FILE 3813 f:\sp\public\sdk\inc\winuser.h
+FILE 3814 f:\sp\public\sdk\inc\winnls.h
+FILE 3815 f:\sp\vctools\crt_bld\self_x86\crt\src\glstatus.c
+FILE 3816 f:\sp\public\sdk\inc\stralign.h
+FILE 3817 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 3818 f:\sp\public\sdk\inc\windef.h
+FILE 3819 f:\sp\public\sdk\inc\tvout.h
+FILE 3820 f:\sp\public\sdk\inc\winsvc.h
+FILE 3821 f:\sp\public\sdk\inc\wingdi.h
+FILE 3822 f:\sp\public\sdk\inc\ddbanned.h
+FILE 3823 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 3824 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 3825 f:\sp\public\sdk\inc\winnt.h
+FILE 3826 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 3827 f:\sp\public\sdk\inc\winnetwk.h
+FILE 3828 f:\sp\public\sdk\inc\imm.h
+FILE 3829 f:\sp\public\sdk\inc\winbase.h
+FILE 3830 f:\sp\public\sdk\inc\pshpack4.h
+FILE 3831 f:\sp\public\sdk\inc\poppack.h
+FILE 3832 f:\sp\public\sdk\inc\winnt.h
+FILE 3833 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 3834 f:\sp\public\sdk\inc\winnetwk.h
+FILE 3835 f:\sp\public\sdk\inc\imm.h
+FILE 3836 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 3837 f:\sp\public\sdk\inc\pshpack1.h
+FILE 3838 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 3839 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 3840 f:\sp\public\sdk\inc\winver.h
+FILE 3841 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 3842 f:\sp\public\sdk\inc\guiddef.h
+FILE 3843 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 3844 f:\sp\public\sdk\inc\specstrings.h
+FILE 3845 f:\sp\public\sdk\inc\basetsd.h
+FILE 3846 f:\sp\public\sdk\inc\windows.h
+FILE 3847 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 3848 f:\sp\public\sdk\inc\winreg.h
+FILE 3849 f:\sp\vctools\crt_bld\self_x86\crt\src\getqloc.c
+FILE 3850 f:\sp\vctools\crt_bld\self_x86\crt\src\awint.h
+FILE 3851 f:\sp\public\sdk\inc\winbase.h
+FILE 3852 f:\sp\public\sdk\inc\winerror.h
+FILE 3853 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 3854 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 3855 f:\sp\public\sdk\inc\pshpack8.h
+FILE 3856 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 3857 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 3858 f:\sp\public\sdk\inc\reason.h
+FILE 3859 f:\sp\public\sdk\inc\ddbanned.h
+FILE 3860 f:\sp\public\sdk\inc\wincon.h
+FILE 3861 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 3862 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 3863 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 3864 f:\sp\public\sdk\inc\pshpack2.h
+FILE 3865 f:\sp\public\sdk\inc\mcx.h
+FILE 3866 f:\sp\public\sdk\inc\winuser.h
+FILE 3867 f:\sp\public\sdk\inc\winnls.h
+FILE 3868 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 3869 f:\sp\public\sdk\inc\windef.h
+FILE 3870 f:\sp\public\sdk\inc\stralign.h
+FILE 3871 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 3872 f:\sp\public\sdk\inc\tvout.h
+FILE 3873 f:\sp\public\sdk\inc\winsvc.h
+FILE 3874 f:\sp\public\sdk\inc\wingdi.h
+FILE 3875 f:\sp\public\sdk\inc\reason.h
+FILE 3876 f:\sp\public\sdk\inc\wincon.h
+FILE 3877 f:\sp\public\sdk\inc\pshpack2.h
+FILE 3878 f:\sp\public\sdk\inc\mcx.h
+FILE 3879 f:\sp\public\sdk\inc\winuser.h
+FILE 3880 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 3881 f:\sp\public\sdk\inc\winnls.h
+FILE 3882 f:\sp\public\sdk\inc\guiddef.h
+FILE 3883 f:\sp\public\sdk\inc\windows.h
+FILE 3884 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 3885 f:\sp\public\sdk\inc\specstrings.h
+FILE 3886 f:\sp\public\sdk\inc\basetsd.h
+FILE 3887 f:\sp\public\sdk\inc\stralign.h
+FILE 3888 f:\sp\public\sdk\inc\tvout.h
+FILE 3889 f:\sp\public\sdk\inc\winsvc.h
+FILE 3890 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 3891 f:\sp\public\sdk\inc\wingdi.h
+FILE 3892 f:\sp\public\sdk\inc\pshpack4.h
+FILE 3893 f:\sp\public\sdk\inc\poppack.h
+FILE 3894 f:\sp\vctools\crt_bld\self_x86\crt\src\sect_attribs.h
+FILE 3895 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 3896 f:\sp\public\sdk\inc\winnetwk.h
+FILE 3897 f:\sp\public\sdk\inc\imm.h
+FILE 3898 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 3899 f:\sp\public\sdk\inc\windef.h
+FILE 3900 f:\sp\vctools\crt_bld\self_x86\crt\src\tchar.h
+FILE 3901 f:\sp\vctools\crt_bld\self_x86\crt\src\mbstring.h
+FILE 3902 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 3903 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 3904 f:\sp\vctools\crt_bld\self_x86\crt\src\getenv.c
+FILE 3905 f:\sp\public\sdk\inc\pshpack1.h
+FILE 3906 f:\sp\vctools\crt_bld\self_x86\crt\src\awint.h
+FILE 3907 f:\sp\public\sdk\inc\winver.h
+FILE 3908 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 3909 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 3910 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 3911 f:\sp\public\sdk\inc\winnt.h
+FILE 3912 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 3913 f:\sp\public\sdk\inc\ddbanned.h
+FILE 3914 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 3915 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 3916 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 3917 f:\sp\public\sdk\inc\winreg.h
+FILE 3918 f:\sp\public\sdk\inc\winbase.h
+FILE 3919 f:\sp\public\sdk\inc\winerror.h
+FILE 3920 f:\sp\public\sdk\inc\pshpack8.h
+FILE 3921 f:\sp\public\sdk\inc\poppack.h
+FILE 3922 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 3923 f:\sp\public\sdk\inc\winnetwk.h
+FILE 3924 f:\sp\public\sdk\inc\imm.h
+FILE 3925 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 3926 f:\sp\public\sdk\inc\windef.h
+FILE 3927 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 3928 f:\sp\public\sdk\inc\pshpack1.h
+FILE 3929 f:\sp\public\sdk\inc\winver.h
+FILE 3930 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 3931 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 3932 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 3933 f:\sp\public\sdk\inc\winnt.h
+FILE 3934 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 3935 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 3936 f:\sp\public\sdk\inc\winreg.h
+FILE 3937 f:\sp\vctools\crt_bld\self_x86\crt\src\errmode.c
+FILE 3938 f:\sp\public\sdk\inc\winbase.h
+FILE 3939 f:\sp\public\sdk\inc\winerror.h
+FILE 3940 f:\sp\public\sdk\inc\pshpack8.h
+FILE 3941 f:\sp\public\sdk\inc\reason.h
+FILE 3942 f:\sp\public\sdk\inc\wincon.h
+FILE 3943 f:\sp\public\sdk\inc\ddbanned.h
+FILE 3944 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 3945 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 3946 f:\sp\public\sdk\inc\pshpack2.h
+FILE 3947 f:\sp\public\sdk\inc\mcx.h
+FILE 3948 f:\sp\public\sdk\inc\winuser.h
+FILE 3949 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 3950 f:\sp\public\sdk\inc\winnls.h
+FILE 3951 f:\sp\public\sdk\inc\guiddef.h
+FILE 3952 f:\sp\public\sdk\inc\windows.h
+FILE 3953 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 3954 f:\sp\public\sdk\inc\specstrings.h
+FILE 3955 f:\sp\public\sdk\inc\basetsd.h
+FILE 3956 f:\sp\public\sdk\inc\stralign.h
+FILE 3957 f:\sp\public\sdk\inc\tvout.h
+FILE 3958 f:\sp\public\sdk\inc\winsvc.h
+FILE 3959 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 3960 f:\sp\public\sdk\inc\wingdi.h
+FILE 3961 f:\sp\public\sdk\inc\pshpack4.h
+FILE 3962 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 3963 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 3964 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 3965 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 3966 f:\sp\vctools\crt_bld\self_x86\crt\src\dbghook.c
+FILE 3967 f:\sp\public\sdk\inc\ddbanned.h
+FILE 3968 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 3969 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 3970 f:\sp\public\sdk\inc\poppack.h
+FILE 3971 f:\sp\public\sdk\inc\winnetwk.h
+FILE 3972 f:\sp\public\sdk\inc\imm.h
+FILE 3973 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 3974 f:\sp\public\sdk\inc\windef.h
+FILE 3975 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 3976 f:\sp\public\sdk\inc\pshpack1.h
+FILE 3977 f:\sp\public\sdk\inc\winver.h
+FILE 3978 f:\sp\public\sdk\inc\windows.h
+FILE 3979 f:\sp\public\sdk\inc\winnt.h
+FILE 3980 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 3981 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 3982 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 3983 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 3984 f:\sp\public\sdk\inc\winreg.h
+FILE 3985 f:\sp\vctools\crt_bld\self_x86\crt\src\wchar.h
+FILE 3986 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.c
+FILE 3987 f:\sp\public\sdk\inc\winbase.h
+FILE 3988 f:\sp\vctools\crt_bld\self_x86\crt\src\wtime.inl
+FILE 3989 f:\sp\public\sdk\inc\winerror.h
+FILE 3990 f:\sp\public\sdk\inc\pshpack8.h
+FILE 3991 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 3992 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 3993 f:\sp\public\sdk\inc\reason.h
+FILE 3994 f:\sp\public\sdk\inc\wincon.h
+FILE 3995 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 3996 f:\sp\public\sdk\inc\ddbanned.h
+FILE 3997 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 3998 f:\sp\public\sdk\inc\pshpack2.h
+FILE 3999 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 4000 f:\sp\public\sdk\inc\mcx.h
+FILE 4001 f:\sp\public\sdk\inc\winuser.h
+FILE 4002 f:\sp\public\sdk\inc\winnls.h
+FILE 4003 f:\sp\public\sdk\inc\guiddef.h
+FILE 4004 f:\sp\vctools\crt_bld\self_x86\crt\src\swprintf.inl
+FILE 4005 f:\sp\public\sdk\inc\specstrings.h
+FILE 4006 f:\sp\public\sdk\inc\basetsd.h
+FILE 4007 f:\sp\public\sdk\inc\stralign.h
+FILE 4008 f:\sp\public\sdk\inc\tvout.h
+FILE 4009 f:\sp\public\sdk\inc\winsvc.h
+FILE 4010 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 4011 f:\sp\public\sdk\inc\wingdi.h
+FILE 4012 f:\sp\public\sdk\inc\pshpack4.h
+FILE 4013 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 4014 f:\sp\public\sdk\inc\mcx.h
+FILE 4015 f:\sp\public\sdk\inc\winuser.h
+FILE 4016 f:\sp\public\sdk\inc\winnls.h
+FILE 4017 f:\sp\public\sdk\inc\stralign.h
+FILE 4018 f:\sp\public\sdk\inc\tvout.h
+FILE 4019 f:\sp\public\sdk\inc\winsvc.h
+FILE 4020 f:\sp\public\sdk\inc\wingdi.h
+FILE 4021 f:\sp\public\sdk\inc\pshpack4.h
+FILE 4022 f:\sp\public\sdk\inc\winnt.h
+FILE 4023 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 4024 f:\sp\public\sdk\inc\poppack.h
+FILE 4025 f:\sp\public\sdk\inc\winnetwk.h
+FILE 4026 f:\sp\public\sdk\inc\imm.h
+FILE 4027 f:\sp\vctools\crt_bld\self_x86\crt\src\tchar.h
+FILE 4028 f:\sp\vctools\crt_bld\self_x86\crt\src\mbstring.h
+FILE 4029 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 4030 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 4031 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 4032 f:\sp\public\sdk\inc\pshpack1.h
+FILE 4033 f:\sp\vctools\crt_bld\self_x86\crt\src\crtmbox.c
+FILE 4034 f:\sp\public\sdk\inc\winver.h
+FILE 4035 f:\sp\public\sdk\inc\guiddef.h
+FILE 4036 f:\sp\public\sdk\inc\windows.h
+FILE 4037 f:\sp\public\sdk\inc\specstrings.h
+FILE 4038 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 4039 f:\sp\public\sdk\inc\basetsd.h
+FILE 4040 f:\sp\public\sdk\inc\winreg.h
+FILE 4041 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 4042 f:\sp\public\sdk\inc\winbase.h
+FILE 4043 f:\sp\public\sdk\inc\ddbanned.h
+FILE 4044 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 4045 f:\sp\public\sdk\inc\winerror.h
+FILE 4046 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 4047 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 4048 f:\sp\public\sdk\inc\pshpack8.h
+FILE 4049 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 4050 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 4051 f:\sp\vctools\crt_bld\self_x86\crt\src\awint.h
+FILE 4052 f:\sp\public\sdk\inc\reason.h
+FILE 4053 f:\sp\public\sdk\inc\wincon.h
+FILE 4054 f:\sp\public\sdk\inc\pshpack2.h
+FILE 4055 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 4056 f:\sp\public\sdk\inc\windef.h
+FILE 4057 f:\sp\public\sdk\inc\poppack.h
+FILE 4058 f:\sp\vctools\crt_bld\self_x86\crt\src\fltintrn.h
+FILE 4059 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 4060 f:\sp\public\sdk\inc\winnetwk.h
+FILE 4061 f:\sp\public\sdk\inc\imm.h
+FILE 4062 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 4063 f:\sp\public\sdk\inc\windef.h
+FILE 4064 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 4065 f:\sp\public\sdk\inc\pshpack1.h
+FILE 4066 f:\sp\public\sdk\inc\winver.h
+FILE 4067 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 4068 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 4069 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 4070 f:\sp\public\sdk\inc\winnt.h
+FILE 4071 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 4072 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 4073 f:\sp\public\sdk\inc\winreg.h
+FILE 4074 f:\sp\vctools\crt_bld\self_x86\crt\src\cmiscdat.c
+FILE 4075 f:\sp\public\sdk\inc\winbase.h
+FILE 4076 f:\sp\public\sdk\inc\winerror.h
+FILE 4077 f:\sp\public\sdk\inc\pshpack8.h
+FILE 4078 f:\sp\public\sdk\inc\reason.h
+FILE 4079 f:\sp\public\sdk\inc\wincon.h
+FILE 4080 f:\sp\public\sdk\inc\ddbanned.h
+FILE 4081 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 4082 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 4083 f:\sp\public\sdk\inc\pshpack2.h
+FILE 4084 f:\sp\public\sdk\inc\mcx.h
+FILE 4085 f:\sp\public\sdk\inc\winuser.h
+FILE 4086 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 4087 f:\sp\public\sdk\inc\winnls.h
+FILE 4088 f:\sp\public\sdk\inc\guiddef.h
+FILE 4089 f:\sp\public\sdk\inc\windows.h
+FILE 4090 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 4091 f:\sp\public\sdk\inc\specstrings.h
+FILE 4092 f:\sp\public\sdk\inc\basetsd.h
+FILE 4093 f:\sp\public\sdk\inc\stralign.h
+FILE 4094 f:\sp\public\sdk\inc\tvout.h
+FILE 4095 f:\sp\public\sdk\inc\winsvc.h
+FILE 4096 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 4097 f:\sp\public\sdk\inc\wingdi.h
+FILE 4098 f:\sp\public\sdk\inc\pshpack4.h
+FILE 4099 f:\sp\public\sdk\inc\pshpack4.h
+FILE 4100 f:\sp\vctools\crt_bld\self_x86\crt\src\rterr.h
+FILE 4101 f:\sp\vctools\crt_bld\self_x86\crt\src\signal.h
+FILE 4102 f:\sp\public\sdk\inc\poppack.h
+FILE 4103 f:\sp\public\sdk\inc\winnetwk.h
+FILE 4104 f:\sp\public\sdk\inc\imm.h
+FILE 4105 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 4106 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 4107 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 4108 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 4109 f:\sp\public\sdk\inc\windef.h
+FILE 4110 f:\sp\public\sdk\inc\pshpack1.h
+FILE 4111 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 4112 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 4113 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 4114 f:\sp\public\sdk\inc\winver.h
+FILE 4115 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 4116 f:\sp\public\sdk\inc\winnt.h
+FILE 4117 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 4118 f:\sp\public\sdk\inc\winreg.h
+FILE 4119 f:\sp\vctools\crt_bld\self_x86\crt\src\abort.c
+FILE 4120 f:\sp\public\sdk\inc\winbase.h
+FILE 4121 f:\sp\public\sdk\inc\winerror.h
+FILE 4122 f:\sp\public\sdk\inc\pshpack8.h
+FILE 4123 f:\sp\public\sdk\inc\reason.h
+FILE 4124 f:\sp\public\sdk\inc\ddbanned.h
+FILE 4125 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 4126 f:\sp\public\sdk\inc\wincon.h
+FILE 4127 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 4128 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 4129 f:\sp\public\sdk\inc\pshpack2.h
+FILE 4130 f:\sp\public\sdk\inc\mcx.h
+FILE 4131 f:\sp\public\sdk\inc\winuser.h
+FILE 4132 f:\sp\public\sdk\inc\winnls.h
+FILE 4133 f:\sp\public\sdk\inc\guiddef.h
+FILE 4134 f:\sp\public\sdk\inc\stralign.h
+FILE 4135 f:\sp\public\sdk\inc\specstrings.h
+FILE 4136 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 4137 f:\sp\public\sdk\inc\basetsd.h
+FILE 4138 f:\sp\public\sdk\inc\windows.h
+FILE 4139 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 4140 f:\sp\public\sdk\inc\tvout.h
+FILE 4141 f:\sp\public\sdk\inc\winsvc.h
+FILE 4142 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 4143 f:\sp\public\sdk\inc\wingdi.h
+FILE 4144 f:\sp\vctools\crt_bld\self_x86\crt\src\malloc.h
+FILE 4145 f:\sp\public\sdk\inc\wincon.h
+FILE 4146 f:\sp\public\sdk\inc\imm.h
+FILE 4147 f:\sp\public\sdk\inc\winbase.h
+FILE 4148 f:\sp\public\sdk\inc\wingdi.h
+FILE 4149 f:\sp\public\sdk\inc\winver.h
+FILE 4150 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 4151 f:\sp\public\sdk\inc\windows.h
+FILE 4152 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 4153 f:\sp\public\sdk\inc\pshpack2.h
+FILE 4154 f:\sp\public\sdk\inc\reason.h
+FILE 4155 f:\sp\vctools\crt_bld\self_x86\crt\src\a_str.c
+FILE 4156 f:\sp\public\sdk\inc\specstrings.h
+FILE 4157 f:\sp\public\sdk\inc\basetsd.h
+FILE 4158 f:\sp\public\sdk\inc\pshpack4.h
+FILE 4159 f:\sp\vctools\crt_bld\self_x86\crt\src\locale.h
+FILE 4160 f:\sp\public\sdk\inc\winnetwk.h
+FILE 4161 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 4162 f:\sp\public\sdk\inc\stralign.h
+FILE 4163 f:\sp\public\sdk\inc\poppack.h
+FILE 4164 f:\sp\public\sdk\inc\winsvc.h
+FILE 4165 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 4166 f:\sp\public\sdk\inc\windef.h
+FILE 4167 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 4168 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 4169 f:\sp\public\sdk\inc\winuser.h
+FILE 4170 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 4171 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 4172 f:\sp\public\sdk\inc\mcx.h
+FILE 4173 f:\sp\public\sdk\inc\pshpack8.h
+FILE 4174 f:\sp\public\sdk\inc\guiddef.h
+FILE 4175 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 4176 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 4177 f:\sp\public\sdk\inc\winnt.h
+FILE 4178 f:\sp\public\sdk\inc\winnls.h
+FILE 4179 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 4180 f:\sp\public\sdk\inc\pshpack1.h
+FILE 4181 f:\sp\vctools\crt_bld\self_x86\crt\src\awint.h
+FILE 4182 f:\sp\public\sdk\inc\winerror.h
+FILE 4183 f:\sp\public\sdk\inc\winreg.h
+FILE 4184 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 4185 f:\sp\public\sdk\inc\ddbanned.h
+FILE 4186 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 4187 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 4188 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 4189 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 4190 f:\sp\public\sdk\inc\tvout.h
+FILE 4191 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 4192 f:\sp\vctools\crt_bld\self_x86\crt\src\malloc.h
+FILE 4193 f:\sp\public\sdk\inc\wincon.h
+FILE 4194 f:\sp\public\sdk\inc\imm.h
+FILE 4195 f:\sp\public\sdk\inc\winbase.h
+FILE 4196 f:\sp\public\sdk\inc\wingdi.h
+FILE 4197 f:\sp\public\sdk\inc\winver.h
+FILE 4198 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 4199 f:\sp\public\sdk\inc\windows.h
+FILE 4200 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 4201 f:\sp\public\sdk\inc\pshpack2.h
+FILE 4202 f:\sp\public\sdk\inc\reason.h
+FILE 4203 f:\sp\vctools\crt_bld\self_x86\crt\src\a_map.c
+FILE 4204 f:\sp\public\sdk\inc\specstrings.h
+FILE 4205 f:\sp\public\sdk\inc\basetsd.h
+FILE 4206 f:\sp\public\sdk\inc\pshpack4.h
+FILE 4207 f:\sp\vctools\crt_bld\self_x86\crt\src\locale.h
+FILE 4208 f:\sp\public\sdk\inc\winnetwk.h
+FILE 4209 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 4210 f:\sp\public\sdk\inc\stralign.h
+FILE 4211 f:\sp\public\sdk\inc\poppack.h
+FILE 4212 f:\sp\public\sdk\inc\winsvc.h
+FILE 4213 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 4214 f:\sp\public\sdk\inc\windef.h
+FILE 4215 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 4216 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 4217 f:\sp\public\sdk\inc\winuser.h
+FILE 4218 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 4219 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 4220 f:\sp\public\sdk\inc\mcx.h
+FILE 4221 f:\sp\public\sdk\inc\pshpack8.h
+FILE 4222 f:\sp\public\sdk\inc\guiddef.h
+FILE 4223 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 4224 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 4225 f:\sp\public\sdk\inc\winnt.h
+FILE 4226 f:\sp\public\sdk\inc\winnls.h
+FILE 4227 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 4228 f:\sp\public\sdk\inc\pshpack1.h
+FILE 4229 f:\sp\vctools\crt_bld\self_x86\crt\src\awint.h
+FILE 4230 f:\sp\public\sdk\inc\winerror.h
+FILE 4231 f:\sp\public\sdk\inc\winreg.h
+FILE 4232 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 4233 f:\sp\public\sdk\inc\ddbanned.h
+FILE 4234 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 4235 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 4236 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 4237 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 4238 f:\sp\public\sdk\inc\tvout.h
+FILE 4239 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 4240 f:\sp\public\sdk\inc\wincon.h
+FILE 4241 f:\sp\public\sdk\inc\imm.h
+FILE 4242 f:\sp\public\sdk\inc\winbase.h
+FILE 4243 f:\sp\public\sdk\inc\wingdi.h
+FILE 4244 f:\sp\public\sdk\inc\winver.h
+FILE 4245 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 4246 f:\sp\public\sdk\inc\windows.h
+FILE 4247 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 4248 f:\sp\public\sdk\inc\pshpack2.h
+FILE 4249 f:\sp\vctools\crt_bld\self_x86\crt\src\locale.h
+FILE 4250 f:\sp\public\sdk\inc\reason.h
+FILE 4251 f:\sp\vctools\crt_bld\self_x86\crt\src\a_loc.c
+FILE 4252 f:\sp\public\sdk\inc\specstrings.h
+FILE 4253 f:\sp\public\sdk\inc\basetsd.h
+FILE 4254 f:\sp\public\sdk\inc\pshpack4.h
+FILE 4255 f:\sp\vctools\crt_bld\self_x86\crt\src\awint.h
+FILE 4256 f:\sp\public\sdk\inc\winnetwk.h
+FILE 4257 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 4258 f:\sp\public\sdk\inc\stralign.h
+FILE 4259 f:\sp\public\sdk\inc\poppack.h
+FILE 4260 f:\sp\public\sdk\inc\winsvc.h
+FILE 4261 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 4262 f:\sp\public\sdk\inc\windef.h
+FILE 4263 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 4264 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 4265 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 4266 f:\sp\public\sdk\inc\winuser.h
+FILE 4267 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 4268 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 4269 f:\sp\public\sdk\inc\mcx.h
+FILE 4270 f:\sp\vctools\crt_bld\self_x86\crt\src\malloc.h
+FILE 4271 f:\sp\public\sdk\inc\pshpack8.h
+FILE 4272 f:\sp\public\sdk\inc\guiddef.h
+FILE 4273 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 4274 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 4275 f:\sp\public\sdk\inc\winnt.h
+FILE 4276 f:\sp\public\sdk\inc\winnls.h
+FILE 4277 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 4278 f:\sp\public\sdk\inc\pshpack1.h
+FILE 4279 f:\sp\public\sdk\inc\winerror.h
+FILE 4280 f:\sp\public\sdk\inc\winreg.h
+FILE 4281 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 4282 f:\sp\public\sdk\inc\ddbanned.h
+FILE 4283 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 4284 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 4285 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 4286 f:\sp\public\sdk\inc\tvout.h
+FILE 4287 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 4288 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 4289 f:\sp\public\sdk\inc\poppack.h
+FILE 4290 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 4291 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 4292 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 4293 f:\sp\public\sdk\inc\winnetwk.h
+FILE 4294 f:\sp\public\sdk\inc\imm.h
+FILE 4295 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 4296 f:\sp\public\sdk\inc\windef.h
+FILE 4297 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 4298 f:\sp\public\sdk\inc\pshpack1.h
+FILE 4299 f:\sp\public\sdk\inc\winver.h
+FILE 4300 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 4301 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 4302 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 4303 f:\sp\public\sdk\inc\winnt.h
+FILE 4304 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 4305 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 4306 f:\sp\public\sdk\inc\winreg.h
+FILE 4307 f:\sp\vctools\crt_bld\self_x86\crt\src\a_env.c
+FILE 4308 f:\sp\public\sdk\inc\winbase.h
+FILE 4309 f:\sp\public\sdk\inc\winerror.h
+FILE 4310 f:\sp\public\sdk\inc\pshpack8.h
+FILE 4311 f:\sp\public\sdk\inc\reason.h
+FILE 4312 f:\sp\public\sdk\inc\wincon.h
+FILE 4313 f:\sp\public\sdk\inc\ddbanned.h
+FILE 4314 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 4315 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 4316 f:\sp\public\sdk\inc\pshpack2.h
+FILE 4317 f:\sp\public\sdk\inc\mcx.h
+FILE 4318 f:\sp\public\sdk\inc\winuser.h
+FILE 4319 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 4320 f:\sp\public\sdk\inc\winnls.h
+FILE 4321 f:\sp\public\sdk\inc\guiddef.h
+FILE 4322 f:\sp\public\sdk\inc\windows.h
+FILE 4323 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 4324 f:\sp\public\sdk\inc\specstrings.h
+FILE 4325 f:\sp\public\sdk\inc\basetsd.h
+FILE 4326 f:\sp\public\sdk\inc\stralign.h
+FILE 4327 f:\sp\public\sdk\inc\tvout.h
+FILE 4328 f:\sp\public\sdk\inc\winsvc.h
+FILE 4329 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 4330 f:\sp\vctools\crt_bld\self_x86\crt\src\awint.h
+FILE 4331 f:\sp\public\sdk\inc\wingdi.h
+FILE 4332 f:\sp\public\sdk\inc\pshpack4.h
+FILE 4333 f:\sp\vctools\crt_bld\self_x86\crt\src\malloc.h
+FILE 4334 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 4335 f:\sp\public\sdk\inc\wincon.h
+FILE 4336 f:\sp\public\sdk\inc\imm.h
+FILE 4337 f:\sp\public\sdk\inc\winbase.h
+FILE 4338 f:\sp\public\sdk\inc\wingdi.h
+FILE 4339 f:\sp\public\sdk\inc\winver.h
+FILE 4340 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 4341 f:\sp\public\sdk\inc\windows.h
+FILE 4342 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 4343 f:\sp\public\sdk\inc\pshpack2.h
+FILE 4344 f:\sp\public\sdk\inc\reason.h
+FILE 4345 f:\sp\vctools\crt_bld\self_x86\crt\src\a_cmp.c
+FILE 4346 f:\sp\public\sdk\inc\specstrings.h
+FILE 4347 f:\sp\public\sdk\inc\basetsd.h
+FILE 4348 f:\sp\public\sdk\inc\pshpack4.h
+FILE 4349 f:\sp\public\sdk\inc\winnetwk.h
+FILE 4350 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 4351 f:\sp\public\sdk\inc\stralign.h
+FILE 4352 f:\sp\public\sdk\inc\poppack.h
+FILE 4353 f:\sp\public\sdk\inc\winsvc.h
+FILE 4354 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 4355 f:\sp\vctools\crt_bld\self_x86\crt\src\locale.h
+FILE 4356 f:\sp\public\sdk\inc\windef.h
+FILE 4357 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 4358 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 4359 f:\sp\public\sdk\inc\winuser.h
+FILE 4360 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 4361 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 4362 f:\sp\public\sdk\inc\mcx.h
+FILE 4363 f:\sp\public\sdk\inc\pshpack8.h
+FILE 4364 f:\sp\public\sdk\inc\guiddef.h
+FILE 4365 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 4366 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 4367 f:\sp\public\sdk\inc\winnt.h
+FILE 4368 f:\sp\public\sdk\inc\winnls.h
+FILE 4369 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 4370 f:\sp\public\sdk\inc\pshpack1.h
+FILE 4371 f:\sp\public\sdk\inc\winerror.h
+FILE 4372 f:\sp\public\sdk\inc\winreg.h
+FILE 4373 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 4374 f:\sp\vctools\crt_bld\self_x86\crt\src\awint.h
+FILE 4375 f:\sp\public\sdk\inc\ddbanned.h
+FILE 4376 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 4377 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 4378 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 4379 f:\sp\public\sdk\inc\tvout.h
+FILE 4380 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 4381 F:\SP\vctools\crt_bld\SELF_X86\crt\prebuild\misc\i386\sehprolg4.asm
+FILE 4382 f:\sp\public\sdk\inc\poppack.h
+FILE 4383 f:\sp\public\sdk\inc\winnetwk.h
+FILE 4384 f:\sp\public\sdk\inc\imm.h
+FILE 4385 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 4386 f:\sp\public\sdk\inc\windef.h
+FILE 4387 f:\sp\public\sdk\inc\pshpack1.h
+FILE 4388 f:\sp\public\sdk\inc\winver.h
+FILE 4389 f:\sp\public\sdk\inc\windows.h
+FILE 4390 f:\sp\public\sdk\inc\winnt.h
+FILE 4391 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 4392 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 4393 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 4394 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 4395 f:\sp\public\sdk\inc\winreg.h
+FILE 4396 f:\sp\public\sdk\inc\winbase.h
+FILE 4397 f:\sp\vctools\crt_bld\self_x86\crt\src\intel\secchk.c
+FILE 4398 f:\sp\public\sdk\inc\winerror.h
+FILE 4399 f:\sp\public\sdk\inc\pshpack8.h
+FILE 4400 f:\sp\vctools\crt_bld\self_x86\crt\src\process.h
+FILE 4401 f:\sp\public\sdk\inc\reason.h
+FILE 4402 f:\sp\public\sdk\inc\wincon.h
+FILE 4403 f:\sp\public\sdk\inc\ddbanned.h
+FILE 4404 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 4405 f:\sp\public\sdk\inc\pshpack2.h
+FILE 4406 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 4407 f:\sp\public\sdk\inc\mcx.h
+FILE 4408 f:\sp\public\sdk\inc\winuser.h
+FILE 4409 f:\sp\public\sdk\inc\winnls.h
+FILE 4410 f:\sp\public\sdk\inc\guiddef.h
+FILE 4411 f:\sp\public\sdk\inc\specstrings.h
+FILE 4412 f:\sp\public\sdk\inc\basetsd.h
+FILE 4413 f:\sp\public\sdk\inc\stralign.h
+FILE 4414 f:\sp\public\sdk\inc\tvout.h
+FILE 4415 f:\sp\public\sdk\inc\winsvc.h
+FILE 4416 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 4417 f:\sp\public\sdk\inc\wingdi.h
+FILE 4418 f:\sp\public\sdk\inc\pshpack4.h
+FILE 4419 f:\sp\public\sdk\inc\poppack.h
+FILE 4420 f:\sp\public\sdk\inc\winnetwk.h
+FILE 4421 f:\sp\public\sdk\inc\imm.h
+FILE 4422 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 4423 f:\sp\public\sdk\inc\windef.h
+FILE 4424 f:\sp\public\sdk\inc\pshpack1.h
+FILE 4425 f:\sp\public\sdk\inc\winver.h
+FILE 4426 f:\sp\public\sdk\inc\windows.h
+FILE 4427 f:\sp\public\sdk\inc\winnt.h
+FILE 4428 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 4429 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 4430 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 4431 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 4432 f:\sp\public\sdk\inc\winreg.h
+FILE 4433 f:\sp\public\sdk\inc\winbase.h
+FILE 4434 f:\sp\vctools\crt_bld\self_x86\crt\src\intel\loadcfg.c
+FILE 4435 f:\sp\public\sdk\inc\winerror.h
+FILE 4436 f:\sp\public\sdk\inc\pshpack8.h
+FILE 4437 f:\sp\public\sdk\inc\reason.h
+FILE 4438 f:\sp\public\sdk\inc\wincon.h
+FILE 4439 f:\sp\public\sdk\inc\ddbanned.h
+FILE 4440 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 4441 f:\sp\public\sdk\inc\pshpack2.h
+FILE 4442 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 4443 f:\sp\public\sdk\inc\mcx.h
+FILE 4444 f:\sp\public\sdk\inc\winuser.h
+FILE 4445 f:\sp\public\sdk\inc\winnls.h
+FILE 4446 f:\sp\public\sdk\inc\guiddef.h
+FILE 4447 f:\sp\public\sdk\inc\specstrings.h
+FILE 4448 f:\sp\public\sdk\inc\basetsd.h
+FILE 4449 f:\sp\public\sdk\inc\stralign.h
+FILE 4450 f:\sp\public\sdk\inc\tvout.h
+FILE 4451 f:\sp\public\sdk\inc\winsvc.h
+FILE 4452 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 4453 f:\sp\public\sdk\inc\wingdi.h
+FILE 4454 f:\sp\public\sdk\inc\pshpack4.h
+FILE 4455 F:\SP\vctools\crt_bld\SELF_X86\crt\prebuild\misc\i386\exsup4.asm
+FILE 4456 F:\SP\vctools\crt_bld\SELF_X86\crt\prebuild\h\exsup.inc
+FILE 4457 F:\SP\vctools\crt_bld\SELF_X86\crt\prebuild\misc\i386\exsup.asm
+FILE 4458 F:\SP\vctools\crt_bld\SELF_X86\crt\prebuild\h\pversion.inc
+FILE 4459 F:\SP\vctools\crt_bld\SELF_X86\crt\prebuild\h\cmacros.inc
+FILE 4460 F:\SP\vctools\crt_bld\SELF_X86\crt\prebuild\h\exsup.inc
+FILE 4461 F:\SP\vctools\crt_bld\SELF_X86\crt\prebuild\misc\i386\nlgsupp.asm
+FILE 4462 f:\sp\public\sdk\inc\ntldr.h
+FILE 4463 f:\sp\public\sdk\inc\ntpoapi.h
+FILE 4464 f:\sp\public\sdk\inc\ntexapi.h
+FILE 4465 f:\sp\public\sdk\inc\pshpack1.h
+FILE 4466 f:\sp\public\sdk\inc\pshpack8.h
+FILE 4467 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\stdarg.h
+FILE 4468 f:\sp\public\sdk\inc\ntdef.h
+FILE 4469 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\ctype.h
+FILE 4470 f:\sp\public\sdk\inc\mce.h
+FILE 4471 f:\sp\public\sdk\inc\poppack.h
+FILE 4472 f:\sp\public\sdk\inc\ntimage.h
+FILE 4473 f:\sp\public\sdk\inc\pshpack2.h
+FILE 4474 f:\sp\public\sdk\inc\ntpsapi.h
+FILE 4475 f:\sp\public\sdk\inc\nti386.h
+FILE 4476 f:\sp\public\sdk\inc\nt.h
+FILE 4477 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\excpt.h
+FILE 4478 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\crtdefs.h
+FILE 4479 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\sal.h
+FILE 4480 f:\sp\public\sdk\inc\specstrings.h
+FILE 4481 f:\sp\public\sdk\inc\basetsd.h
+FILE 4482 f:\sp\public\sdk\inc\ntxcapi.h
+FILE 4483 f:\sp\public\sdk\inc\guiddef.h
+FILE 4484 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\misc\i386\chandler4.c
+FILE 4485 f:\sp\public\sdk\inc\ntstatus.h
+FILE 4486 f:\sp\public\sdk\inc\ntkeapi.h
+FILE 4487 f:\sp\public\sdk\inc\ntconfig.h
+FILE 4488 f:\sp\public\sdk\inc\ntregapi.h
+FILE 4489 f:\sp\public\sdk\inc\ntmmapi.h
+FILE 4490 f:\sp\public\sdk\inc\ntobapi.h
+FILE 4491 f:\sp\public\sdk\inc\nxi386.h
+FILE 4492 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\process.h
+FILE 4493 f:\sp\public\sdk\inc\ntioapi.h
+FILE 4494 f:\sp\public\sdk\inc\devioctl.h
+FILE 4495 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\string.h
+FILE 4496 f:\sp\public\sdk\inc\ntseapi.h
+FILE 4497 f:\sp\public\sdk\inc\ddbanned.h
+FILE 4498 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\vadefs.h
+FILE 4499 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\cruntime.h
+FILE 4500 f:\sp\public\sdk\inc\ntnls.h
+FILE 4501 f:\sp\public\sdk\inc\ntelfapi.h
+FILE 4502 f:\sp\public\sdk\inc\pshpack4.h
+FILE 4503 f:\sp\public\sdk\inc\ntiolog.h
+FILE 4504 f:\sp\public\sdk\inc\ntlpcapi.h
+FILE 4505 f:\sp\public\sdk\inc\ntpnpapi.h
+FILE 4506 f:\sp\public\sdk\inc\cfg.h
+FILE 4507 f:\sp\public\sdk\inc\pebteb.h
+FILE 4508 f:\sp\public\sdk\inc\wincon.h
+FILE 4509 f:\sp\public\sdk\inc\imm.h
+FILE 4510 f:\sp\public\sdk\inc\winbase.h
+FILE 4511 f:\sp\public\sdk\inc\wingdi.h
+FILE 4512 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 4513 f:\sp\public\sdk\inc\winver.h
+FILE 4514 f:\sp\public\sdk\inc\pshpack2.h
+FILE 4515 f:\sp\public\sdk\inc\reason.h
+FILE 4516 f:\sp\vctools\crt_bld\self_x86\crt\src\mbdata.h
+FILE 4517 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 4518 f:\sp\vctools\crt_bld\self_x86\crt\src\mbsnbico.c
+FILE 4519 f:\sp\public\sdk\inc\specstrings.h
+FILE 4520 f:\sp\public\sdk\inc\basetsd.h
+FILE 4521 f:\sp\public\sdk\inc\pshpack4.h
+FILE 4522 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 4523 f:\sp\vctools\crt_bld\self_x86\crt\src\mbctype.h
+FILE 4524 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 4525 f:\sp\public\sdk\inc\winnetwk.h
+FILE 4526 f:\sp\public\sdk\inc\stralign.h
+FILE 4527 f:\sp\public\sdk\inc\poppack.h
+FILE 4528 f:\sp\public\sdk\inc\winsvc.h
+FILE 4529 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 4530 f:\sp\public\sdk\inc\windef.h
+FILE 4531 f:\sp\vctools\crt_bld\self_x86\crt\src\awint.h
+FILE 4532 f:\sp\public\sdk\inc\winuser.h
+FILE 4533 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 4534 f:\sp\public\sdk\inc\windows.h
+FILE 4535 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 4536 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 4537 f:\sp\public\sdk\inc\mcx.h
+FILE 4538 f:\sp\public\sdk\inc\pshpack8.h
+FILE 4539 f:\sp\public\sdk\inc\guiddef.h
+FILE 4540 f:\sp\public\sdk\inc\winnt.h
+FILE 4541 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 4542 f:\sp\public\sdk\inc\winnls.h
+FILE 4543 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 4544 f:\sp\public\sdk\inc\pshpack1.h
+FILE 4545 f:\sp\public\sdk\inc\winerror.h
+FILE 4546 f:\sp\public\sdk\inc\winreg.h
+FILE 4547 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 4548 f:\sp\public\sdk\inc\ddbanned.h
+FILE 4549 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 4550 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 4551 f:\sp\public\sdk\inc\tvout.h
+FILE 4552 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 4553 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 4554 f:\sp\vctools\crt_bld\self_x86\crt\src\locale.h
+FILE 4555 f:\sp\vctools\crt_bld\self_x86\crt\src\mbstring.h
+FILE 4556 f:\sp\public\sdk\inc\wincon.h
+FILE 4557 f:\sp\public\sdk\inc\imm.h
+FILE 4558 f:\sp\public\sdk\inc\winbase.h
+FILE 4559 f:\sp\public\sdk\inc\wingdi.h
+FILE 4560 f:\sp\vctools\crt_bld\self_x86\crt\src\mbctype.h
+FILE 4561 f:\sp\public\sdk\inc\winver.h
+FILE 4562 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 4563 f:\sp\public\sdk\inc\windows.h
+FILE 4564 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 4565 f:\sp\public\sdk\inc\pshpack2.h
+FILE 4566 f:\sp\public\sdk\inc\reason.h
+FILE 4567 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 4568 f:\sp\vctools\crt_bld\self_x86\crt\src\mbschr.c
+FILE 4569 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 4570 f:\sp\public\sdk\inc\specstrings.h
+FILE 4571 f:\sp\public\sdk\inc\basetsd.h
+FILE 4572 f:\sp\public\sdk\inc\pshpack4.h
+FILE 4573 f:\sp\public\sdk\inc\winnetwk.h
+FILE 4574 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 4575 f:\sp\public\sdk\inc\stralign.h
+FILE 4576 f:\sp\public\sdk\inc\poppack.h
+FILE 4577 f:\sp\public\sdk\inc\winsvc.h
+FILE 4578 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 4579 f:\sp\public\sdk\inc\windef.h
+FILE 4580 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 4581 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 4582 f:\sp\public\sdk\inc\winuser.h
+FILE 4583 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 4584 f:\sp\public\sdk\inc\mcx.h
+FILE 4585 f:\sp\public\sdk\inc\pshpack8.h
+FILE 4586 f:\sp\public\sdk\inc\guiddef.h
+FILE 4587 f:\sp\vctools\crt_bld\self_x86\crt\src\mbstring.h
+FILE 4588 f:\sp\public\sdk\inc\winnt.h
+FILE 4589 f:\sp\public\sdk\inc\winnls.h
+FILE 4590 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 4591 f:\sp\public\sdk\inc\pshpack1.h
+FILE 4592 f:\sp\public\sdk\inc\winerror.h
+FILE 4593 f:\sp\vctools\crt_bld\self_x86\crt\src\stddef.h
+FILE 4594 f:\sp\public\sdk\inc\winreg.h
+FILE 4595 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 4596 f:\sp\vctools\crt_bld\self_x86\crt\src\locale.h
+FILE 4597 f:\sp\public\sdk\inc\ddbanned.h
+FILE 4598 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 4599 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 4600 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 4601 f:\sp\public\sdk\inc\tvout.h
+FILE 4602 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 4603 f:\sp\vctools\crt_bld\self_x86\crt\src\mbdata.h
+FILE 4604 f:\sp\vctools\crt_bld\self_x86\crt\src\swprintf.inl
+FILE 4605 f:\sp\public\sdk\inc\wincon.h
+FILE 4606 f:\sp\public\sdk\inc\imm.h
+FILE 4607 f:\sp\public\sdk\inc\winbase.h
+FILE 4608 f:\sp\public\sdk\inc\wingdi.h
+FILE 4609 f:\sp\public\sdk\inc\winver.h
+FILE 4610 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 4611 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 4612 f:\sp\public\sdk\inc\pshpack2.h
+FILE 4613 f:\sp\vctools\crt_bld\self_x86\crt\src\stdio.h
+FILE 4614 f:\sp\public\sdk\inc\reason.h
+FILE 4615 f:\sp\vctools\crt_bld\self_x86\crt\src\mbctype.c
+FILE 4616 f:\sp\public\sdk\inc\specstrings.h
+FILE 4617 f:\sp\public\sdk\inc\basetsd.h
+FILE 4618 f:\sp\public\sdk\inc\pshpack4.h
+FILE 4619 f:\sp\vctools\crt_bld\self_x86\crt\src\locale.h
+FILE 4620 f:\sp\public\sdk\inc\winnetwk.h
+FILE 4621 f:\sp\public\sdk\inc\stralign.h
+FILE 4622 f:\sp\public\sdk\inc\poppack.h
+FILE 4623 f:\sp\public\sdk\inc\winsvc.h
+FILE 4624 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 4625 f:\sp\public\sdk\inc\windef.h
+FILE 4626 f:\sp\public\sdk\inc\winuser.h
+FILE 4627 f:\sp\public\sdk\inc\windows.h
+FILE 4628 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 4629 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 4630 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 4631 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 4632 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 4633 f:\sp\public\sdk\inc\mcx.h
+FILE 4634 f:\sp\public\sdk\inc\pshpack8.h
+FILE 4635 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 4636 f:\sp\public\sdk\inc\guiddef.h
+FILE 4637 f:\sp\public\sdk\inc\winnt.h
+FILE 4638 f:\sp\public\sdk\inc\winnls.h
+FILE 4639 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 4640 f:\sp\vctools\crt_bld\self_x86\crt\src\mbdata.h
+FILE 4641 f:\sp\public\sdk\inc\pshpack1.h
+FILE 4642 f:\sp\vctools\crt_bld\self_x86\crt\src\awint.h
+FILE 4643 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 4644 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 4645 f:\sp\public\sdk\inc\winerror.h
+FILE 4646 f:\sp\vctools\crt_bld\self_x86\crt\src\sect_attribs.h
+FILE 4647 f:\sp\public\sdk\inc\winreg.h
+FILE 4648 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 4649 f:\sp\public\sdk\inc\ddbanned.h
+FILE 4650 f:\sp\vctools\crt_bld\self_x86\crt\src\rterr.h
+FILE 4651 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 4652 f:\sp\vctools\crt_bld\self_x86\crt\src\mbctype.h
+FILE 4653 f:\sp\public\sdk\inc\tvout.h
+FILE 4654 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 4655 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 4656 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 4657 f:\sp\public\sdk\inc\wincon.h
+FILE 4658 f:\sp\public\sdk\inc\imm.h
+FILE 4659 f:\sp\public\sdk\inc\winbase.h
+FILE 4660 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 4661 f:\sp\public\sdk\inc\wingdi.h
+FILE 4662 f:\sp\public\sdk\inc\windef.h
+FILE 4663 f:\sp\vctools\crt_bld\self_x86\crt\src\mbctype.h
+FILE 4664 f:\sp\public\sdk\inc\winver.h
+FILE 4665 f:\sp\public\sdk\inc\pshpack2.h
+FILE 4666 f:\sp\public\sdk\inc\reason.h
+FILE 4667 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 4668 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 4669 f:\sp\vctools\crt_bld\self_x86\crt\src\ismbbyte.c
+FILE 4670 f:\sp\public\sdk\inc\winnt.h
+FILE 4671 f:\sp\public\sdk\inc\specstrings.h
+FILE 4672 f:\sp\public\sdk\inc\basetsd.h
+FILE 4673 f:\sp\public\sdk\inc\pshpack4.h
+FILE 4674 f:\sp\public\sdk\inc\winnetwk.h
+FILE 4675 f:\sp\public\sdk\inc\stralign.h
+FILE 4676 f:\sp\public\sdk\inc\poppack.h
+FILE 4677 f:\sp\public\sdk\inc\winsvc.h
+FILE 4678 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 4679 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 4680 f:\sp\public\sdk\inc\winuser.h
+FILE 4681 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 4682 f:\sp\public\sdk\inc\mcx.h
+FILE 4683 f:\sp\public\sdk\inc\pshpack8.h
+FILE 4684 f:\sp\public\sdk\inc\guiddef.h
+FILE 4685 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 4686 f:\sp\vctools\crt_bld\self_x86\crt\src\mbstring.h
+FILE 4687 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 4688 f:\sp\public\sdk\inc\windows.h
+FILE 4689 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 4690 f:\sp\public\sdk\inc\winnls.h
+FILE 4691 f:\sp\public\sdk\inc\pshpack1.h
+FILE 4692 f:\sp\public\sdk\inc\winerror.h
+FILE 4693 f:\sp\vctools\crt_bld\self_x86\crt\src\locale.h
+FILE 4694 f:\sp\public\sdk\inc\winreg.h
+FILE 4695 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 4696 f:\sp\public\sdk\inc\ddbanned.h
+FILE 4697 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 4698 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 4699 f:\sp\public\sdk\inc\tvout.h
+FILE 4700 f:\sp\vctools\crt_bld\self_x86\crt\src\mbdata.h
+FILE 4701 f:\sp\public\sdk\inc\winnetwk.h
+FILE 4702 f:\sp\public\sdk\inc\imm.h
+FILE 4703 f:\sp\vctools\crt_bld\self_x86\crt\src\io.h
+FILE 4704 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 4705 f:\sp\vctools\crt_bld\self_x86\crt\src\stdio.h
+FILE 4706 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 4707 f:\sp\public\sdk\inc\windef.h
+FILE 4708 f:\sp\public\sdk\inc\pshpack1.h
+FILE 4709 f:\sp\public\sdk\inc\winver.h
+FILE 4710 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 4711 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 4712 f:\sp\public\sdk\inc\winnt.h
+FILE 4713 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 4714 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 4715 f:\sp\public\sdk\inc\winreg.h
+FILE 4716 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 4717 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 4718 f:\sp\public\sdk\inc\winbase.h
+FILE 4719 f:\sp\public\sdk\inc\winerror.h
+FILE 4720 f:\sp\public\sdk\inc\pshpack8.h
+FILE 4721 f:\sp\vctools\crt_bld\self_x86\crt\src\putwch.c
+FILE 4722 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 4723 f:\sp\public\sdk\inc\reason.h
+FILE 4724 f:\sp\public\sdk\inc\wincon.h
+FILE 4725 f:\sp\public\sdk\inc\pshpack2.h
+FILE 4726 f:\sp\public\sdk\inc\mcx.h
+FILE 4727 f:\sp\public\sdk\inc\winuser.h
+FILE 4728 f:\sp\public\sdk\inc\winnls.h
+FILE 4729 f:\sp\public\sdk\inc\guiddef.h
+FILE 4730 f:\sp\public\sdk\inc\stralign.h
+FILE 4731 f:\sp\public\sdk\inc\ddbanned.h
+FILE 4732 f:\sp\public\sdk\inc\specstrings.h
+FILE 4733 f:\sp\vctools\crt_bld\self_x86\crt\src\file2.h
+FILE 4734 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 4735 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 4736 f:\sp\public\sdk\inc\basetsd.h
+FILE 4737 f:\sp\vctools\crt_bld\self_x86\crt\src\swprintf.inl
+FILE 4738 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 4739 f:\sp\public\sdk\inc\windows.h
+FILE 4740 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 4741 f:\sp\public\sdk\inc\tvout.h
+FILE 4742 f:\sp\public\sdk\inc\winsvc.h
+FILE 4743 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 4744 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 4745 f:\sp\public\sdk\inc\wingdi.h
+FILE 4746 f:\sp\public\sdk\inc\pshpack4.h
+FILE 4747 f:\sp\vctools\crt_bld\self_x86\crt\src\conio.h
+FILE 4748 f:\sp\public\sdk\inc\poppack.h
+FILE 4749 f:\sp\public\sdk\inc\reason.h
+FILE 4750 f:\sp\public\sdk\inc\wincon.h
+FILE 4751 f:\sp\vctools\crt_bld\self_x86\crt\src\io.h
+FILE 4752 f:\sp\public\sdk\inc\poppack.h
+FILE 4753 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 4754 f:\sp\public\sdk\inc\mcx.h
+FILE 4755 f:\sp\public\sdk\inc\winuser.h
+FILE 4756 f:\sp\public\sdk\inc\winnls.h
+FILE 4757 f:\sp\vctools\crt_bld\self_x86\crt\src\msdos.h
+FILE 4758 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 4759 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 4760 f:\sp\public\sdk\inc\stralign.h
+FILE 4761 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 4762 f:\sp\public\sdk\inc\windef.h
+FILE 4763 f:\sp\public\sdk\inc\tvout.h
+FILE 4764 f:\sp\public\sdk\inc\winsvc.h
+FILE 4765 f:\sp\vctools\crt_bld\self_x86\crt\src\wtime.inl
+FILE 4766 f:\sp\public\sdk\inc\wingdi.h
+FILE 4767 f:\sp\vctools\crt_bld\self_x86\crt\src\locale.h
+FILE 4768 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 4769 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 4770 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 4771 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 4772 f:\sp\public\sdk\inc\winnt.h
+FILE 4773 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 4774 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 4775 f:\sp\public\sdk\inc\winnetwk.h
+FILE 4776 f:\sp\public\sdk\inc\imm.h
+FILE 4777 f:\sp\vctools\crt_bld\self_x86\crt\src\write.c
+FILE 4778 f:\sp\public\sdk\inc\winbase.h
+FILE 4779 f:\sp\public\sdk\inc\winerror.h
+FILE 4780 f:\sp\public\sdk\inc\pshpack1.h
+FILE 4781 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 4782 f:\sp\public\sdk\inc\pshpack8.h
+FILE 4783 f:\sp\public\sdk\inc\winver.h
+FILE 4784 f:\sp\vctools\crt_bld\self_x86\crt\src\wchar.h
+FILE 4785 f:\sp\public\sdk\inc\ddbanned.h
+FILE 4786 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 4787 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 4788 f:\sp\public\sdk\inc\pshpack2.h
+FILE 4789 f:\sp\public\sdk\inc\winreg.h
+FILE 4790 f:\sp\public\sdk\inc\guiddef.h
+FILE 4791 f:\sp\public\sdk\inc\windows.h
+FILE 4792 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 4793 f:\sp\vctools\crt_bld\self_x86\crt\src\swprintf.inl
+FILE 4794 f:\sp\public\sdk\inc\specstrings.h
+FILE 4795 f:\sp\public\sdk\inc\basetsd.h
+FILE 4796 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 4797 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 4798 f:\sp\public\sdk\inc\pshpack4.h
+FILE 4799 f:\sp\public\sdk\inc\reason.h
+FILE 4800 f:\sp\public\sdk\inc\wincon.h
+FILE 4801 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 4802 f:\sp\public\sdk\inc\poppack.h
+FILE 4803 f:\sp\public\sdk\inc\mcx.h
+FILE 4804 f:\sp\public\sdk\inc\winuser.h
+FILE 4805 f:\sp\public\sdk\inc\winnls.h
+FILE 4806 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 4807 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 4808 f:\sp\public\sdk\inc\stralign.h
+FILE 4809 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 4810 f:\sp\public\sdk\inc\windef.h
+FILE 4811 f:\sp\public\sdk\inc\tvout.h
+FILE 4812 f:\sp\public\sdk\inc\winsvc.h
+FILE 4813 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 4814 f:\sp\public\sdk\inc\wingdi.h
+FILE 4815 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 4816 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 4817 f:\sp\public\sdk\inc\winnt.h
+FILE 4818 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 4819 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 4820 f:\sp\vctools\crt_bld\self_x86\crt\src\io.h
+FILE 4821 f:\sp\public\sdk\inc\winnetwk.h
+FILE 4822 f:\sp\public\sdk\inc\imm.h
+FILE 4823 f:\sp\vctools\crt_bld\self_x86\crt\src\fcntl.h
+FILE 4824 f:\sp\vctools\crt_bld\self_x86\crt\src\malloc.h
+FILE 4825 f:\sp\vctools\crt_bld\self_x86\crt\src\osfinfo.c
+FILE 4826 f:\sp\public\sdk\inc\winbase.h
+FILE 4827 f:\sp\public\sdk\inc\winerror.h
+FILE 4828 f:\sp\public\sdk\inc\pshpack1.h
+FILE 4829 f:\sp\public\sdk\inc\pshpack8.h
+FILE 4830 f:\sp\public\sdk\inc\winver.h
+FILE 4831 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 4832 f:\sp\vctools\crt_bld\self_x86\crt\src\msdos.h
+FILE 4833 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 4834 f:\sp\public\sdk\inc\ddbanned.h
+FILE 4835 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 4836 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 4837 f:\sp\public\sdk\inc\pshpack2.h
+FILE 4838 f:\sp\public\sdk\inc\winreg.h
+FILE 4839 f:\sp\public\sdk\inc\guiddef.h
+FILE 4840 f:\sp\public\sdk\inc\windows.h
+FILE 4841 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 4842 f:\sp\public\sdk\inc\specstrings.h
+FILE 4843 f:\sp\public\sdk\inc\basetsd.h
+FILE 4844 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 4845 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 4846 f:\sp\public\sdk\inc\pshpack4.h
+FILE 4847 f:\sp\public\sdk\inc\reason.h
+FILE 4848 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 4849 f:\sp\public\sdk\inc\wincon.h
+FILE 4850 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 4851 f:\sp\public\sdk\inc\poppack.h
+FILE 4852 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 4853 f:\sp\public\sdk\inc\mcx.h
+FILE 4854 f:\sp\public\sdk\inc\winuser.h
+FILE 4855 f:\sp\public\sdk\inc\winnls.h
+FILE 4856 f:\sp\public\sdk\inc\stralign.h
+FILE 4857 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 4858 f:\sp\public\sdk\inc\windef.h
+FILE 4859 f:\sp\public\sdk\inc\tvout.h
+FILE 4860 f:\sp\vctools\crt_bld\self_x86\crt\src\io.h
+FILE 4861 f:\sp\public\sdk\inc\winsvc.h
+FILE 4862 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 4863 f:\sp\public\sdk\inc\wingdi.h
+FILE 4864 f:\sp\vctools\crt_bld\self_x86\crt\src\swprintf.inl
+FILE 4865 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 4866 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 4867 f:\sp\public\sdk\inc\winnt.h
+FILE 4868 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 4869 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 4870 f:\sp\public\sdk\inc\winnetwk.h
+FILE 4871 f:\sp\public\sdk\inc\imm.h
+FILE 4872 f:\sp\vctools\crt_bld\self_x86\crt\src\lseeki64.c
+FILE 4873 f:\sp\public\sdk\inc\winbase.h
+FILE 4874 f:\sp\public\sdk\inc\winerror.h
+FILE 4875 f:\sp\public\sdk\inc\pshpack1.h
+FILE 4876 f:\sp\vctools\crt_bld\self_x86\crt\src\msdos.h
+FILE 4877 f:\sp\vctools\crt_bld\self_x86\crt\src\stdio.h
+FILE 4878 f:\sp\public\sdk\inc\pshpack8.h
+FILE 4879 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 4880 f:\sp\public\sdk\inc\winver.h
+FILE 4881 f:\sp\public\sdk\inc\ddbanned.h
+FILE 4882 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 4883 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 4884 f:\sp\public\sdk\inc\pshpack2.h
+FILE 4885 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 4886 f:\sp\public\sdk\inc\winreg.h
+FILE 4887 f:\sp\public\sdk\inc\guiddef.h
+FILE 4888 f:\sp\public\sdk\inc\windows.h
+FILE 4889 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 4890 f:\sp\public\sdk\inc\specstrings.h
+FILE 4891 f:\sp\public\sdk\inc\basetsd.h
+FILE 4892 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 4893 f:\sp\public\sdk\inc\pshpack4.h
+FILE 4894 f:\sp\public\sdk\inc\pshpack4.h
+FILE 4895 f:\sp\public\sdk\inc\poppack.h
+FILE 4896 f:\sp\vctools\crt_bld\self_x86\crt\src\io.h
+FILE 4897 f:\sp\public\sdk\inc\winnetwk.h
+FILE 4898 f:\sp\public\sdk\inc\imm.h
+FILE 4899 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 4900 f:\sp\public\sdk\inc\windef.h
+FILE 4901 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 4902 f:\sp\public\sdk\inc\pshpack1.h
+FILE 4903 f:\sp\public\sdk\inc\winver.h
+FILE 4904 f:\sp\vctools\crt_bld\self_x86\crt\src\msdos.h
+FILE 4905 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 4906 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 4907 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 4908 f:\sp\public\sdk\inc\winnt.h
+FILE 4909 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 4910 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 4911 f:\sp\public\sdk\inc\winreg.h
+FILE 4912 f:\sp\vctools\crt_bld\self_x86\crt\src\isatty.c
+FILE 4913 f:\sp\public\sdk\inc\winbase.h
+FILE 4914 f:\sp\public\sdk\inc\winerror.h
+FILE 4915 f:\sp\public\sdk\inc\pshpack8.h
+FILE 4916 f:\sp\public\sdk\inc\reason.h
+FILE 4917 f:\sp\public\sdk\inc\wincon.h
+FILE 4918 f:\sp\public\sdk\inc\ddbanned.h
+FILE 4919 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 4920 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 4921 f:\sp\public\sdk\inc\pshpack2.h
+FILE 4922 f:\sp\public\sdk\inc\mcx.h
+FILE 4923 f:\sp\public\sdk\inc\winuser.h
+FILE 4924 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 4925 f:\sp\public\sdk\inc\winnls.h
+FILE 4926 f:\sp\public\sdk\inc\guiddef.h
+FILE 4927 f:\sp\public\sdk\inc\windows.h
+FILE 4928 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 4929 f:\sp\public\sdk\inc\specstrings.h
+FILE 4930 f:\sp\public\sdk\inc\basetsd.h
+FILE 4931 f:\sp\public\sdk\inc\stralign.h
+FILE 4932 f:\sp\public\sdk\inc\tvout.h
+FILE 4933 f:\sp\public\sdk\inc\winsvc.h
+FILE 4934 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 4935 f:\sp\public\sdk\inc\wingdi.h
+FILE 4936 f:\sp\public\sdk\inc\poppack.h
+FILE 4937 f:\sp\vctools\crt_bld\self_x86\crt\src\malloc.h
+FILE 4938 f:\sp\public\sdk\inc\winnetwk.h
+FILE 4939 f:\sp\public\sdk\inc\imm.h
+FILE 4940 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 4941 f:\sp\public\sdk\inc\windef.h
+FILE 4942 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 4943 f:\sp\public\sdk\inc\pshpack1.h
+FILE 4944 f:\sp\vctools\crt_bld\self_x86\crt\src\msdos.h
+FILE 4945 f:\sp\vctools\crt_bld\self_x86\crt\src\rterr.h
+FILE 4946 f:\sp\vctools\crt_bld\self_x86\crt\src\stddef.h
+FILE 4947 f:\sp\public\sdk\inc\winver.h
+FILE 4948 f:\sp\public\sdk\inc\windows.h
+FILE 4949 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 4950 f:\sp\public\sdk\inc\winnt.h
+FILE 4951 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 4952 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 4953 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 4954 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 4955 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 4956 f:\sp\public\sdk\inc\winreg.h
+FILE 4957 f:\sp\public\sdk\inc\winbase.h
+FILE 4958 f:\sp\vctools\crt_bld\self_x86\crt\src\ioinit.c
+FILE 4959 f:\sp\public\sdk\inc\winerror.h
+FILE 4960 f:\sp\public\sdk\inc\pshpack8.h
+FILE 4961 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 4962 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 4963 f:\sp\public\sdk\inc\reason.h
+FILE 4964 f:\sp\public\sdk\inc\wincon.h
+FILE 4965 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 4966 f:\sp\public\sdk\inc\ddbanned.h
+FILE 4967 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 4968 f:\sp\public\sdk\inc\pshpack2.h
+FILE 4969 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 4970 f:\sp\public\sdk\inc\mcx.h
+FILE 4971 f:\sp\public\sdk\inc\winuser.h
+FILE 4972 f:\sp\public\sdk\inc\winnls.h
+FILE 4973 f:\sp\public\sdk\inc\guiddef.h
+FILE 4974 f:\sp\public\sdk\inc\specstrings.h
+FILE 4975 f:\sp\public\sdk\inc\basetsd.h
+FILE 4976 f:\sp\public\sdk\inc\stralign.h
+FILE 4977 f:\sp\public\sdk\inc\tvout.h
+FILE 4978 f:\sp\public\sdk\inc\winsvc.h
+FILE 4979 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 4980 f:\sp\public\sdk\inc\wingdi.h
+FILE 4981 f:\sp\public\sdk\inc\pshpack4.h
+FILE 4982 f:\sp\public\sdk\inc\reason.h
+FILE 4983 f:\sp\public\sdk\inc\wincon.h
+FILE 4984 f:\sp\public\sdk\inc\pshpack2.h
+FILE 4985 f:\sp\public\sdk\inc\mcx.h
+FILE 4986 f:\sp\public\sdk\inc\winuser.h
+FILE 4987 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 4988 f:\sp\public\sdk\inc\winnls.h
+FILE 4989 f:\sp\public\sdk\inc\guiddef.h
+FILE 4990 f:\sp\public\sdk\inc\windows.h
+FILE 4991 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 4992 f:\sp\public\sdk\inc\specstrings.h
+FILE 4993 f:\sp\public\sdk\inc\basetsd.h
+FILE 4994 f:\sp\public\sdk\inc\stralign.h
+FILE 4995 f:\sp\public\sdk\inc\tvout.h
+FILE 4996 f:\sp\public\sdk\inc\winsvc.h
+FILE 4997 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 4998 f:\sp\public\sdk\inc\wingdi.h
+FILE 4999 f:\sp\public\sdk\inc\pshpack4.h
+FILE 5000 f:\sp\public\sdk\inc\poppack.h
+FILE 5001 f:\sp\vctools\crt_bld\self_x86\crt\src\sect_attribs.h
+FILE 5002 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 5003 f:\sp\public\sdk\inc\winnetwk.h
+FILE 5004 f:\sp\public\sdk\inc\imm.h
+FILE 5005 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 5006 f:\sp\public\sdk\inc\windef.h
+FILE 5007 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 5008 f:\sp\vctools\crt_bld\self_x86\crt\src\initcon.c
+FILE 5009 f:\sp\public\sdk\inc\pshpack1.h
+FILE 5010 f:\sp\public\sdk\inc\winver.h
+FILE 5011 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 5012 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 5013 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 5014 f:\sp\public\sdk\inc\winnt.h
+FILE 5015 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 5016 f:\sp\public\sdk\inc\ddbanned.h
+FILE 5017 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 5018 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 5019 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 5020 f:\sp\public\sdk\inc\winreg.h
+FILE 5021 f:\sp\public\sdk\inc\winbase.h
+FILE 5022 f:\sp\public\sdk\inc\winerror.h
+FILE 5023 f:\sp\public\sdk\inc\pshpack8.h
+FILE 5024 f:\sp\public\sdk\inc\poppack.h
+FILE 5025 f:\sp\vctools\crt_bld\self_x86\crt\src\msdos.h
+FILE 5026 f:\sp\public\sdk\inc\winnetwk.h
+FILE 5027 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 5028 f:\sp\public\sdk\inc\imm.h
+FILE 5029 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 5030 f:\sp\public\sdk\inc\windef.h
+FILE 5031 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 5032 f:\sp\public\sdk\inc\pshpack1.h
+FILE 5033 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 5034 f:\sp\public\sdk\inc\winver.h
+FILE 5035 f:\sp\public\sdk\inc\windows.h
+FILE 5036 f:\sp\public\sdk\inc\winnt.h
+FILE 5037 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 5038 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 5039 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 5040 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 5041 f:\sp\public\sdk\inc\winreg.h
+FILE 5042 f:\sp\public\sdk\inc\winbase.h
+FILE 5043 f:\sp\vctools\crt_bld\self_x86\crt\src\commit.c
+FILE 5044 f:\sp\public\sdk\inc\winerror.h
+FILE 5045 f:\sp\public\sdk\inc\pshpack8.h
+FILE 5046 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 5047 f:\sp\public\sdk\inc\reason.h
+FILE 5048 f:\sp\vctools\crt_bld\self_x86\crt\src\io.h
+FILE 5049 f:\sp\public\sdk\inc\wincon.h
+FILE 5050 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 5051 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 5052 f:\sp\public\sdk\inc\ddbanned.h
+FILE 5053 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 5054 f:\sp\public\sdk\inc\pshpack2.h
+FILE 5055 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 5056 f:\sp\public\sdk\inc\mcx.h
+FILE 5057 f:\sp\public\sdk\inc\winuser.h
+FILE 5058 f:\sp\public\sdk\inc\winnls.h
+FILE 5059 f:\sp\public\sdk\inc\guiddef.h
+FILE 5060 f:\sp\public\sdk\inc\specstrings.h
+FILE 5061 f:\sp\public\sdk\inc\basetsd.h
+FILE 5062 f:\sp\public\sdk\inc\stralign.h
+FILE 5063 f:\sp\public\sdk\inc\tvout.h
+FILE 5064 f:\sp\public\sdk\inc\winsvc.h
+FILE 5065 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 5066 f:\sp\public\sdk\inc\wingdi.h
+FILE 5067 f:\sp\public\sdk\inc\pshpack4.h
+FILE 5068 f:\sp\public\sdk\inc\reason.h
+FILE 5069 f:\sp\public\sdk\inc\wincon.h
+FILE 5070 f:\sp\vctools\crt_bld\self_x86\crt\src\io.h
+FILE 5071 f:\sp\public\sdk\inc\poppack.h
+FILE 5072 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 5073 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 5074 f:\sp\public\sdk\inc\mcx.h
+FILE 5075 f:\sp\public\sdk\inc\winuser.h
+FILE 5076 f:\sp\public\sdk\inc\winnls.h
+FILE 5077 f:\sp\public\sdk\inc\stralign.h
+FILE 5078 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 5079 f:\sp\public\sdk\inc\windef.h
+FILE 5080 f:\sp\public\sdk\inc\tvout.h
+FILE 5081 f:\sp\public\sdk\inc\winsvc.h
+FILE 5082 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 5083 f:\sp\public\sdk\inc\wingdi.h
+FILE 5084 f:\sp\vctools\crt_bld\self_x86\crt\src\msdos.h
+FILE 5085 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 5086 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 5087 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 5088 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 5089 f:\sp\public\sdk\inc\winnt.h
+FILE 5090 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 5091 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 5092 f:\sp\public\sdk\inc\winnetwk.h
+FILE 5093 f:\sp\public\sdk\inc\imm.h
+FILE 5094 f:\sp\vctools\crt_bld\self_x86\crt\src\close.c
+FILE 5095 f:\sp\public\sdk\inc\winbase.h
+FILE 5096 f:\sp\public\sdk\inc\winerror.h
+FILE 5097 f:\sp\public\sdk\inc\pshpack1.h
+FILE 5098 f:\sp\public\sdk\inc\pshpack8.h
+FILE 5099 f:\sp\public\sdk\inc\winver.h
+FILE 5100 f:\sp\public\sdk\inc\ddbanned.h
+FILE 5101 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 5102 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 5103 f:\sp\public\sdk\inc\pshpack2.h
+FILE 5104 f:\sp\public\sdk\inc\winreg.h
+FILE 5105 f:\sp\public\sdk\inc\guiddef.h
+FILE 5106 f:\sp\public\sdk\inc\windows.h
+FILE 5107 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 5108 f:\sp\public\sdk\inc\specstrings.h
+FILE 5109 f:\sp\public\sdk\inc\basetsd.h
+FILE 5110 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 5111 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 5112 f:\sp\public\sdk\inc\pshpack4.h
+FILE 5113 F:\SP\vctools\crt_bld\SELF_X86\crt\src\intel\ulldvrm.asm
+FILE 5114 F:\SP\vctools\crt_bld\SELF_X86\crt\src\cruntime.inc
+FILE 5115 F:\SP\vctools\crt_bld\SELF_X86\crt\src\mm.inc
+FILE 5116 F:\SP\vctools\crt_bld\SELF_X86\crt\src\intel\llmul.asm
+FILE 5117 F:\SP\vctools\crt_bld\SELF_X86\crt\src\cruntime.inc
+FILE 5118 F:\SP\vctools\crt_bld\SELF_X86\crt\src\mm.inc
+FILE 5119 f:\sp\vctools\crt_bld\self_x86\crt\src\use_ansi.h
+FILE 5120 f:\sp\vctools\crt_bld\self_x86\crt\src\new
+FILE 5121 f:\sp\vctools\crt_bld\self_x86\crt\src\exception
+FILE 5122 f:\sp\vctools\crt_bld\self_x86\crt\src\xstddef
+FILE 5123 f:\sp\vctools\crt_bld\self_x86\crt\src\new.cpp
+FILE 5124 f:\sp\vctools\crt_bld\self_x86\crt\src\cstddef
+FILE 5125 f:\sp\vctools\crt_bld\self_x86\crt\src\stddef.h
+FILE 5126 f:\sp\vctools\crt_bld\self_x86\crt\src\eh.h
+FILE 5127 f:\sp\vctools\crt_bld\self_x86\crt\src\cstdlib
+FILE 5128 f:\sp\vctools\crt_bld\self_x86\crt\src\yvals.h
+FILE 5129 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 5130 f:\sp\vctools\crt_bld\self_x86\crt\src\malloc.h
+FILE 5131 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 5132 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 5133 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 5134 f:\sp\public\sdk\inc\ddbanned.h
+FILE 5135 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 5136 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 5137 f:\sp\public\sdk\inc\poppack.h
+FILE 5138 f:\sp\public\sdk\inc\winnetwk.h
+FILE 5139 f:\sp\public\sdk\inc\imm.h
+FILE 5140 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 5141 f:\sp\public\sdk\inc\windef.h
+FILE 5142 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 5143 f:\sp\public\sdk\inc\pshpack1.h
+FILE 5144 f:\sp\public\sdk\inc\winver.h
+FILE 5145 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 5146 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 5147 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 5148 f:\sp\public\sdk\inc\winnt.h
+FILE 5149 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 5150 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 5151 f:\sp\public\sdk\inc\winreg.h
+FILE 5152 f:\sp\vctools\crt_bld\self_x86\crt\src\_newmode.c
+FILE 5153 f:\sp\public\sdk\inc\winbase.h
+FILE 5154 f:\sp\public\sdk\inc\winerror.h
+FILE 5155 f:\sp\public\sdk\inc\pshpack8.h
+FILE 5156 f:\sp\public\sdk\inc\reason.h
+FILE 5157 f:\sp\public\sdk\inc\wincon.h
+FILE 5158 f:\sp\public\sdk\inc\ddbanned.h
+FILE 5159 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 5160 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 5161 f:\sp\public\sdk\inc\pshpack2.h
+FILE 5162 f:\sp\public\sdk\inc\mcx.h
+FILE 5163 f:\sp\public\sdk\inc\winuser.h
+FILE 5164 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 5165 f:\sp\public\sdk\inc\winnls.h
+FILE 5166 f:\sp\public\sdk\inc\guiddef.h
+FILE 5167 f:\sp\public\sdk\inc\windows.h
+FILE 5168 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 5169 f:\sp\public\sdk\inc\specstrings.h
+FILE 5170 f:\sp\public\sdk\inc\basetsd.h
+FILE 5171 f:\sp\public\sdk\inc\stralign.h
+FILE 5172 f:\sp\public\sdk\inc\tvout.h
+FILE 5173 f:\sp\public\sdk\inc\winsvc.h
+FILE 5174 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 5175 f:\sp\public\sdk\inc\wingdi.h
+FILE 5176 f:\sp\public\sdk\inc\pshpack4.h
+FILE 5177 f:\sp\vctools\crt_bld\self_x86\crt\src\new.h
+FILE 5178 f:\sp\public\sdk\inc\winerror.h
+FILE 5179 f:\sp\vctools\crt_bld\self_x86\crt\src\rtcsup.h
+FILE 5180 f:\sp\vctools\crt_bld\self_x86\crt\src\rtcapi.h
+FILE 5181 f:\sp\public\sdk\inc\winreg.h
+FILE 5182 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 5183 f:\sp\public\sdk\inc\tvout.h
+FILE 5184 f:\sp\vctools\crt_bld\self_x86\crt\src\delete.cpp
+FILE 5185 f:\sp\public\sdk\inc\wincon.h
+FILE 5186 f:\sp\public\sdk\inc\imm.h
+FILE 5187 f:\sp\public\sdk\inc\winbase.h
+FILE 5188 f:\sp\public\sdk\inc\wingdi.h
+FILE 5189 f:\sp\public\sdk\inc\winver.h
+FILE 5190 f:\sp\public\sdk\inc\windows.h
+FILE 5191 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 5192 f:\sp\public\sdk\inc\pshpack2.h
+FILE 5193 f:\sp\public\sdk\inc\reason.h
+FILE 5194 f:\sp\vctools\crt_bld\self_x86\crt\src\malloc.h
+FILE 5195 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 5196 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 5197 f:\sp\public\sdk\inc\specstrings.h
+FILE 5198 f:\sp\public\sdk\inc\basetsd.h
+FILE 5199 f:\sp\public\sdk\inc\pshpack4.h
+FILE 5200 f:\sp\public\sdk\inc\winnetwk.h
+FILE 5201 f:\sp\public\sdk\inc\stralign.h
+FILE 5202 f:\sp\public\sdk\inc\poppack.h
+FILE 5203 f:\sp\public\sdk\inc\winsvc.h
+FILE 5204 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 5205 f:\sp\public\sdk\inc\windef.h
+FILE 5206 f:\sp\public\sdk\inc\winuser.h
+FILE 5207 f:\sp\public\sdk\inc\mcx.h
+FILE 5208 f:\sp\public\sdk\inc\pshpack8.h
+FILE 5209 f:\sp\public\sdk\inc\ddbanned.h
+FILE 5210 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 5211 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 5212 f:\sp\public\sdk\inc\guiddef.h
+FILE 5213 f:\sp\public\sdk\inc\winnt.h
+FILE 5214 f:\sp\public\sdk\inc\winnls.h
+FILE 5215 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 5216 f:\sp\public\sdk\inc\pshpack1.h
+FILE 5217 f:\sp\public\sdk\inc\tvout.h
+FILE 5218 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 5219 f:\sp\vctools\crt_bld\self_x86\crt\src\process.h
+FILE 5220 f:\sp\public\sdk\inc\wincon.h
+FILE 5221 f:\sp\public\sdk\inc\imm.h
+FILE 5222 f:\sp\public\sdk\inc\winbase.h
+FILE 5223 f:\sp\public\sdk\inc\wingdi.h
+FILE 5224 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 5225 f:\sp\public\sdk\inc\winver.h
+FILE 5226 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 5227 f:\sp\public\sdk\inc\windows.h
+FILE 5228 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 5229 f:\sp\public\sdk\inc\pshpack2.h
+FILE 5230 f:\sp\vctools\crt_bld\self_x86\crt\src\handler.cpp
+FILE 5231 f:\sp\public\sdk\inc\reason.h
+FILE 5232 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 5233 f:\sp\public\sdk\inc\specstrings.h
+FILE 5234 f:\sp\public\sdk\inc\basetsd.h
+FILE 5235 f:\sp\public\sdk\inc\pshpack4.h
+FILE 5236 f:\sp\public\sdk\inc\winnetwk.h
+FILE 5237 f:\sp\vctools\crt_bld\self_x86\crt\src\stddef.h
+FILE 5238 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 5239 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 5240 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 5241 f:\sp\public\sdk\inc\stralign.h
+FILE 5242 f:\sp\public\sdk\inc\poppack.h
+FILE 5243 f:\sp\public\sdk\inc\winsvc.h
+FILE 5244 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 5245 f:\sp\public\sdk\inc\windef.h
+FILE 5246 f:\sp\public\sdk\inc\winuser.h
+FILE 5247 f:\sp\public\sdk\inc\mcx.h
+FILE 5248 f:\sp\public\sdk\inc\pshpack8.h
+FILE 5249 f:\sp\public\sdk\inc\guiddef.h
+FILE 5250 f:\sp\public\sdk\inc\winnt.h
+FILE 5251 f:\sp\public\sdk\inc\winnls.h
+FILE 5252 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 5253 f:\sp\public\sdk\inc\pshpack1.h
+FILE 5254 f:\sp\public\sdk\inc\winerror.h
+FILE 5255 f:\sp\public\sdk\inc\ddbanned.h
+FILE 5256 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 5257 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 5258 f:\sp\public\sdk\inc\winreg.h
+FILE 5259 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 5260 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 5261 f:\sp\vctools\crt_bld\self_x86\crt\src\new.h
+FILE 5262 f:\sp\public\sdk\inc\winsvc.h
+FILE 5263 f:\sp\public\sdk\inc\wingdi.h
+FILE 5264 f:\sp\public\sdk\inc\pshpack4.h
+FILE 5265 f:\sp\vctools\crt_bld\self_x86\crt\src\malloc.h
+FILE 5266 f:\sp\public\sdk\inc\poppack.h
+FILE 5267 f:\sp\public\sdk\inc\winnt.h
+FILE 5268 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 5269 f:\sp\public\sdk\inc\winnetwk.h
+FILE 5270 f:\sp\public\sdk\inc\imm.h
+FILE 5271 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 5272 f:\sp\vctools\crt_bld\self_x86\crt\src\stddef.h
+FILE 5273 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 5274 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 5275 f:\sp\public\sdk\inc\pshpack1.h
+FILE 5276 f:\sp\public\sdk\inc\winver.h
+FILE 5277 f:\sp\public\sdk\inc\guiddef.h
+FILE 5278 f:\sp\public\sdk\inc\specstrings.h
+FILE 5279 f:\sp\public\sdk\inc\basetsd.h
+FILE 5280 f:\sp\vctools\crt_bld\self_x86\crt\src\winheap.h
+FILE 5281 f:\sp\vctools\crt_bld\self_x86\crt\src\sbheap.c
+FILE 5282 f:\sp\public\sdk\inc\windows.h
+FILE 5283 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 5284 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 5285 f:\sp\public\sdk\inc\winreg.h
+FILE 5286 f:\sp\public\sdk\inc\winbase.h
+FILE 5287 f:\sp\public\sdk\inc\winerror.h
+FILE 5288 f:\sp\public\sdk\inc\pshpack8.h
+FILE 5289 f:\sp\public\sdk\inc\ddbanned.h
+FILE 5290 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 5291 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 5292 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 5293 f:\sp\public\sdk\inc\reason.h
+FILE 5294 f:\sp\public\sdk\inc\wincon.h
+FILE 5295 f:\sp\public\sdk\inc\pshpack2.h
+FILE 5296 f:\sp\public\sdk\inc\mcx.h
+FILE 5297 f:\sp\public\sdk\inc\winuser.h
+FILE 5298 f:\sp\public\sdk\inc\winnls.h
+FILE 5299 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 5300 f:\sp\public\sdk\inc\windef.h
+FILE 5301 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 5302 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 5303 f:\sp\public\sdk\inc\stralign.h
+FILE 5304 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 5305 f:\sp\public\sdk\inc\tvout.h
+FILE 5306 f:\sp\public\sdk\inc\winver.h
+FILE 5307 f:\sp\vctools\crt_bld\self_x86\crt\src\rtcsup.h
+FILE 5308 f:\sp\vctools\crt_bld\self_x86\crt\src\rtcapi.h
+FILE 5309 f:\sp\public\sdk\inc\guiddef.h
+FILE 5310 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 5311 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 5312 f:\sp\public\sdk\inc\specstrings.h
+FILE 5313 f:\sp\public\sdk\inc\basetsd.h
+FILE 5314 f:\sp\vctools\crt_bld\self_x86\crt\src\winheap.h
+FILE 5315 f:\sp\public\sdk\inc\windows.h
+FILE 5316 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 5317 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 5318 f:\sp\public\sdk\inc\winreg.h
+FILE 5319 f:\sp\public\sdk\inc\winbase.h
+FILE 5320 f:\sp\public\sdk\inc\winerror.h
+FILE 5321 f:\sp\public\sdk\inc\pshpack8.h
+FILE 5322 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 5323 f:\sp\public\sdk\inc\reason.h
+FILE 5324 f:\sp\public\sdk\inc\wincon.h
+FILE 5325 f:\sp\vctools\crt_bld\self_x86\crt\src\malloc.h
+FILE 5326 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 5327 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 5328 f:\sp\public\sdk\inc\pshpack2.h
+FILE 5329 f:\sp\public\sdk\inc\mcx.h
+FILE 5330 f:\sp\public\sdk\inc\winuser.h
+FILE 5331 f:\sp\public\sdk\inc\winnls.h
+FILE 5332 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 5333 f:\sp\public\sdk\inc\windef.h
+FILE 5334 f:\sp\public\sdk\inc\stralign.h
+FILE 5335 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 5336 f:\sp\public\sdk\inc\tvout.h
+FILE 5337 f:\sp\public\sdk\inc\winsvc.h
+FILE 5338 f:\sp\vctools\crt_bld\self_x86\crt\src\realloc.c
+FILE 5339 f:\sp\public\sdk\inc\wingdi.h
+FILE 5340 f:\sp\public\sdk\inc\pshpack4.h
+FILE 5341 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 5342 f:\sp\public\sdk\inc\poppack.h
+FILE 5343 f:\sp\public\sdk\inc\winnt.h
+FILE 5344 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 5345 f:\sp\public\sdk\inc\winnetwk.h
+FILE 5346 f:\sp\public\sdk\inc\ddbanned.h
+FILE 5347 f:\sp\public\sdk\inc\imm.h
+FILE 5348 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 5349 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 5350 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 5351 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 5352 f:\sp\public\sdk\inc\pshpack1.h
+FILE 5353 f:\sp\public\sdk\inc\pshpack2.h
+FILE 5354 f:\sp\vctools\crt_bld\self_x86\crt\src\winheap.h
+FILE 5355 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 5356 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 5357 f:\sp\public\sdk\inc\mcx.h
+FILE 5358 f:\sp\public\sdk\inc\winuser.h
+FILE 5359 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 5360 f:\sp\public\sdk\inc\winnls.h
+FILE 5361 f:\sp\public\sdk\inc\guiddef.h
+FILE 5362 f:\sp\public\sdk\inc\windows.h
+FILE 5363 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 5364 f:\sp\public\sdk\inc\specstrings.h
+FILE 5365 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 5366 f:\sp\public\sdk\inc\basetsd.h
+FILE 5367 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 5368 f:\sp\public\sdk\inc\stralign.h
+FILE 5369 f:\sp\public\sdk\inc\tvout.h
+FILE 5370 f:\sp\public\sdk\inc\winsvc.h
+FILE 5371 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 5372 f:\sp\public\sdk\inc\wingdi.h
+FILE 5373 f:\sp\public\sdk\inc\pshpack4.h
+FILE 5374 f:\sp\public\sdk\inc\poppack.h
+FILE 5375 f:\sp\public\sdk\inc\winnetwk.h
+FILE 5376 f:\sp\public\sdk\inc\imm.h
+FILE 5377 f:\sp\vctools\crt_bld\self_x86\crt\src\malloc.h
+FILE 5378 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 5379 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 5380 f:\sp\public\sdk\inc\windef.h
+FILE 5381 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 5382 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 5383 f:\sp\vctools\crt_bld\self_x86\crt\src\msize.c
+FILE 5384 f:\sp\public\sdk\inc\pshpack1.h
+FILE 5385 f:\sp\public\sdk\inc\winver.h
+FILE 5386 f:\sp\public\sdk\inc\winnt.h
+FILE 5387 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 5388 f:\sp\public\sdk\inc\winreg.h
+FILE 5389 f:\sp\public\sdk\inc\ddbanned.h
+FILE 5390 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 5391 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 5392 f:\sp\public\sdk\inc\winbase.h
+FILE 5393 f:\sp\public\sdk\inc\winerror.h
+FILE 5394 f:\sp\public\sdk\inc\pshpack8.h
+FILE 5395 f:\sp\public\sdk\inc\reason.h
+FILE 5396 f:\sp\public\sdk\inc\wincon.h
+FILE 5397 f:\sp\public\sdk\inc\pshpack2.h
+FILE 5398 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 5399 f:\sp\public\sdk\inc\mcx.h
+FILE 5400 f:\sp\public\sdk\inc\winuser.h
+FILE 5401 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 5402 f:\sp\public\sdk\inc\winnls.h
+FILE 5403 f:\sp\public\sdk\inc\guiddef.h
+FILE 5404 f:\sp\public\sdk\inc\windows.h
+FILE 5405 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 5406 f:\sp\public\sdk\inc\specstrings.h
+FILE 5407 f:\sp\public\sdk\inc\basetsd.h
+FILE 5408 f:\sp\public\sdk\inc\stralign.h
+FILE 5409 f:\sp\public\sdk\inc\tvout.h
+FILE 5410 f:\sp\public\sdk\inc\winsvc.h
+FILE 5411 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 5412 f:\sp\public\sdk\inc\wingdi.h
+FILE 5413 f:\sp\public\sdk\inc\pshpack4.h
+FILE 5414 f:\sp\public\sdk\inc\poppack.h
+FILE 5415 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 5416 f:\sp\public\sdk\inc\winnetwk.h
+FILE 5417 f:\sp\public\sdk\inc\imm.h
+FILE 5418 f:\sp\vctools\crt_bld\self_x86\crt\src\malloc.h
+FILE 5419 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 5420 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 5421 f:\sp\public\sdk\inc\windef.h
+FILE 5422 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 5423 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 5424 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 5425 f:\sp\vctools\crt_bld\self_x86\crt\src\malloc.c
+FILE 5426 f:\sp\public\sdk\inc\pshpack1.h
+FILE 5427 f:\sp\public\sdk\inc\winver.h
+FILE 5428 f:\sp\vctools\crt_bld\self_x86\crt\src\rtcsup.h
+FILE 5429 f:\sp\vctools\crt_bld\self_x86\crt\src\rtcapi.h
+FILE 5430 f:\sp\vctools\crt_bld\self_x86\crt\src\rterr.h
+FILE 5431 f:\sp\public\sdk\inc\winnt.h
+FILE 5432 f:\sp\vctools\crt_bld\self_x86\crt\src\winheap.h
+FILE 5433 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 5434 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 5435 f:\sp\public\sdk\inc\winreg.h
+FILE 5436 f:\sp\public\sdk\inc\ddbanned.h
+FILE 5437 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 5438 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 5439 f:\sp\public\sdk\inc\winbase.h
+FILE 5440 f:\sp\public\sdk\inc\winerror.h
+FILE 5441 f:\sp\public\sdk\inc\pshpack8.h
+FILE 5442 f:\sp\public\sdk\inc\reason.h
+FILE 5443 f:\sp\public\sdk\inc\wincon.h
+FILE 5444 f:\sp\public\sdk\inc\winver.h
+FILE 5445 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 5446 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 5447 f:\sp\public\sdk\inc\winnt.h
+FILE 5448 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 5449 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 5450 f:\sp\public\sdk\inc\winreg.h
+FILE 5451 f:\sp\public\sdk\inc\winbase.h
+FILE 5452 f:\sp\public\sdk\inc\winerror.h
+FILE 5453 f:\sp\public\sdk\inc\pshpack8.h
+FILE 5454 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 5455 f:\sp\public\sdk\inc\reason.h
+FILE 5456 f:\sp\public\sdk\inc\wincon.h
+FILE 5457 f:\sp\vctools\crt_bld\self_x86\crt\src\malloc.h
+FILE 5458 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 5459 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 5460 f:\sp\public\sdk\inc\pshpack2.h
+FILE 5461 f:\sp\public\sdk\inc\mcx.h
+FILE 5462 f:\sp\public\sdk\inc\winuser.h
+FILE 5463 f:\sp\public\sdk\inc\winnls.h
+FILE 5464 f:\sp\public\sdk\inc\guiddef.h
+FILE 5465 f:\sp\public\sdk\inc\stralign.h
+FILE 5466 f:\sp\public\sdk\inc\specstrings.h
+FILE 5467 f:\sp\public\sdk\inc\basetsd.h
+FILE 5468 f:\sp\vctools\crt_bld\self_x86\crt\src\winheap.h
+FILE 5469 f:\sp\public\sdk\inc\windows.h
+FILE 5470 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 5471 f:\sp\public\sdk\inc\tvout.h
+FILE 5472 f:\sp\public\sdk\inc\winsvc.h
+FILE 5473 f:\sp\vctools\crt_bld\self_x86\crt\src\heapinit.c
+FILE 5474 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 5475 f:\sp\public\sdk\inc\wingdi.h
+FILE 5476 f:\sp\public\sdk\inc\pshpack4.h
+FILE 5477 f:\sp\public\sdk\inc\poppack.h
+FILE 5478 f:\sp\public\sdk\inc\winnetwk.h
+FILE 5479 f:\sp\public\sdk\inc\ddbanned.h
+FILE 5480 f:\sp\public\sdk\inc\imm.h
+FILE 5481 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 5482 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 5483 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 5484 f:\sp\public\sdk\inc\windef.h
+FILE 5485 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 5486 f:\sp\public\sdk\inc\pshpack1.h
+FILE 5487 f:\sp\public\sdk\inc\pshpack2.h
+FILE 5488 f:\sp\public\sdk\inc\mcx.h
+FILE 5489 f:\sp\public\sdk\inc\winuser.h
+FILE 5490 f:\sp\vctools\crt_bld\self_x86\crt\src\winheap.h
+FILE 5491 f:\sp\public\sdk\inc\winnls.h
+FILE 5492 f:\sp\public\sdk\inc\guiddef.h
+FILE 5493 f:\sp\public\sdk\inc\windows.h
+FILE 5494 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 5495 f:\sp\public\sdk\inc\specstrings.h
+FILE 5496 f:\sp\public\sdk\inc\basetsd.h
+FILE 5497 f:\sp\public\sdk\inc\stralign.h
+FILE 5498 f:\sp\public\sdk\inc\tvout.h
+FILE 5499 f:\sp\public\sdk\inc\winsvc.h
+FILE 5500 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 5501 f:\sp\public\sdk\inc\wingdi.h
+FILE 5502 f:\sp\public\sdk\inc\pshpack4.h
+FILE 5503 f:\sp\public\sdk\inc\poppack.h
+FILE 5504 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 5505 f:\sp\public\sdk\inc\winnetwk.h
+FILE 5506 f:\sp\public\sdk\inc\imm.h
+FILE 5507 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 5508 f:\sp\vctools\crt_bld\self_x86\crt\src\malloc.h
+FILE 5509 f:\sp\public\sdk\inc\windef.h
+FILE 5510 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 5511 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 5512 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 5513 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 5514 f:\sp\public\sdk\inc\pshpack1.h
+FILE 5515 f:\sp\vctools\crt_bld\self_x86\crt\src\free.c
+FILE 5516 f:\sp\public\sdk\inc\winver.h
+FILE 5517 f:\sp\public\sdk\inc\winnt.h
+FILE 5518 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 5519 f:\sp\vctools\crt_bld\self_x86\crt\src\rtcsup.h
+FILE 5520 f:\sp\vctools\crt_bld\self_x86\crt\src\rtcapi.h
+FILE 5521 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 5522 f:\sp\public\sdk\inc\winreg.h
+FILE 5523 f:\sp\public\sdk\inc\ddbanned.h
+FILE 5524 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 5525 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 5526 f:\sp\public\sdk\inc\winbase.h
+FILE 5527 f:\sp\public\sdk\inc\winerror.h
+FILE 5528 f:\sp\public\sdk\inc\pshpack8.h
+FILE 5529 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 5530 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 5531 f:\sp\public\sdk\inc\reason.h
+FILE 5532 f:\sp\public\sdk\inc\wincon.h
+FILE 5533 f:\sp\public\sdk\inc\pshpack2.h
+FILE 5534 f:\sp\public\sdk\inc\mcx.h
+FILE 5535 f:\sp\public\sdk\inc\winuser.h
+FILE 5536 f:\sp\public\sdk\inc\winnls.h
+FILE 5537 f:\sp\public\sdk\inc\guiddef.h
+FILE 5538 f:\sp\public\sdk\inc\windows.h
+FILE 5539 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 5540 f:\sp\public\sdk\inc\specstrings.h
+FILE 5541 f:\sp\public\sdk\inc\basetsd.h
+FILE 5542 f:\sp\public\sdk\inc\stralign.h
+FILE 5543 f:\sp\public\sdk\inc\tvout.h
+FILE 5544 f:\sp\public\sdk\inc\winsvc.h
+FILE 5545 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 5546 f:\sp\public\sdk\inc\wingdi.h
+FILE 5547 f:\sp\public\sdk\inc\pshpack4.h
+FILE 5548 f:\sp\public\sdk\inc\poppack.h
+FILE 5549 f:\sp\public\sdk\inc\winnetwk.h
+FILE 5550 f:\sp\public\sdk\inc\imm.h
+FILE 5551 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 5552 f:\sp\public\sdk\inc\windef.h
+FILE 5553 f:\sp\vctools\crt_bld\self_x86\crt\src\malloc.h
+FILE 5554 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 5555 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 5556 f:\sp\public\sdk\inc\pshpack1.h
+FILE 5557 f:\sp\vctools\crt_bld\self_x86\crt\src\crtheap.c
+FILE 5558 f:\sp\public\sdk\inc\winver.h
+FILE 5559 f:\sp\public\sdk\inc\winnt.h
+FILE 5560 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 5561 f:\sp\public\sdk\inc\winreg.h
+FILE 5562 f:\sp\public\sdk\inc\ddbanned.h
+FILE 5563 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 5564 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 5565 f:\sp\public\sdk\inc\winbase.h
+FILE 5566 f:\sp\public\sdk\inc\winerror.h
+FILE 5567 f:\sp\public\sdk\inc\pshpack8.h
+FILE 5568 f:\sp\public\sdk\inc\reason.h
+FILE 5569 f:\sp\public\sdk\inc\wincon.h
+FILE 5570 f:\sp\public\sdk\inc\pshpack2.h
+FILE 5571 f:\sp\public\sdk\inc\mcx.h
+FILE 5572 f:\sp\public\sdk\inc\winuser.h
+FILE 5573 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 5574 f:\sp\public\sdk\inc\winnls.h
+FILE 5575 f:\sp\public\sdk\inc\stralign.h
+FILE 5576 f:\sp\public\sdk\inc\tvout.h
+FILE 5577 f:\sp\public\sdk\inc\winsvc.h
+FILE 5578 f:\sp\public\sdk\inc\wingdi.h
+FILE 5579 f:\sp\public\sdk\inc\winnt.h
+FILE 5580 f:\sp\public\sdk\inc\pshpack4.h
+FILE 5581 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 5582 f:\sp\public\sdk\inc\poppack.h
+FILE 5583 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 5584 f:\sp\public\sdk\inc\winnetwk.h
+FILE 5585 f:\sp\public\sdk\inc\imm.h
+FILE 5586 f:\sp\vctools\crt_bld\self_x86\crt\src\malloc.h
+FILE 5587 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 5588 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 5589 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 5590 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 5591 f:\sp\public\sdk\inc\pshpack1.h
+FILE 5592 f:\sp\vctools\crt_bld\self_x86\crt\src\calloc.c
+FILE 5593 f:\sp\public\sdk\inc\winver.h
+FILE 5594 f:\sp\vctools\crt_bld\self_x86\crt\src\winheap.h
+FILE 5595 f:\sp\public\sdk\inc\guiddef.h
+FILE 5596 f:\sp\public\sdk\inc\windows.h
+FILE 5597 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 5598 f:\sp\public\sdk\inc\specstrings.h
+FILE 5599 f:\sp\public\sdk\inc\basetsd.h
+FILE 5600 f:\sp\vctools\crt_bld\self_x86\crt\src\rtcsup.h
+FILE 5601 f:\sp\vctools\crt_bld\self_x86\crt\src\rtcapi.h
+FILE 5602 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 5603 f:\sp\public\sdk\inc\winreg.h
+FILE 5604 f:\sp\public\sdk\inc\ddbanned.h
+FILE 5605 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 5606 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 5607 f:\sp\public\sdk\inc\winbase.h
+FILE 5608 f:\sp\public\sdk\inc\winerror.h
+FILE 5609 f:\sp\public\sdk\inc\pshpack8.h
+FILE 5610 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 5611 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 5612 f:\sp\public\sdk\inc\reason.h
+FILE 5613 f:\sp\public\sdk\inc\wincon.h
+FILE 5614 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 5615 f:\sp\public\sdk\inc\windef.h
+FILE 5616 f:\sp\public\sdk\inc\wincon.h
+FILE 5617 f:\sp\public\sdk\inc\imm.h
+FILE 5618 f:\sp\public\sdk\inc\winbase.h
+FILE 5619 f:\sp\public\sdk\inc\wingdi.h
+FILE 5620 f:\sp\public\sdk\inc\winver.h
+FILE 5621 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\ehhooks.h
+FILE 5622 f:\sp\public\sdk\inc\pshpack2.h
+FILE 5623 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\internal.h
+FILE 5624 f:\sp\public\sdk\inc\reason.h
+FILE 5625 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\ehassert.h
+FILE 5626 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\setjmp.h
+FILE 5627 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\eh\i386\trnsctrl.cpp
+FILE 5628 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\process.h
+FILE 5629 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\crtdbg.h
+FILE 5630 f:\sp\public\sdk\inc\specstrings.h
+FILE 5631 f:\sp\public\sdk\inc\basetsd.h
+FILE 5632 f:\sp\public\sdk\inc\pshpack4.h
+FILE 5633 f:\sp\public\sdk\inc\winnetwk.h
+FILE 5634 f:\sp\public\sdk\inc\stralign.h
+FILE 5635 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\trnsctrl.h
+FILE 5636 f:\sp\public\sdk\inc\poppack.h
+FILE 5637 f:\sp\public\sdk\inc\winsvc.h
+FILE 5638 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\stdarg.h
+FILE 5639 f:\sp\public\sdk\inc\windef.h
+FILE 5640 f:\sp\public\sdk\inc\winuser.h
+FILE 5641 f:\sp\public\sdk\inc\windows.h
+FILE 5642 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\excpt.h
+FILE 5643 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\crtdefs.h
+FILE 5644 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\sal.h
+FILE 5645 f:\sp\public\sdk\inc\mcx.h
+FILE 5646 f:\sp\public\sdk\inc\pshpack8.h
+FILE 5647 f:\sp\public\sdk\inc\guiddef.h
+FILE 5648 f:\sp\public\sdk\inc\winnt.h
+FILE 5649 f:\sp\public\sdk\inc\winnls.h
+FILE 5650 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\ctype.h
+FILE 5651 f:\sp\public\sdk\inc\pshpack1.h
+FILE 5652 f:\sp\public\sdk\inc\winerror.h
+FILE 5653 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\mtdll.h
+FILE 5654 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\limits.h
+FILE 5655 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\errno.h
+FILE 5656 f:\sp\public\sdk\inc\winreg.h
+FILE 5657 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\string.h
+FILE 5658 f:\sp\public\sdk\inc\ddbanned.h
+FILE 5659 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\vadefs.h
+FILE 5660 f:\sp\public\sdk\inc\tvout.h
+FILE 5661 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\cruntime.h
+FILE 5662 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\eh.h
+FILE 5663 f:\sp\vctools\langapi\include\ehdata.h
+FILE 5664 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\stddef.h
+FILE 5665 F:\SP\vctools\crt_bld\SELF_X86\crt\prebuild\eh\i386\lowhelpr.asm
+FILE 5666 F:\SP\vctools\crt_bld\SELF_X86\crt\prebuild\h\cruntime.inc
+FILE 5667 F:\SP\vctools\crt_bld\SELF_X86\crt\prebuild\h\exsup.inc
+FILE 5668 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\process.h
+FILE 5669 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\crtdefs.h
+FILE 5670 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\sal.h
+FILE 5671 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\eh\i386\ehprolg3.c
+FILE 5672 f:\sp\public\sdk\inc\ddbanned.h
+FILE 5673 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\vadefs.h
+FILE 5674 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\cruntime.h
+FILE 5675 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\ehassert.h
+FILE 5676 f:\sp\public\sdk\inc\wincon.h
+FILE 5677 f:\sp\public\sdk\inc\imm.h
+FILE 5678 f:\sp\public\sdk\inc\winbase.h
+FILE 5679 f:\sp\public\sdk\inc\wingdi.h
+FILE 5680 f:\sp\public\sdk\inc\winver.h
+FILE 5681 f:\sp\public\sdk\inc\pshpack2.h
+FILE 5682 f:\sp\public\sdk\inc\reason.h
+FILE 5683 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\eh\validate.cpp
+FILE 5684 f:\sp\public\sdk\inc\specstrings.h
+FILE 5685 f:\sp\public\sdk\inc\basetsd.h
+FILE 5686 f:\sp\public\sdk\inc\pshpack4.h
+FILE 5687 f:\sp\public\sdk\inc\winnetwk.h
+FILE 5688 f:\sp\public\sdk\inc\stralign.h
+FILE 5689 f:\sp\public\sdk\inc\poppack.h
+FILE 5690 f:\sp\public\sdk\inc\winsvc.h
+FILE 5691 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\stdarg.h
+FILE 5692 f:\sp\public\sdk\inc\windef.h
+FILE 5693 f:\sp\public\sdk\inc\winuser.h
+FILE 5694 f:\sp\public\sdk\inc\windows.h
+FILE 5695 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\excpt.h
+FILE 5696 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\crtdefs.h
+FILE 5697 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\sal.h
+FILE 5698 f:\sp\public\sdk\inc\mcx.h
+FILE 5699 f:\sp\public\sdk\inc\pshpack8.h
+FILE 5700 f:\sp\public\sdk\inc\guiddef.h
+FILE 5701 f:\sp\public\sdk\inc\winnt.h
+FILE 5702 f:\sp\public\sdk\inc\winnls.h
+FILE 5703 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\ctype.h
+FILE 5704 f:\sp\public\sdk\inc\pshpack1.h
+FILE 5705 f:\sp\public\sdk\inc\winerror.h
+FILE 5706 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\eh.h
+FILE 5707 f:\sp\public\sdk\inc\winreg.h
+FILE 5708 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\string.h
+FILE 5709 f:\sp\public\sdk\inc\ddbanned.h
+FILE 5710 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\vadefs.h
+FILE 5711 f:\sp\public\sdk\inc\tvout.h
+FILE 5712 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\cruntime.h
+FILE 5713 f:\sp\public\sdk\inc\wincon.h
+FILE 5714 f:\sp\public\sdk\inc\imm.h
+FILE 5715 f:\sp\public\sdk\inc\winbase.h
+FILE 5716 f:\sp\public\sdk\inc\wingdi.h
+FILE 5717 f:\sp\public\sdk\inc\winver.h
+FILE 5718 f:\sp\public\sdk\inc\pshpack2.h
+FILE 5719 f:\sp\public\sdk\inc\reason.h
+FILE 5720 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\sect_attribs.h
+FILE 5721 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\eh\unhandld.cpp
+FILE 5722 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\eh.h
+FILE 5723 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\errno.h
+FILE 5724 f:\sp\public\sdk\inc\specstrings.h
+FILE 5725 f:\sp\public\sdk\inc\basetsd.h
+FILE 5726 f:\sp\public\sdk\inc\pshpack4.h
+FILE 5727 f:\sp\public\sdk\inc\winnetwk.h
+FILE 5728 f:\sp\public\sdk\inc\stralign.h
+FILE 5729 f:\sp\public\sdk\inc\poppack.h
+FILE 5730 f:\sp\public\sdk\inc\winsvc.h
+FILE 5731 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\stdarg.h
+FILE 5732 f:\sp\public\sdk\inc\windef.h
+FILE 5733 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\ehhooks.h
+FILE 5734 f:\sp\public\sdk\inc\winuser.h
+FILE 5735 f:\sp\public\sdk\inc\windows.h
+FILE 5736 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\excpt.h
+FILE 5737 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\crtdefs.h
+FILE 5738 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\sal.h
+FILE 5739 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\ehassert.h
+FILE 5740 f:\sp\public\sdk\inc\mcx.h
+FILE 5741 f:\sp\public\sdk\inc\pshpack8.h
+FILE 5742 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\internal.h
+FILE 5743 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\limits.h
+FILE 5744 f:\sp\public\sdk\inc\guiddef.h
+FILE 5745 f:\sp\public\sdk\inc\winnt.h
+FILE 5746 f:\sp\public\sdk\inc\winnls.h
+FILE 5747 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\ctype.h
+FILE 5748 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\stdlib.h
+FILE 5749 f:\sp\public\sdk\inc\pshpack1.h
+FILE 5750 f:\sp\public\sdk\inc\winerror.h
+FILE 5751 f:\sp\vctools\langapi\include\ehdata.h
+FILE 5752 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\stddef.h
+FILE 5753 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\crtdbg.h
+FILE 5754 f:\sp\public\sdk\inc\winreg.h
+FILE 5755 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\string.h
+FILE 5756 f:\sp\public\sdk\inc\ddbanned.h
+FILE 5757 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\vadefs.h
+FILE 5758 f:\sp\public\sdk\inc\tvout.h
+FILE 5759 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\cruntime.h
+FILE 5760 f:\sp\public\sdk\inc\specstrings.h
+FILE 5761 f:\sp\public\sdk\inc\basetsd.h
+FILE 5762 f:\sp\public\sdk\inc\pshpack4.h
+FILE 5763 f:\sp\public\sdk\inc\winnetwk.h
+FILE 5764 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\limits.h
+FILE 5765 f:\sp\public\sdk\inc\stralign.h
+FILE 5766 f:\sp\public\sdk\inc\poppack.h
+FILE 5767 f:\sp\public\sdk\inc\winsvc.h
+FILE 5768 f:\sp\public\sdk\inc\winuser.h
+FILE 5769 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\stdarg.h
+FILE 5770 f:\sp\public\sdk\inc\windef.h
+FILE 5771 f:\sp\vctools\langapi\undname\undname.cxx
+FILE 5772 f:\sp\public\sdk\inc\mcx.h
+FILE 5773 f:\sp\public\sdk\inc\pshpack8.h
+FILE 5774 f:\sp\public\sdk\inc\guiddef.h
+FILE 5775 f:\sp\vctools\langapi\undname\utf8.h
+FILE 5776 f:\sp\public\sdk\inc\winnls.h
+FILE 5777 f:\sp\public\sdk\inc\pshpack1.h
+FILE 5778 f:\sp\public\sdk\inc\winnt.h
+FILE 5779 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\ctype.h
+FILE 5780 f:\sp\public\sdk\inc\winerror.h
+FILE 5781 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\swprintf.inl
+FILE 5782 f:\sp\vctools\langapi\undname\undname.hxx
+FILE 5783 f:\sp\vctools\langapi\undname\undname.h
+FILE 5784 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\stdlib.h
+FILE 5785 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\crtdefs.h
+FILE 5786 f:\sp\public\sdk\inc\winreg.h
+FILE 5787 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\sal.h
+FILE 5788 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\string.h
+FILE 5789 f:\sp\public\sdk\inc\tvout.h
+FILE 5790 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\stdio.h
+FILE 5791 f:\sp\public\sdk\inc\wincon.h
+FILE 5792 f:\sp\public\sdk\inc\imm.h
+FILE 5793 f:\sp\public\sdk\inc\winbase.h
+FILE 5794 f:\sp\public\sdk\inc\wingdi.h
+FILE 5795 f:\sp\public\sdk\inc\winver.h
+FILE 5796 f:\sp\public\sdk\inc\pshpack2.h
+FILE 5797 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\mtdll.h
+FILE 5798 f:\sp\public\sdk\inc\windows.h
+FILE 5799 f:\sp\public\sdk\inc\reason.h
+FILE 5800 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\excpt.h
+FILE 5801 f:\sp\public\sdk\inc\ddbanned.h
+FILE 5802 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\vadefs.h
+FILE 5803 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\cruntime.h
+FILE 5804 f:\sp\vctools\langapi\undname\undname.inl
+FILE 5805 f:\sp\public\sdk\inc\guiddef.h
+FILE 5806 f:\sp\public\sdk\inc\winnt.h
+FILE 5807 f:\sp\public\sdk\inc\winnls.h
+FILE 5808 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\ctype.h
+FILE 5809 f:\sp\public\sdk\inc\pshpack1.h
+FILE 5810 f:\sp\public\sdk\inc\winerror.h
+FILE 5811 f:\sp\public\sdk\inc\winreg.h
+FILE 5812 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\string.h
+FILE 5813 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\stdlib.h
+FILE 5814 f:\sp\public\sdk\inc\tvout.h
+FILE 5815 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\eh\typname.cpp
+FILE 5816 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\crtdbg.h
+FILE 5817 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\stdhpp\cstddef
+FILE 5818 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\stddef.h
+FILE 5819 f:\sp\public\sdk\inc\wincon.h
+FILE 5820 f:\sp\public\sdk\inc\imm.h
+FILE 5821 f:\sp\public\sdk\inc\winbase.h
+FILE 5822 f:\sp\public\sdk\inc\wingdi.h
+FILE 5823 f:\sp\public\sdk\inc\winver.h
+FILE 5824 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\limits.h
+FILE 5825 f:\sp\public\sdk\inc\windows.h
+FILE 5826 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\excpt.h
+FILE 5827 f:\sp\public\sdk\inc\pshpack2.h
+FILE 5828 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\mtdll.h
+FILE 5829 f:\sp\public\sdk\inc\reason.h
+FILE 5830 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\sect_attribs.h
+FILE 5831 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\dbgint.h
+FILE 5832 f:\sp\public\sdk\inc\specstrings.h
+FILE 5833 f:\sp\public\sdk\inc\basetsd.h
+FILE 5834 f:\sp\public\sdk\inc\pshpack4.h
+FILE 5835 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\typeinfo.h
+FILE 5836 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\stdhpp\typeinfo
+FILE 5837 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\stdhpp\exception
+FILE 5838 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\stdhpp\xstddef
+FILE 5839 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\eh.h
+FILE 5840 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\stdhpp\yvals.h
+FILE 5841 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\stdhpp\use_ansi.h
+FILE 5842 f:\sp\public\sdk\inc\winnetwk.h
+FILE 5843 f:\sp\vctools\langapi\undname\undname.h
+FILE 5844 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\errno.h
+FILE 5845 f:\sp\public\sdk\inc\stralign.h
+FILE 5846 f:\sp\public\sdk\inc\poppack.h
+FILE 5847 f:\sp\public\sdk\inc\winsvc.h
+FILE 5848 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\stdarg.h
+FILE 5849 f:\sp\public\sdk\inc\windef.h
+FILE 5850 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\internal.h
+FILE 5851 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\crtdefs.h
+FILE 5852 f:\sp\public\sdk\inc\winuser.h
+FILE 5853 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\sal.h
+FILE 5854 f:\sp\public\sdk\inc\ddbanned.h
+FILE 5855 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\vadefs.h
+FILE 5856 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\cruntime.h
+FILE 5857 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\malloc.h
+FILE 5858 f:\sp\public\sdk\inc\mcx.h
+FILE 5859 f:\sp\public\sdk\inc\pshpack8.h
+FILE 5860 f:\sp\public\sdk\inc\winnls.h
+FILE 5861 f:\sp\public\sdk\inc\pshpack1.h
+FILE 5862 f:\sp\public\sdk\inc\winnt.h
+FILE 5863 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\ctype.h
+FILE 5864 f:\sp\public\sdk\inc\winerror.h
+FILE 5865 f:\sp\public\sdk\inc\winreg.h
+FILE 5866 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\string.h
+FILE 5867 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\limits.h
+FILE 5868 f:\sp\public\sdk\inc\tvout.h
+FILE 5869 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\dbgint.h
+FILE 5870 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\crtdbg.h
+FILE 5871 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\stdhpp\cstddef
+FILE 5872 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\stddef.h
+FILE 5873 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\eh\typinfo.cpp
+FILE 5874 f:\sp\public\sdk\inc\wincon.h
+FILE 5875 f:\sp\public\sdk\inc\imm.h
+FILE 5876 f:\sp\public\sdk\inc\winbase.h
+FILE 5877 f:\sp\public\sdk\inc\wingdi.h
+FILE 5878 f:\sp\public\sdk\inc\winver.h
+FILE 5879 f:\sp\public\sdk\inc\pshpack2.h
+FILE 5880 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\mtdll.h
+FILE 5881 f:\sp\public\sdk\inc\reason.h
+FILE 5882 f:\sp\public\sdk\inc\windows.h
+FILE 5883 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\excpt.h
+FILE 5884 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\stdlib.h
+FILE 5885 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\crtdefs.h
+FILE 5886 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\sal.h
+FILE 5887 f:\sp\public\sdk\inc\specstrings.h
+FILE 5888 f:\sp\public\sdk\inc\basetsd.h
+FILE 5889 f:\sp\public\sdk\inc\pshpack4.h
+FILE 5890 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\stdhpp\typeinfo
+FILE 5891 f:\sp\public\sdk\inc\winnetwk.h
+FILE 5892 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\stdhpp\exception
+FILE 5893 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\stdhpp\xstddef
+FILE 5894 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\eh.h
+FILE 5895 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\stdhpp\yvals.h
+FILE 5896 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\stdhpp\use_ansi.h
+FILE 5897 f:\sp\public\sdk\inc\stralign.h
+FILE 5898 f:\sp\public\sdk\inc\poppack.h
+FILE 5899 f:\sp\public\sdk\inc\winsvc.h
+FILE 5900 f:\sp\public\sdk\inc\winuser.h
+FILE 5901 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\stdarg.h
+FILE 5902 f:\sp\public\sdk\inc\windef.h
+FILE 5903 f:\sp\vctools\langapi\undname\undname.h
+FILE 5904 f:\sp\public\sdk\inc\ddbanned.h
+FILE 5905 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\malloc.h
+FILE 5906 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\vadefs.h
+FILE 5907 f:\sp\public\sdk\inc\mcx.h
+FILE 5908 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\cruntime.h
+FILE 5909 f:\sp\public\sdk\inc\pshpack8.h
+FILE 5910 f:\sp\public\sdk\inc\guiddef.h
+FILE 5911 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\eh.h
+FILE 5912 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\stdhpp\typeinfo
+FILE 5913 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\limits.h
+FILE 5914 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\stdhpp\exception
+FILE 5915 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\stdhpp\xstddef
+FILE 5916 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\eh\stdexcpt.cpp
+FILE 5917 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\stdhpp\yvals.h
+FILE 5918 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\stdhpp\use_ansi.h
+FILE 5919 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\stdlib.h
+FILE 5920 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\crtdefs.h
+FILE 5921 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\sal.h
+FILE 5922 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\string.h
+FILE 5923 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\stdhpp\cstddef
+FILE 5924 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\stddef.h
+FILE 5925 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\malloc.h
+FILE 5926 f:\sp\public\sdk\inc\ddbanned.h
+FILE 5927 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\vadefs.h
+FILE 5928 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\cruntime.h
+FILE 5929 f:\sp\vctools\langapi\include\ehdata.h
+FILE 5930 f:\sp\public\sdk\inc\wincon.h
+FILE 5931 f:\sp\public\sdk\inc\imm.h
+FILE 5932 f:\sp\public\sdk\inc\winbase.h
+FILE 5933 f:\sp\public\sdk\inc\wingdi.h
+FILE 5934 f:\sp\public\sdk\inc\winver.h
+FILE 5935 f:\sp\public\sdk\inc\windows.h
+FILE 5936 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\excpt.h
+FILE 5937 f:\sp\public\sdk\inc\pshpack2.h
+FILE 5938 f:\sp\public\sdk\inc\reason.h
+FILE 5939 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\eh\throw.cpp
+FILE 5940 f:\sp\public\sdk\inc\specstrings.h
+FILE 5941 f:\sp\public\sdk\inc\basetsd.h
+FILE 5942 f:\sp\public\sdk\inc\pshpack4.h
+FILE 5943 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\eh.h
+FILE 5944 f:\sp\public\sdk\inc\winnetwk.h
+FILE 5945 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\stddef.h
+FILE 5946 f:\sp\public\sdk\inc\stralign.h
+FILE 5947 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\crtdefs.h
+FILE 5948 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\sal.h
+FILE 5949 f:\sp\public\sdk\inc\poppack.h
+FILE 5950 f:\sp\public\sdk\inc\winsvc.h
+FILE 5951 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\stdarg.h
+FILE 5952 f:\sp\public\sdk\inc\windef.h
+FILE 5953 f:\sp\public\sdk\inc\winuser.h
+FILE 5954 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\ehhooks.h
+FILE 5955 f:\sp\public\sdk\inc\mcx.h
+FILE 5956 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\ehassert.h
+FILE 5957 f:\sp\public\sdk\inc\pshpack8.h
+FILE 5958 f:\sp\public\sdk\inc\guiddef.h
+FILE 5959 f:\sp\public\sdk\inc\winnt.h
+FILE 5960 f:\sp\public\sdk\inc\winnls.h
+FILE 5961 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\ctype.h
+FILE 5962 f:\sp\public\sdk\inc\pshpack1.h
+FILE 5963 f:\sp\public\sdk\inc\winerror.h
+FILE 5964 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\mtdll.h
+FILE 5965 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\limits.h
+FILE 5966 f:\sp\public\sdk\inc\ddbanned.h
+FILE 5967 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\vadefs.h
+FILE 5968 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\cruntime.h
+FILE 5969 f:\sp\public\sdk\inc\winreg.h
+FILE 5970 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\string.h
+FILE 5971 f:\sp\public\sdk\inc\tvout.h
+FILE 5972 f:\sp\public\sdk\inc\poppack.h
+FILE 5973 f:\sp\public\sdk\inc\winsvc.h
+FILE 5974 f:\sp\public\sdk\inc\windows.h
+FILE 5975 f:\sp\public\sdk\inc\winuser.h
+FILE 5976 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\stdarg.h
+FILE 5977 f:\sp\public\sdk\inc\windef.h
+FILE 5978 f:\sp\public\sdk\inc\mcx.h
+FILE 5979 f:\sp\public\sdk\inc\pshpack8.h
+FILE 5980 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\stdlib.h
+FILE 5981 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\limits.h
+FILE 5982 f:\sp\public\sdk\inc\guiddef.h
+FILE 5983 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\eh\hooks.cpp
+FILE 5984 f:\sp\public\sdk\inc\winnls.h
+FILE 5985 f:\sp\public\sdk\inc\pshpack1.h
+FILE 5986 f:\sp\public\sdk\inc\winnt.h
+FILE 5987 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\ctype.h
+FILE 5988 f:\sp\public\sdk\inc\winerror.h
+FILE 5989 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\mtdll.h
+FILE 5990 f:\sp\public\sdk\inc\winreg.h
+FILE 5991 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\string.h
+FILE 5992 f:\sp\public\sdk\inc\tvout.h
+FILE 5993 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\eh.h
+FILE 5994 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\errno.h
+FILE 5995 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\stddef.h
+FILE 5996 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\crtdefs.h
+FILE 5997 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\sal.h
+FILE 5998 f:\sp\public\sdk\inc\wincon.h
+FILE 5999 f:\sp\public\sdk\inc\imm.h
+FILE 6000 f:\sp\public\sdk\inc\winbase.h
+FILE 6001 f:\sp\public\sdk\inc\wingdi.h
+FILE 6002 f:\sp\public\sdk\inc\winver.h
+FILE 6003 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\ehhooks.h
+FILE 6004 f:\sp\public\sdk\inc\pshpack2.h
+FILE 6005 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\excpt.h
+FILE 6006 f:\sp\public\sdk\inc\reason.h
+FILE 6007 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\ehassert.h
+FILE 6008 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\internal.h
+FILE 6009 f:\sp\public\sdk\inc\specstrings.h
+FILE 6010 f:\sp\public\sdk\inc\basetsd.h
+FILE 6011 f:\sp\public\sdk\inc\pshpack4.h
+FILE 6012 f:\sp\public\sdk\inc\ddbanned.h
+FILE 6013 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\vadefs.h
+FILE 6014 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\cruntime.h
+FILE 6015 f:\sp\public\sdk\inc\winnetwk.h
+FILE 6016 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\crtdbg.h
+FILE 6017 f:\sp\public\sdk\inc\stralign.h
+FILE 6018 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\crtdbg.h
+FILE 6019 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\ehassert.h
+FILE 6020 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\malloc.h
+FILE 6021 f:\sp\public\sdk\inc\wincon.h
+FILE 6022 f:\sp\public\sdk\inc\imm.h
+FILE 6023 f:\sp\public\sdk\inc\guiddef.h
+FILE 6024 f:\sp\public\sdk\inc\winbase.h
+FILE 6025 f:\sp\public\sdk\inc\wingdi.h
+FILE 6026 f:\sp\vctools\langapi\include\ehdata.h
+FILE 6027 f:\sp\public\sdk\inc\winver.h
+FILE 6028 f:\sp\public\sdk\inc\winnt.h
+FILE 6029 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\ctype.h
+FILE 6030 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\stdlib.h
+FILE 6031 f:\sp\public\sdk\inc\pshpack2.h
+FILE 6032 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\limits.h
+FILE 6033 f:\sp\public\sdk\inc\reason.h
+FILE 6034 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\eh\frame.cpp
+FILE 6035 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\stdhpp\exception
+FILE 6036 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\typeinfo.h
+FILE 6037 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\stdhpp\typeinfo
+FILE 6038 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\stdhpp\xstddef
+FILE 6039 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\stdhpp\yvals.h
+FILE 6040 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\stdhpp\use_ansi.h
+FILE 6041 f:\sp\public\sdk\inc\pshpack4.h
+FILE 6042 f:\sp\public\sdk\inc\winnetwk.h
+FILE 6043 f:\sp\public\sdk\inc\stralign.h
+FILE 6044 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\errno.h
+FILE 6045 f:\sp\public\sdk\inc\poppack.h
+FILE 6046 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\stddef.h
+FILE 6047 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\crtdefs.h
+FILE 6048 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\sal.h
+FILE 6049 f:\sp\public\sdk\inc\winsvc.h
+FILE 6050 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\ehstate.h
+FILE 6051 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\eh.h
+FILE 6052 f:\sp\public\sdk\inc\winuser.h
+FILE 6053 f:\sp\public\sdk\inc\windows.h
+FILE 6054 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\excpt.h
+FILE 6055 f:\sp\public\sdk\inc\mcx.h
+FILE 6056 f:\sp\public\sdk\inc\pshpack8.h
+FILE 6057 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\string.h
+FILE 6058 f:\sp\public\sdk\inc\specstrings.h
+FILE 6059 f:\sp\public\sdk\inc\basetsd.h
+FILE 6060 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\ehhooks.h
+FILE 6061 f:\sp\public\sdk\inc\winnls.h
+FILE 6062 f:\sp\public\sdk\inc\pshpack1.h
+FILE 6063 f:\sp\public\sdk\inc\winerror.h
+FILE 6064 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\trnsctrl.h
+FILE 6065 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\internal.h
+FILE 6066 f:\sp\public\sdk\inc\winreg.h
+FILE 6067 f:\sp\public\sdk\inc\ddbanned.h
+FILE 6068 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\vadefs.h
+FILE 6069 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\stdhpp\cstddef
+FILE 6070 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\cruntime.h
+FILE 6071 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\mtdll.h
+FILE 6072 f:\sp\vctools\crt_bld\self_x86\crt\prebuild\h\stdarg.h
+FILE 6073 f:\sp\public\sdk\inc\windef.h
+FILE 6074 f:\sp\public\sdk\inc\tvout.h
+FILE 6075 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 6076 f:\sp\public\sdk\inc\pshpack4.h
+FILE 6077 f:\sp\public\sdk\inc\reason.h
+FILE 6078 f:\sp\public\sdk\inc\wincon.h
+FILE 6079 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 6080 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 6081 f:\sp\public\sdk\inc\poppack.h
+FILE 6082 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 6083 f:\sp\public\sdk\inc\mcx.h
+FILE 6084 f:\sp\public\sdk\inc\winuser.h
+FILE 6085 f:\sp\public\sdk\inc\winnls.h
+FILE 6086 f:\sp\public\sdk\inc\stralign.h
+FILE 6087 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 6088 f:\sp\public\sdk\inc\windef.h
+FILE 6089 f:\sp\public\sdk\inc\tvout.h
+FILE 6090 f:\sp\public\sdk\inc\winsvc.h
+FILE 6091 f:\sp\public\sdk\inc\wingdi.h
+FILE 6092 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 6093 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 6094 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 6095 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 6096 f:\sp\public\sdk\inc\winnt.h
+FILE 6097 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 6098 f:\sp\public\sdk\inc\winnetwk.h
+FILE 6099 f:\sp\public\sdk\inc\imm.h
+FILE 6100 f:\sp\vctools\crt_bld\self_x86\crt\src\dosmap.c
+FILE 6101 f:\sp\public\sdk\inc\winbase.h
+FILE 6102 f:\sp\public\sdk\inc\winerror.h
+FILE 6103 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 6104 f:\sp\public\sdk\inc\pshpack1.h
+FILE 6105 f:\sp\public\sdk\inc\pshpack8.h
+FILE 6106 f:\sp\public\sdk\inc\winver.h
+FILE 6107 f:\sp\public\sdk\inc\ddbanned.h
+FILE 6108 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 6109 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 6110 f:\sp\public\sdk\inc\pshpack2.h
+FILE 6111 f:\sp\public\sdk\inc\winreg.h
+FILE 6112 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 6113 f:\sp\public\sdk\inc\guiddef.h
+FILE 6114 f:\sp\public\sdk\inc\windows.h
+FILE 6115 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 6116 f:\sp\public\sdk\inc\specstrings.h
+FILE 6117 f:\sp\public\sdk\inc\basetsd.h
+FILE 6118 f:\sp\public\sdk\inc\winver.h
+FILE 6119 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 6120 f:\sp\public\sdk\inc\pshpack2.h
+FILE 6121 f:\sp\public\sdk\inc\windows.h
+FILE 6122 f:\sp\public\sdk\inc\reason.h
+FILE 6123 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 6124 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 6125 f:\sp\public\sdk\inc\specstrings.h
+FILE 6126 f:\sp\public\sdk\inc\basetsd.h
+FILE 6127 f:\sp\public\sdk\inc\pshpack4.h
+FILE 6128 f:\sp\vctools\crt_bld\self_x86\crt\src\wctomb.c
+FILE 6129 f:\sp\public\sdk\inc\winnetwk.h
+FILE 6130 f:\sp\public\sdk\inc\stralign.h
+FILE 6131 f:\sp\public\sdk\inc\poppack.h
+FILE 6132 f:\sp\public\sdk\inc\winsvc.h
+FILE 6133 f:\sp\public\sdk\inc\winuser.h
+FILE 6134 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 6135 f:\sp\public\sdk\inc\windef.h
+FILE 6136 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 6137 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 6138 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 6139 f:\sp\public\sdk\inc\mcx.h
+FILE 6140 f:\sp\public\sdk\inc\pshpack8.h
+FILE 6141 f:\sp\public\sdk\inc\guiddef.h
+FILE 6142 f:\sp\public\sdk\inc\winnls.h
+FILE 6143 f:\sp\public\sdk\inc\pshpack1.h
+FILE 6144 f:\sp\public\sdk\inc\winnt.h
+FILE 6145 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 6146 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 6147 f:\sp\vctools\crt_bld\self_x86\crt\src\locale.h
+FILE 6148 f:\sp\public\sdk\inc\winerror.h
+FILE 6149 f:\sp\public\sdk\inc\winreg.h
+FILE 6150 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 6151 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 6152 f:\sp\public\sdk\inc\tvout.h
+FILE 6153 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 6154 f:\sp\public\sdk\inc\ddbanned.h
+FILE 6155 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 6156 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 6157 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 6158 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 6159 f:\sp\public\sdk\inc\wincon.h
+FILE 6160 f:\sp\public\sdk\inc\imm.h
+FILE 6161 f:\sp\public\sdk\inc\winbase.h
+FILE 6162 f:\sp\public\sdk\inc\wingdi.h
+FILE 6163 f:\sp\public\sdk\inc\winsvc.h
+FILE 6164 f:\sp\public\sdk\inc\winuser.h
+FILE 6165 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 6166 f:\sp\public\sdk\inc\mcx.h
+FILE 6167 f:\sp\public\sdk\inc\pshpack8.h
+FILE 6168 f:\sp\public\sdk\inc\guiddef.h
+FILE 6169 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 6170 f:\sp\public\sdk\inc\windows.h
+FILE 6171 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 6172 f:\sp\public\sdk\inc\winnls.h
+FILE 6173 f:\sp\vctools\crt_bld\self_x86\crt\src\wcstol.c
+FILE 6174 f:\sp\public\sdk\inc\pshpack1.h
+FILE 6175 f:\sp\public\sdk\inc\winerror.h
+FILE 6176 f:\sp\public\sdk\inc\winreg.h
+FILE 6177 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 6178 f:\sp\vctools\crt_bld\self_x86\crt\src\locale.h
+FILE 6179 f:\sp\public\sdk\inc\tvout.h
+FILE 6180 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 6181 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 6182 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 6183 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 6184 f:\sp\public\sdk\inc\wincon.h
+FILE 6185 f:\sp\public\sdk\inc\imm.h
+FILE 6186 f:\sp\public\sdk\inc\winbase.h
+FILE 6187 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 6188 f:\sp\public\sdk\inc\wingdi.h
+FILE 6189 f:\sp\public\sdk\inc\windef.h
+FILE 6190 f:\sp\public\sdk\inc\winver.h
+FILE 6191 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 6192 f:\sp\public\sdk\inc\pshpack2.h
+FILE 6193 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 6194 f:\sp\public\sdk\inc\reason.h
+FILE 6195 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 6196 f:\sp\public\sdk\inc\winnt.h
+FILE 6197 f:\sp\public\sdk\inc\specstrings.h
+FILE 6198 f:\sp\public\sdk\inc\basetsd.h
+FILE 6199 f:\sp\public\sdk\inc\pshpack4.h
+FILE 6200 f:\sp\public\sdk\inc\ddbanned.h
+FILE 6201 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 6202 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 6203 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 6204 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 6205 f:\sp\public\sdk\inc\winnetwk.h
+FILE 6206 f:\sp\public\sdk\inc\stralign.h
+FILE 6207 f:\sp\public\sdk\inc\poppack.h
+FILE 6208 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 6209 f:\sp\public\sdk\inc\mcx.h
+FILE 6210 f:\sp\public\sdk\inc\pshpack8.h
+FILE 6211 f:\sp\public\sdk\inc\guiddef.h
+FILE 6212 f:\sp\public\sdk\inc\winnt.h
+FILE 6213 f:\sp\public\sdk\inc\winnls.h
+FILE 6214 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 6215 f:\sp\vctools\crt_bld\self_x86\crt\src\locale.h
+FILE 6216 f:\sp\public\sdk\inc\pshpack1.h
+FILE 6217 f:\sp\public\sdk\inc\winerror.h
+FILE 6218 f:\sp\vctools\crt_bld\self_x86\crt\src\tolower.c
+FILE 6219 f:\sp\public\sdk\inc\winreg.h
+FILE 6220 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 6221 f:\sp\public\sdk\inc\tvout.h
+FILE 6222 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 6223 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 6224 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 6225 f:\sp\public\sdk\inc\wincon.h
+FILE 6226 f:\sp\vctools\crt_bld\self_x86\crt\src\stddef.h
+FILE 6227 f:\sp\public\sdk\inc\imm.h
+FILE 6228 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 6229 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 6230 f:\sp\public\sdk\inc\winbase.h
+FILE 6231 f:\sp\public\sdk\inc\wingdi.h
+FILE 6232 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 6233 f:\sp\public\sdk\inc\winver.h
+FILE 6234 f:\sp\vctools\crt_bld\self_x86\crt\src\awint.h
+FILE 6235 f:\sp\public\sdk\inc\windows.h
+FILE 6236 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 6237 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 6238 f:\sp\public\sdk\inc\pshpack2.h
+FILE 6239 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 6240 f:\sp\public\sdk\inc\reason.h
+FILE 6241 f:\sp\public\sdk\inc\specstrings.h
+FILE 6242 f:\sp\public\sdk\inc\basetsd.h
+FILE 6243 f:\sp\public\sdk\inc\pshpack4.h
+FILE 6244 f:\sp\public\sdk\inc\winnetwk.h
+FILE 6245 f:\sp\public\sdk\inc\ddbanned.h
+FILE 6246 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 6247 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 6248 f:\sp\public\sdk\inc\stralign.h
+FILE 6249 f:\sp\public\sdk\inc\poppack.h
+FILE 6250 f:\sp\public\sdk\inc\winsvc.h
+FILE 6251 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 6252 f:\sp\public\sdk\inc\windef.h
+FILE 6253 f:\sp\public\sdk\inc\winuser.h
+FILE 6254 f:\sp\public\sdk\inc\winsvc.h
+FILE 6255 f:\sp\public\sdk\inc\winuser.h
+FILE 6256 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 6257 f:\sp\public\sdk\inc\mcx.h
+FILE 6258 f:\sp\public\sdk\inc\pshpack8.h
+FILE 6259 f:\sp\public\sdk\inc\guiddef.h
+FILE 6260 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 6261 f:\sp\public\sdk\inc\windows.h
+FILE 6262 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 6263 f:\sp\public\sdk\inc\winnls.h
+FILE 6264 f:\sp\vctools\crt_bld\self_x86\crt\src\strtoq.c
+FILE 6265 f:\sp\public\sdk\inc\pshpack1.h
+FILE 6266 f:\sp\public\sdk\inc\winerror.h
+FILE 6267 f:\sp\public\sdk\inc\winreg.h
+FILE 6268 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 6269 f:\sp\vctools\crt_bld\self_x86\crt\src\locale.h
+FILE 6270 f:\sp\public\sdk\inc\tvout.h
+FILE 6271 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 6272 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 6273 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 6274 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 6275 f:\sp\public\sdk\inc\wincon.h
+FILE 6276 f:\sp\public\sdk\inc\imm.h
+FILE 6277 f:\sp\public\sdk\inc\winbase.h
+FILE 6278 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 6279 f:\sp\public\sdk\inc\wingdi.h
+FILE 6280 f:\sp\public\sdk\inc\windef.h
+FILE 6281 f:\sp\public\sdk\inc\winver.h
+FILE 6282 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 6283 f:\sp\public\sdk\inc\pshpack2.h
+FILE 6284 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 6285 f:\sp\public\sdk\inc\reason.h
+FILE 6286 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 6287 f:\sp\public\sdk\inc\winnt.h
+FILE 6288 f:\sp\public\sdk\inc\specstrings.h
+FILE 6289 f:\sp\public\sdk\inc\basetsd.h
+FILE 6290 f:\sp\public\sdk\inc\pshpack4.h
+FILE 6291 f:\sp\public\sdk\inc\ddbanned.h
+FILE 6292 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 6293 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 6294 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 6295 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 6296 f:\sp\public\sdk\inc\winnetwk.h
+FILE 6297 f:\sp\public\sdk\inc\stralign.h
+FILE 6298 f:\sp\public\sdk\inc\poppack.h
+FILE 6299 f:\sp\public\sdk\inc\winsvc.h
+FILE 6300 f:\sp\public\sdk\inc\winuser.h
+FILE 6301 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 6302 f:\sp\public\sdk\inc\mcx.h
+FILE 6303 f:\sp\public\sdk\inc\pshpack8.h
+FILE 6304 f:\sp\public\sdk\inc\guiddef.h
+FILE 6305 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 6306 f:\sp\public\sdk\inc\windows.h
+FILE 6307 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 6308 f:\sp\public\sdk\inc\winnls.h
+FILE 6309 f:\sp\vctools\crt_bld\self_x86\crt\src\strtol.c
+FILE 6310 f:\sp\public\sdk\inc\pshpack1.h
+FILE 6311 f:\sp\public\sdk\inc\winerror.h
+FILE 6312 f:\sp\public\sdk\inc\winreg.h
+FILE 6313 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 6314 f:\sp\vctools\crt_bld\self_x86\crt\src\locale.h
+FILE 6315 f:\sp\public\sdk\inc\tvout.h
+FILE 6316 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 6317 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 6318 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 6319 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 6320 f:\sp\public\sdk\inc\wincon.h
+FILE 6321 f:\sp\public\sdk\inc\imm.h
+FILE 6322 f:\sp\public\sdk\inc\winbase.h
+FILE 6323 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 6324 f:\sp\public\sdk\inc\wingdi.h
+FILE 6325 f:\sp\public\sdk\inc\windef.h
+FILE 6326 f:\sp\public\sdk\inc\winver.h
+FILE 6327 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 6328 f:\sp\public\sdk\inc\pshpack2.h
+FILE 6329 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 6330 f:\sp\public\sdk\inc\reason.h
+FILE 6331 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 6332 f:\sp\public\sdk\inc\winnt.h
+FILE 6333 f:\sp\public\sdk\inc\specstrings.h
+FILE 6334 f:\sp\public\sdk\inc\basetsd.h
+FILE 6335 f:\sp\public\sdk\inc\pshpack4.h
+FILE 6336 f:\sp\public\sdk\inc\ddbanned.h
+FILE 6337 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 6338 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 6339 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 6340 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 6341 f:\sp\public\sdk\inc\winnetwk.h
+FILE 6342 f:\sp\public\sdk\inc\stralign.h
+FILE 6343 f:\sp\public\sdk\inc\poppack.h
+FILE 6344 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 6345 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 6346 f:\sp\public\sdk\inc\tvout.h
+FILE 6347 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 6348 f:\sp\public\sdk\inc\wincon.h
+FILE 6349 f:\sp\public\sdk\inc\imm.h
+FILE 6350 f:\sp\public\sdk\inc\winbase.h
+FILE 6351 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 6352 f:\sp\public\sdk\inc\wingdi.h
+FILE 6353 f:\sp\public\sdk\inc\windef.h
+FILE 6354 f:\sp\public\sdk\inc\winver.h
+FILE 6355 f:\sp\vctools\crt_bld\self_x86\crt\src\mbtowc.c
+FILE 6356 f:\sp\public\sdk\inc\pshpack2.h
+FILE 6357 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 6358 f:\sp\public\sdk\inc\reason.h
+FILE 6359 f:\sp\public\sdk\inc\winnt.h
+FILE 6360 f:\sp\public\sdk\inc\specstrings.h
+FILE 6361 f:\sp\public\sdk\inc\basetsd.h
+FILE 6362 f:\sp\public\sdk\inc\pshpack4.h
+FILE 6363 f:\sp\vctools\crt_bld\self_x86\crt\src\locale.h
+FILE 6364 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 6365 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 6366 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 6367 f:\sp\public\sdk\inc\winnetwk.h
+FILE 6368 f:\sp\public\sdk\inc\stralign.h
+FILE 6369 f:\sp\public\sdk\inc\poppack.h
+FILE 6370 f:\sp\public\sdk\inc\winsvc.h
+FILE 6371 f:\sp\public\sdk\inc\winuser.h
+FILE 6372 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 6373 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 6374 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 6375 f:\sp\public\sdk\inc\mcx.h
+FILE 6376 f:\sp\public\sdk\inc\pshpack8.h
+FILE 6377 f:\sp\public\sdk\inc\guiddef.h
+FILE 6378 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 6379 f:\sp\public\sdk\inc\windows.h
+FILE 6380 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 6381 f:\sp\public\sdk\inc\winnls.h
+FILE 6382 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 6383 f:\sp\public\sdk\inc\pshpack1.h
+FILE 6384 f:\sp\public\sdk\inc\ddbanned.h
+FILE 6385 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 6386 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 6387 f:\sp\public\sdk\inc\winerror.h
+FILE 6388 f:\sp\public\sdk\inc\winreg.h
+FILE 6389 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 6390 f:\sp\vctools\crt_bld\self_x86\crt\src\swprintf.inl
+FILE 6391 f:\sp\public\sdk\inc\winreg.h
+FILE 6392 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 6393 f:\sp\public\sdk\inc\tvout.h
+FILE 6394 f:\sp\vctools\crt_bld\self_x86\crt\src\dbgint.h
+FILE 6395 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 6396 f:\sp\public\sdk\inc\wincon.h
+FILE 6397 f:\sp\public\sdk\inc\imm.h
+FILE 6398 f:\sp\public\sdk\inc\winbase.h
+FILE 6399 f:\sp\vctools\crt_bld\self_x86\crt\src\isctype.c
+FILE 6400 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 6401 f:\sp\public\sdk\inc\wingdi.h
+FILE 6402 f:\sp\public\sdk\inc\windef.h
+FILE 6403 f:\sp\public\sdk\inc\winver.h
+FILE 6404 f:\sp\public\sdk\inc\pshpack2.h
+FILE 6405 f:\sp\public\sdk\inc\reason.h
+FILE 6406 f:\sp\public\sdk\inc\winnt.h
+FILE 6407 f:\sp\public\sdk\inc\specstrings.h
+FILE 6408 f:\sp\vctools\crt_bld\self_x86\crt\src\locale.h
+FILE 6409 f:\sp\vctools\crt_bld\self_x86\crt\src\stdio.h
+FILE 6410 f:\sp\public\sdk\inc\basetsd.h
+FILE 6411 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 6412 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 6413 f:\sp\public\sdk\inc\pshpack4.h
+FILE 6414 f:\sp\public\sdk\inc\winnetwk.h
+FILE 6415 f:\sp\public\sdk\inc\stralign.h
+FILE 6416 f:\sp\public\sdk\inc\poppack.h
+FILE 6417 f:\sp\public\sdk\inc\winsvc.h
+FILE 6418 f:\sp\public\sdk\inc\winuser.h
+FILE 6419 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 6420 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 6421 f:\sp\public\sdk\inc\mcx.h
+FILE 6422 f:\sp\public\sdk\inc\pshpack8.h
+FILE 6423 f:\sp\public\sdk\inc\guiddef.h
+FILE 6424 f:\sp\public\sdk\inc\ddbanned.h
+FILE 6425 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 6426 f:\sp\vctools\crt_bld\self_x86\crt\src\awint.h
+FILE 6427 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 6428 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 6429 f:\sp\public\sdk\inc\windows.h
+FILE 6430 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 6431 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 6432 f:\sp\public\sdk\inc\winnls.h
+FILE 6433 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 6434 f:\sp\public\sdk\inc\pshpack1.h
+FILE 6435 f:\sp\public\sdk\inc\winerror.h
+FILE 6436 f:\sp\vctools\crt_bld\self_x86\crt\src\swprintf.inl
+FILE 6437 f:\sp\public\sdk\inc\winreg.h
+FILE 6438 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 6439 f:\sp\public\sdk\inc\tvout.h
+FILE 6440 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 6441 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 6442 f:\sp\public\sdk\inc\wincon.h
+FILE 6443 f:\sp\public\sdk\inc\imm.h
+FILE 6444 f:\sp\public\sdk\inc\winbase.h
+FILE 6445 f:\sp\vctools\crt_bld\self_x86\crt\src\iswctype.c
+FILE 6446 f:\sp\public\sdk\inc\wingdi.h
+FILE 6447 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 6448 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 6449 f:\sp\public\sdk\inc\winver.h
+FILE 6450 f:\sp\vctools\crt_bld\self_x86\crt\src\awint.h
+FILE 6451 f:\sp\public\sdk\inc\windows.h
+FILE 6452 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 6453 f:\sp\public\sdk\inc\pshpack2.h
+FILE 6454 f:\sp\public\sdk\inc\reason.h
+FILE 6455 f:\sp\public\sdk\inc\specstrings.h
+FILE 6456 f:\sp\vctools\crt_bld\self_x86\crt\src\stdio.h
+FILE 6457 f:\sp\public\sdk\inc\basetsd.h
+FILE 6458 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 6459 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 6460 f:\sp\public\sdk\inc\pshpack4.h
+FILE 6461 f:\sp\public\sdk\inc\winnetwk.h
+FILE 6462 f:\sp\public\sdk\inc\stralign.h
+FILE 6463 f:\sp\public\sdk\inc\poppack.h
+FILE 6464 f:\sp\public\sdk\inc\winsvc.h
+FILE 6465 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 6466 f:\sp\public\sdk\inc\windef.h
+FILE 6467 f:\sp\public\sdk\inc\winuser.h
+FILE 6468 f:\sp\public\sdk\inc\mcx.h
+FILE 6469 f:\sp\public\sdk\inc\pshpack8.h
+FILE 6470 f:\sp\public\sdk\inc\guiddef.h
+FILE 6471 f:\sp\public\sdk\inc\ddbanned.h
+FILE 6472 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 6473 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 6474 f:\sp\public\sdk\inc\winnt.h
+FILE 6475 f:\sp\public\sdk\inc\winnls.h
+FILE 6476 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 6477 f:\sp\vctools\crt_bld\self_x86\crt\src\locale.h
+FILE 6478 f:\sp\public\sdk\inc\pshpack1.h
+FILE 6479 f:\sp\public\sdk\inc\winerror.h
+FILE 6480 f:\sp\public\sdk\inc\winsvc.h
+FILE 6481 f:\sp\public\sdk\inc\winuser.h
+FILE 6482 f:\sp\public\sdk\inc\mcx.h
+FILE 6483 f:\sp\public\sdk\inc\pshpack8.h
+FILE 6484 f:\sp\public\sdk\inc\guiddef.h
+FILE 6485 f:\sp\vctools\crt_bld\self_x86\crt\src\locale.h
+FILE 6486 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 6487 f:\sp\public\sdk\inc\windows.h
+FILE 6488 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 6489 f:\sp\public\sdk\inc\winnls.h
+FILE 6490 f:\sp\vctools\crt_bld\self_x86\crt\src\_wctype.c
+FILE 6491 f:\sp\public\sdk\inc\pshpack1.h
+FILE 6492 f:\sp\public\sdk\inc\winerror.h
+FILE 6493 f:\sp\public\sdk\inc\winreg.h
+FILE 6494 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 6495 f:\sp\public\sdk\inc\tvout.h
+FILE 6496 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 6497 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 6498 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 6499 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 6500 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 6501 f:\sp\public\sdk\inc\wincon.h
+FILE 6502 f:\sp\public\sdk\inc\imm.h
+FILE 6503 f:\sp\public\sdk\inc\winbase.h
+FILE 6504 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 6505 f:\sp\public\sdk\inc\wingdi.h
+FILE 6506 f:\sp\public\sdk\inc\windef.h
+FILE 6507 f:\sp\vctools\crt_bld\self_x86\crt\src\mbctype.h
+FILE 6508 f:\sp\public\sdk\inc\winver.h
+FILE 6509 f:\sp\public\sdk\inc\pshpack2.h
+FILE 6510 f:\sp\public\sdk\inc\reason.h
+FILE 6511 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 6512 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 6513 f:\sp\public\sdk\inc\winnt.h
+FILE 6514 f:\sp\public\sdk\inc\specstrings.h
+FILE 6515 f:\sp\public\sdk\inc\basetsd.h
+FILE 6516 f:\sp\public\sdk\inc\pshpack4.h
+FILE 6517 f:\sp\public\sdk\inc\ddbanned.h
+FILE 6518 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 6519 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 6520 f:\sp\public\sdk\inc\winnetwk.h
+FILE 6521 f:\sp\public\sdk\inc\stralign.h
+FILE 6522 f:\sp\public\sdk\inc\poppack.h
+FILE 6523 f:\sp\public\sdk\inc\mcx.h
+FILE 6524 f:\sp\public\sdk\inc\pshpack8.h
+FILE 6525 f:\sp\public\sdk\inc\guiddef.h
+FILE 6526 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 6527 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 6528 f:\sp\public\sdk\inc\windows.h
+FILE 6529 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 6530 f:\sp\public\sdk\inc\winnls.h
+FILE 6531 f:\sp\public\sdk\inc\pshpack1.h
+FILE 6532 f:\sp\public\sdk\inc\winerror.h
+FILE 6533 f:\sp\public\sdk\inc\winreg.h
+FILE 6534 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 6535 f:\sp\vctools\crt_bld\self_x86\crt\src\_ctype.c
+FILE 6536 f:\sp\public\sdk\inc\tvout.h
+FILE 6537 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 6538 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 6539 f:\sp\public\sdk\inc\wincon.h
+FILE 6540 f:\sp\public\sdk\inc\imm.h
+FILE 6541 f:\sp\public\sdk\inc\winbase.h
+FILE 6542 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 6543 f:\sp\public\sdk\inc\wingdi.h
+FILE 6544 f:\sp\public\sdk\inc\windef.h
+FILE 6545 f:\sp\public\sdk\inc\winver.h
+FILE 6546 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 6547 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 6548 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 6549 f:\sp\public\sdk\inc\pshpack2.h
+FILE 6550 f:\sp\public\sdk\inc\reason.h
+FILE 6551 f:\sp\public\sdk\inc\winnt.h
+FILE 6552 f:\sp\vctools\crt_bld\self_x86\crt\src\locale.h
+FILE 6553 f:\sp\public\sdk\inc\specstrings.h
+FILE 6554 f:\sp\public\sdk\inc\basetsd.h
+FILE 6555 f:\sp\public\sdk\inc\pshpack4.h
+FILE 6556 f:\sp\public\sdk\inc\winnetwk.h
+FILE 6557 f:\sp\public\sdk\inc\stralign.h
+FILE 6558 f:\sp\public\sdk\inc\poppack.h
+FILE 6559 f:\sp\public\sdk\inc\winsvc.h
+FILE 6560 f:\sp\public\sdk\inc\ddbanned.h
+FILE 6561 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 6562 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 6563 f:\sp\public\sdk\inc\winuser.h
+FILE 6564 f:\sp\public\sdk\inc\pshpack2.h
+FILE 6565 f:\sp\public\sdk\inc\mcx.h
+FILE 6566 f:\sp\public\sdk\inc\winuser.h
+FILE 6567 f:\sp\public\sdk\inc\winnls.h
+FILE 6568 f:\sp\public\sdk\inc\stralign.h
+FILE 6569 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 6570 f:\sp\public\sdk\inc\windef.h
+FILE 6571 f:\sp\public\sdk\inc\tvout.h
+FILE 6572 f:\sp\public\sdk\inc\winsvc.h
+FILE 6573 f:\sp\vctools\crt_bld\self_x86\crt\src\internal_securecrt.h
+FILE 6574 f:\sp\public\sdk\inc\wingdi.h
+FILE 6575 f:\sp\public\sdk\inc\pshpack4.h
+FILE 6576 f:\sp\public\sdk\inc\poppack.h
+FILE 6577 f:\sp\public\sdk\inc\winnt.h
+FILE 6578 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 6579 f:\sp\public\sdk\inc\winnetwk.h
+FILE 6580 f:\sp\public\sdk\inc\imm.h
+FILE 6581 f:\sp\vctools\crt_bld\self_x86\crt\src\xtoa.c
+FILE 6582 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 6583 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdbg.h
+FILE 6584 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 6585 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 6586 f:\sp\vctools\crt_bld\self_x86\crt\src\mbstring.h
+FILE 6587 f:\sp\vctools\crt_bld\self_x86\crt\src\xtoas.c
+FILE 6588 f:\sp\public\sdk\inc\pshpack1.h
+FILE 6589 f:\sp\public\sdk\inc\winver.h
+FILE 6590 f:\sp\vctools\crt_bld\self_x86\crt\src\errno.h
+FILE 6591 f:\sp\public\sdk\inc\guiddef.h
+FILE 6592 f:\sp\public\sdk\inc\specstrings.h
+FILE 6593 f:\sp\public\sdk\inc\basetsd.h
+FILE 6594 f:\sp\public\sdk\inc\winreg.h
+FILE 6595 f:\sp\public\sdk\inc\ddbanned.h
+FILE 6596 f:\sp\vctools\crt_bld\self_x86\crt\src\internal.h
+FILE 6597 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 6598 f:\sp\public\sdk\inc\windows.h
+FILE 6599 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 6600 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 6601 f:\sp\public\sdk\inc\winbase.h
+FILE 6602 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 6603 f:\sp\public\sdk\inc\winerror.h
+FILE 6604 f:\sp\public\sdk\inc\pshpack8.h
+FILE 6605 f:\sp\vctools\crt_bld\self_x86\crt\src\tchar.h
+FILE 6606 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 6607 f:\sp\public\sdk\inc\reason.h
+FILE 6608 f:\sp\public\sdk\inc\wincon.h
+FILE 6609 f:\sp\vctools\crt_bld\self_x86\crt\src\swprintf.inl
+FILE 6610 f:\sp\vctools\crt_bld\self_x86\crt\src\wchar.h
+FILE 6611 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 6612 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 6613 f:\sp\vctools\crt_bld\self_x86\crt\src\wchtodig.c
+FILE 6614 f:\sp\public\sdk\inc\ddbanned.h
+FILE 6615 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 6616 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 6617 f:\sp\vctools\crt_bld\self_x86\crt\src\wtime.inl
+FILE 6618 f:\sp\public\sdk\inc\poppack.h
+FILE 6619 f:\sp\public\sdk\inc\winnetwk.h
+FILE 6620 f:\sp\public\sdk\inc\imm.h
+FILE 6621 f:\sp\vctools\crt_bld\self_x86\crt\src\stdarg.h
+FILE 6622 f:\sp\public\sdk\inc\windef.h
+FILE 6623 f:\sp\public\sdk\inc\pshpack1.h
+FILE 6624 f:\sp\public\sdk\inc\winver.h
+FILE 6625 f:\sp\vctools\crt_bld\self_x86\crt\src\mtdll.h
+FILE 6626 f:\sp\vctools\crt_bld\self_x86\crt\src\crtdefs.h
+FILE 6627 f:\sp\vctools\crt_bld\self_x86\crt\src\sal.h
+FILE 6628 f:\sp\public\sdk\inc\winnt.h
+FILE 6629 f:\sp\vctools\crt_bld\self_x86\crt\src\ctype.h
+FILE 6630 f:\sp\public\sdk\inc\winreg.h
+FILE 6631 f:\sp\vctools\crt_bld\self_x86\crt\src\atox.c
+FILE 6632 f:\sp\public\sdk\inc\winbase.h
+FILE 6633 f:\sp\public\sdk\inc\winerror.h
+FILE 6634 f:\sp\public\sdk\inc\pshpack8.h
+FILE 6635 f:\sp\vctools\crt_bld\self_x86\crt\src\setlocal.h
+FILE 6636 f:\sp\vctools\crt_bld\self_x86\crt\src\oscalls.h
+FILE 6637 f:\sp\public\sdk\inc\reason.h
+FILE 6638 f:\sp\public\sdk\inc\wincon.h
+FILE 6639 f:\sp\public\sdk\inc\ddbanned.h
+FILE 6640 f:\sp\vctools\crt_bld\self_x86\crt\src\vadefs.h
+FILE 6641 f:\sp\vctools\crt_bld\self_x86\crt\src\cruntime.h
+FILE 6642 f:\sp\public\sdk\inc\pshpack2.h
+FILE 6643 f:\sp\vctools\crt_bld\self_x86\crt\src\tchar.h
+FILE 6644 f:\sp\vctools\crt_bld\self_x86\crt\src\stdlib.h
+FILE 6645 f:\sp\vctools\crt_bld\self_x86\crt\src\mbstring.h
+FILE 6646 f:\sp\public\sdk\inc\mcx.h
+FILE 6647 f:\sp\public\sdk\inc\winuser.h
+FILE 6648 f:\sp\vctools\crt_bld\self_x86\crt\src\limits.h
+FILE 6649 f:\sp\public\sdk\inc\winnls.h
+FILE 6650 f:\sp\public\sdk\inc\guiddef.h
+FILE 6651 f:\sp\public\sdk\inc\windows.h
+FILE 6652 f:\sp\vctools\crt_bld\self_x86\crt\src\excpt.h
+FILE 6653 f:\sp\vctools\crt_bld\self_x86\crt\src\mbctype.h
+FILE 6654 f:\sp\public\sdk\inc\specstrings.h
+FILE 6655 f:\sp\public\sdk\inc\basetsd.h
+FILE 6656 f:\sp\public\sdk\inc\stralign.h
+FILE 6657 f:\sp\public\sdk\inc\tvout.h
+FILE 6658 f:\sp\public\sdk\inc\winsvc.h
+FILE 6659 f:\sp\vctools\crt_bld\self_x86\crt\src\string.h
+FILE 6660 f:\sp\public\sdk\inc\wingdi.h
+FILE 6661 f:\sp\public\sdk\inc\pshpack4.h
+FUNC 1000 13 4 vswprintf
+1000 0 50 71
+1000 12 51 71
+1012 1 52 71
+FUNC 1020 1b 10 wmemcpy_s
+1020 0 1230 66
+1020 1b 1233 66
+FUNC 1040 1b 10 wmemmove_s
+1040 0 1250 66
+1040 1b 1253 66
+FUNC 1060 19 4 std::bad_alloc::bad_alloc(char const *)
+1060 13 371 83
+1073 6 372 83
+FUNC 1080 b 0 std::bad_alloc::~bad_alloc()
+1080 6 380 83
+1086 5 381 83
+FUNC 1090 24 0 std::bad_alloc::`vector deleting destructor'(unsigned int)
+FUNC 10c0 f 8 std::char_traits<wchar_t>::assign(wchar_t &,wchar_t const &)
+10c0 0 302 70
+10c0 e 303 70
+10ce 1 304 70
+FUNC 10d0 17 4 std::char_traits<wchar_t>::length(wchar_t const *)
+10d0 0 325 70
+10d0 16 327 70
+10e6 1 328 70
+FUNC 10f0 27 10 std::char_traits<wchar_t>::_Copy_s(wchar_t *,unsigned int,wchar_t const *,unsigned int)
+10f0 0 340 70
+10f0 23 343 70
+1113 3 344 70
+1116 1 345 70
+FUNC 1120 27 10 std::char_traits<wchar_t>::_Move_s(wchar_t *,unsigned int,wchar_t const *,unsigned int)
+1120 0 364 70
+1120 23 367 70
+1143 3 368 70
+1146 1 369 70
+FUNC 1150 d 8 std::char_traits<char>::assign(char &,char const &)
+1150 0 417 70
+1150 c 418 70
+115c 1 419 70
+FUNC 1160 13 4 std::char_traits<char>::length(char const *)
+1160 0 440 70
+1160 12 442 70
+1172 1 443 70
+FUNC 1180 21 10 std::char_traits<char>::_Copy_s(char *,unsigned int,char const *,unsigned int)
+1180 0 455 70
+1180 1d 458 70
+119d 3 459 70
+11a0 1 460 70
+FUNC 11b0 21 10 std::char_traits<char>::_Move_s(char *,unsigned int,char const *,unsigned int)
+11b0 0 479 70
+11b0 1d 482 70
+11cd 3 483 70
+11d0 1 484 70
+FUNC 11e0 7 0 std::_Iterator_base::_Iterator_base()
+11e0 6 441 65
+11e6 1 442 65
+FUNC 11f0 6b 4 std::logic_error::logic_error(std::basic_string<char,std::char_traits<char>,std::allocator<char> > const &)
+11f0 56 27 82
+1246 15 28 82
+FUNC 1260 32 0 std::logic_error::~logic_error()
+1260 9 31 82
+1269 29 32 82
+FUNC 12a0 e 0 std::logic_error::what()
+12a0 0 35 82
+12a0 9 36 82
+12a9 1 37 82
+12aa 3 36 82
+12ad 1 37 82
+FUNC 12b0 47 0 std::logic_error::`scalar deleting destructor'(unsigned int)
+FUNC 1300 19 4 std::length_error::length_error(std::basic_string<char,std::char_traits<char>,std::allocator<char> > const &)
+1300 13 106 82
+1313 6 107 82
+FUNC 1320 32 0 std::length_error::~length_error()
+1320 3 110 82
+1323 2f 111 82
+FUNC 1360 47 0 std::length_error::`vector deleting destructor'(unsigned int)
+FUNC 13b0 19 4 std::out_of_range::out_of_range(std::basic_string<char,std::char_traits<char>,std::allocator<char> > const &)
+13b0 13 130 82
+13c3 6 131 82
+FUNC 13d0 32 0 std::out_of_range::~out_of_range()
+13d0 3 134 82
+13d3 2f 135 82
+FUNC 1410 47 0 std::out_of_range::`vector deleting destructor'(unsigned int)
+FUNC 1460 19 4 std::out_of_range::out_of_range(std::out_of_range const &)
+FUNC 1480 71 4 std::logic_error::logic_error(std::logic_error const &)
+FUNC 1500 1b 8 google_breakpad::WindowsStringUtils::safe_swprintf(wchar_t *,unsigned int,wchar_t const *,...)
+1500 0 94 63
+1500 1a 97 63
+151a 1 105 63
+FUNC 1520 35 0 google_breakpad::ExceptionHandler::set_dump_path(std::basic_string<wchar_t,std::char_traits<wchar_t>,std::allocator<wchar_t> > const &)
+1520 4 137 43
+1524 f 138 43
+1533 c 139 43
+153f 7 140 43
+1546 1 141 43
+1547 6 139 43
+154d 7 140 43
+1554 1 141 43
+FUNC 1560 20b 14 google_breakpad::ExceptionHandler::ExceptionHandler(std::basic_string<wchar_t,std::char_traits<wchar_t>,std::allocator<wchar_t> > const &,bool (*)(void *,_EXCEPTION_POINTERS *,MDRawAssertionInfo *),bool (*)(wchar_t const *,wchar_t const *,void *,_EXCEPTION_POINTERS *,MDRawAssertionInfo *,bool),void *,bool)
+1560 6d 75 12
+15cd 90 78 12
+165d 9 86 12
+1666 d 87 12
+1673 d 88 12
+1680 1e 96 12
+169e 11 98 12
+16af 7 99 12
+16b6 f 101 12
+16c5 a 104 12
+16cf 8 105 12
+16d7 7 106 12
+16de 7 107 12
+16e5 b 110 12
+16f0 8 114 12
+16f8 25 115 12
+171d d 117 12
+172a b 118 12
+1735 10 121 12
+1745 e 124 12
+1753 18 126 12
+FUNC 1770 274 0 google_breakpad::ExceptionHandler::~ExceptionHandler()
+1770 e 128 12
+177e a 129 12
+1788 7 130 12
+178f a 133 12
+1799 b 134 12
+17a4 a 136 12
+17ae 9 139 12
+17b7 63 142 12
+181a 23 143 12
+183d 5 144 12
+1842 13 147 12
+1855 2b 149 12
+1880 2a 151 12
+18aa 17 152 12
+18c1 2c 153 12
+18ed 19 151 12
+1906 11 158 12
+1917 23 161 12
+193a 6 162 12
+1940 d 165 12
+194d f 169 12
+195c d 170 12
+1969 f 171 12
+1978 9 172 12
+1981 63 173 12
+FUNC 19f0 31 0 std::vector<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >::`scalar deleting destructor'(unsigned int)
+FUNC 1a30 51 4 google_breakpad::ExceptionHandler::ExceptionHandlerThreadMain(void *)
+1a30 13 176 12
+1a43 f 182 12
+1a52 1a 185 12
+1a6c 13 188 12
+1a7f 2 190 12
+FUNC 1a90 c7 4 google_breakpad::AutoExceptionHandler::AutoExceptionHandler()
+1a90 7 204 12
+1a97 b 221 12
+1aa2 82 224 12
+1b24 d 225 12
+1b31 c 229 12
+1b3d e 231 12
+1b4b c 233 12
+FUNC 1b60 36 0 google_breakpad::AutoExceptionHandler::~AutoExceptionHandler()
+1b60 0 235 12
+1b60 b 237 12
+1b6b d 239 12
+1b78 b 242 12
+1b83 7 243 12
+1b8a b 244 12
+1b95 1 245 12
+FUNC 1ba0 3 0 google_breakpad::AutoExceptionHandler::get_handler()
+1ba0 3 247 12
+FUNC 1bb0 c4 4 google_breakpad::ExceptionHandler::HandleException(_EXCEPTION_POINTERS *)
+1bb0 2b 254 12
+1bdb a 255 12
+1be5 f 262 12
+1bf4 1e 265 12
+1c12 5 273 12
+1c17 2 274 12
+1c19 7 283 12
+1c20 5 284 12
+1c25 2 285 12
+1c27 2 286 12
+1c29 37 290 12
+1c60 14 291 12
+FUNC 1c80 121 14 google_breakpad::ExceptionHandler::HandleInvalidParameter(wchar_t const *,wchar_t const *,wchar_t const *,unsigned int,unsigned int)
+1c80 40 299 12
+1cc0 b7 319 12
+1d77 7 320 12
+1d7e 14 323 12
+1d92 2 324 12
+1d94 5 337 12
+1d99 8 345 12
+FUNC 1db0 81 8 google_breakpad::ExceptionHandler::WriteMinidumpOnHandlerThread(_EXCEPTION_POINTERS *,MDRawAssertionInfo *)
+1db0 2 350 12
+1db2 d 351 12
+1dbf 6 354 12
+1dc5 2b 359 12
+1df0 f 362 12
+1dff 6 363 12
+1e05 26 370 12
+1e2b 3 372 12
+1e2e 3 373 12
+FUNC 1e40 1d 0 google_breakpad::ExceptionHandler::WriteMinidump()
+1e40 3 375 12
+1e43 b 376 12
+1e4e b 377 12
+1e59 3 378 12
+1e5c 1 379 12
+FUNC 1e60 a2 4 google_breakpad::ExceptionHandler::WriteMinidump(std::basic_string<wchar_t,std::char_traits<wchar_t>,std::allocator<wchar_t> > const &,bool (*)(wchar_t const *,wchar_t const *,void *,_EXCEPTION_POINTERS *,MDRawAssertionInfo *,bool),void *)
+1e60 41 384 12
+1ea1 10 385 12
+1eb1 2a 386 12
+1edb 27 387 12
+FUNC 1f10 142 c google_breakpad::ExceptionHandler::WriteMinidumpWithException(unsigned long,_EXCEPTION_POINTERS *,MDRawAssertionInfo *)
+1f10 0 392 12
+1f10 22 399 12
+1f32 7 466 12
+1f39 2 403 12
+1f3b e 404 12
+1f49 1f 411 12
+1f68 9 412 12
+1f71 8 414 12
+1f79 4 415 12
+1f7d 8 416 12
+1f85 8 426 12
+1f8d a 427 12
+1f97 34 440 12
+1fcb 8 441 12
+1fd3 8 442 12
+1fdb 4 443 12
+1fdf 8 444 12
+1fe7 30 454 12
+2017 c 456 12
+2023 7 460 12
+202a 1e 462 12
+2048 4 465 12
+204c 6 466 12
+FUNC 2060 138 0 google_breakpad::ExceptionHandler::UpdateNextID()
+2060 38 468 12
+2098 b 470 12
+20a3 4a 471 12
+20ed 25 472 12
+2112 1c 477 12
+212e 31 478 12
+215f 14 479 12
+2173 25 480 12
+FUNC 21a0 3b 4 std::basic_string<char,std::char_traits<char>,std::allocator<char> >::basic_string<char,std::char_traits<char>,std::allocator<char> >(char const *)
+21a0 0 650 17
+21a0 35 652 17
+21d5 6 653 17
+FUNC 21e0 25 4 std::basic_string<char,std::char_traits<char>,std::allocator<char> >::basic_string<char,std::char_traits<char>,std::allocator<char> >(std::basic_string<char,std::char_traits<char>,std::allocator<char> > const &)
+21e0 1 720 17
+21e1 4 721 17
+21e5 1a 722 17
+21ff 6 723 17
+FUNC 2210 26 0 std::basic_string<char,std::char_traits<char>,std::allocator<char> >::~basic_string<char,std::char_traits<char>,std::allocator<char> >()
+2210 3 904 17
+2213 22 905 17
+2235 1 906 17
+FUNC 2240 e 0 std::basic_string<char,std::char_traits<char>,std::allocator<char> >::c_str()
+2240 0 1621 17
+2240 9 1622 17
+2249 1 1623 17
+224a 3 1622 17
+224d 1 1623 17
+FUNC 2250 4 0 std::basic_string<char,std::char_traits<char>,std::allocator<char> >::size()
+2250 0 1636 17
+2250 3 1637 17
+2253 1 1638 17
+FUNC 2260 11 0 std::basic_string<wchar_t,std::char_traits<wchar_t>,std::allocator<wchar_t> >::basic_string<wchar_t,std::char_traits<wchar_t>,std::allocator<wchar_t> >()
+2260 0 564 17
+2260 10 565 17
+2270 1 566 17
+FUNC 2280 27 0 std::basic_string<wchar_t,std::char_traits<wchar_t>,std::allocator<wchar_t> >::~basic_string<wchar_t,std::char_traits<wchar_t>,std::allocator<wchar_t> >()
+2280 3 904 17
+2283 23 905 17
+22a6 1 906 17
+FUNC 22b0 b 0 std::basic_string<wchar_t,std::char_traits<wchar_t>,std::allocator<wchar_t> >::operator=(std::basic_string<wchar_t,std::char_traits<wchar_t>,std::allocator<wchar_t> > const &)
+22b0 0 914 17
+22b0 a 915 17
+22ba 1 916 17
+FUNC 22c0 24 4 std::basic_string<wchar_t,std::char_traits<wchar_t>,std::allocator<wchar_t> >::operator=(wchar_t const *)
+22c0 0 919 17
+22c0 21 920 17
+22e1 3 921 17
+FUNC 22f0 e 0 std::basic_string<wchar_t,std::char_traits<wchar_t>,std::allocator<wchar_t> >::c_str()
+22f0 0 1621 17
+22f0 9 1622 17
+22f9 1 1623 17
+22fa 3 1622 17
+22fd 1 1623 17
+FUNC 2300 c 0 std::vector<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >::vector<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >()
+2300 0 457 23
+2300 b 458 23
+230b 1 459 23
+FUNC 2310 26 0 std::vector<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >::~vector<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >()
+2310 0 545 23
+2310 25 546 23
+2335 1 547 23
+FUNC 2340 1d 0 std::vector<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >::begin()
+2340 1 627 23
+2341 1b 628 23
+235c 1 629 23
+FUNC 2360 1d 0 std::vector<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >::end()
+2360 1 637 23
+2361 1b 638 23
+237c 1 639 23
+FUNC 2380 13 0 std::vector<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >::size()
+2380 0 702 23
+2380 9 703 23
+2389 1 704 23
+238a 8 703 23
+2392 1 704 23
+FUNC 23a0 23 0 std::vector<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >::empty()
+23a0 0 712 23
+23a0 10 713 23
+23b0 1 714 23
+23b1 11 713 23
+23c2 1 714 23
+FUNC 23d0 56 0 std::vector<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >::at(unsigned int)
+23d0 b 729 23
+23db 15 730 23
+23f0 5 731 23
+23f5 29 732 23
+241e 8 733 23
+FUNC 2430 47 0 std::vector<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >::back()
+2430 c 776 23
+243c 32 777 23
+246e 9 778 23
+FUNC 2480 68 0 std::vector<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >::push_back(google_breakpad::ExceptionHandler * const &)
+2480 10 786 23
+2490 24 787 23
+24b4 d 796 23
+24c1 6 801 23
+24c7 1b 800 23
+24e2 6 801 23
+FUNC 24f0 23 0 std::vector<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >::pop_back()
+24f0 6 818 23
+24f6 15 819 23
+250b 6 822 23
+2511 2 824 23
+FUNC 2520 3f 8 std::vector<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >::erase(std::_Vector_iterator<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >)
+2520 7 996 23
+2527 24 998 23
+254b 11 1001 23
+255c 3 1002 23
+FUNC 2560 20 0 std::_Vector_iterator<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >::operator*()
+2560 0 325 23
+2560 1c 326 23
+257c 1 327 23
+257d 2 326 23
+257f 1 327 23
+FUNC 2580 20 0 std::_Vector_iterator<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >::operator++()
+2580 0 335 23
+2580 1d 336 23
+259d 2 337 23
+259f 1 338 23
+FUNC 25a0 1d 0 std::_Vector_const_iterator<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >::operator!=(std::_Vector_const_iterator<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> > const &)
+25a0 0 202 23
+25a0 1c 203 23
+25bc 1 204 23
+FUNC 25c0 da c std::basic_string<char,std::char_traits<char>,std::allocator<char> >::assign(std::basic_string<char,std::char_traits<char>,std::allocator<char> > const &,unsigned int,unsigned int)
+25c0 1 1038 17
+25c1 12 1039 17
+25d3 5 1040 17
+25d8 3 1041 17
+25db a 1042 17
+25e5 2 1043 17
+25e7 4 1045 17
+25eb 17 1046 17
+2602 5 1052 17
+2607 3 1053 17
+260a 21 1047 17
+262b b 1049 17
+2636 13 1047 17
+2649 5 1052 17
+264e 3 1053 17
+2651 7 1047 17
+2658 5 1052 17
+265d 3 1053 17
+2660 22 1049 17
+2682 10 1050 17
+2692 5 1052 17
+2697 3 1053 17
+FUNC 26a0 27 4 std::basic_string<char,std::char_traits<char>,std::allocator<char> >::assign(char const *)
+26a0 1 1069 17
+26a1 23 1070 17
+26c4 3 1071 17
+FUNC 26d0 4a 8 std::basic_string<char,std::char_traits<char>,std::allocator<char> >::_Tidy(bool,unsigned int)
+26d0 0 2066 17
+26d0 f 2067 17
+26df 6 2069 17
+26e5 a 2072 17
+26ef d 2073 17
+26fc a 2074 17
+2706 11 2077 17
+2717 3 2078 17
+FUNC 2720 e 0 std::basic_string<char,std::char_traits<char>,std::allocator<char> >::_Myptr()
+2720 0 2092 17
+2720 9 2093 17
+2729 1 2094 17
+272a 3 2093 17
+272d 1 2094 17
+FUNC 2730 5 4 std::_String_val<char,std::allocator<char> >::_String_val<char,std::allocator<char> >(std::allocator<char>)
+2730 2 471 17
+2732 3 472 17
+FUNC 2740 5 4 std::_String_val<char,std::allocator<char> >::_String_val<char,std::allocator<char> >(std::_String_val<char,std::allocator<char> > const &)
+2740 2 477 17
+2742 3 484 17
+FUNC 2750 3 0 std::allocator<char>::allocator<char>()
+2750 2 120 19
+2752 1 122 19
+FUNC 2760 b 0 std::basic_string<wchar_t,std::char_traits<wchar_t>,std::allocator<wchar_t> >::assign(std::basic_string<wchar_t,std::char_traits<wchar_t>,std::allocator<wchar_t> > const &)
+2760 0 1032 17
+2760 a 1033 17
+276a 1 1034 17
+FUNC 2770 ef c std::basic_string<wchar_t,std::char_traits<wchar_t>,std::allocator<wchar_t> >::assign(std::basic_string<wchar_t,std::char_traits<wchar_t>,std::allocator<wchar_t> > const &,unsigned int,unsigned int)
+2770 1 1038 17
+2771 12 1039 17
+2783 5 1040 17
+2788 3 1041 17
+278b a 1042 17
+2795 2 1043 17
+2797 4 1045 17
+279b 17 1046 17
+27b2 5 1052 17
+27b7 3 1053 17
+27ba 24 1047 17
+27de b 1049 17
+27e9 13 1047 17
+27fc 5 1052 17
+2801 3 1053 17
+2804 9 1047 17
+280d 5 1052 17
+2812 3 1053 17
+2815 2f 1049 17
+2844 13 1050 17
+2857 5 1052 17
+285c 3 1053 17
+FUNC 2860 2b 4 std::basic_string<wchar_t,std::char_traits<wchar_t>,std::allocator<wchar_t> >::assign(wchar_t const *)
+2860 1 1069 17
+2861 27 1070 17
+2888 3 1071 17
+FUNC 2890 4f 8 std::basic_string<wchar_t,std::char_traits<wchar_t>,std::allocator<wchar_t> >::_Tidy(bool,unsigned int)
+2890 0 2066 17
+2890 f 2067 17
+289f 6 2069 17
+28a5 a 2072 17
+28af 10 2073 17
+28bf a 2074 17
+28c9 13 2077 17
+28dc 3 2078 17
+FUNC 28e0 e 0 std::basic_string<wchar_t,std::char_traits<wchar_t>,std::allocator<wchar_t> >::_Myptr()
+28e0 0 2092 17
+28e0 9 2093 17
+28e9 1 2094 17
+28ea 3 2093 17
+28ed 1 2094 17
+FUNC 28f0 5 4 std::_String_val<wchar_t,std::allocator<wchar_t> >::_String_val<wchar_t,std::allocator<wchar_t> >(std::allocator<wchar_t>)
+28f0 2 471 17
+28f2 3 472 17
+FUNC 2900 3 0 std::allocator<wchar_t>::allocator<wchar_t>()
+2900 2 120 19
+2902 1 122 19
+FUNC 2910 13 0 std::vector<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >::capacity()
+2910 0 621 23
+2910 9 622 23
+2919 1 623 23
+291a 8 622 23
+2922 1 623 23
+FUNC 2930 86 c std::vector<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >::insert(std::_Vector_iterator<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >,google_breakpad::ExceptionHandler * const &)
+2930 3 852 23
+2933 3e 853 23
+2971 11 854 23
+2982 2a 855 23
+29ac a 856 23
+FUNC 29c0 23 0 std::vector<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >::_Buy(unsigned int)
+29c0 0 1066 23
+29c0 8 1070 23
+29c8 5 1071 23
+29cd a 1074 23
+29d7 3 1075 23
+29da 6 1076 23
+29e0 2 1078 23
+29e2 1 1079 23
+FUNC 29f0 1 0 std::vector<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >::_Destroy(google_breakpad::ExceptionHandler * *,google_breakpad::ExceptionHandler * *)
+29f0 0 1082 23
+29f0 1 1084 23
+FUNC 2a00 26 0 std::vector<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >::_Tidy()
+2a00 0 1087 23
+2a00 7 1088 23
+2a07 9 1096 23
+2a10 15 1098 23
+2a25 1 1099 23
+FUNC 2a30 23 0 std::vector<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >::_Ufill(google_breakpad::ExceptionHandler * *,unsigned int,google_breakpad::ExceptionHandler * const &)
+2a30 0 1207 23
+2a30 1f 1208 23
+2a4f 3 1209 23
+2a52 1 1210 23
+FUNC 2a60 76 0 std::vector<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >::_Xran()
+2a60 23 1218 23
+2a83 53 1219 23
+FUNC 2ae0 3 4 std::_Vector_val<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >::_Vector_val<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >(std::allocator<google_breakpad::ExceptionHandler *>)
+2ae0 0 412 23
+2ae0 3 413 23
+FUNC 2af0 1 0 std::allocator<google_breakpad::ExceptionHandler *>::allocator<google_breakpad::ExceptionHandler *>()
+2af0 0 120 19
+2af0 1 122 19
+FUNC 2b00 21 0 std::_Vector_iterator<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >::_Vector_iterator<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >(google_breakpad::ExceptionHandler * *,std::_Container_base const *)
+2b00 1e 314 23
+2b1e 3 315 23
+FUNC 2b30 32 4 std::_Vector_iterator<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >::operator+(int)
+2b30 1 367 23
+2b31 2 368 23
+2b33 26 369 23
+2b59 9 370 23
+FUNC 2b70 2f 0 std::_Vector_iterator<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >::operator-(int)
+2b70 1 378 23
+2b71 2 379 23
+2b73 25 380 23
+2b98 7 381 23
+FUNC 2ba0 20 0 std::_Vector_const_iterator<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >::operator*()
+2ba0 0 92 23
+2ba0 a 103 23
+2baa f 104 23
+2bb9 3 107 23
+2bbc 1 108 23
+2bbd 2 107 23
+2bbf 1 108 23
+FUNC 2bc0 20 0 std::_Vector_const_iterator<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >::operator++()
+2bc0 0 116 23
+2bc0 a 117 23
+2bca f 118 23
+2bd9 4 119 23
+2bdd 2 120 23
+2bdf 1 121 23
+FUNC 2be0 1d 0 std::_Vector_const_iterator<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >::operator==(std::_Vector_const_iterator<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> > const &)
+2be0 0 190 23
+2be0 f 195 23
+2bef d 198 23
+2bfc 1 199 23
+FUNC 2c00 c1 8 std::basic_string<char,std::char_traits<char>,std::allocator<char> >::assign(char const *,unsigned int)
+2c00 5 1056 17
+2c05 2d 1057 17
+2c32 1a 1058 17
+2c4c 4 1066 17
+2c50 25 1060 17
+2c75 c 1062 17
+2c81 f 1060 17
+2c90 8 1065 17
+2c98 3 1066 17
+2c9b e 1062 17
+2ca9 10 1063 17
+2cb9 5 1065 17
+2cbe 3 1066 17
+FUNC 2cd0 83 8 std::basic_string<char,std::char_traits<char>,std::allocator<char> >::erase(unsigned int,unsigned int)
+2cd0 1 1240 17
+2cd1 d 1241 17
+2cde 5 1242 17
+2ce3 d 1243 17
+2cf0 2 1244 17
+2cf2 4 1245 17
+2cf6 3c 1248 17
+2d32 8 1249 17
+2d3a 12 1250 17
+2d4c 4 1252 17
+2d50 3 1253 17
+FUNC 2d60 1f 4 std::basic_string<char,std::char_traits<char>,std::allocator<char> >::_Eos(unsigned int)
+2d60 0 2030 17
+2d60 14 2031 17
+2d74 3 2032 17
+2d77 5 2031 17
+2d7c 3 2032 17
+FUNC 2d80 bc 8 std::basic_string<char,std::char_traits<char>,std::allocator<char> >::_Grow(unsigned int,bool)
+2d80 1 2036 17
+2d81 c 2037 17
+2d8d 5 2038 17
+2d92 7 2039 17
+2d99 c 2040 17
+2da5 a 2046 17
+2daf 3 2047 17
+2db2 d 2041 17
+2dbf 39 2043 17
+2df8 10 2046 17
+2e08 3 2047 17
+2e0b 4 2044 17
+2e0f b 2045 17
+2e1a c 2046 17
+2e26 3 2047 17
+2e29 6 2045 17
+2e2f a 2046 17
+2e39 3 2047 17
+FUNC 2e40 e 0 std::basic_string<char,std::char_traits<char>,std::allocator<char> >::_Myptr()
+2e40 0 2087 17
+2e40 9 2088 17
+2e49 1 2089 17
+2e4a 3 2088 17
+2e4d 1 2089 17
+FUNC 2e50 5 4 std::allocator<char>::allocator<char>(std::allocator<char> const &)
+2e50 2 124 19
+2e52 3 126 19
+FUNC 2e60 e 8 std::allocator<char>::deallocate(char *,unsigned int)
+2e60 0 140 19
+2e60 b 141 19
+2e6b 3 142 19
+FUNC 2e70 da 8 std::basic_string<wchar_t,std::char_traits<wchar_t>,std::allocator<wchar_t> >::assign(wchar_t const *,unsigned int)
+2e70 4 1056 17
+2e74 31 1057 17
+2ea5 1d 1058 17
+2ec2 3 1066 17
+2ec5 28 1060 17
+2eed d 1062 17
+2efa 10 1060 17
+2f0a a 1065 17
+2f14 3 1066 17
+2f17 18 1062 17
+2f2f 14 1063 17
+2f43 4 1065 17
+2f47 3 1066 17
+FUNC 2f50 97 8 std::basic_string<wchar_t,std::char_traits<wchar_t>,std::allocator<wchar_t> >::erase(unsigned int,unsigned int)
+2f50 1 1240 17
+2f51 d 1241 17
+2f5e 5 1242 17
+2f63 d 1243 17
+2f70 2 1244 17
+2f72 4 1245 17
+2f76 4d 1248 17
+2fc3 8 1249 17
+2fcb 15 1250 17
+2fe0 4 1252 17
+2fe4 3 1253 17
+FUNC 2ff0 4 0 std::basic_string<wchar_t,std::char_traits<wchar_t>,std::allocator<wchar_t> >::size()
+2ff0 0 1636 17
+2ff0 3 1637 17
+2ff3 1 1638 17
+FUNC 3000 23 4 std::basic_string<wchar_t,std::char_traits<wchar_t>,std::allocator<wchar_t> >::_Eos(unsigned int)
+3000 0 2030 17
+3000 16 2031 17
+3016 3 2032 17
+3019 7 2031 17
+3020 3 2032 17
+FUNC 3030 c7 8 std::basic_string<wchar_t,std::char_traits<wchar_t>,std::allocator<wchar_t> >::_Grow(unsigned int,bool)
+3030 1 2036 17
+3031 f 2037 17
+3040 5 2038 17
+3045 7 2039 17
+304c c 2040 17
+3058 a 2046 17
+3062 3 2047 17
+3065 d 2041 17
+3072 3c 2043 17
+30ae 12 2046 17
+30c0 3 2047 17
+30c3 4 2044 17
+30c7 b 2045 17
+30d2 d 2046 17
+30df 3 2047 17
+30e2 8 2045 17
+30ea a 2046 17
+30f4 3 2047 17
+FUNC 3100 e 0 std::basic_string<wchar_t,std::char_traits<wchar_t>,std::allocator<wchar_t> >::_Myptr()
+3100 0 2087 17
+3100 9 2088 17
+3109 1 2089 17
+310a 3 2088 17
+310d 1 2089 17
+FUNC 3110 5 4 std::allocator<wchar_t>::allocator<wchar_t>(std::allocator<wchar_t> const &)
+3110 2 124 19
+3112 3 126 19
+FUNC 3120 e 8 std::allocator<wchar_t>::deallocate(wchar_t *,unsigned int)
+3120 0 140 19
+3120 b 141 19
+312b 3 142 19
+FUNC 3130 6 0 std::vector<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >::max_size()
+3130 0 707 23
+3130 5 708 23
+3135 1 709 23
+FUNC 3140 208 8 std::vector<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >::_Insert_n(std::_Vector_iterator<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >,unsigned int,google_breakpad::ExceptionHandler * const &)
+3140 6 1117 23
+3146 2 1125 23
+3148 1c 1126 23
+3164 1c 1130 23
+3180 5 1131 23
+3185 1b 1132 23
+31a0 23 1135 23
+31c3 17 1136 23
+31da 19 1137 23
+31f3 7 1138 23
+31fa 25 1143 23
+321f 7 1144 23
+3226 1e 1145 23
+3244 13 1152 23
+3257 4 1153 23
+325b 9 1156 23
+3264 7 1163 23
+326b a 1164 23
+3275 3 1165 23
+3278 a 1204 23
+3282 13 1167 23
+3295 17 1170 23
+32ac 1a 1174 23
+32c6 7 1180 23
+32cd 16 1187 23
+32e3 a 1204 23
+32ed 2a 1193 23
+3317 e 1200 23
+3325 19 1202 23
+333e a 1204 23
+FUNC 3350 7c 0 std::vector<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >::_Xlen()
+3350 29 1213 23
+3379 53 1214 23
+FUNC 33d0 1 0 std::allocator<google_breakpad::ExceptionHandler *>::allocator<google_breakpad::ExceptionHandler *>(std::allocator<google_breakpad::ExceptionHandler *> const &)
+33d0 0 124 19
+33d0 1 126 19
+FUNC 33e0 8 0 std::allocator<google_breakpad::ExceptionHandler *>::deallocate(google_breakpad::ExceptionHandler * *,unsigned int)
+33e0 0 140 19
+33e0 7 141 19
+33e7 1 142 19
+FUNC 33f0 56 0 std::allocator<google_breakpad::ExceptionHandler *>::allocate(unsigned int)
+33f0 3 145 19
+33f3 16 146 19
+3409 4 147 19
+340d 39 146 19
+FUNC 3450 32 4 std::_Vector_iterator<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >::operator+=(int)
+3450 0 361 23
+3450 2c 362 23
+347c 3 363 23
+347f 3 364 23
+FUNC 3490 28 0 std::_Vector_iterator<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >::operator-=(int)
+3490 0 373 23
+3490 27 374 23
+34b7 1 375 23
+FUNC 34c0 19 0 std::_Vector_iterator<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >::operator-(std::_Vector_const_iterator<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> > const &)
+34c0 0 384 23
+34c0 18 385 23
+34d8 1 386 23
+FUNC 34e0 21 0 std::_Vector_const_iterator<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >::_Vector_const_iterator<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >(google_breakpad::ExceptionHandler * *,std::_Container_base const *)
+34e0 0 77 23
+34e0 19 79 23
+34f9 2 80 23
+34fb 3 81 23
+34fe 3 82 23
+FUNC 3510 19 4 std::length_error::length_error(std::length_error const &)
+FUNC 3530 7 0 std::_Ranit<google_breakpad::ExceptionHandler *,int,google_breakpad::ExceptionHandler * const *,google_breakpad::ExceptionHandler * const &>::_Ranit<google_breakpad::ExceptionHandler *,int,google_breakpad::ExceptionHandler * const *,google_breakpad::ExceptionHandler * const &>()
+FUNC 3540 6 0 std::basic_string<char,std::char_traits<char>,std::allocator<char> >::max_size()
+3540 0 1641 17
+3540 5 1643 17
+3545 1 1644 17
+FUNC 3550 171 8 std::basic_string<char,std::char_traits<char>,std::allocator<char> >::_Copy(unsigned int,unsigned int)
+3550 30 2000 17
+3580 8 2001 17
+3588 5 2002 17
+358d 2 2003 17
+358f 2 2004 17
+3591 1f 2005 17
+35b0 3 2006 17
+35b3 2 2009 17
+35b5 18 2010 17
+35cd 2 2019 17
+35cf 30 2010 17
+35ff 3 2012 17
+3602 19 2014 17
+361b c 2019 17
+3627 7 2021 17
+362e 20 2022 17
+364e 12 2023 17
+3660 1c 2026 17
+367c 14 2027 17
+3690 15 2016 17
+36a5 1c 2017 17
+FUNC 36d0 39 4 std::basic_string<char,std::char_traits<char>,std::allocator<char> >::_Inside(char const *)
+36d0 1 2050 17
+36d1 2b 2052 17
+36fc 3 2055 17
+36ff 4 2056 17
+3703 3 2053 17
+3706 3 2056 17
+FUNC 3710 6 0 std::basic_string<wchar_t,std::char_traits<wchar_t>,std::allocator<wchar_t> >::max_size()
+3710 0 1641 17
+3710 5 1643 17
+3715 1 1644 17
+FUNC 3720 17b 8 std::basic_string<wchar_t,std::char_traits<wchar_t>,std::allocator<wchar_t> >::_Copy(unsigned int,unsigned int)
+3720 30 2000 17
+3750 8 2001 17
+3758 8 2002 17
+3760 2 2003 17
+3762 2 2004 17
+3764 1f 2005 17
+3783 3 2006 17
+3786 2 2009 17
+3788 1b 2010 17
+37a3 2 2019 17
+37a5 30 2010 17
+37d5 3 2012 17
+37d8 19 2014 17
+37f1 c 2019 17
+37fd 7 2021 17
+3804 24 2022 17
+3828 12 2023 17
+383a 20 2026 17
+385a 14 2027 17
+386e 17 2016 17
+3885 16 2017 17
+FUNC 38a0 3a 4 std::basic_string<wchar_t,std::char_traits<wchar_t>,std::allocator<wchar_t> >::_Inside(wchar_t const *)
+38a0 1 2050 17
+38a1 2c 2052 17
+38cd 3 2055 17
+38d0 4 2056 17
+38d4 3 2053 17
+38d7 3 2056 17
+FUNC 38e0 6 0 std::allocator<google_breakpad::ExceptionHandler *>::max_size()
+38e0 0 165 19
+38e0 5 167 19
+38e5 1 168 19
+FUNC 38f0 32 4 std::_Vector_const_iterator<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >::operator+=(int)
+38f0 0 146 23
+38f0 a 147 23
+38fa 1a 148 23
+3914 5 150 23
+3919 3 151 23
+391c 3 152 23
+391f 3 153 23
+FUNC 3930 19 0 std::_Vector_const_iterator<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >::operator-(std::_Vector_const_iterator<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> > const &)
+3930 0 173 23
+3930 f 178 23
+393f 9 181 23
+3948 1 182 23
+FUNC 3950 56 4 std::allocator<char>::allocate(unsigned int)
+3950 0 145 19
+3950 16 146 19
+3966 6 147 19
+396c 3a 146 19
+FUNC 39b0 4 0 std::allocator<char>::max_size()
+39b0 0 165 19
+39b0 3 167 19
+39b3 1 168 19
+FUNC 39c0 59 4 std::allocator<wchar_t>::allocate(unsigned int)
+39c0 0 145 19
+39c0 19 146 19
+39d9 6 147 19
+39df 3a 146 19
+FUNC 3a20 6 0 std::allocator<wchar_t>::max_size()
+3a20 0 165 19
+3a20 5 167 19
+3a25 1 168 19
+FUNC 3a30 21 10 std::_Traits_helper::copy_s<std::char_traits<char> >(char *,unsigned int,char const *,unsigned int)
+3a30 0 581 70
+3a30 20 582 70
+3a50 1 583 70
+FUNC 3a60 27 10 std::_Traits_helper::copy_s<std::char_traits<wchar_t> >(wchar_t *,unsigned int,wchar_t const *,unsigned int)
+3a60 0 581 70
+3a60 26 582 70
+3a86 1 583 70
+FUNC 3a90 24 0 stdext::unchecked_copy<google_breakpad::ExceptionHandler * *,google_breakpad::ExceptionHandler * *>(google_breakpad::ExceptionHandler * *,google_breakpad::ExceptionHandler * *,google_breakpad::ExceptionHandler * *)
+3a90 0 3407 65
+3a90 23 3409 65
+3ab3 1 3410 65
+FUNC 3ac0 1 0 std::_Destroy_range<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >(google_breakpad::ExceptionHandler * *,google_breakpad::ExceptionHandler * *,std::allocator<google_breakpad::ExceptionHandler *> &)
+3ac0 0 225 19
+3ac0 1 227 19
+FUNC 3ad0 15 0 stdext::unchecked_uninitialized_fill_n<google_breakpad::ExceptionHandler * *,unsigned int,google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >(google_breakpad::ExceptionHandler * *,unsigned int,google_breakpad::ExceptionHandler * const &,std::allocator<google_breakpad::ExceptionHandler *> &)
+3ad0 0 914 24
+3ad0 14 916 24
+3ae4 1 917 24
+FUNC 3af0 21 10 std::_Traits_helper::move_s<std::char_traits<char> >(char *,unsigned int,char const *,unsigned int)
+3af0 0 608 70
+3af0 20 609 70
+3b10 1 610 70
+FUNC 3b20 27 10 std::_Traits_helper::move_s<std::char_traits<wchar_t> >(wchar_t *,unsigned int,wchar_t const *,unsigned int)
+3b20 0 608 70
+3b20 26 609 70
+3b46 1 610 70
+FUNC 3b50 22 0 std::vector<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >::_Umove<google_breakpad::ExceptionHandler * *>(google_breakpad::ExceptionHandler * *,google_breakpad::ExceptionHandler * *,google_breakpad::ExceptionHandler * *)
+3b50 0 1109 23
+3b50 21 1112 23
+3b71 1 1113 23
+FUNC 3b80 10 0 std::fill<google_breakpad::ExceptionHandler * *,google_breakpad::ExceptionHandler *>(google_breakpad::ExceptionHandler * *,google_breakpad::ExceptionHandler * *,google_breakpad::ExceptionHandler * const &)
+3b80 0 2976 65
+3b80 f 2977 65
+3b8f 1 2978 65
+FUNC 3b90 25 0 stdext::_Unchecked_move_backward<google_breakpad::ExceptionHandler * *,google_breakpad::ExceptionHandler * *>(google_breakpad::ExceptionHandler * *,google_breakpad::ExceptionHandler * *,google_breakpad::ExceptionHandler * *)
+3b90 0 3497 65
+3b90 24 3499 65
+3bb4 1 3500 65
+FUNC 3bc0 4f 0 std::_Allocate<google_breakpad::ExceptionHandler *>(unsigned int,google_breakpad::ExceptionHandler * *)
+3bc0 0 37 19
+3bc0 f 40 19
+3bcf 2c 41 19
+3bfb 10 44 19
+3c0b 4 45 19
+FUNC 3c10 54 8 std::_Allocate<char>(unsigned int,char *)
+3c10 0 37 19
+3c10 b 38 19
+3c1b 2 39 19
+3c1d 9 44 19
+3c26 4 45 19
+3c2a c 40 19
+3c36 2e 41 19
+FUNC 3c70 57 8 std::_Allocate<wchar_t>(unsigned int,wchar_t *)
+3c70 0 37 19
+3c70 b 38 19
+3c7b 2 39 19
+3c7d c 44 19
+3c89 4 45 19
+3c8d c 40 19
+3c99 2e 41 19
+FUNC 3cd0 19 4 std::bad_alloc::bad_alloc(std::bad_alloc const &)
+FUNC 3cf0 7 0 std::_Char_traits_cat<std::char_traits<char> >()
+3cf0 1 568 70
+3cf1 4 570 70
+3cf5 2 571 70
+FUNC 3d00 21 14 std::_Traits_helper::copy_s<std::char_traits<char> >(char *,unsigned int,char const *,unsigned int,std::_Secure_char_traits_tag)
+3d00 0 589 70
+3d00 20 590 70
+3d20 1 591 70
+FUNC 3d30 7 0 std::_Char_traits_cat<std::char_traits<wchar_t> >()
+3d30 1 568 70
+3d31 4 570 70
+3d35 2 571 70
+FUNC 3d40 27 14 std::_Traits_helper::copy_s<std::char_traits<wchar_t> >(wchar_t *,unsigned int,wchar_t const *,unsigned int,std::_Secure_char_traits_tag)
+3d40 0 589 70
+3d40 26 590 70
+3d66 1 591 70
+FUNC 3d70 3 0 std::_Checked_base<google_breakpad::ExceptionHandler * *>(google_breakpad::ExceptionHandler * * &)
+3d70 0 1009 65
+3d70 2 1011 65
+3d72 1 1012 65
+FUNC 3d80 1 0 std::_Iter_random<google_breakpad::ExceptionHandler * *,google_breakpad::ExceptionHandler * *>(google_breakpad::ExceptionHandler * * const &,google_breakpad::ExceptionHandler * * const &)
+3d80 0 839 65
+3d80 1 844 65
+FUNC 3d90 7 0 std::_Ptr_cat<google_breakpad::ExceptionHandler * *,google_breakpad::ExceptionHandler * *>(google_breakpad::ExceptionHandler * * &,google_breakpad::ExceptionHandler * * &)
+3d90 1 1329 65
+3d91 4 1331 65
+3d95 2 1332 65
+FUNC 3da0 15 4 std::_Copy_opt<google_breakpad::ExceptionHandler * *,google_breakpad::ExceptionHandler * *,std::random_access_iterator_tag>(google_breakpad::ExceptionHandler * *,google_breakpad::ExceptionHandler * *,google_breakpad::ExceptionHandler * *,std::random_access_iterator_tag,std::_Scalar_ptr_iterator_tag,std::_Range_checked_iterator_tag)
+3da0 0 2288 65
+3da0 d 2300 65
+3dad 7 2301 65
+3db4 1 2302 65
+FUNC 3dc0 1 4 std::_Destroy_range<google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >(google_breakpad::ExceptionHandler * *,google_breakpad::ExceptionHandler * *,std::allocator<google_breakpad::ExceptionHandler *> &,std::_Scalar_ptr_iterator_tag)
+3dc0 0 242 19
+3dc0 1 243 19
+FUNC 3dd0 15 8 std::_Uninit_fill_n<google_breakpad::ExceptionHandler * *,unsigned int,google_breakpad::ExceptionHandler *,std::allocator<google_breakpad::ExceptionHandler *> >(google_breakpad::ExceptionHandler * *,unsigned int,google_breakpad::ExceptionHandler * const &,std::allocator<google_breakpad::ExceptionHandler *> &,std::_Scalar_ptr_iterator_tag,std::_Range_checked_iterator_tag)
+3dd0 0 415 24
+3dd0 14 416 24
+3de4 1 417 24
+FUNC 3df0 21 14 std::_Traits_helper::move_s<std::char_traits<char> >(char *,unsigned int,char const *,unsigned int,std::_Secure_char_traits_tag)
+3df0 0 616 70
+3df0 20 617 70
+3e10 1 618 70
+FUNC 3e20 27 14 std::_Traits_helper::move_s<std::char_traits<wchar_t> >(wchar_t *,unsigned int,wchar_t const *,unsigned int,std::_Secure_char_traits_tag)
+3e20 0 616 70
+3e20 26 617 70
+3e46 1 618 70
+FUNC 3e50 22 0 stdext::_Unchecked_uninitialized_move<google_breakpad::ExceptionHandler * *,google_breakpad::ExceptionHandler * *,std::allocator<google_breakpad::ExceptionHandler *> >(google_breakpad::ExceptionHandler * *,google_breakpad::ExceptionHandler * *,google_breakpad::ExceptionHandler * *,std::allocator<google_breakpad::ExceptionHandler *> &)
+3e50 0 843 24
+3e50 21 845 24
+3e71 1 846 24
+FUNC 3e80 10 0 std::_Fill<google_breakpad::ExceptionHandler * *,google_breakpad::ExceptionHandler *>(google_breakpad::ExceptionHandler * *,google_breakpad::ExceptionHandler * *,google_breakpad::ExceptionHandler * const &)
+3e80 0 2946 65
+3e80 6 2948 65
+3e86 9 2949 65
+3e8f 1 2950 65
+FUNC 3e90 7 0 std::_Move_cat<google_breakpad::ExceptionHandler * *>(google_breakpad::ExceptionHandler * * const &)
+3e90 1 1046 65
+3e91 4 1048 65
+3e95 2 1049 65
+FUNC 3ea0 25 c std::_Move_backward_opt<google_breakpad::ExceptionHandler * *,google_breakpad::ExceptionHandler * *,std::random_access_iterator_tag,std::_Undefined_move_tag>(google_breakpad::ExceptionHandler * *,google_breakpad::ExceptionHandler * *,google_breakpad::ExceptionHandler * *,std::random_access_iterator_tag,std::_Undefined_move_tag,std::_Range_checked_iterator_tag)
+3ea0 0 2546 65
+3ea0 24 2548 65
+3ec4 1 2549 65
+FUNC 3ed0 3 4 std::_Checked_base<google_breakpad::ExceptionHandler * *>(google_breakpad::ExceptionHandler * * &,std::_Unchanged_checked_iterator_base_type_tag)
+3ed0 0 992 65
+3ed0 2 993 65
+3ed2 1 994 65
+FUNC 3ee0 15 0 stdext::unchecked_fill_n<google_breakpad::ExceptionHandler * *,unsigned int,google_breakpad::ExceptionHandler *>(google_breakpad::ExceptionHandler * *,unsigned int,google_breakpad::ExceptionHandler * const &)
+3ee0 0 3523 65
+3ee0 14 3524 65
+3ef4 1 3525 65
+FUNC 3f00 22 8 std::_Uninit_move<google_breakpad::ExceptionHandler * *,google_breakpad::ExceptionHandler * *,std::allocator<google_breakpad::ExceptionHandler *>,std::_Undefined_move_tag>(google_breakpad::ExceptionHandler * *,google_breakpad::ExceptionHandler * *,google_breakpad::ExceptionHandler * *,std::allocator<google_breakpad::ExceptionHandler *> &,std::_Undefined_move_tag,std::_Range_checked_iterator_tag)
+3f00 0 205 24
+3f00 21 206 24
+3f21 1 207 24
+FUNC 3f30 13 0 std::_Copy_backward_opt<google_breakpad::ExceptionHandler * *,google_breakpad::ExceptionHandler * *,std::random_access_iterator_tag>(google_breakpad::ExceptionHandler * *,google_breakpad::ExceptionHandler * *,google_breakpad::ExceptionHandler * *,std::random_access_iterator_tag,std::_Scalar_ptr_iterator_tag,std::_Range_checked_iterator_tag)
+3f30 0 2492 65
+3f30 10 2506 65
+3f40 2 2507 65
+3f42 1 2508 65
+FUNC 3f50 1 0 std::_Iter_cat<google_breakpad::ExceptionHandler * *>(google_breakpad::ExceptionHandler * * const &)
+3f50 0 798 65
+3f50 1 801 65
+FUNC 3f60 15 8 std::_Fill_n<google_breakpad::ExceptionHandler * *,unsigned int,google_breakpad::ExceptionHandler *>(google_breakpad::ExceptionHandler * *,unsigned int,google_breakpad::ExceptionHandler * const &,std::random_access_iterator_tag,std::_Range_checked_iterator_tag)
+3f60 0 3040 65
+3f60 14 3044 65
+3f74 1 3045 65
+FUNC 3f80 22 0 stdext::unchecked_uninitialized_copy<google_breakpad::ExceptionHandler * *,google_breakpad::ExceptionHandler * *,std::allocator<google_breakpad::ExceptionHandler *> >(google_breakpad::ExceptionHandler * *,google_breakpad::ExceptionHandler * *,google_breakpad::ExceptionHandler * *,std::allocator<google_breakpad::ExceptionHandler *> &)
+3f80 0 803 24
+3f80 21 805 24
+3fa1 1 806 24
+FUNC 3fb0 15 4 std::_Fill_n<google_breakpad::ExceptionHandler * *,unsigned int,google_breakpad::ExceptionHandler *>(google_breakpad::ExceptionHandler * *,unsigned int,google_breakpad::ExceptionHandler * const &,std::_Range_checked_iterator_tag)
+3fb0 0 2986 65
+3fb0 5 2987 65
+3fb5 f 2988 65
+3fc4 1 2989 65
+FUNC 3fd0 15 4 std::_Uninit_copy<google_breakpad::ExceptionHandler * *,google_breakpad::ExceptionHandler * *,std::allocator<google_breakpad::ExceptionHandler *> >(google_breakpad::ExceptionHandler * *,google_breakpad::ExceptionHandler * *,google_breakpad::ExceptionHandler * *,std::allocator<google_breakpad::ExceptionHandler *> &,std::_Scalar_ptr_iterator_tag,std::_Range_checked_iterator_tag)
+3fd0 0 144 24
+3fd0 d 150 24
+3fdd 7 151 24
+3fe4 1 152 24
+FUNC 3ff0 13 4 vswprintf
+3ff0 0 50 147
+3ff0 12 51 147
+4002 1 52 147
+FUNC 4010 ae 4 google_breakpad::GUIDString::GUIDToWString(_GUID *)
+4010 12 43 126
+4022 51 51 126
+4073 3a 52 126
+40ad 11 53 126
+FUNC 40c0 ae 4 google_breakpad::GUIDString::GUIDToSymbolServerWString(_GUID *)
+40c0 12 56 126
+40d2 51 64 126
+4123 3a 65 126
+415d 11 66 126
+FUNC 4170 40 4 std::basic_string<wchar_t,std::char_traits<wchar_t>,std::allocator<wchar_t> >::basic_string<wchar_t,std::char_traits<wchar_t>,std::allocator<wchar_t> >(wchar_t const *)
+4170 0 650 143
+4170 3a 652 143
+41aa 6 653 143
+FUNC 41b0 86 8 main
+41b0 13 63 178
+41c3 38 64 178
+41fb 5 65 178
+4200 d 66 178
+420d 1b 67 178
+4228 e 68 178
+FUNC 4240 41 18 `anonymous namespace'::callback
+4240 3 45 178
+4243 8 46 178
+424b 11 47 178
+425c 2 48 178
+425e d 49 178
+426b 11 51 178
+427c 3 53 178
+427f 2 54 178
+FUNC 4290 18 0 `anonymous namespace'::CrashFunction
+4290 4 56 178
+4294 7 57 178
+429b 9 58 178
+42a4 4 59 178
+FUNC 42ae 18 4 std::invalid_argument::invalid_argument(std::basic_string<char,std::char_traits<char>,std::allocator<char> > const &)
+42ae 12 82 298
+42c0 6 83 298
+FUNC 42c6 b 0 std::invalid_argument::~invalid_argument()
+42c6 6 86 298
+42cc 5 87 298
+FUNC 42d1 22 0 std::invalid_argument::`vector deleting destructor'(unsigned int)
+FUNC 42f3 3f 0 std::_String_base::_Xlen()
+42f3 c 12 291
+42ff 33 13 291
+FUNC 4332 3f 0 std::_String_base::_Xran()
+4332 c 17 291
+433e 33 18 291
+FUNC 4371 3f 0 std::_String_base::_Xinvarg()
+4371 c 22 291
+437d 33 23 291
+FUNC 43b0 18 4 std::invalid_argument::invalid_argument(std::invalid_argument const &)
+FUNC 43c8 af 4 printf
+43c8 c 49 1601
+43d4 2b 54 1601
+43ff 14 58 1601
+4413 3 59 1601
+4416 10 61 1601
+4426 18 63 1601
+443e 11 65 1601
+444f c 68 1601
+445b 3 72 1601
+445e 6 73 1601
+4464 13 69 1601
+FUNC 4477 16 8 _printf_l
+4477 0 80 1601
+4477 15 85 1601
+448c 1 86 1601
+FUNC 448d 16 8 _printf_s_l
+448d 0 94 1601
+448d 15 99 1601
+44a2 1 100 1601
+FUNC 44a3 14 4 printf_s
+44a3 0 106 1601
+44a3 13 111 1601
+44b6 1 112 1601
+FUNC 44b7 16 8 _printf_p_l
+44b7 0 119 1601
+44b7 15 124 1601
+44cc 1 125 1601
+FUNC 44cd 14 4 _printf_p
+44cd 0 131 1601
+44cd 13 136 1601
+44e0 1 137 1601
+FUNC 44e1 25 4 _set_printf_count_output
+44e1 0 154 1601
+44e1 6 155 1601
+44e7 1e 156 1601
+4505 1 158 1601
+FUNC 4506 16 0 _get_printf_count_output
+4506 0 167 1601
+4506 15 168 1601
+451b 1 169 1601
+FUNC 451c f 0 __security_check_cookie
+451c 0 52 4397
+451c 6 55 4397
+4522 2 56 4397
+4524 2 57 4397
+4526 5 59 4397
+FUNC 452b 62 4 _flush
+452b 2 142 1704
+452d 25 152 1704
+4552 16 154 1704
+4568 7 158 1704
+456f 6 159 1704
+4575 2 161 1704
+4577 4 162 1704
+457b 4 163 1704
+457f 3 167 1704
+4582 7 168 1704
+4589 3 170 1704
+458c 1 171 1704
+FUNC 458d 42 4 _fflush_nolock
+458d 1 98 1704
+458e 8 102 1704
+4596 8 103 1704
+459e 1 116 1704
+459f b 106 1704
+45aa 4 108 1704
+45ae 1 116 1704
+45af 8 112 1704
+45b7 13 113 1704
+45ca 1 116 1704
+45cb 3 115 1704
+45ce 1 116 1704
+FUNC 45cf da 4 flsall
+45cf c 228 1704
+45db 5 230 1704
+45e0 3 231 1704
+45e3 8 233 1704
+45eb 3 234 1704
+45ee 11 236 1704
+45ff 14 238 1704
+4613 9 246 1704
+461c 6 248 1704
+4622 10 254 1704
+4632 5 256 1704
+4637 c 262 1704
+4643 3 266 1704
+4646 2 268 1704
+4648 a 269 1704
+4652 c 275 1704
+465e 3 276 1704
+4661 8 281 1704
+4669 3 236 1704
+466c 5 281 1704
+4671 11 282 1704
+4682 c 288 1704
+468e 4 292 1704
+4692 3 293 1704
+4695 2 292 1704
+4697 3 295 1704
+469a 6 296 1704
+46a0 9 289 1704
+FUNC 46a9 53 4 fflush
+46a9 c 57 1704
+46b5 7 62 1704
+46bc 9 63 1704
+46c5 9 65 1704
+46ce 3 67 1704
+46d1 c 68 1704
+46dd c 70 1704
+46e9 3 74 1704
+46ec 6 75 1704
+46f2 a 71 1704
+FUNC 46fc 9 0 _flushall
+46fc 0 193 1704
+46fc 8 194 1704
+4704 1 195 1704
+FUNC 4705 6 0 __iob_func
+4705 0 53 2087
+4705 5 54 2087
+470a 1 55 2087
+FUNC 470b b1 0 __initstdio
+470b 0 113 2087
+470b d 122 2087
+4718 7 123 2087
+471f 4 124 2087
+4723 7 125 2087
+472a 13 134 2087
+473d 19 137 2087
+4756 4 138 2087
+475a 1 163 2087
+475b e 145 2087
+4769 11 146 2087
+477a b 148 2087
+4785 24 151 2087
+47a9 2 158 2087
+47ab d 148 2087
+47b8 3 162 2087
+47bb 1 163 2087
+FUNC 47bc 20 0 __endstdio
+47bc 0 191 2087
+47bc 5 193 2087
+47c1 9 196 2087
+47ca 5 197 2087
+47cf c 198 2087
+47db 1 199 2087
+FUNC 47dc 3c 4 _lock_file
+47dc 1 221 2087
+47dd 15 226 2087
+47f2 10 231 2087
+4802 9 233 2087
+480b 1 242 2087
+480c b 241 2087
+4817 1 242 2087
+FUNC 4818 2e 8 _lock_file2
+4818 0 264 2087
+4818 9 269 2087
+4821 9 274 2087
+482a c 276 2087
+4836 1 285 2087
+4837 e 284 2087
+4845 1 285 2087
+FUNC 4846 36 4 _unlock_file
+4846 0 306 2087
+4846 14 311 2087
+485a 7 317 2087
+4861 f 318 2087
+4870 1 327 2087
+4871 a 326 2087
+487b 1 327 2087
+FUNC 487c 2a 8 _unlock_file2
+487c 0 349 2087
+487c 7 354 2087
+4883 d 360 2087
+4890 a 361 2087
+489a 1 370 2087
+489b a 369 2087
+48a5 1 370 2087
+FUNC 48a6 16 4 wcslen
+48a6 0 41 731
+48a6 4 42 731
+48aa a 44 731
+48b4 7 46 731
+48bb 1 47 731
+FUNC 48bc 5 4 operator delete(void *)
+48bc 0 20 5184
+48bc 5 23 5184
+FUNC 48c1 30 8 _JumpToContinuation(void *,EHRegistrationNode *)
+48c1 5 77 5627
+48c6 9 84 5627
+48cf 7 93 5627
+48d6 2 94 5627
+48d8 6 95 5627
+48de 3 100 5627
+48e1 3 101 5627
+48e4 3 102 5627
+48e7 3 103 5627
+48ea 2 104 5627
+48ec 5 106 5627
+FUNC 48f1 7 8 _CallMemberFunction0(void *,void *)
+48f1 0 118 5627
+48f1 1 120 5627
+48f2 1 121 5627
+48f3 3 122 5627
+48f6 2 123 5627
+FUNC 48f8 7 c _CallMemberFunction1(void *,void *,void *)
+48f8 0 139 5627
+48f8 1 141 5627
+48f9 1 142 5627
+48fa 3 143 5627
+48fd 2 144 5627
+FUNC 48ff 7 10 _CallMemberFunction2(void *,void *,void *,int)
+48ff 0 161 5627
+48ff 1 163 5627
+4900 1 164 5627
+4901 3 165 5627
+4904 2 166 5627
+FUNC 4906 52 8 _UnwindNestedFrames(EHRegistrationNode *,EHExceptionRecord *)
+4906 8 218 5627
+490e 7 232 5627
+4915 3 233 5627
+4918 7 236 5627
+491f 10 237 5627
+492f f 241 5627
+493e 7 247 5627
+4945 3 248 5627
+4948 2 249 5627
+494a 7 250 5627
+4951 7 256 5627
+FUNC 4958 36 10 __CxxFrameHandler
+4958 0 287 5627
+4958 1 295 5627
+4959 2 296 5627
+495b 3 297 5627
+495e 1 298 5627
+495f 1 299 5627
+4960 1 300 5627
+4961 1 301 5627
+4962 3 306 5627
+4965 1f 311 5627
+4984 1 316 5627
+4985 1 317 5627
+4986 1 318 5627
+4987 3 319 5627
+498a 2 320 5627
+498c 1 321 5627
+498d 1 322 5627
+FUNC 498e 36 10 __CxxFrameHandler3
+498e 0 341 5627
+498e 1 349 5627
+498f 2 350 5627
+4991 3 351 5627
+4994 1 352 5627
+4995 1 353 5627
+4996 1 354 5627
+4997 1 355 5627
+4998 3 360 5627
+499b 1f 365 5627
+49ba 1 370 5627
+49bb 1 371 5627
+49bc 1 372 5627
+49bd 3 373 5627
+49c0 2 374 5627
+49c2 1 375 5627
+49c3 1 376 5627
+FUNC 49c4 36 10 __CxxFrameHandler2
+49c4 0 391 5627
+49c4 1 399 5627
+49c5 2 400 5627
+49c7 3 401 5627
+49ca 1 402 5627
+49cb 1 403 5627
+49cc 1 404 5627
+49cd 1 405 5627
+49ce 3 410 5627
+49d1 1f 415 5627
+49f0 1 420 5627
+49f1 1 421 5627
+49f2 1 422 5627
+49f3 3 423 5627
+49f6 2 424 5627
+49f8 1 425 5627
+49f9 1 426 5627
+FUNC 49fa 1a 4 __CxxLongjmpUnwind
+49fa 0 443 5627
+49fa 17 449 5627
+4a11 3 452 5627
+FUNC 4a14 30 10 CatchGuardHandler
+4a14 1 545 5627
+4a15 1 551 5627
+4a16 e 557 5627
+4a24 1f 567 5627
+4a43 1 572 5627
+FUNC 4a44 d5 1c _CallSETranslator(EHExceptionRecord *,EHRegistrationNode *,void *,void *,_s_FuncInfo const *,int,EHRegistrationNode *)
+4a44 7 637 5627
+4a4b 9 642 5627
+4a54 5 644 5627
+4a59 3 645 5627
+4a5c 2 646 5627
+4a5e 8 648 5627
+4a66 4 656 5627
+4a6a 7 657 5627
+4a71 d 658 5627
+4a7e 6 659 5627
+4a84 6 660 5627
+4a8a 6 661 5627
+4a90 6 662 5627
+4a96 4 663 5627
+4a9a 4 664 5627
+4a9e 4 669 5627
+4aa2 3 675 5627
+4aa5 3 676 5627
+4aa8 6 681 5627
+4aae 3 682 5627
+4ab1 3 683 5627
+4ab4 6 684 5627
+4aba 7 690 5627
+4ac1 6 692 5627
+4ac7 6 693 5627
+4acd e 697 5627
+4adb e 701 5627
+4ae9 4 707 5627
+4aed 6 715 5627
+4af3 7 724 5627
+4afa 2 725 5627
+4afc 3 726 5627
+4aff 2 727 5627
+4b01 7 728 5627
+4b08 2 731 5627
+4b0a 3 737 5627
+4b0d 6 738 5627
+4b13 3 744 5627
+4b16 3 745 5627
+FUNC 4b19 9d 10 TranslatorGuardHandler
+4b19 5 770 5627
+4b1e 1 776 5627
+4b1f e 782 5627
+4b2d b 784 5627
+4b38 a 786 5627
+4b42 5 790 5627
+4b47 2 792 5627
+4b49 2a 796 5627
+4b73 9 798 5627
+4b7c b 802 5627
+4b87 1b 811 5627
+4ba2 3 818 5627
+4ba5 3 819 5627
+4ba8 3 820 5627
+4bab 3 821 5627
+4bae 2 822 5627
+4bb0 3 826 5627
+4bb3 3 828 5627
+FUNC 4bb6 73 14 _GetRangeOfTrysToCheck(_s_FuncInfo const *,int,int,unsigned int *,unsigned int *)
+4bb6 7 848 5627
+4bbd 6 849 5627
+4bc3 6 850 5627
+4bc9 2 851 5627
+4bcb 2 852 5627
+4bcd a 855 5627
+4bd7 1d 859 5627
+4bf4 3 860 5627
+4bf7 3 861 5627
+4bfa 3 862 5627
+4bfd 6 854 5627
+4c03 6 866 5627
+4c09 5 867 5627
+4c0e e 869 5627
+4c1c b 871 5627
+4c27 2 872 5627
+FUNC 4c29 28 8 _CreateFrameInfo
+4c29 0 889 5627
+4c29 b 890 5627
+4c34 e 891 5627
+4c42 b 892 5627
+4c4d 3 893 5627
+4c50 1 894 5627
+FUNC 4c51 21 4 _IsExceptionObjectToBeDestroyed
+4c51 0 907 5627
+4c51 d 910 5627
+4c5e 8 911 5627
+4c66 7 910 5627
+4c6d 1 915 5627
+4c6e 1 916 5627
+4c6f 2 912 5627
+4c71 1 916 5627
+FUNC 4c72 4c 4 _FindAndUnlinkFrame
+4c72 1 926 5627
+4c73 11 927 5627
+4c84 f 928 5627
+4c93 1 944 5627
+4c94 d 931 5627
+4ca1 7 935 5627
+4ca8 9 933 5627
+4cb1 5 943 5627
+4cb6 7 936 5627
+4cbd 1 944 5627
+FUNC 4cbe 5e 14 _CallCatchBlock2(EHRegistrationNode *,_s_FuncInfo const *,void *,int,unsigned long)
+4cbe 6 485 5627
+4cc4 e 493 5627
+4cd2 c 495 5627
+4cde 11 500 5627
+4cef 6 503 5627
+4cf5 3 504 5627
+4cf8 3 505 5627
+4cfb 6 506 5627
+4d01 e 512 5627
+4d0f 3 518 5627
+4d12 6 519 5627
+4d18 2 524 5627
+4d1a 2 525 5627
+FUNC 4d1c 4a 8 _CxxThrowException
+4d1c 6 95 5939
+4d22 15 117 5939
+4d37 3 118 5939
+4d3a 9 134 5939
+4d43 5 136 5939
+4d48 7 138 5939
+4d4f 13 159 5939
+4d62 4 161 5939
+FUNC 4d66 19 0 std::bad_alloc::bad_alloc()
+4d66 15 382 5121
+4d7b 4 383 5121
+FUNC 4d7f 6a 4 operator new(unsigned int)
+4d7f 6 57 5123
+4d85 2 59 5123
+4d87 d 60 5123
+4d94 d 59 5123
+4da1 2 67 5123
+4da3 27 62 5123
+4dca 1f 63 5123
+FUNC 4de9 f 4 type_info::name(__type_info_node *)
+4de9 0 44 5873
+4de9 c 45 5873
+4df5 3 46 5873
+FUNC 4df8 e 0 type_info::~type_info()
+4df8 0 49 5873
+4df8 d 50 5873
+4e05 1 51 5873
+FUNC 4e06 1c 0 type_info::`scalar deleting destructor'(unsigned int)
+FUNC 4e22 f 4 type_info::_name_internal_method(__type_info_node *)
+4e22 0 54 5873
+4e22 c 55 5873
+4e2e 3 56 5873
+FUNC 4e31 8 0 type_info::_type_info_dtor_internal_method()
+4e31 0 59 5873
+4e31 7 60 5873
+4e38 1 61 5873
+FUNC 4e39 1b 4 type_info::operator==(type_info const &)
+4e39 0 89 5873
+4e39 18 90 5873
+4e51 3 91 5873
+FUNC 4e54 1c 4 type_info::operator!=(type_info const &)
+4e54 0 98 5873
+4e54 19 99 5873
+4e6d 3 100 5873
+FUNC 4e70 1f 4 type_info::before(type_info const &)
+4e70 0 103 5873
+4e70 1c 104 5873
+4e8c 3 105 5873
+FUNC 4e8f 4 0 type_info::raw_name()
+4e8f 0 108 5873
+4e8f 3 109 5873
+4e92 1 110 5873
+FUNC 4e93 b 4 type_info::type_info(type_info const &)
+4e93 8 113 5873
+4e9b 3 123 5873
+FUNC 4e9e 5 4 type_info::operator=(type_info const &)
+4e9e 2 127 5873
+4ea0 3 135 5873
+FUNC 4ea3 11 0 std::exception::exception()
+4ea3 2 68 5916
+4ea5 4 69 5916
+4ea9 a 70 5916
+4eb3 1 71 5916
+FUNC 4eb4 4e 4 std::exception::exception(char const * const &)
+4eb4 1 77 5916
+4eb5 14 78 5916
+4ec9 9 80 5916
+4ed2 6 81 5916
+4ed8 9 82 5916
+4ee1 c 84 5916
+4eed 2 87 5916
+4eef 4 89 5916
+4ef3 7 91 5916
+4efa 8 92 5916
+FUNC 4f02 18 8 std::exception::exception(char const * const &,int)
+4f02 2 98 5916
+4f04 c 99 5916
+4f10 7 100 5916
+4f17 3 101 5916
+FUNC 4f1a 58 4 std::exception::exception(std::exception const &)
+4f1a 1 107 5916
+4f1b 13 108 5916
+4f2e 2 109 5916
+4f30 a 111 5916
+4f3a 9 113 5916
+4f43 6 114 5916
+4f49 9 115 5916
+4f52 d 117 5916
+4f5f 2 120 5916
+4f61 4 122 5916
+4f65 2 125 5916
+4f67 4 126 5916
+4f6b 7 127 5916
+FUNC 4f72 56 4 std::exception::operator=(std::exception const &)
+4f72 1 133 5916
+4f73 c 134 5916
+4f7f 6 136 5916
+4f85 2 137 5916
+4f87 9 139 5916
+4f90 9 141 5916
+4f99 6 144 5916
+4f9f 9 146 5916
+4fa8 d 148 5916
+4fb5 2 151 5916
+4fb7 4 153 5916
+4fbb 2 156 5916
+4fbd 3 157 5916
+4fc0 5 159 5916
+4fc5 3 160 5916
+FUNC 4fc8 16 0 std::exception::~exception()
+4fc8 0 167 5916
+4fc8 c 168 5916
+4fd4 9 169 5916
+4fdd 1 170 5916
+FUNC 4fde d 0 std::exception::what()
+4fde 0 180 5916
+4fde 5 181 5916
+4fe3 2 182 5916
+4fe5 5 184 5916
+4fea 1 185 5916
+FUNC 4feb 19 4 std::bad_cast::bad_cast(char const *)
+4feb 13 194 5916
+4ffe 6 195 5916
+FUNC 5004 18 4 std::bad_cast::bad_cast(std::bad_cast const &)
+5004 12 199 5916
+5016 6 200 5916
+FUNC 501c b 0 std::bad_cast::~bad_cast()
+501c 6 203 5916
+5022 5 204 5916
+FUNC 5027 19 4 std::bad_typeid::bad_typeid(char const *)
+5027 13 229 5916
+503a 6 230 5916
+FUNC 5040 18 4 std::bad_typeid::bad_typeid(std::bad_typeid const &)
+5040 12 234 5916
+5052 6 235 5916
+FUNC 5058 b 0 std::bad_typeid::~bad_typeid()
+5058 6 238 5916
+505e 5 239 5916
+FUNC 5063 18 4 std::__non_rtti_object::__non_rtti_object(char const *)
+5063 12 248 5916
+5075 6 249 5916
+FUNC 507b 18 4 std::__non_rtti_object::__non_rtti_object(std::__non_rtti_object const &)
+507b 12 253 5916
+508d 6 254 5916
+FUNC 5093 b 0 std::__non_rtti_object::~__non_rtti_object()
+5093 0 257 5916
+5093 b 258 5916
+FUNC 509e 1c 0 std::exception::`vector deleting destructor'(unsigned int)
+FUNC 50ba 22 0 std::bad_cast::`vector deleting destructor'(unsigned int)
+FUNC 50dc 22 0 std::bad_typeid::`scalar deleting destructor'(unsigned int)
+FUNC 50fe 22 0 std::__non_rtti_object::`scalar deleting destructor'(unsigned int)
+FUNC 5120 7b 10 memcpy_s
+5120 4 47 1002
+5124 a 48 1002
+512e 4 51 1002
+5132 20 55 1002
+5152 a 56 1002
+515c f 67 1002
+516b 2 68 1002
+516d f 59 1002
+517c 5 61 1002
+5181 13 62 1002
+5194 5 64 1002
+5199 2 69 1002
+FUNC 519b 5b 10 memmove_s
+519b 3 46 955
+519e 9 47 955
+51a7 2 50 955
+51a9 20 54 955
+51c9 5 55 955
+51ce 13 56 955
+51e1 f 58 955
+51f0 4 59 955
+51f4 2 60 955
+FUNC 51f6 a 4 _set_osplatform
+51f6 a 385 2595
+FUNC 5200 a 4 _set_osver
+5200 a 386 2595
+FUNC 520a a 4 _set_winver
+520a a 387 2595
+FUNC 5214 a 4 _set_winmajor
+5214 a 388 2595
+FUNC 521e a 4 _set_winminor
+521e a 389 2595
+FUNC 5228 24 4 fast_error_exit
+5228 0 375 2608
+5228 9 384 2608
+5231 5 386 2608
+5236 9 388 2608
+523f c 389 2608
+524b 1 390 2608
+FUNC 524c 41 0 check_managed_app
+524c 0 413 2608
+524c b 418 2608
+5257 5 422 2608
+525c a 424 2608
+5266 2 425 2608
+5268 9 427 2608
+5271 2 428 2608
+5273 7 433 2608
+527a 2 434 2608
+527c d 437 2608
+5289 1 438 2608
+528a 2 419 2608
+528c 1 438 2608
+FUNC 528d 1b6 0 __tmainCRTStartup
+528d c 203 2608
+5299 19 233 2608
+52b2 4 234 2608
+52b6 8 235 2608
+52be a 236 2608
+52c8 2 242 2608
+52ca 7 243 2608
+52d1 3 244 2608
+52d4 4 243 2608
+52d8 9 244 2608
+52e1 2 245 2608
+52e3 6 248 2608
+52e9 6 249 2608
+52ef 6 250 2608
+52f5 9 256 2608
+52fe 9 257 2608
+5307 8 258 2608
+530f 6 259 2608
+5315 d 260 2608
+5322 6 262 2608
+5328 5 263 2608
+532d 6 264 2608
+5333 6 265 2608
+5339 6 266 2608
+533f 8 271 2608
+5347 c 273 2608
+5353 8 274 2608
+535b 9 276 2608
+5364 8 277 2608
+536c 5 286 2608
+5371 4 294 2608
+5375 9 296 2608
+537e 8 297 2608
+5386 b 300 2608
+5391 a 303 2608
+539b 9 305 2608
+53a4 8 306 2608
+53ac 9 307 2608
+53b5 8 308 2608
+53bd 8 310 2608
+53c5 4 311 2608
+53c9 7 312 2608
+53d0 a 326 2608
+53da 18 327 2608
+53f2 6 330 2608
+53f8 6 331 2608
+53fe 5 333 2608
+5403 2 335 2608
+5405 17 336 2608
+541c 6 342 2608
+5422 6 344 2608
+5428 6 345 2608
+542e 5 347 2608
+5433 7 349 2608
+543a 3 351 2608
+543d 6 352 2608
+FUNC 5443 a 0 mainCRTStartup
+5443 0 186 2608
+5443 5 193 2608
+5448 5 195 2608
+FUNC 544d a 4 _initp_misc_invarg
+544d 0 38 3328
+544d 9 39 3328
+5456 1 40 3328
+FUNC 5457 fc 14 _invoke_watson
+5457 1c 111 3328
+5473 6 128 3328
+5479 6 129 3328
+547f 6 130 3328
+5485 3 131 3328
+5488 3 132 3328
+548b 3 133 3328
+548e 7 134 3328
+5495 7 135 3328
+549c 4 136 3328
+54a0 4 137 3328
+54a4 4 138 3328
+54a8 4 139 3328
+54ac 1 140 3328
+54ad 6 141 3328
+54b3 6 147 3328
+54b9 19 148 3328
+54d2 3 150 3328
+54d5 13 163 3328
+54e8 6 168 3328
+54ee 13 169 3328
+5501 6 171 3328
+5507 a 174 3328
+5511 a 176 3328
+551b 8 180 3328
+5523 8 181 3328
+552b 12 184 3328
+553d 16 185 3328
+FUNC 5553 22 4 _set_invalid_parameter_handler
+5553 1 207 3328
+5554 b 211 3328
+555f d 212 3328
+556c 5 214 3328
+5571 3 216 3328
+5574 1 217 3328
+FUNC 5575 d 0 _get_invalid_parameter_handler
+5575 0 221 3328
+5575 c 225 3328
+5581 1 228 3328
+FUNC 5582 9 14 _invoke_watson(unsigned short const *,unsigned short const *,unsigned short const *,unsigned int,unsigned int)
+5582 3 266 3328
+5585 1 274 3328
+5586 5 273 3328
+FUNC 558b 24 14 _invalid_parameter
+558b 3 70 3328
+558e b 77 3328
+5599 5 78 3328
+559e 1 89 3328
+559f 2 80 3328
+55a1 8 86 3328
+55a9 1 89 3328
+55aa 5 88 3328
+FUNC 55af 10 0 _invalid_parameter_noinfo
+55af 0 98 3328
+55af f 99 3328
+55be 1 100 3328
+FUNC 55bf 9 14 _invalid_parameter(unsigned short const *,unsigned short const *,unsigned short const *,unsigned int,unsigned int)
+55bf 3 249 3328
+55c2 1 257 3328
+55c3 5 256 3328
+FUNC 55c8 96 8 _swprintf
+55c8 7 122 1564
+55cf 24 128 1564
+55f3 8 133 1564
+55fb 6 138 1564
+5601 22 153 1564
+5623 1d 160 1564
+5640 18 161 1564
+5658 4 163 1564
+565c 2 171 1564
+FUNC 565e 1a c __swprintf_l
+565e 0 181 1564
+565e 19 186 1564
+5677 1 188 1564
+FUNC 5678 1c c swprintf_s
+5678 0 238 1564
+5678 1b 243 1564
+5693 1 244 1564
+FUNC 5694 1f 10 _snwprintf_s
+5694 3 253 1564
+5697 1a 258 1564
+56b1 2 259 1564
+FUNC 56b3 1c c _swprintf_p
+56b3 0 267 1564
+56b3 1b 272 1564
+56ce 1 273 1564
+FUNC 56cf 1d 10 _swprintf_s_l
+56cf 3 282 1564
+56d2 18 287 1564
+56ea 2 288 1564
+FUNC 56ec 20 14 _snwprintf_s_l
+56ec 3 298 1564
+56ef 1b 303 1564
+570a 2 304 1564
+FUNC 570c 1d 10 _swprintf_p_l
+570c 3 313 1564
+570f 18 318 1564
+5727 2 319 1564
+FUNC 5729 11 4 _scwprintf
+5729 0 347 1564
+5729 10 352 1564
+5739 1 353 1564
+FUNC 573a 11 4 _scwprintf_p
+573a 0 359 1564
+573a 10 364 1564
+574a 1 365 1564
+FUNC 574b 16 8 _scwprintf_l
+574b 0 372 1564
+574b 15 376 1564
+5760 1 377 1564
+FUNC 5761 16 8 _scwprintf_p_l
+5761 0 384 1564
+5761 15 389 1564
+5776 1 390 1564
+FUNC 5777 14f 8 fprintf
+5777 c 49 1648
+5783 5 53 1648
+5788 2e 55 1648
+57b6 c 56 1648
+57c2 3 61 1648
+57c5 7 63 1648
+57cc 3 64 1648
+57cf b0 66 1648
+587f 5 67 1648
+5884 8 69 1648
+588c 11 70 1648
+589d a 71 1648
+58a7 c 75 1648
+58b3 3 79 1648
+58b6 6 80 1648
+58bc a 76 1648
+FUNC 58c6 1a c _fprintf_l
+58c6 0 88 1648
+58c6 19 93 1648
+58df 1 94 1648
+FUNC 58e0 1a c _fprintf_s_l
+58e0 0 102 1648
+58e0 19 107 1648
+58f9 1 108 1648
+FUNC 58fa 18 8 fprintf_s
+58fa 0 115 1648
+58fa 17 120 1648
+5911 1 121 1648
+FUNC 5912 1a c _fprintf_p_l
+5912 0 129 1648
+5912 19 134 1648
+592b 1 135 1648
+FUNC 592c 18 8 _fprintf_p
+592c 0 142 1648
+592c 17 147 1648
+5943 1 148 1648
+FUNC 5944 f6 18 _vswprintf_helper
+5944 7 125 1380
+594b 28 130 1380
+5973 2f 133 1380
+59a2 15 143 1380
+59b7 7 146 1380
+59be 2 148 1380
+59c0 6 150 1380
+59c6 13 157 1380
+59d9 5 160 1380
+59de 2 162 1380
+59e0 41 171 1380
+5a21 5 172 1380
+5a26 12 175 1380
+5a38 2 183 1380
+FUNC 5a3a 27 10 _vswprintf_c
+5a3a 0 241 1380
+5a3a 1f 242 1380
+5a59 7 243 1380
+5a60 1 244 1380
+FUNC 5a61 28 14 _vswprintf_c_l
+5a61 3 253 1380
+5a64 1c 254 1380
+5a80 7 255 1380
+5a87 2 256 1380
+FUNC 5a89 87 14 _vswprintf_s_l
+5a89 4 265 1380
+5a8d 25 269 1380
+5ab2 19 270 1380
+5acb 1a 272 1380
+5ae5 4 273 1380
+5ae9 3 275 1380
+5aec 5 278 1380
+5af1 1d 280 1380
+5b0e 2 288 1380
+FUNC 5b10 1b 10 vswprintf_s
+5b10 0 296 1380
+5b10 1a 297 1380
+5b2a 1 298 1380
+FUNC 5b2b 107 18 _vsnwprintf_s_l
+5b2b 5 308 1380
+5b30 27 313 1380
+5b57 13 314 1380
+5b6a 7 317 1380
+5b71 1b 319 1380
+5b8c 8 323 1380
+5b94 20 324 1380
+5bb4 5 325 1380
+5bb9 a 329 1380
+5bc3 7 331 1380
+5bca 2 333 1380
+5bcc 2 338 1380
+5bce 12 339 1380
+5be0 10 342 1380
+5bf0 a 344 1380
+5bfa a 346 1380
+5c04 2 348 1380
+5c06 4 352 1380
+5c0a 8 356 1380
+5c12 18 358 1380
+5c2a 6 360 1380
+5c30 2 366 1380
+FUNC 5c32 1e 14 _vsnwprintf_s
+5c32 3 375 1380
+5c35 19 376 1380
+5c4e 2 377 1380
+FUNC 5c50 27 10 _vswprintf_p
+5c50 0 385 1380
+5c50 1f 386 1380
+5c6f 7 387 1380
+5c76 1 388 1380
+FUNC 5c77 28 14 _vswprintf_p_l
+5c77 3 397 1380
+5c7a 1c 398 1380
+5c96 7 399 1380
+5c9d 2 400 1380
+FUNC 5c9f 24 4 _amsg_exit
+5c9f 0 446 2560
+5c9f 5 449 2560
+5ca4 9 450 2560
+5cad b 451 2560
+5cb8 a 452 2560
+5cc2 1 453 2560
+FUNC 5cc3 26 4 __crtCorExitProcess
+5cc3 0 650 2560
+5cc3 b 654 2560
+5cce 4 655 2560
+5cd2 c 656 2560
+5cde 4 657 2560
+5ce2 6 658 2560
+5ce8 1 668 2560
+FUNC 5ce9 15 4 __crtExitProcess
+5ce9 0 673 2560
+5ce9 a 674 2560
+5cf3 b 683 2560
+FUNC 5cfe 9 0 _lockexit
+5cfe 0 733 2560
+5cfe 8 734 2560
+5d06 1 735 2560
+FUNC 5d07 9 0 _unlockexit
+5d07 0 759 2560
+5d07 8 760 2560
+5d0f 1 761 2560
+FUNC 5d10 18 4 _initterm
+5d10 3 841 2560
+5d13 2 855 2560
+5d15 6 853 2560
+5d1b 2 854 2560
+5d1d 3 855 2560
+5d20 7 848 2560
+5d27 1 857 2560
+FUNC 5d28 20 8 _initterm_e
+5d28 1 890 2560
+5d29 c 899 2560
+5d35 6 904 2560
+5d3b 2 905 2560
+5d3d 3 906 2560
+5d40 7 899 2560
+5d47 1 910 2560
+FUNC 5d48 37 4 _get_osplatform
+5d48 0 929 2560
+5d48 27 931 2560
+5d6f 1 939 2560
+5d70 9 934 2560
+5d79 2 936 2560
+5d7b 3 938 2560
+5d7e 1 939 2560
+FUNC 5d7f 3c 4 _get_osver
+5d7f 0 958 2560
+5d7f 27 960 2560
+5da6 1 968 2560
+5da7 8 963 2560
+5daf 8 965 2560
+5db7 3 967 2560
+5dba 1 968 2560
+FUNC 5dbb 3c 4 _get_winver
+5dbb 0 987 2560
+5dbb 27 989 2560
+5de2 1 997 2560
+5de3 8 992 2560
+5deb 8 994 2560
+5df3 3 996 2560
+5df6 1 997 2560
+FUNC 5df7 3c 4 _get_winmajor
+5df7 0 1016 2560
+5df7 27 1018 2560
+5e1e 1 1026 2560
+5e1f 8 1021 2560
+5e27 8 1023 2560
+5e2f 3 1025 2560
+5e32 1 1026 2560
+FUNC 5e33 3c 4 _get_winminor
+5e33 0 1045 2560
+5e33 27 1047 2560
+5e5a 1 1055 2560
+5e5b 8 1050 2560
+5e63 8 1052 2560
+5e6b 3 1054 2560
+5e6e 1 1055 2560
+FUNC 5e6f 37 4 _get_wpgmptr
+5e6f 0 1074 2560
+5e6f 27 1076 2560
+5e96 1 1085 2560
+5e97 9 1080 2560
+5ea0 2 1082 2560
+5ea2 3 1084 2560
+5ea5 1 1085 2560
+FUNC 5ea6 37 4 _get_pgmptr
+5ea6 0 1104 2560
+5ea6 27 1106 2560
+5ecd 1 1115 2560
+5ece 9 1110 2560
+5ed7 2 1112 2560
+5ed9 3 1114 2560
+5edc 1 1115 2560
+FUNC 5edd 92 4 _cinit
+5edd 0 263 2560
+5edd 18 273 2560
+5ef5 b 275 2560
+5f00 5 277 2560
+5f05 f 283 2560
+5f14 4 284 2560
+5f18 4 285 2560
+5f1c a 288 2560
+5f26 20 293 2560
+5f46 1a 306 2560
+5f60 c 308 2560
+5f6c 2 312 2560
+5f6e 1 313 2560
+FUNC 5f6f e2 c doexit
+5f6f c 499 2560
+5f7b 8 517 2560
+5f83 5 518 2560
+5f88 b 520 2560
+5f93 6 521 2560
+5f99 8 524 2560
+5fa1 5 526 2560
+5fa6 e 542 2560
+5fb4 12 543 2560
+5fc6 5 545 2560
+5fcb b 546 2560
+5fd6 10 551 2560
+5fe6 9 552 2560
+5fef 2 553 2560
+5ff1 10 558 2560
+6001 10 566 2560
+6011 c 584 2560
+601d 6 588 2560
+6023 6 592 2560
+6029 8 594 2560
+6031 8 596 2560
+6039 3 584 2560
+603c 6 585 2560
+6042 9 586 2560
+604b 6 597 2560
+FUNC 6051 11 4 exit
+6051 0 397 2560
+6051 10 398 2560
+6061 1 399 2560
+FUNC 6062 11 4 _exit
+6062 0 405 2560
+6062 10 406 2560
+6072 1 407 2560
+FUNC 6073 f 0 _cexit
+6073 0 412 2560
+6073 e 413 2560
+6081 1 414 2560
+FUNC 6082 f 0 _c_exit
+6082 0 419 2560
+6082 e 420 2560
+6090 1 421 2560
+FUNC 6091 4c 0 _init_pointers
+6091 1 786 2560
+6092 7 787 2560
+6099 6 789 2560
+609f 6 790 2560
+60a5 6 791 2560
+60ab 6 792 2560
+60b1 6 793 2560
+60b7 6 794 2560
+60bd 6 795 2560
+60c3 6 796 2560
+60c9 13 799 2560
+60dc 1 800 2560
+FUNC 60e0 8b 4 strlen
+60e0 0 54 880
+60e0 4 63 880
+60e4 6 64 880
+60ea 2 65 880
+60ec 2 69 880
+60ee 3 70 880
+60f1 2 71 880
+60f3 2 72 880
+60f5 6 73 880
+60fb 2 74 880
+60fd 13 76 880
+6110 2 81 880
+6112 5 82 880
+6117 2 83 880
+6119 3 84 880
+611c 2 85 880
+611e 3 86 880
+6121 5 87 880
+6126 2 88 880
+6128 3 90 880
+612b 2 91 880
+612d 2 92 880
+612f 2 93 880
+6131 2 94 880
+6133 5 95 880
+6138 2 96 880
+613a 5 97 880
+613f 2 98 880
+6141 2 99 880
+6143 3 103 880
+6146 4 104 880
+614a 2 105 880
+614c 1 106 880
+614d 3 108 880
+6150 4 109 880
+6154 2 110 880
+6156 1 111 880
+6157 3 113 880
+615a 4 114 880
+615e 2 115 880
+6160 1 116 880
+6161 3 118 880
+6164 4 119 880
+6168 2 120 880
+616a 1 121 880
+FUNC 616b 33 4 _EH_prolog3
+616b 0 93 5671
+616b 1 101 5671
+616c 7 103 5671
+6173 4 112 5671
+6177 4 113 5671
+617b 1 114 5671
+617c 1 115 5671
+617d 1 116 5671
+617e 2 117 5671
+6180 2 118 5671
+6182 5 131 5671
+6187 2 132 5671
+6189 1 133 5671
+618a 3 134 5671
+618d 7 135 5671
+6194 3 150 5671
+6197 6 151 5671
+619d 1 153 5671
+FUNC 619e 36 4 _EH_prolog3_catch
+619e 0 206 5671
+619e 1 214 5671
+619f 7 216 5671
+61a6 4 225 5671
+61aa 4 226 5671
+61ae 1 228 5671
+61af 1 229 5671
+61b0 1 230 5671
+61b1 2 231 5671
+61b3 2 232 5671
+61b5 5 246 5671
+61ba 2 247 5671
+61bc 1 248 5671
+61bd 3 249 5671
+61c0 3 250 5671
+61c3 7 251 5671
+61ca 3 267 5671
+61cd 6 268 5671
+61d3 1 270 5671
+FUNC 61d4 36 4 _EH_prolog3_GS
+61d4 0 322 5671
+61d4 1 330 5671
+61d5 7 332 5671
+61dc 4 341 5671
+61e0 4 342 5671
+61e4 1 344 5671
+61e5 1 345 5671
+61e6 1 346 5671
+61e7 2 347 5671
+61e9 2 348 5671
+61eb 5 362 5671
+61f0 2 363 5671
+61f2 1 364 5671
+61f3 3 365 5671
+61f6 3 366 5671
+61f9 7 367 5671
+6200 3 384 5671
+6203 6 385 5671
+6209 1 387 5671
+FUNC 620a 39 4 _EH_prolog3_catch_GS
+620a 0 441 5671
+620a 1 449 5671
+620b 7 451 5671
+6212 4 460 5671
+6216 4 461 5671
+621a 1 463 5671
+621b 1 464 5671
+621c 1 465 5671
+621d 2 466 5671
+621f 2 467 5671
+6221 5 482 5671
+6226 2 483 5671
+6228 1 484 5671
+6229 3 485 5671
+622c 3 486 5671
+622f 3 487 5671
+6232 7 488 5671
+6239 3 505 5671
+623c 6 506 5671
+6242 1 508 5671
+FUNC 6243 14 0 _EH_epilog3
+6243 0 534 5671
+6243 3 537 5671
+6246 7 538 5671
+624d 1 539 5671
+624e 1 540 5671
+624f 1 541 5671
+6250 1 542 5671
+6251 1 543 5671
+6252 2 544 5671
+6254 1 545 5671
+6255 1 546 5671
+6256 1 547 5671
+FUNC 6257 f 0 _EH_epilog3_GS
+6257 0 575 5671
+6257 3 578 5671
+625a 2 579 5671
+625c 5 580 5671
+6261 5 581 5671
+FUNC 6266 f 0 _EH_epilog3_catch_GS
+6266 0 609 5671
+6266 3 612 5671
+6269 2 613 5671
+626b 5 614 5671
+6270 5 615 5671
+FUNC 6275 96 4 _stbuf
+6275 1 59 1850
+6276 14 69 1850
+628a 2 70 1850
+628c c 73 1850
+6298 4 74 1850
+629c c 75 1850
+62a8 3 76 1850
+62ab 6 82 1850
+62b1 6 86 1850
+62b7 4 87 1850
+62bb 1e 91 1850
+62d9 3 93 1850
+62dc e 94 1850
+62ea 2 96 1850
+62ec 7 98 1850
+62f3 6 99 1850
+62f9 8 102 1850
+6301 5 104 1850
+6306 1 105 1850
+6307 3 78 1850
+630a 1 105 1850
+FUNC 630b 2f 8 _ftbuf
+630b 0 138 1850
+630b 8 146 1850
+6313 c 148 1850
+631f 6 151 1850
+6325 7 152 1850
+632c 4 153 1850
+6330 9 154 1850
+6339 1 166 1850
+FUNC 633a 82 4 _LocaleUpdate::_LocaleUpdate(localeinfo_struct *)
+633a 0 261 1343
+633a f 262 1343
+6349 8 264 1343
+6351 5 265 1343
+6356 6 266 1343
+635c 1c 268 1343
+6378 21 269 1343
+6399 9 270 1343
+63a2 4 272 1343
+63a6 4 273 1343
+63aa 2 276 1343
+63ac a 278 1343
+63b6 6 280 1343
+FUNC 63bc e 0 _LocaleUpdate::~_LocaleUpdate()
+63bc 0 282 1343
+63bc 6 283 1343
+63c2 7 284 1343
+63c9 1 285 1343
+FUNC 63ca 3 0 _LocaleUpdate::GetLocaleT()
+63ca 2 287 1343
+63cc 1 289 1343
+FUNC 63cd 33 0 write_char
+63cd 0 2433 1312
+63cd a 2434 1312
+63d7 2 2437 1312
+63d9 21 2442 1312
+63fa 2 2444 1312
+63fc 1 2447 1312
+63fd 2 2446 1312
+63ff 1 2447 1312
+FUNC 6400 24 c write_multi_char
+6400 6 2498 1312
+6406 2 2501 1312
+6408 e 2500 1312
+6416 5 2501 1312
+641b 7 2499 1312
+6422 2 2504 1312
+FUNC 6424 4a 4 write_string
+6424 0 2563 1312
+6424 12 2564 1312
+6436 6 2566 1312
+643c 2 2567 1312
+643e e 2570 1312
+644c 5 2571 1312
+6451 a 2573 1312
+645b 9 2574 1312
+6464 9 2569 1312
+646d 1 2579 1312
+FUNC 646e d 4 get_int_arg
+646e 0 2602 1312
+646e c 2603 1312
+647a 1 2604 1312
+FUNC 647b 10 4 get_int64_arg
+647b 0 2644 1312
+647b f 2645 1312
+648a 1 2646 1312
+FUNC 648b e 4 get_short_arg
+648b 0 2671 1312
+648b d 2672 1312
+6498 1 2673 1312
+FUNC 6499 994 10 _output_l
+6499 1b 975 1312
+64b4 45 1036 1312
+64f9 2d 1031 1312
+6526 b1 1033 1312
+65d7 8 1036 1312
+65df 26 1073 1312
+6605 1d 1075 1312
+6622 8 1076 1312
+662a 18 1131 1312
+6642 13 1173 1312
+6655 3 1174 1312
+6658 5 1175 1312
+665d 1f 1179 1312
+667c 4 1193 1312
+6680 5 1194 1312
+6685 4 1181 1312
+6689 5 1182 1312
+668e 4 1184 1312
+6692 5 1185 1312
+6697 7 1190 1312
+669e 5 1191 1312
+66a3 4 1187 1312
+66a7 5 1196 1312
+66ac 5 1200 1312
+66b1 9 1206 1312
+66ba b 1233 1312
+66c5 4 1235 1312
+66c9 3 1236 1312
+66cc 5 1239 1312
+66d1 10 1241 1312
+66e1 5 1243 1312
+66e6 3 1248 1312
+66e9 5 1249 1312
+66ee 5 1253 1312
+66f3 9 1259 1312
+66fc b 1284 1312
+6707 4 1285 1312
+670b 5 1287 1312
+6710 10 1289 1312
+6720 5 1291 1312
+6725 18 1295 1312
+673d 7 1362 1312
+6744 5 1363 1312
+6749 5 1301 1312
+674e 1 1303 1312
+674f a 1304 1312
+6759 5 1306 1312
+675e 4 1308 1312
+6762 5 1310 1312
+6767 4 1358 1312
+676b 5 1359 1312
+6770 c 1322 1312
+677c 2 1324 1312
+677e f 1325 1312
+678d a 1327 1312
+6797 2 1329 1312
+6799 a 1330 1312
+67a3 5 1332 1312
+67a8 30 1337 1312
+67d8 3 1352 1312
+67db 13 1158 1312
+67ee 11 1160 1312
+67ff 3 1161 1312
+6802 b 1163 1312
+680d b 1166 1312
+6818 5 1167 1312
+681d 32 1378 1312
+684f d 1716 1312
+685c 4 1724 1312
+6860 17 1749 1312
+6877 c 1750 1312
+6883 8 1381 1312
+688b 9 1385 1312
+6894 8 1561 1312
+689c 7 1562 1312
+68a3 d 1584 1312
+68b0 3 1589 1312
+68b3 15 1635 1312
+68c8 4 1636 1312
+68cc 8 1637 1312
+68d4 f 1639 1312
+68e3 1d 1378 1312
+6900 12 1448 1312
+6912 16 1467 1312
+6928 4 1470 1312
+692c 7 1471 1312
+6933 2 1472 1312
+6935 6 1499 1312
+693b 7 1500 1312
+6942 6 1503 1312
+6948 5 1506 1312
+694d 5 1523 1312
+6952 e 1541 1312
+6960 6 1546 1312
+6966 d 1548 1312
+6973 7 1549 1312
+697a 5 1550 1312
+697f 3 1551 1312
+6982 5 1553 1312
+6987 8 1543 1312
+698f 7 1544 1312
+6996 5 1557 1312
+699b 34 1378 1312
+69cf d 1908 1312
+69dc 9 1910 1312
+69e5 8 1668 1312
+69ed d 1688 1312
+69fa 6 1702 1312
+6a00 7 1703 1312
+6a07 2 1704 1312
+6a09 5 1706 1312
+6a0e 7 1708 1312
+6a15 5 1710 1312
+6a1a 4 1864 1312
+6a1e 7 1869 1312
+6a25 c 1933 1312
+6a31 8 1939 1312
+6a39 5 1958 1312
+6a3e 7 1751 1312
+6a45 9 1752 1312
+6a4e 5 1753 1312
+6a53 3 1754 1312
+6a56 9 1756 1312
+6a5f f 1759 1312
+6a6e 2 1760 1312
+6a70 13 1765 1312
+6a83 9 1767 1312
+6a8c e 1809 1312
+6a9a 27 1828 1312
+6ac1 13 1838 1312
+6ad4 15 1840 1312
+6ae9 a 1844 1312
+6af3 15 1846 1312
+6b08 5 1852 1312
+6b0d 7 1853 1312
+6b14 4 1854 1312
+6b18 1 1857 1312
+6b19 5 1859 1312
+6b1e 7 1877 1312
+6b25 3 1887 1312
+6b28 2 1888 1312
+6b2a 1a 1378 1312
+6b44 7 1892 1312
+6b4b 11 1897 1312
+6b5c c 1900 1312
+6b68 7 1901 1312
+6b6f 5 1903 1312
+6b74 5 1961 1312
+6b79 6 1987 1312
+6b7f 14 2026 1312
+6b93 2 2045 1312
+6b95 5 2051 1312
+6b9a 2 2071 1312
+6b9c 3 2074 1312
+6b9f 6 2080 1312
+6ba5 2 2099 1312
+6ba7 5 2105 1312
+6bac f 2128 1312
+6bbb 7 2129 1312
+6bc2 7 2130 1312
+6bc9 c 2136 1312
+6bd5 2 2142 1312
+6bd7 6 2148 1312
+6bdd 7 2149 1312
+6be4 2 2150 1312
+6be6 4 2151 1312
+6bea a 2152 1312
+6bf4 3 2153 1312
+6bf7 6 2157 1312
+6bfd 3 2158 1312
+6c00 6 2163 1312
+6c06 10 2165 1312
+6c16 10 2166 1312
+6c26 c 2168 1312
+6c32 3 2170 1312
+6c35 3 2172 1312
+6c38 2 2173 1312
+6c3a 8 2175 1312
+6c42 1 2176 1312
+6c43 19 2180 1312
+6c5c 9 2181 1312
+6c65 1 2182 1312
+6c66 2 2185 1312
+6c68 6 1640 1312
+6c6e 2 1641 1312
+6c70 4 1640 1312
+6c74 5 1642 1312
+6c79 2 1644 1312
+6c7b 4 1645 1312
+6c7f 8 1646 1312
+6c87 5 1647 1312
+6c8c 6 1648 1312
+6c92 1 1649 1312
+6c93 4 1648 1312
+6c97 6 1650 1312
+6c9d a 2201 1312
+6ca7 7 2204 1312
+6cae 6 2205 1312
+6cb4 4 2207 1312
+6cb8 2 2208 1312
+6cba 4 2210 1312
+6cbe 4 2212 1312
+6cc2 2 2213 1312
+6cc4 4 2215 1312
+6cc8 4 2217 1312
+6ccc 7 2218 1312
+6cd3 9 2224 1312
+6cdc 6 2228 1312
+6ce2 11 2230 1312
+6cf3 11 2234 1312
+6d04 d 2236 1312
+6d11 f 2238 1312
+6d20 d 2243 1312
+6d2d 3 2249 1312
+6d30 3 2250 1312
+6d33 1e 2252 1312
+6d51 9 2253 1312
+6d5a 18 2257 1312
+6d72 2 1690 1312
+6d74 4 2254 1312
+6d78 2 2259 1312
+6d7a d 2260 1312
+6d87 c 2290 1312
+6d93 f 2292 1312
+6da2 6 2297 1312
+6da8 8 2298 1312
+6db0 1e 2299 1312
+6dce 17 1163 1312
+6de5 10 2376 1312
+6df5 38 2377 1312
+FUNC 6e2d 3b 4 _get_errno_from_oserr
+6e2d 0 119 6100
+6e2d 6 123 6100
+6e33 f 124 6100
+6e42 8 133 6100
+6e4a 3 134 6100
+6e4d 1 139 6100
+6e4e 7 125 6100
+6e55 1 139 6100
+6e56 11 135 6100
+6e67 1 139 6100
+FUNC 6e68 13 0 _errno
+6e68 0 280 6100
+6e68 5 281 6100
+6e6d 4 282 6100
+6e71 5 283 6100
+6e76 1 288 6100
+6e77 3 285 6100
+6e7a 1 288 6100
+FUNC 6e7b 13 0 __doserrno
+6e7b 0 293 6100
+6e7b 5 294 6100
+6e80 4 295 6100
+6e84 5 296 6100
+6e89 1 300 6100
+6e8a 3 298 6100
+6e8d 1 300 6100
+FUNC 6e8e 1e 4 _dosmaperr
+6e8e 1 110 6100
+6e8f 9 111 6100
+6e98 13 113 6100
+6eab 1 114 6100
+FUNC 6eac 1b 4 _set_errno
+6eac 0 157 6100
+6eac 5 158 6100
+6eb1 4 159 6100
+6eb5 3 161 6100
+6eb8 1 168 6100
+6eb9 b 165 6100
+6ec4 2 166 6100
+6ec6 1 168 6100
+FUNC 6ec7 2a 4 _get_errno
+6ec7 1 187 6100
+6ec8 1b 189 6100
+6ee3 1 195 6100
+6ee4 9 193 6100
+6eed 3 194 6100
+6ef0 1 195 6100
+FUNC 6ef1 1b 4 _set_doserrno
+6ef1 0 213 6100
+6ef1 5 214 6100
+6ef6 4 215 6100
+6efa 3 217 6100
+6efd 1 224 6100
+6efe b 221 6100
+6f09 2 222 6100
+6f0b 1 224 6100
+FUNC 6f0c 2a 4 _get_doserrno
+6f0c 1 243 6100
+6f0d 1b 245 6100
+6f28 1 251 6100
+6f29 9 249 6100
+6f32 3 250 6100
+6f35 1 251 6100
+FUNC 6f38 45 0 _SEH_prolog4
+FUNC 6f7d 14 0 _SEH_epilog4
+FUNC 6fa0 24 0 ValidateLocalCookies
+FUNC 6fd0 196 10 _except_handler4
+FUNC 7166 90 10 vprintf_helper
+7166 c 47 1507
+7172 d 48 1507
+717f 2b 52 1507
+71aa 7 55 1507
+71b1 3 56 1507
+71b4 8 58 1507
+71bc 10 59 1507
+71cc a 60 1507
+71d6 c 63 1507
+71e2 3 67 1507
+71e5 6 68 1507
+71eb 3 63 1507
+71ee 8 64 1507
+FUNC 71f6 1a c _vprintf_l
+71f6 0 75 1507
+71f6 19 76 1507
+720f 1 77 1507
+FUNC 7210 1a c _vprintf_s_l
+7210 0 84 1507
+7210 19 85 1507
+7229 1 86 1507
+FUNC 722a 1a c _vprintf_p_l
+722a 0 93 1507
+722a 19 94 1507
+7243 1 95 1507
+FUNC 7244 18 8 vprintf
+7244 0 101 1507
+7244 17 102 1507
+725b 1 103 1507
+FUNC 725c 18 8 vprintf_s
+725c 0 109 1507
+725c 17 110 1507
+7273 1 111 1507
+FUNC 7274 18 8 _vprintf_p
+7274 0 117 1507
+7274 17 118 1507
+728b 1 119 1507
+FUNC 728c 104 0 __report_gsfailure
+728c 9 140 3731
+7295 5 170 3731
+729a 6 171 3731
+72a0 6 172 3731
+72a6 6 173 3731
+72ac 6 174 3731
+72b2 6 175 3731
+72b8 7 176 3731
+72bf 7 177 3731
+72c6 7 178 3731
+72cd 7 179 3731
+72d4 7 180 3731
+72db 7 181 3731
+72e2 1 182 3731
+72e3 6 183 3731
+72e9 3 190 3731
+72ec 5 191 3731
+72f1 3 192 3731
+72f4 5 193 3731
+72f9 3 194 3731
+72fc 5 195 3731
+7301 6 201 3731
+7307 a 204 3731
+7311 a 206 3731
+731b a 285 3731
+7325 a 286 3731
+732f b 293 3731
+733a b 294 3731
+7345 b 297 3731
+7350 8 298 3731
+7358 8 302 3731
+7360 b 304 3731
+736b 9 313 3731
+7374 8 315 3731
+737c 12 319 3731
+738e 2 320 3731
+FUNC 7390 5c6 c _write_nolock
+7390 22 95 4777
+73b2 2 106 4777
+73b4 11 108 4777
+73c5 7 109 4777
+73cc 2b 111 4777
+73f7 27 113 4777
+741e 10 116 4777
+742e 33 119 4777
+7461 6 122 4777
+7467 f 126 4777
+7476 1c 143 4777
+7492 5 146 4777
+7497 8 147 4777
+749f 14 148 4777
+74b3 16 152 4777
+74c9 6 153 4777
+74cf 4 157 4777
+74d3 16 160 4777
+74e9 9 153 4777
+74f2 b 163 4777
+74fd 9 164 4777
+7506 11 170 4777
+7517 18 171 4777
+752f 2 173 4777
+7531 14 174 4777
+7545 18 175 4777
+755d 4 181 4777
+7561 2e 205 4777
+758f 21 212 4777
+75b0 6 213 4777
+75b6 8 214 4777
+75be a 222 4777
+75c8 29 229 4777
+75f1 a 230 4777
+75fb 3 232 4777
+75fe 3 233 4777
+7601 2 238 4777
+7603 8 186 4777
+760b 3 191 4777
+760e 9 192 4777
+7617 f 193 4777
+7626 8 240 4777
+762e 13 242 4777
+7641 3 244 4777
+7644 6 251 4777
+764a 3 254 4777
+764d 14 255 4777
+7661 3 257 4777
+7664 12 258 4777
+7676 5 236 4777
+767b e 268 4777
+7689 12 277 4777
+769b f 278 4777
+76aa d 279 4777
+76b7 8 283 4777
+76bf 9 284 4777
+76c8 5 285 4777
+76cd 3 286 4777
+76d0 7 287 4777
+76d7 f 289 4777
+76e6 25 297 4777
+770b 6 299 4777
+7711 16 300 4777
+7727 f 308 4777
+7736 f 314 4777
+7745 b 315 4777
+7750 8 319 4777
+7758 c 320 4777
+7764 6 321 4777
+776a 4 322 4777
+776e c 323 4777
+777a f 325 4777
+7789 25 333 4777
+77ae 6 335 4777
+77b4 1a 336 4777
+77ce 5 344 4777
+77d3 f 359 4777
+77e2 13 361 4777
+77f5 8 365 4777
+77fd b 366 4777
+7808 6 367 4777
+780e a 369 4777
+7818 11 371 4777
+7829 2f 382 4777
+7858 4 384 4777
+785c 25 406 4777
+7881 3 407 4777
+7884 6 412 4777
+788a 9 409 4777
+7893 4 419 4777
+7897 15 423 4777
+78ac 2 428 4777
+78ae 1b 434 4777
+78c9 a 437 4777
+78d3 2 439 4777
+78d5 9 440 4777
+78de a 443 4777
+78e8 7 447 4777
+78ef 8 449 4777
+78f7 b 452 4777
+7902 2 455 4777
+7904 9 456 4777
+790d 2 457 4777
+790f 11 459 4777
+7920 4 460 4777
+7924 b 462 4777
+792f 7 463 4777
+7936 5 464 4777
+793b 5 469 4777
+7940 16 470 4777
+FUNC 7956 dc c _write
+7956 c 61 4777
+7962 23 66 4777
+7985 2f 67 4777
+79b4 20 68 4777
+79d4 7 70 4777
+79db 3 72 4777
+79de 9 73 4777
+79e7 14 74 4777
+79fb 2 75 4777
+79fd b 76 4777
+7a08 7 77 4777
+7a0f 4 78 4777
+7a13 c 82 4777
+7a1f 3 86 4777
+7a22 6 87 4777
+7a28 a 83 4777
+FUNC 7a32 2d 4 _fileno
+7a32 0 40 2176
+7a32 27 41 2176
+7a59 1 43 2176
+7a5a 4 42 2176
+7a5e 1 43 2176
+FUNC 7a5f e1 4 _commit
+7a5f c 39 5043
+7a6b 1b 43 5043
+7a86 28 44 5043
+7aae 20 45 5043
+7ace 7 47 5043
+7ad5 3 48 5043
+7ad8 9 49 5043
+7ae1 14 51 5043
+7af5 9 52 5043
+7afe 2 54 5043
+7b00 3 55 5043
+7b03 5 59 5043
+7b08 a 62 5043
+7b12 b 66 5043
+7b1d 4 67 5043
+7b21 c 72 5043
+7b2d 3 75 5043
+7b30 6 76 5043
+7b36 a 73 5043
+FUNC 7b40 49 0 _mtinitlocks
+7b40 2 137 2371
+7b42 7 144 2371
+7b49 11 145 2371
+7b5a 2 146 2371
+7b5c 15 148 2371
+7b71 6 144 2371
+7b77 5 157 2371
+7b7c d 158 2371
+FUNC 7b89 55 0 _mtdeletelocks
+7b89 1 188 2371
+7b8a d 194 2371
+7b97 c 196 2371
+7ba3 3 200 2371
+7ba6 6 206 2371
+7bac f 207 2371
+7bbb 6 215 2371
+7bc1 c 217 2371
+7bcd 10 221 2371
+7bdd 1 224 2371
+FUNC 7bde 15 4 _unlock
+7bde 3 371 2371
+7be1 10 375 2371
+7bf1 2 376 2371
+FUNC 7bf3 18 4 _lockerr_exit
+7bf3 0 403 2371
+7bf3 c 404 2371
+7bff b 405 2371
+7c0a 1 406 2371
+FUNC 7c0b c3 4 _mtinitlocknum
+7c0b c 259 2371
+7c17 6 261 2371
+7c1d a 269 2371
+7c27 5 270 2371
+7c2c 7 271 2371
+7c33 c 272 2371
+7c3f e 276 2371
+7c4d 4 277 2371
+7c51 e 279 2371
+7c5f b 280 2371
+7c6a 4 281 2371
+7c6e 8 284 2371
+7c76 3 285 2371
+7c79 4 287 2371
+7c7d 11 288 2371
+7c8e 7 289 2371
+7c95 b 290 2371
+7ca0 3 291 2371
+7ca3 2 292 2371
+7ca5 2 293 2371
+7ca7 2 296 2371
+7ca9 7 297 2371
+7cb0 c 300 2371
+7cbc 3 304 2371
+7cbf 6 305 2371
+7cc5 9 301 2371
+FUNC 7cce 31 4 _lock
+7cce 3 333 2371
+7cd1 10 338 2371
+7ce1 b 340 2371
+7cec 8 341 2371
+7cf4 9 348 2371
+7cfd 2 349 2371
+FUNC 7cff 240 0 _ioinit
+7cff c 111 4958
+7d0b 5 122 4958
+7d10 a 127 4958
+7d1a 7 128 4958
+7d21 f 137 4958
+7d30 6 139 4958
+7d36 5 142 4958
+7d3b 6 143 4958
+7d41 8 145 4958
+7d49 4 146 4958
+7d4d 3 147 4958
+7d50 4 148 4958
+7d54 3 149 4958
+7d57 4 151 4958
+7d5b 4 152 4958
+7d5f 4 153 4958
+7d63 13 145 4958
+7d76 15 161 4958
+7d8b 2 166 4958
+7d8d 3 172 4958
+7d90 6 173 4958
+7d96 b 179 4958
+7da1 5 185 4958
+7da6 f 191 4958
+7db5 9 204 4958
+7dbe 7 205 4958
+7dc5 8 207 4958
+7dcd 4 208 4958
+7dd1 3 209 4958
+7dd4 4 210 4958
+7dd8 4 211 4958
+7ddc 4 212 4958
+7de0 4 213 4958
+7de4 4 214 4958
+7de8 f 207 4958
+7df7 9 185 4958
+7e00 2 284 4958
+7e02 6 197 4958
+7e08 8 221 4958
+7e10 24 234 4958
+7e34 15 236 4958
+7e49 7 237 4958
+7e50 5 238 4958
+7e55 18 241 4958
+7e6d 3 243 4958
+7e70 d 221 4958
+7e7d 2 253 4958
+7e7f b 255 4958
+7e8a c 258 4958
+7e96 6 306 4958
+7e9c 4 262 4958
+7ea0 30 266 4958
+7ed0 2 271 4958
+7ed2 a 277 4958
+7edc 6 278 4958
+7ee2 5 279 4958
+7ee7 4 280 4958
+7eeb 14 284 4958
+7eff 3 286 4958
+7f02 2 288 4958
+7f04 4 297 4958
+7f08 6 298 4958
+7f0e a 253 4958
+7f18 c 313 4958
+7f24 4 315 4958
+7f28 7 128 4958
+7f2f a 129 4958
+7f39 6 316 4958
+FUNC 7f3f 4c 0 _ioterm
+7f3f 2 341 4958
+7f41 5 345 4958
+7f46 6 347 4958
+7f4c 8 353 4958
+7f54 9 355 4958
+7f5d 11 356 4958
+7f6e 4 353 4958
+7f72 7 361 4958
+7f79 11 362 4958
+7f8a 1 365 4958
+FUNC 7f8b 21 4 wait_a_bit
+7f8b 1 18 5557
+7f8c b 19 5557
+7f97 6 20 5557
+7f9d 8 21 5557
+7fa5 3 22 5557
+7fa8 3 23 5557
+7fab 1 24 5557
+FUNC 7fac 10 4 _set_malloc_crt_max_wait
+7fac 0 32 5557
+7fac f 34 5557
+7fbb 1 36 5557
+FUNC 7fbc 40 4 _malloc_crt
+7fbc 2 39 5557
+7fbe 2 40 5557
+7fc0 b 44 5557
+7fcb d 45 5557
+7fd8 18 46 5557
+7ff0 7 47 5557
+7ff7 4 50 5557
+7ffb 1 51 5557
+FUNC 7ffc 48 8 _calloc_crt
+7ffc 2 54 5557
+7ffe 2 55 5557
+8000 14 61 5557
+8014 c 62 5557
+8020 18 63 5557
+8038 7 64 5557
+803f 4 67 5557
+8043 1 68 5557
+FUNC 8044 4b 8 _realloc_crt
+8044 2 71 5557
+8046 2 72 5557
+8048 f 76 5557
+8057 14 77 5557
+806b 18 78 5557
+8083 7 79 5557
+808a 4 82 5557
+808e 1 83 5557
+FUNC 808f 50 c _recalloc_crt
+808f 2 86 5557
+8091 2 87 5557
+8093 16 91 5557
+80a9 12 92 5557
+80bb 18 94 5557
+80d3 7 95 5557
+80da 4 100 5557
+80de 1 101 5557
+FUNC 80df 8 0 _malloc_crt_fastcall
+80df 0 105 5557
+80df 7 106 5557
+80e6 1 107 5557
+FUNC 80e7 a 0 _calloc_crt_fastcall
+80e7 0 110 5557
+80e7 9 111 5557
+80f0 1 112 5557
+FUNC 80f1 a 0 _realloc_crt_fastcall
+80f1 0 115 5557
+80f1 9 116 5557
+80fa 1 117 5557
+FUNC 80fb 8e 4 free
+80fb c 42 5515
+8107 7 47 5515
+810e 9 53 5515
+8117 8 57 5515
+811f 4 58 5515
+8123 e 60 5515
+8131 9 61 5515
+813a c 64 5515
+8146 6 68 5515
+814c 3 70 5515
+814f 2 106 5515
+8151 9 65 5515
+815a f 109 5515
+8169 4 110 5515
+816d 16 112 5515
+8183 6 115 5515
+FUNC 8189 9f 0 _fcloseall
+8189 c 43 1792
+8195 5 44 1792
+819a 8 47 1792
+81a2 3 48 1792
+81a5 e 50 1792
+81b3 10 52 1792
+81c3 14 57 1792
+81d7 3 58 1792
+81da 5 63 1792
+81df 12 65 1792
+81f1 e 66 1792
+81ff 8 67 1792
+8207 3 50 1792
+820a c 73 1792
+8216 3 77 1792
+8219 6 78 1792
+821f 9 74 1792
+FUNC 8228 19 4 std::bad_exception::bad_exception(char const *)
+8228 13 351 6035
+823b 6 352 6035
+FUNC 8241 b 0 std::bad_exception::~bad_exception()
+8241 6 355 6035
+8247 5 356 6035
+FUNC 824c 22 0 std::bad_exception::`vector deleting destructor'(unsigned int)
+FUNC 826e 5c c __TypeMatch
+826e 2 999 6034
+8270 13 1001 6034
+8283 1b 1008 6034
+829e 4 1009 6034
+82a2 22 1023 6034
+82c4 5 1002 6034
+82c9 1 1024 6034
+FUNC 82ca 44 4 __FrameUnwindFilter
+82ca 0 1035 6034
+82ca 6 1038 6034
+82d0 e 1040 6034
+82de 13 1076 6034
+82f1 e 1068 6034
+82ff c 1070 6034
+830b 2 1072 6034
+830d 1 1078 6034
+FUNC 830e e1 10 __FrameUnwindToState
+830e c 1105 6034
+831a 1b 1112 6034
+8335 c 1114 6034
+8341 4 1115 6034
+8345 5 1119 6034
+834a f 1123 6034
+8359 f 1126 6034
+8368 7 1128 6034
+836f 6 1131 6034
+8375 3 1138 6034
+8378 12 1145 6034
+838a 6 1149 6034
+8390 d 1151 6034
+839d d 1153 6034
+83aa 3 1155 6034
+83ad 2 1156 6034
+83af c 1157 6034
+83bb a 1169 6034
+83c5 3 1176 6034
+83c8 6 1180 6034
+83ce 6 1157 6034
+83d4 e 1158 6034
+83e2 d 1159 6034
+FUNC 83ef 45 0 ExFilterRethrow
+83ef 0 1533 6034
+83ef 2 1535 6034
+83f1 2f 1538 6034
+8420 e 1542 6034
+842e 2 1543 6034
+8430 1 1547 6034
+8431 2 1545 6034
+8433 1 1547 6034
+FUNC 8434 54 8 __DestructExceptionObject
+8434 c 1791 6034
+8440 f 1794 6034
+844f e 1801 6034
+845d 4 1803 6034
+8461 9 1810 6034
+846a 7 1814 6034
+8471 6 1824 6034
+8477 c 1815 6034
+8483 5 1819 6034
+FUNC 8488 25 8 __AdjustPointer
+8488 0 1842 6034
+8488 d 1843 6034
+8495 6 1845 6034
+849b 3 1850 6034
+849e e 1852 6034
+84ac 1 1856 6034
+FUNC 84ad 13 0 __uncaught_exception()
+84ad 0 1867 6034
+84ad 12 1868 6034
+84bf 1 1869 6034
+FUNC 84c0 b3 8 __CxxRegisterExceptionObject
+84c0 0 2077 6034
+84c0 14 2085 6034
+84d4 26 2087 6034
+84fa 6 2088 6034
+8500 b 2090 6034
+850b b 2093 6034
+8516 e 2094 6034
+8524 e 2095 6034
+8532 b 2096 6034
+853d 2 2097 6034
+853f 4 2098 6034
+8543 4 2099 6034
+8547 c 2101 6034
+8553 10 2102 6034
+8563 c 2103 6034
+856f 3 2104 6034
+8572 1 2105 6034
+FUNC 8573 4c 4 __CxxDetectRethrow
+8573 0 2117 6034
+8573 6 2119 6034
+8579 2 2120 6034
+857b 2 2121 6034
+857d 2f 2122 6034
+85ac c 2123 6034
+85b8 3 2124 6034
+85bb 1 2127 6034
+85bc 2 2126 6034
+85be 1 2127 6034
+FUNC 85bf 139 8 __CxxUnregisterExceptionObject
+85bf 1 2139 6034
+85c0 4 2143 6034
+85c4 d 2145 6034
+85d1 6 2146 6034
+85d7 85 2149 6034
+865c 14 2150 6034
+8670 5b 2152 6034
+86cb c 2153 6034
+86d7 e 2154 6034
+86e5 12 2155 6034
+86f7 1 2157 6034
+FUNC 86f8 4 0 __CxxQueryExceptionSize
+86f8 0 2167 6034
+86f8 3 2168 6034
+86fb 1 2169 6034
+FUNC 86fc 32 8 __CxxCallUnwindDtor
+86fc c 2189 6034
+8708 4 2190 6034
+870c 6 2192 6034
+8712 2 2193 6034
+8714 d 2194 6034
+8721 7 2197 6034
+8728 6 2198 6034
+FUNC 872e 33 8 __CxxCallUnwindDelDtor
+872e c 2218 6034
+873a 4 2219 6034
+873e 7 2221 6034
+8745 2 2222 6034
+8747 d 2223 6034
+8754 7 2226 6034
+875b 6 2227 6034
+FUNC 8761 32 8 __CxxCallUnwindStdDelDtor
+8761 c 2247 6034
+876d 4 2248 6034
+8771 6 2250 6034
+8777 2 2251 6034
+8779 d 2252 6034
+8786 7 2255 6034
+878d 6 2256 6034
+FUNC 8793 3b 14 __CxxCallUnwindVecDtor
+8793 c 2282 6034
+879f 4 2283 6034
+87a3 f 2285 6034
+87b2 2 2286 6034
+87b4 d 2287 6034
+87c1 7 2290 6034
+87c8 6 2291 6034
+FUNC 87ce 79 4 IsInExceptionSpec
+87ce 6 2302 6034
+87d4 9 2303 6034
+87dd 5 2307 6034
+87e2 f 2323 6034
+87f1 9 2326 6034
+87fa 2 2327 6034
+87fc 10 2328 6034
+880c 26 2335 6034
+8832 4 2337 6034
+8836 c 2323 6034
+8842 3 2343 6034
+8845 2 2344 6034
+FUNC 8847 49 4 CallUnexpected
+8847 c 2379 6034
+8853 13 2380 6034
+8866 4 2383 6034
+886a 5 2384 6034
+886f 4 2391 6034
+8873 5 2392 6034
+8878 8 2388 6034
+8880 10 2390 6034
+FUNC 8890 30 0 Is_bad_exception_allowed
+8890 2 2399 6034
+8892 8 2400 6034
+889a 1d 2402 6034
+88b7 4 2408 6034
+88bb 1 2409 6034
+88bc 4 2404 6034
+FUNC 88c0 82 8 _is_exception_typeof(type_info const &,_EXCEPTION_POINTERS *)
+88c0 1 2416 6034
+88c1 e 2417 6034
+88cf 2 2419 6034
+88d1 9 2422 6034
+88da 2b 2423 6034
+8905 6 2432 6034
+890b 7 2433 6034
+8912 2 2445 6034
+8914 20 2446 6034
+8934 4 2439 6034
+8938 4 2454 6034
+893c 6 2455 6034
+FUNC 8942 19c 18 CallCatchBlock
+8942 14 1431 6034
+8956 3 1437 6034
+8959 4 1439 6034
+895d 6 1443 6034
+8963 11 1447 6034
+8974 e 1451 6034
+8982 e 1452 6034
+8990 b 1454 6034
+899b e 1455 6034
+89a9 a 1457 6034
+89b3 3 1458 6034
+89b6 16 1463 6034
+89cc 12 1464 6034
+89de c 1465 6034
+89ea 3 1470 6034
+89ed 15 1471 6034
+8a02 3 1472 6034
+8a05 c 1474 6034
+8a11 11 1476 6034
+8a22 7 1478 6034
+8a29 d 1482 6034
+8a36 b 1486 6034
+8a41 13 1488 6034
+8a54 3 1517 6034
+8a57 6 1518 6034
+8a5d 5 1474 6034
+8a62 6 1488 6034
+8a68 6 1494 6034
+8a6e 9 1497 6034
+8a77 e 1500 6034
+8a85 e 1501 6034
+8a93 3f 1510 6034
+8ad2 c 1511 6034
+FUNC 8ade 17f 10 __BuildCatchObjectHelper
+8ade c 1575 6034
+8aea 5 1576 6034
+8aef 2a 1582 6034
+8b19 2 1588 6034
+8b1b 3 1590 6034
+8b1e 2 1588 6034
+8b20 2 1592 6034
+8b22 4 1611 6034
+8b26 3 1614 6034
+8b29 4 1622 6034
+8b2d 4 1615 6034
+8b31 26 1622 6034
+8b57 5 1623 6034
+8b5c 11 1625 6034
+8b6d 5 1628 6034
+8b72 3 1629 6034
+8b75 6 1636 6034
+8b7b 4 1629 6034
+8b7f 20 1636 6034
+8b9f 12 1637 6034
+8bb1 10 1639 6034
+8bc1 4 1641 6034
+8bc5 2 1646 6034
+8bc7 5 1649 6034
+8bcc 18 1654 6034
+8be4 1e 1656 6034
+8c02 2 1660 6034
+8c04 25 1668 6034
+8c29 d 1672 6034
+8c36 2 1677 6034
+8c38 5 1678 6034
+8c3d 7 1681 6034
+8c44 5 1688 6034
+8c49 7 1682 6034
+8c50 5 1684 6034
+8c55 2 1584 6034
+8c57 6 1689 6034
+FUNC 8c5d 91 10 __BuildCatchObject
+8c5d c 1712 6034
+8c69 b 1716 6034
+8c74 3 1718 6034
+8c77 2 1720 6034
+8c79 a 1739 6034
+8c83 4 1743 6034
+8c87 1a 1744 6034
+8ca1 1a 1756 6034
+8cbb 2 1757 6034
+8cbd 18 1750 6034
+8cd5 7 1762 6034
+8cdc 6 1769 6034
+8ce2 7 1763 6034
+8ce9 5 1765 6034
+FUNC 8cee 143 10 __CxxExceptionFilter
+8cee 3 1973 6034
+8cf1 a 1985 6034
+8cfb 3 2065 6034
+8cfe 2a 1993 6034
+8d28 32 2008 6034
+8d5a 6 2010 6034
+8d60 c 2011 6034
+8d6c 6 2012 6034
+8d72 b 2013 6034
+8d7d f 2040 6034
+8d8c a 2041 6034
+8d96 2 2047 6034
+8d98 1b 2050 6034
+8db3 4 2042 6034
+8db7 2 2050 6034
+8db9 c 2052 6034
+8dc5 6 2053 6034
+8dcb 13 2054 6034
+8dde 2 2055 6034
+8de0 25 1995 6034
+8e05 6 1997 6034
+8e0b e 1999 6034
+8e19 4 2000 6034
+8e1d c 2004 6034
+8e29 6 2005 6034
+8e2f 2 2065 6034
+FUNC 8e31 6c 20 CatchIt
+8e31 3 1217 6034
+8e34 6 1233 6034
+8e3a 10 1234 6034
+8e4a 4 1253 6034
+8e4e 6 1254 6034
+8e54 2 1255 6034
+8e56 8 1256 6034
+8e5e e 1259 6034
+8e6c 3 1265 6034
+8e6f 21 1273 6034
+8e90 4 1278 6034
+8e94 7 1280 6034
+8e9b 2 1286 6034
+FUNC 8e9d f2 20 FindHandlerForForeignException
+8e9d 6 913 6034
+8ea3 10 920 6034
+8eb3 2a 926 6034
+8edd 23 934 6034
+8f00 e 940 6034
+8f0e 17 945 6034
+8f25 c 948 6034
+8f31 29 954 6034
+8f5a 33 974 6034
+8f8d 2 984 6034
+FUNC 8f8f 356 20 FindHandler
+8f8f 6 569 6034
+8f95 20 632 6034
+8fb5 11 634 6034
+8fc6 42 637 6034
+9008 12 639 6034
+901a e 645 6034
+9028 b 646 6034
+9033 16 652 6034
+9049 2a 653 6034
+9073 12 659 6034
+9085 b 661 6034
+9090 5 662 6034
+9095 15 666 6034
+90aa 23 676 6034
+90cd 5 692 6034
+90d2 c 686 6034
+90de 30 688 6034
+910e 2b 698 6034
+9139 d 707 6034
+9146 19 715 6034
+915f c 718 6034
+916b 10 729 6034
+917b 6 735 6034
+9181 3 736 6034
+9184 7 737 6034
+918b 9 740 6034
+9194 2 741 6034
+9196 7 742 6034
+919d 23 750 6034
+91c0 d 737 6034
+91cd 2 676 6034
+91cf 33 774 6034
+9202 3 718 6034
+9205 6 795 6034
+920b a 804 6034
+9215 27 812 6034
+923c f 814 6034
+924b 5 840 6034
+9250 5 841 6034
+9255 b 843 6034
+9260 5 844 6034
+9265 d 846 6034
+9272 6 847 6034
+9278 2 848 6034
+927a 8 849 6034
+9282 14 851 6034
+9296 b 853 6034
+92a1 6 863 6034
+92a7 a 864 6034
+92b1 1c 866 6034
+92cd 16 877 6034
+92e3 2 880 6034
+FUNC 92e5 18 4 std::bad_exception::bad_exception(std::bad_exception const &)
+FUNC 92fd e4 20 __InternalCxxFrameHandler
+92fd 6 412 6034
+9303 3d 426 6034
+9340 6 432 6034
+9346 6 435 6034
+934c 10 440 6034
+935c 11 479 6034
+936d 2 482 6034
+936f 18 489 6034
+9387 19 499 6034
+93a0 1d 513 6034
+93bd 1c 524 6034
+93d9 6 533 6034
+93df 2 535 6034
+FUNC 93e1 6c 0 _use_encode_pointer
+93e1 7 66 2227
+93e8 2 72 2227
+93ea 12 75 2227
+93fc 7 76 2227
+9403 5 78 2227
+9408 7 82 2227
+940f 5 85 2227
+9414 e 91 2227
+9422 1f 93 2227
+9441 4 95 2227
+9445 6 100 2227
+944b 2 101 2227
+FUNC 944d 6e 4 _encode_pointer
+944d 1 120 2227
+944e 2b 129 2227
+9479 8 145 2227
+9481 d 133 2227
+948e d 135 2227
+949b c 138 2227
+94a7 4 148 2227
+94ab a 150 2227
+94b5 5 153 2227
+94ba 1 154 2227
+FUNC 94bb 9 0 _encoded_null
+94bb 0 173 2227
+94bb 8 174 2227
+94c3 1 175 2227
+FUNC 94c4 6e 4 _decode_pointer
+94c4 1 194 2227
+94c5 2b 203 2227
+94f0 8 219 2227
+94f8 d 207 2227
+9505 d 209 2227
+9512 c 212 2227
+951e 4 222 2227
+9522 a 224 2227
+952c 5 227 2227
+9531 1 228 2227
+FUNC 9532 9 4 __crtTlsAlloc
+9532 0 240 2227
+9532 6 241 2227
+9538 3 242 2227
+FUNC 953b 15 4 __fls_getvalue
+953b 0 258 2227
+953b 12 259 2227
+954d 3 260 2227
+FUNC 9550 6 0 __get_flsindex
+9550 0 272 2227
+9550 5 273 2227
+9555 1 274 2227
+FUNC 9556 32 0 __set_flsgetvalue
+9556 1 286 2227
+9557 e 288 2227
+9565 4 289 2227
+9569 e 291 2227
+9577 d 292 2227
+9584 3 294 2227
+9587 1 298 2227
+FUNC 9588 19 8 __fls_setvalue
+9588 0 315 2227
+9588 16 316 2227
+959e 3 317 2227
+FUNC 95a1 3d 0 _mtterm
+95a1 0 473 2227
+95a1 a 480 2227
+95ab f 481 2227
+95ba 7 482 2227
+95c1 a 485 2227
+95cb 7 486 2227
+95d2 7 487 2227
+95d9 5 494 2227
+FUNC 95de bf 8 _initptd
+95de c 521 2227
+95ea e 522 2227
+95f8 a 524 2227
+9602 6 525 2227
+9608 4 527 2227
+960c 9 529 2227
+9615 16 532 2227
+962b 10 533 2227
+963b 3 540 2227
+963e 7 544 2227
+9645 7 545 2227
+964c 8 546 2227
+9654 7 547 2227
+965b 8 551 2227
+9663 4 552 2227
+9667 6 553 2227
+966d 4 561 2227
+9671 8 562 2227
+9679 9 563 2227
+9682 c 565 2227
+968e 6 568 2227
+9694 9 566 2227
+FUNC 969d 77 0 _getptd_noexit
+969d 2 588 2227
+969f 6 592 2227
+96a5 15 600 2227
+96ba 14 608 2227
+96ce 19 610 2227
+96e7 a 616 2227
+96f1 6 618 2227
+96f7 6 619 2227
+96fd 2 621 2227
+96ff 7 627 2227
+9706 2 628 2227
+9708 8 633 2227
+9710 3 635 2227
+9713 1 636 2227
+FUNC 9714 18 0 _getptd
+9714 1 657 2227
+9715 7 658 2227
+971c 4 659 2227
+9720 8 660 2227
+9728 3 662 2227
+972b 1 663 2227
+FUNC 972c 121 4 _freefls
+972c c 691 2227
+9738 b 702 2227
+9743 7 703 2227
+974a 7 704 2227
+9751 7 706 2227
+9758 7 707 2227
+975f 7 709 2227
+9766 7 710 2227
+976d 7 712 2227
+9774 7 713 2227
+977b 7 715 2227
+9782 7 716 2227
+9789 7 718 2227
+9790 7 719 2227
+9797 a 721 2227
+97a1 7 722 2227
+97a8 8 724 2227
+97b0 4 725 2227
+97b4 1a 728 2227
+97ce 7 729 2227
+97d5 c 731 2227
+97e1 8 735 2227
+97e9 7 737 2227
+97f0 7 738 2227
+97f7 7 740 2227
+97fe 15 743 2227
+9813 7 744 2227
+981a c 747 2227
+9826 7 751 2227
+982d 8 754 2227
+9835 3 731 2227
+9838 9 732 2227
+9841 3 747 2227
+9844 9 748 2227
+FUNC 984d 69 4 _freeptd
+984d 0 778 2227
+984d a 783 2227
+9857 1b 795 2227
+9872 13 796 2227
+9885 16 802 2227
+989b 7 804 2227
+98a2 a 807 2227
+98ac 9 811 2227
+98b5 1 813 2227
+FUNC 98b6 6 0 __threadid
+98b6 0 837 2227
+98b6 6 838 2227
+FUNC 98bc 6 0 __threadhandle
+98bc 0 844 2227
+98bc 6 845 2227
+FUNC 98c2 184 0 _mtinit
+98c2 1 346 2227
+98c3 d 355 2227
+98d0 4 356 2227
+98d4 5 357 2227
+98d9 3 358 2227
+98dc 2 444 2227
+98de e 362 2227
+98ec d 365 2227
+98f9 d 368 2227
+9906 d 371 2227
+9913 2a 372 2227
+993d a 375 2227
+9947 1a 379 2227
+9961 25 388 2227
+9986 5 393 2227
+998b b 400 2227
+9996 10 401 2227
+99a6 10 402 2227
+99b6 18 403 2227
+99ce 7 410 2227
+99d5 2 412 2227
+99d7 1b 418 2227
+99f2 2 420 2227
+99f4 2d 428 2227
+9a21 a 438 2227
+9a2b 6 440 2227
+9a31 6 441 2227
+9a37 5 443 2227
+9a3c 5 430 2227
+9a41 4 389 2227
+9a45 1 444 2227
+FUNC 9a46 39 0 terminate()
+9a46 c 94 5983
+9a52 8 107 5983
+9a5a 4 111 5983
+9a5e 4 116 5983
+9a62 2 120 5983
+9a64 2 121 5983
+9a66 7 122 5983
+9a6d 7 127 5983
+9a74 5 135 5983
+9a79 6 136 5983
+FUNC 9a7f 13 0 unexpected()
+9a7f 0 149 5983
+9a7f 8 159 5983
+9a87 4 163 5983
+9a8b 2 167 5983
+9a8d 5 173 5983
+FUNC 9a92 37 0 _inconsistency()
+9a92 c 187 5983
+9a9e c 196 5983
+9aaa 4 197 5983
+9aae 4 202 5983
+9ab2 2 203 5983
+9ab4 2 204 5983
+9ab6 7 205 5983
+9abd 7 211 5983
+9ac4 5 217 5983
+FUNC 9ac9 11 4 _initp_eh_hooks
+9ac9 0 74 5983
+9ac9 10 80 5983
+9ad9 1 81 5983
+FUNC 9ae0 4c c _CallSettingFrame
+9ae0 3 48 5665
+9ae3 3 57 5665
+9ae6 1 58 5665
+9ae7 1 59 5665
+9ae8 3 60 5665
+9aeb 3 61 5665
+9aee 3 62 5665
+9af1 3 63 5665
+9af4 1 64 5665
+9af5 3 65 5665
+9af8 3 66 5665
+9afb 3 67 5665
+9afe 5 68 5665
+9b03 1 69 5665
+9b04 1 70 5665
+9b05 2 71 5665
+9b07 1 73 5665
+9b08 1 74 5665
+9b09 2 75 5665
+9b0b 1 76 5665
+9b0c 3 77 5665
+9b0f 1 78 5665
+9b10 2 79 5665
+9b12 6 80 5665
+9b18 2 81 5665
+9b1a 5 82 5665
+9b1f 1 84 5665
+9b20 5 85 5665
+9b25 1 86 5665
+9b26 1 87 5665
+9b27 1 88 5665
+9b28 4 89 5665
+PUBLIC 9b07 0 _NLG_Return
+FUNC 9b2c b9 4 _onexit_nolock
+9b2c 5 104 3259
+9b31 b 107 3259
+9b3c 13 108 3259
+9b4f 16 112 3259
+9b65 d 122 3259
+9b72 d 127 3259
+9b7f 14 129 3259
+9b93 3 134 3259
+9b96 14 136 3259
+9baa 3 147 3259
+9bad f 149 3259
+9bbc e 156 3259
+9bca c 157 3259
+9bd6 7 159 3259
+9bdd 6 114 3259
+9be3 2 160 3259
+FUNC 9be5 2f 0 __onexitinit
+9be5 1 205 3259
+9be6 b 208 3259
+9bf1 9 209 3259
+9bfa e 211 3259
+9c08 4 216 3259
+9c0c 1 221 3259
+9c0d 3 218 3259
+9c10 3 220 3259
+9c13 1 221 3259
+FUNC 9c14 3c 4 _onexit
+9c14 c 85 3259
+9c20 5 88 3259
+9c25 4 90 3259
+9c29 c 91 3259
+9c35 c 93 3259
+9c41 3 97 3259
+9c44 6 98 3259
+9c4a 6 94 3259
+FUNC 9c50 12 4 atexit
+9c50 0 165 3259
+9c50 11 166 3259
+9c61 1 167 3259
+FUNC 9c62 4f 4 V6_HeapAlloc
+9c62 c 27 5425
+9c6e 4 28 5425
+9c72 b 29 5425
+9c7d 8 31 5425
+9c85 4 32 5425
+9c89 a 33 5425
+9c93 c 35 5425
+9c9f 3 39 5425
+9ca2 6 40 5425
+9ca8 9 36 5425
+FUNC 9cb1 75 4 _heap_alloc
+9cb1 0 90 5425
+9cb1 9 95 5425
+9cba 5 96 5425
+9cbf 7 97 5425
+9cc6 c 98 5425
+9cd2 a 104 5425
+9cdc 18 105 5425
+9cf4 1 129 5425
+9cf5 a 107 5425
+9cff 9 108 5425
+9d08 2 109 5425
+9d0a 4 121 5425
+9d0e 1 122 5425
+9d0f 6 124 5425
+9d15 10 126 5425
+9d25 1 129 5425
+FUNC 9d26 c3 4 malloc
+9d26 1 155 5425
+9d27 16 159 5425
+9d3d 65 163 5425
+9da2 4 168 5425
+9da6 b 172 5425
+9db1 b 179 5425
+9dbc 2 183 5425
+9dbe 7 174 5425
+9dc5 8 193 5425
+9dcd 5 195 5425
+9dd2 1 196 5425
+9dd3 7 185 5425
+9dda b 186 5425
+9de5 3 187 5425
+9de8 1 196 5425
+FUNC 9de9 a 4 _initp_heap_handler
+9de9 0 31 5230
+9de9 9 32 5230
+9df2 1 33 5230
+FUNC 9df3 31 4 _set_new_handler(int (*)(unsigned int))
+9df3 1 53 5230
+9df4 7 57 5230
+9dfb b 59 5230
+9e06 b 60 5230
+9e11 f 63 5230
+9e20 3 65 5230
+9e23 1 66 5230
+FUNC 9e24 9 4 _set_new_handler(int)
+9e24 0 86 5230
+9e24 8 89 5230
+9e2c 1 90 5230
+FUNC 9e2d d 0 _query_new_handler()
+9e2d 0 110 5230
+9e2d c 111 5230
+9e39 1 112 5230
+FUNC 9e3a 22 4 _callnewh
+9e3a 0 131 5230
+9e3a b 133 5230
+9e45 10 135 5230
+9e55 3 138 5230
+9e58 1 139 5230
+9e59 2 136 5230
+9e5b 1 139 5230
+FUNC 9e5c 22 18 _invoke_watson_if_error
+9e5c 3 754 5850
+9e5f 6 755 5850
+9e65 17 759 5850
+9e7c 2 760 5850
+FUNC 9e7e 70 4 type_info::_Type_info_dtor(type_info *)
+9e7e c 62 5815
+9e8a 8 63 5815
+9e92 4 64 5815
+9e96 a 65 5815
+9ea0 d 70 5815
+9ead 4 72 5815
+9eb1 4 74 5815
+9eb5 6 79 5815
+9ebb 7 80 5815
+9ec2 9 94 5815
+9ecb 4 101 5815
+9ecf c 103 5815
+9edb 6 107 5815
+9ee1 2 83 5815
+9ee3 2 72 5815
+9ee5 9 104 5815
+FUNC 9eee f5 8 type_info::_Name_base(type_info const *,__type_info_node *)
+9eee c 109 5815
+9efa e 113 5815
+9f08 24 124 5815
+9f2c 7 125 5815
+9f33 16 132 5815
+9f49 2 133 5815
+9f4b 5 132 5815
+9f50 b 136 5815
+9f5b 5 142 5815
+9f60 a 149 5815
+9f6a 4 150 5815
+9f6e 11 157 5815
+9f7f 20 158 5815
+9f9f 5 159 5815
+9fa4 9 165 5815
+9fad 3 166 5815
+9fb0 2 167 5815
+9fb2 7 173 5815
+9fb9 9 180 5815
+9fc2 c 181 5815
+9fce 3 188 5815
+9fd1 6 189 5815
+9fd7 3 181 5815
+9fda 9 182 5815
+FUNC 9fe3 70 4 type_info::_Type_info_dtor_internal(type_info *)
+9fe3 c 197 5815
+9fef 8 198 5815
+9ff7 4 199 5815
+9ffb a 200 5815
+a005 d 205 5815
+a012 4 207 5815
+a016 4 209 5815
+a01a 6 214 5815
+a020 7 215 5815
+a027 9 229 5815
+a030 4 236 5815
+a034 c 238 5815
+a040 6 242 5815
+a046 2 218 5815
+a048 2 207 5815
+a04a 9 239 5815
+FUNC a053 31 10 __unDNameHelper
+a053 3 249 5815
+a056 7 250 5815
+a05d 7 252 5815
+a064 1e 260 5815
+a082 2 261 5815
+FUNC a084 eb 8 type_info::_Name_base_internal(type_info const *,__type_info_node *)
+a084 c 265 5815
+a090 e 269 5815
+a09e 1a 273 5815
+a0b8 7 274 5815
+a0bf 16 281 5815
+a0d5 2 282 5815
+a0d7 5 281 5815
+a0dc b 285 5815
+a0e7 5 291 5815
+a0ec a 298 5815
+a0f6 4 299 5815
+a0fa 11 306 5815
+a10b 20 307 5815
+a12b 5 308 5815
+a130 9 314 5815
+a139 3 315 5815
+a13c 2 316 5815
+a13e 7 322 5815
+a145 9 329 5815
+a14e c 330 5815
+a15a 3 337 5815
+a15d 6 338 5815
+a163 3 330 5815
+a166 9 331 5815
+FUNC a16f 53 4 __clean_type_info_names_internal
+a16f c 346 5815
+a17b 8 347 5815
+a183 4 348 5815
+a187 6 352 5815
+a18d 4 354 5815
+a191 3 356 5815
+a194 7 357 5815
+a19b 8 358 5815
+a1a3 4 354 5815
+a1a7 c 359 5815
+a1b3 6 363 5815
+a1b9 9 361 5815
+FUNC a1d0 88 8 strcmp
+a1d0 0 65 926
+a1d0 4 73 926
+a1d4 4 74 926
+a1d8 6 76 926
+a1de 2 77 926
+a1e0 2 81 926
+a1e2 2 83 926
+a1e4 2 84 926
+a1e6 2 85 926
+a1e8 2 86 926
+a1ea 3 87 926
+a1ed 2 88 926
+a1ef 2 89 926
+a1f1 2 90 926
+a1f3 3 92 926
+a1f6 3 94 926
+a1f9 2 95 926
+a1fb 2 96 926
+a1fd 2 97 926
+a1ff 3 98 926
+a202 2 99 926
+a204 3 100 926
+a207 3 101 926
+a20a 2 102 926
+a20c 4 103 926
+a210 2 107 926
+a212 2 108 926
+a214 2 115 926
+a216 2 116 926
+a218 3 117 926
+a21b 1 118 926
+a21c 6 122 926
+a222 2 123 926
+a224 2 125 926
+a226 3 126 926
+a229 2 127 926
+a22b 2 128 926
+a22d 3 129 926
+a230 2 130 926
+a232 2 131 926
+a234 6 133 926
+a23a 2 134 926
+a23c 3 139 926
+a23f 3 140 926
+a242 2 141 926
+a244 2 142 926
+a246 2 143 926
+a248 2 144 926
+a24a 3 145 926
+a24d 2 146 926
+a24f 2 147 926
+a251 2 148 926
+a253 3 149 926
+a256 2 150 926
+FUNC a258 65 c strcpy_s
+a258 0 13 781
+a258 30 18 781
+a288 c 19 781
+a294 2 21 781
+a296 d 23 781
+a2a3 4 27 781
+a2a7 2 29 781
+a2a9 e 30 781
+a2b7 5 33 781
+a2bc 1 34 781
+FUNC a2c0 7a c memset
+a2c0 0 59 934
+a2c0 4 68 934
+a2c4 4 69 934
+a2c8 2 71 934
+a2ca 2 72 934
+a2cc 2 74 934
+a2ce 4 75 934
+a2d2 2 78 934
+a2d4 2 79 934
+a2d6 6 80 934
+a2dc 2 81 934
+a2de 7 82 934
+a2e5 2 83 934
+a2e7 5 85 934
+a2ec 1 91 934
+a2ed 2 92 934
+a2ef 3 94 934
+a2f2 2 95 934
+a2f4 2 97 934
+a2f6 3 98 934
+a2f9 2 99 934
+a2fb 2 101 934
+a2fd 2 103 934
+a2ff 3 104 934
+a302 3 105 934
+a305 2 106 934
+a307 2 110 934
+a309 3 111 934
+a30c 2 113 934
+a30e 2 115 934
+a310 3 117 934
+a313 2 119 934
+a315 2 122 934
+a317 3 123 934
+a31a 3 124 934
+a31d 2 125 934
+a31f 2 127 934
+a321 2 129 934
+a323 2 130 934
+a325 2 134 934
+a327 3 135 934
+a32a 3 137 934
+a32d 2 138 934
+a32f 4 142 934
+a333 1 143 934
+a334 1 145 934
+a335 4 148 934
+a339 1 150 934
+FUNC a340 365 c memcpy
+a340 3 101 1027
+a343 1 113 1027
+a344 1 114 1027
+a345 3 116 1027
+a348 3 117 1027
+a34b 3 119 1027
+a34e 2 129 1027
+a350 2 131 1027
+a352 2 132 1027
+a354 2 134 1027
+a356 2 135 1027
+a358 2 137 1027
+a35a 6 138 1027
+a360 6 147 1027
+a366 2 148 1027
+a368 7 150 1027
+a36f 2 151 1027
+a371 1 153 1027
+a372 1 154 1027
+a373 3 155 1027
+a376 3 156 1027
+a379 2 157 1027
+a37b 1 158 1027
+a37c 1 159 1027
+a37d 2 160 1027
+a37f 1 163 1027
+a380 1 164 1027
+a381 1 165 1027
+a382 5 166 1027
+a387 6 179 1027
+a38d 2 180 1027
+a38f 3 182 1027
+a392 3 183 1027
+a395 3 185 1027
+a398 2 186 1027
+a39a 2 188 1027
+a39c 8 190 1027
+a3a4 2 208 1027
+a3a6 5 209 1027
+a3ab 3 211 1027
+a3ae 2 212 1027
+a3b0 3 214 1027
+a3b3 2 215 1027
+a3b5 7 217 1027
+a3bc 8 221 1027
+a3c4 14 225 1027
+a3d8 2 232 1027
+a3da 2 233 1027
+a3dc 2 235 1027
+a3de 3 236 1027
+a3e1 3 238 1027
+a3e4 3 239 1027
+a3e7 3 241 1027
+a3ea 3 242 1027
+a3ed 3 244 1027
+a3f0 3 245 1027
+a3f3 3 247 1027
+a3f6 2 248 1027
+a3f8 2 250 1027
+a3fa a 252 1027
+a404 2 256 1027
+a406 2 257 1027
+a408 2 259 1027
+a40a 3 260 1027
+a40d 3 262 1027
+a410 3 263 1027
+a413 3 265 1027
+a416 3 266 1027
+a419 3 268 1027
+a41c 2 269 1027
+a41e 2 271 1027
+a420 8 273 1027
+a428 2 277 1027
+a42a 2 278 1027
+a42c 2 280 1027
+a42e 3 281 1027
+a431 3 283 1027
+a434 3 284 1027
+a437 3 286 1027
+a43a 2 287 1027
+a43c 2 289 1027
+a43e 2a 291 1027
+a468 4 298 1027
+a46c 4 300 1027
+a470 4 302 1027
+a474 4 304 1027
+a478 4 306 1027
+a47c 4 308 1027
+a480 4 310 1027
+a484 4 312 1027
+a488 4 314 1027
+a48c 4 316 1027
+a490 4 318 1027
+a494 4 320 1027
+a498 4 322 1027
+a49c 4 324 1027
+a4a0 7 326 1027
+a4a7 2 328 1027
+a4a9 2 329 1027
+a4ab 19 331 1027
+a4c4 3 340 1027
+a4c7 1 341 1027
+a4c8 1 342 1027
+a4c9 3 344 1027
+a4cc 2 348 1027
+a4ce 2 350 1027
+a4d0 3 351 1027
+a4d3 1 352 1027
+a4d4 1 353 1027
+a4d5 3 354 1027
+a4d8 2 358 1027
+a4da 2 360 1027
+a4dc 3 361 1027
+a4df 3 362 1027
+a4e2 3 363 1027
+a4e5 1 364 1027
+a4e6 1 365 1027
+a4e7 5 366 1027
+a4ec 2 370 1027
+a4ee 2 372 1027
+a4f0 3 373 1027
+a4f3 3 374 1027
+a4f6 3 375 1027
+a4f9 3 376 1027
+a4fc 3 377 1027
+a4ff 1 378 1027
+a500 1 379 1027
+a501 3 380 1027
+a504 4 391 1027
+a508 4 392 1027
+a50c 6 397 1027
+a512 2 398 1027
+a514 3 400 1027
+a517 3 401 1027
+a51a 3 403 1027
+a51d 2 404 1027
+a51f 1 406 1027
+a520 2 407 1027
+a522 1 408 1027
+a523 9 410 1027
+a52c 2 414 1027
+a52e a 417 1027
+a538 2 422 1027
+a53a 5 423 1027
+a53f 3 425 1027
+a542 2 426 1027
+a544 3 428 1027
+a547 2 429 1027
+a549 7 431 1027
+a550 14 435 1027
+a564 3 442 1027
+a567 2 443 1027
+a569 3 445 1027
+a56c 3 446 1027
+a56f 3 448 1027
+a572 3 449 1027
+a575 3 451 1027
+a578 2 452 1027
+a57a 1 454 1027
+a57b 2 455 1027
+a57d 1 456 1027
+a57e a 458 1027
+a588 3 462 1027
+a58b 2 463 1027
+a58d 3 465 1027
+a590 3 466 1027
+a593 3 468 1027
+a596 3 469 1027
+a599 3 471 1027
+a59c 3 472 1027
+a59f 3 474 1027
+a5a2 2 475 1027
+a5a4 1 477 1027
+a5a5 2 478 1027
+a5a7 1 479 1027
+a5a8 8 481 1027
+a5b0 3 485 1027
+a5b3 2 486 1027
+a5b5 3 488 1027
+a5b8 3 489 1027
+a5bb 3 491 1027
+a5be 3 492 1027
+a5c1 3 494 1027
+a5c4 3 495 1027
+a5c7 3 497 1027
+a5ca 3 498 1027
+a5cd 3 500 1027
+a5d0 6 501 1027
+a5d6 1 503 1027
+a5d7 2 504 1027
+a5d9 1 505 1027
+a5da 2a 507 1027
+a604 4 516 1027
+a608 4 518 1027
+a60c 4 520 1027
+a610 4 522 1027
+a614 4 524 1027
+a618 4 526 1027
+a61c 4 528 1027
+a620 4 530 1027
+a624 4 532 1027
+a628 4 534 1027
+a62c 4 536 1027
+a630 4 538 1027
+a634 4 540 1027
+a638 4 542 1027
+a63c 7 544 1027
+a643 2 546 1027
+a645 2 547 1027
+a647 19 549 1027
+a660 3 558 1027
+a663 1 560 1027
+a664 1 561 1027
+a665 3 562 1027
+a668 3 566 1027
+a66b 3 568 1027
+a66e 3 569 1027
+a671 1 570 1027
+a672 1 571 1027
+a673 5 572 1027
+a678 3 576 1027
+a67b 3 578 1027
+a67e 3 579 1027
+a681 3 580 1027
+a684 3 581 1027
+a687 1 582 1027
+a688 1 583 1027
+a689 3 584 1027
+a68c 3 588 1027
+a68f 3 590 1027
+a692 3 591 1027
+a695 3 592 1027
+a698 3 593 1027
+a69b 3 594 1027
+a69e 3 595 1027
+a6a1 1 596 1027
+a6a2 1 597 1027
+a6a3 2 598 1027
+FUNC a6b0 365 c memmove
+a6b0 3 101 977
+a6b3 1 113 977
+a6b4 1 114 977
+a6b5 3 116 977
+a6b8 3 117 977
+a6bb 3 119 977
+a6be 2 129 977
+a6c0 2 131 977
+a6c2 2 132 977
+a6c4 2 134 977
+a6c6 2 135 977
+a6c8 2 137 977
+a6ca 6 138 977
+a6d0 6 147 977
+a6d6 2 148 977
+a6d8 7 150 977
+a6df 2 151 977
+a6e1 1 153 977
+a6e2 1 154 977
+a6e3 3 155 977
+a6e6 3 156 977
+a6e9 2 157 977
+a6eb 1 158 977
+a6ec 1 159 977
+a6ed 2 160 977
+a6ef 1 163 977
+a6f0 1 164 977
+a6f1 1 165 977
+a6f2 5 166 977
+a6f7 6 179 977
+a6fd 2 180 977
+a6ff 3 182 977
+a702 3 183 977
+a705 3 185 977
+a708 2 186 977
+a70a 2 188 977
+a70c 8 190 977
+a714 2 208 977
+a716 5 209 977
+a71b 3 211 977
+a71e 2 212 977
+a720 3 214 977
+a723 2 215 977
+a725 7 217 977
+a72c 8 221 977
+a734 14 225 977
+a748 2 232 977
+a74a 2 233 977
+a74c 2 235 977
+a74e 3 236 977
+a751 3 238 977
+a754 3 239 977
+a757 3 241 977
+a75a 3 242 977
+a75d 3 244 977
+a760 3 245 977
+a763 3 247 977
+a766 2 248 977
+a768 2 250 977
+a76a a 252 977
+a774 2 256 977
+a776 2 257 977
+a778 2 259 977
+a77a 3 260 977
+a77d 3 262 977
+a780 3 263 977
+a783 3 265 977
+a786 3 266 977
+a789 3 268 977
+a78c 2 269 977
+a78e 2 271 977
+a790 8 273 977
+a798 2 277 977
+a79a 2 278 977
+a79c 2 280 977
+a79e 3 281 977
+a7a1 3 283 977
+a7a4 3 284 977
+a7a7 3 286 977
+a7aa 2 287 977
+a7ac 2 289 977
+a7ae 2a 291 977
+a7d8 4 298 977
+a7dc 4 300 977
+a7e0 4 302 977
+a7e4 4 304 977
+a7e8 4 306 977
+a7ec 4 308 977
+a7f0 4 310 977
+a7f4 4 312 977
+a7f8 4 314 977
+a7fc 4 316 977
+a800 4 318 977
+a804 4 320 977
+a808 4 322 977
+a80c 4 324 977
+a810 7 326 977
+a817 2 328 977
+a819 2 329 977
+a81b 19 331 977
+a834 3 340 977
+a837 1 341 977
+a838 1 342 977
+a839 3 344 977
+a83c 2 348 977
+a83e 2 350 977
+a840 3 351 977
+a843 1 352 977
+a844 1 353 977
+a845 3 354 977
+a848 2 358 977
+a84a 2 360 977
+a84c 3 361 977
+a84f 3 362 977
+a852 3 363 977
+a855 1 364 977
+a856 1 365 977
+a857 5 366 977
+a85c 2 370 977
+a85e 2 372 977
+a860 3 373 977
+a863 3 374 977
+a866 3 375 977
+a869 3 376 977
+a86c 3 377 977
+a86f 1 378 977
+a870 1 379 977
+a871 3 380 977
+a874 4 391 977
+a878 4 392 977
+a87c 6 397 977
+a882 2 398 977
+a884 3 400 977
+a887 3 401 977
+a88a 3 403 977
+a88d 2 404 977
+a88f 1 406 977
+a890 2 407 977
+a892 1 408 977
+a893 9 410 977
+a89c 2 414 977
+a89e a 417 977
+a8a8 2 422 977
+a8aa 5 423 977
+a8af 3 425 977
+a8b2 2 426 977
+a8b4 3 428 977
+a8b7 2 429 977
+a8b9 7 431 977
+a8c0 14 435 977
+a8d4 3 442 977
+a8d7 2 443 977
+a8d9 3 445 977
+a8dc 3 446 977
+a8df 3 448 977
+a8e2 3 449 977
+a8e5 3 451 977
+a8e8 2 452 977
+a8ea 1 454 977
+a8eb 2 455 977
+a8ed 1 456 977
+a8ee a 458 977
+a8f8 3 462 977
+a8fb 2 463 977
+a8fd 3 465 977
+a900 3 466 977
+a903 3 468 977
+a906 3 469 977
+a909 3 471 977
+a90c 3 472 977
+a90f 3 474 977
+a912 2 475 977
+a914 1 477 977
+a915 2 478 977
+a917 1 479 977
+a918 8 481 977
+a920 3 485 977
+a923 2 486 977
+a925 3 488 977
+a928 3 489 977
+a92b 3 491 977
+a92e 3 492 977
+a931 3 494 977
+a934 3 495 977
+a937 3 497 977
+a93a 3 498 977
+a93d 3 500 977
+a940 6 501 977
+a946 1 503 977
+a947 2 504 977
+a949 1 505 977
+a94a 2a 507 977
+a974 4 516 977
+a978 4 518 977
+a97c 4 520 977
+a980 4 522 977
+a984 4 524 977
+a988 4 526 977
+a98c 4 528 977
+a990 4 530 977
+a994 4 532 977
+a998 4 534 977
+a99c 4 536 977
+a9a0 4 538 977
+a9a4 4 540 977
+a9a8 4 542 977
+a9ac 7 544 977
+a9b3 2 546 977
+a9b5 2 547 977
+a9b7 19 549 977
+a9d0 3 558 977
+a9d3 1 560 977
+a9d4 1 561 977
+a9d5 3 562 977
+a9d8 3 566 977
+a9db 3 568 977
+a9de 3 569 977
+a9e1 1 570 977
+a9e2 1 571 977
+a9e3 5 572 977
+a9e8 3 576 977
+a9eb 3 578 977
+a9ee 3 579 977
+a9f1 3 580 977
+a9f4 3 581 977
+a9f7 1 582 977
+a9f8 1 583 977
+a9f9 3 584 977
+a9fc 3 588 977
+a9ff 3 590 977
+aa02 3 591 977
+aa05 3 592 977
+aa08 3 593 977
+aa0b 3 594 977
+aa0e 3 595 977
+aa11 1 596 977
+aa12 1 597 977
+aa13 2 598 977
+FUNC aa15 3d 4 __CxxUnhandledExceptionFilter(_EXCEPTION_POINTERS *)
+aa15 0 67 5721
+aa15 33 68 5721
+aa48 5 69 5721
+aa4d 2 72 5721
+aa4f 3 73 5721
+FUNC aa52 e 0 __CxxSetUnhandledExceptionFilter
+aa52 0 86 5721
+aa52 b 89 5721
+aa5d 2 90 5721
+aa5f 1 91 5721
+FUNC aa60 1a0 4 _NMSG_WRITE
+aa60 2 174 2418
+aa62 a 178 2418
+aa6c f 179 2418
+aa7b a 182 2418
+aa85 2a 203 2418
+aaaf c 215 2418
+aabb 2a 224 2418
+aae5 1e 227 2418
+ab03 26 228 2418
+ab29 d 231 2418
+ab36 b 233 2418
+ab41 2f 234 2418
+ab70 20 237 2418
+ab90 22 238 2418
+abb2 15 242 2418
+abc7 a 205 2418
+abd1 9 206 2418
+abda 24 212 2418
+abfe 2 245 2418
+FUNC ac00 20 4 _GET_RTERRMSG
+ac00 0 268 2418
+ac00 2 271 2418
+ac02 13 272 2418
+ac15 2 275 2418
+ac17 1 276 2418
+ac18 7 273 2418
+ac1f 1 276 2418
+FUNC ac20 39 0 _FF_MSGBANNER
+ac20 0 141 2418
+ac20 22 145 2418
+ac42 a 147 2418
+ac4c c 148 2418
+ac58 1 150 2418
+FUNC ac59 1 4 _initp_misc_winxfltr
+ac59 0 105 2752
+ac59 1 106 2752
+FUNC ac5a 32 4 xcptlookup
+ac5a 0 410 2752
+ac5a b 411 2752
+ac65 14 418 2752
+ac79 e 425 2752
+ac87 2 428 2752
+ac89 2 426 2752
+ac8b 1 429 2752
+FUNC ac8c 15e 8 _XcptFilter
+ac8c 6 206 2752
+ac92 7 213 2752
+ac99 8 214 2752
+aca1 34 219 2752
+acd5 2 221 2752
+acd7 2 225 2752
+acd9 3 227 2752
+acdc 7 234 2752
+ace3 7 235 2752
+acea 5 243 2752
+acef 4 248 2752
+acf3 8 249 2752
+acfb 3 255 2752
+acfe 6 259 2752
+ad04 6 273 2752
+ad0a 6 274 2752
+ad10 c 283 2752
+ad1c 17 291 2752
+ad33 1e 294 2752
+ad51 3 291 2752
+ad54 c 321 2752
+ad60 9 323 2752
+ad69 7 325 2752
+ad70 9 327 2752
+ad79 7 329 2752
+ad80 9 331 2752
+ad89 7 333 2752
+ad90 9 335 2752
+ad99 7 337 2752
+ada0 9 339 2752
+ada9 7 341 2752
+adb0 9 343 2752
+adb9 7 345 2752
+adc0 7 347 2752
+adc7 8 356 2752
+adcf 3 361 2752
+add2 2 363 2752
+add4 4 368 2752
+add8 3 369 2752
+addb 7 375 2752
+ade2 6 377 2752
+ade8 2 379 2752
+FUNC adea 1b 8 __CppXcptFilter
+adea 0 145 2752
+adea b 146 2752
+adf5 c 147 2752
+ae01 1 151 2752
+ae02 2 149 2752
+ae04 1 151 2752
+FUNC ae05 db 0 _setenvp
+ae05 1 77 2280
+ae06 c 85 2280
+ae12 5 86 2280
+ae17 8 91 2280
+ae1f 4 98 2280
+ae23 8 99 2280
+ae2b 4 110 2280
+ae2f 1 111 2280
+ae30 11 112 2280
+ae41 15 117 2280
+ae56 2 118 2280
+ae58 9 121 2280
+ae61 9 123 2280
+ae6a 6 125 2280
+ae70 10 127 2280
+ae80 1c 133 2280
+ae9c 3 134 2280
+ae9f 6 121 2280
+aea5 b 138 2280
+aeb0 6 139 2280
+aeb6 2 142 2280
+aeb8 a 149 2280
+aec2 7 152 2280
+aec9 17 153 2280
+FUNC aee0 a 4 _set_pgmptr
+aee0 a 334 2303
+FUNC aeea 198 c parse_cmdline
+aeea 4 218 2322
+aeee 6 226 2322
+aef4 8 230 2322
+aefc 14 231 2322
+af10 3 250 2322
+af13 5 252 2322
+af18 5 254 2322
+af1d 9 255 2322
+af26 2 256 2322
+af28 2 258 2322
+af2a 4 259 2322
+af2e 8 260 2322
+af36 2 262 2322
+af38 f 264 2322
+af47 2 265 2322
+af49 6 266 2322
+af4f a 267 2322
+af59 1 268 2322
+af5a 1a 272 2322
+af74 4 277 2322
+af78 4 278 2322
+af7c 4 281 2322
+af80 9 286 2322
+af89 a 287 2322
+af93 3 288 2322
+af96 1 275 2322
+af97 2 276 2322
+af99 9 291 2322
+afa2 6 295 2322
+afa8 9 296 2322
+afb1 2 297 2322
+afb3 3 311 2322
+afb6 4 315 2322
+afba 1 318 2322
+afbb 1 319 2322
+afbc 5 316 2322
+afc1 5 321 2322
+afc6 5 324 2322
+afcb e 325 2322
+afd9 2 326 2322
+afdb 2 327 2322
+afdd d 329 2322
+afea 2 332 2322
+afec 5 336 2322
+aff1 4 337 2322
+aff5 4 338 2322
+aff9 6 339 2322
+afff 3 338 2322
+b002 14 343 2322
+b016 4 348 2322
+b01a 2 349 2322
+b01c 10 350 2322
+b02c b 351 2322
+b037 2 352 2322
+b039 a 354 2322
+b043 2 355 2322
+b045 a 356 2322
+b04f 1 357 2322
+b050 2 358 2322
+b052 5 361 2322
+b057 1 363 2322
+b058 5 372 2322
+b05d 4 376 2322
+b061 7 377 2322
+b068 2 378 2322
+b06a 8 379 2322
+b072 9 382 2322
+b07b 3 383 2322
+b07e 2 384 2322
+b080 2 385 2322
+FUNC b082 b9 0 _setargv
+b082 7 88 2322
+b089 c 97 2322
+b095 5 98 2322
+b09a 18 104 2322
+b0b2 19 120 2322
+b0cb 11 127 2322
+b0dc 15 132 2322
+b0f1 a 136 2322
+b0fb 2 138 2322
+b0fd 8 140 2322
+b105 3 141 2322
+b108 2 142 2322
+b10a 13 149 2322
+b11d c 153 2322
+b129 6 157 2322
+b12f 4 172 2322
+b133 6 134 2322
+b139 2 173 2322
+FUNC b13b 135 0 __crtGetEnvironmentStringsA
+b13b 2 43 4307
+b13d 1a 57 4307
+b157 8 59 4307
+b15f c 60 4307
+b16b b 62 4307
+b176 e 63 4307
+b184 9 68 4307
+b18d 4 71 4307
+b191 8 72 4307
+b199 7 73 4307
+b1a0 7 77 4307
+b1a7 7 78 4307
+b1ae 7 79 4307
+b1b5 1b 93 4307
+b1d0 13 97 4307
+b1e3 11 111 4307
+b1f4 a 113 4307
+b1fe 8 114 4307
+b206 7 99 4307
+b20d 4 100 4307
+b211 6 123 4307
+b217 2 152 4307
+b219 a 126 4307
+b223 6 127 4307
+b229 4 133 4307
+b22d 5 134 4307
+b232 5 135 4307
+b237 5 138 4307
+b23c d 140 4307
+b249 7 141 4307
+b250 5 142 4307
+b255 b 145 4307
+b260 7 147 4307
+b267 6 149 4307
+b26d 3 153 4307
+FUNC b270 24 0 _RTC_Initialize
+FUNC b294 24 0 _RTC_Terminate
+FUNC b2b8 5b 0 __heap_select
+b2b8 6 70 5473
+b2be 23 143 5473
+b2e1 1b 144 5473
+b2fc d 145 5473
+b309 3 146 5473
+b30c 2 164 5473
+b30e 3 161 5473
+b311 2 164 5473
+FUNC b313 5a 4 _heap_init
+b313 0 192 5473
+b313 20 199 5473
+b333 2 200 5473
+b335 1 240 5473
+b336 5 204 5473
+b33b a 206 5473
+b345 f 209 5473
+b354 c 211 5473
+b360 7 212 5473
+b367 2 213 5473
+b369 3 239 5473
+b36c 1 240 5473
+FUNC b36d 74 0 _heap_term
+b36d 1 261 5473
+b36e c 264 5473
+b37a 1b 270 5473
+b395 f 273 5473
+b3a4 b 276 5473
+b3af d 278 5473
+b3bc 11 281 5473
+b3cd c 300 5473
+b3d9 7 301 5473
+b3e0 1 302 5473
+FUNC b3e1 6 0 _get_heap_handle
+b3e1 0 320 5473
+b3e1 5 322 5473
+b3e6 1 323 5473
+FUNC b3e7 94 0 __security_init_cookie
+b3e7 6 97 3689
+b3ed 21 114 3689
+b40e 7 116 3689
+b415 3 117 3689
+b418 a 127 3689
+b422 6 132 3689
+b428 8 135 3689
+b430 8 136 3689
+b438 8 137 3689
+b440 10 139 3689
+b450 2 144 3689
+b452 4 161 3689
+b456 7 163 3689
+b45d 4 166 3689
+b461 7 168 3689
+b468 6 172 3689
+b46e b 173 3689
+b479 2 175 3689
+FUNC b47b 8 4 _crt_debugger_hook
+b47b 0 62 3966
+b47b 7 65 3966
+b482 1 66 3966
+FUNC b483 160 8 _flsbuf
+b483 5 93 2041
+b488 c 104 2041
+b494 8 106 2041
+b49c b 107 2041
+b4a7 4 108 2041
+b4ab 8 109 2041
+b4b3 4 110 2041
+b4b7 b 111 2041
+b4c2 3 113 2041
+b4c5 6 124 2041
+b4cb b 126 2041
+b4d6 3 127 2041
+b4d9 8 128 2041
+b4e1 9 137 2041
+b4ea f 141 2041
+b4f9 25 151 2041
+b51e 7 153 2041
+b525 d 158 2041
+b532 5 162 2041
+b537 5 163 2041
+b53c 6 164 2041
+b542 7 166 2041
+b549 10 167 2041
+b559 2 168 2041
+b55b 6 131 2041
+b561 5 132 2041
+b566 2e 169 2041
+b594 12 171 2041
+b5a6 2 174 2041
+b5a8 8 179 2041
+b5b0 2 186 2041
+b5b2 3 187 2041
+b5b5 13 189 2041
+b5c8 5 201 2041
+b5cd 4 202 2041
+b5d1 5 203 2041
+b5d6 b 207 2041
+b5e1 2 212 2041
+FUNC b5e3 25 4 write_char
+b5e3 0 2433 1163
+b5e3 a 2434 1163
+b5ed 2 2437 1163
+b5ef 12 2440 1163
+b601 3 2444 1163
+b604 1 2447 1163
+b605 2 2446 1163
+b607 1 2447 1163
+FUNC b608 25 c write_multi_char
+b608 6 2498 1163
+b60e 2 2501 1163
+b610 e 2500 1163
+b61e 6 2501 1163
+b624 7 2499 1163
+b62b 2 2504 1163
+FUNC b62d 4f 4 write_string
+b62d 0 2563 1163
+b62d 12 2564 1163
+b63f 6 2566 1163
+b645 2 2567 1163
+b647 11 2570 1163
+b658 6 2571 1163
+b65e a 2573 1163
+b668 a 2574 1163
+b672 9 2569 1163
+b67b 1 2579 1163
+FUNC b67c 910 10 _woutput_l
+b67c 1b 975 1163
+b697 72 1031 1163
+b709 4 1036 1163
+b70d 2c 1073 1163
+b739 1a 1075 1163
+b753 8 1076 1163
+b75b 18 1131 1163
+b773 2 1171 1163
+b775 13 1173 1163
+b788 3 1174 1163
+b78b 5 1175 1163
+b790 1f 1179 1163
+b7af 4 1193 1163
+b7b3 5 1194 1163
+b7b8 4 1181 1163
+b7bc 5 1182 1163
+b7c1 4 1184 1163
+b7c5 5 1185 1163
+b7ca 7 1190 1163
+b7d1 5 1191 1163
+b7d6 3 1187 1163
+b7d9 5 1196 1163
+b7de 6 1200 1163
+b7e4 9 1206 1163
+b7ed b 1233 1163
+b7f8 4 1235 1163
+b7fc 3 1236 1163
+b7ff 5 1239 1163
+b804 10 1241 1163
+b814 5 1243 1163
+b819 4 1248 1163
+b81d 5 1249 1163
+b822 6 1253 1163
+b828 9 1259 1163
+b831 b 1284 1163
+b83c 4 1285 1163
+b840 5 1287 1163
+b845 10 1289 1163
+b855 5 1291 1163
+b85a 1b 1295 1163
+b875 7 1362 1163
+b87c 5 1363 1163
+b881 6 1301 1163
+b887 2 1303 1163
+b889 a 1304 1163
+b893 5 1306 1163
+b898 4 1308 1163
+b89c 5 1310 1163
+b8a1 4 1358 1163
+b8a5 5 1359 1163
+b8aa 10 1322 1163
+b8ba 3 1324 1163
+b8bd f 1325 1163
+b8cc d 1327 1163
+b8d9 3 1329 1163
+b8dc a 1330 1163
+b8e6 5 1332 1163
+b8eb 3c 1337 1163
+b927 4 1352 1163
+b92b 13 1166 1163
+b93e 5 1167 1163
+b943 32 1378 1163
+b975 d 1716 1163
+b982 4 1724 1163
+b986 18 1749 1163
+b99e c 1750 1163
+b9aa c 1381 1163
+b9b6 9 1383 1163
+b9bf 8 1564 1163
+b9c7 4 1565 1163
+b9cb d 1584 1163
+b9d8 3 1589 1163
+b9db 13 1610 1163
+b9ee 4 1611 1163
+b9f2 8 1612 1163
+b9fa 19 1614 1163
+ba13 13 1618 1163
+ba26 1 1620 1163
+ba27 9 1621 1163
+ba30 5 1622 1163
+ba35 1d 1378 1163
+ba52 9 1397 1163
+ba5b f 1415 1163
+ba6a 3 1420 1163
+ba6d 25 1430 1163
+ba92 3 1434 1163
+ba95 2 1436 1163
+ba97 4 1437 1163
+ba9b 6 1439 1163
+baa1 3 1440 1163
+baa4 5 1506 1163
+baa9 5 1523 1163
+baae e 1541 1163
+babc 6 1546 1163
+bac2 b 1548 1163
+bacd 7 1549 1163
+bad4 5 1550 1163
+bad9 4 1551 1163
+badd 5 1553 1163
+bae2 8 1543 1163
+baea 7 1544 1163
+baf1 5 1557 1163
+baf6 34 1378 1163
+bb2a d 1908 1163
+bb37 9 1910 1163
+bb40 8 1668 1163
+bb48 d 1688 1163
+bb55 6 1702 1163
+bb5b 7 1703 1163
+bb62 2 1704 1163
+bb64 5 1706 1163
+bb69 7 1708 1163
+bb70 5 1710 1163
+bb75 4 1864 1163
+bb79 7 1869 1163
+bb80 c 1933 1163
+bb8c 8 1939 1163
+bb94 5 1958 1163
+bb99 8 1751 1163
+bba1 9 1752 1163
+bbaa 5 1753 1163
+bbaf 3 1754 1163
+bbb2 9 1756 1163
+bbbb f 1759 1163
+bbca 2 1760 1163
+bbcc 13 1765 1163
+bbdf 7 1767 1163
+bbe6 e 1809 1163
+bbf4 27 1828 1163
+bc1b 14 1838 1163
+bc2f 15 1840 1163
+bc44 b 1844 1163
+bc4f 15 1846 1163
+bc64 5 1852 1163
+bc69 7 1853 1163
+bc70 4 1854 1163
+bc74 1 1857 1163
+bc75 5 1859 1163
+bc7a 7 1877 1163
+bc81 3 1887 1163
+bc84 2 1888 1163
+bc86 1a 1378 1163
+bca0 7 1892 1163
+bca7 11 1897 1163
+bcb8 10 1900 1163
+bcc8 3 1901 1163
+bccb 5 1903 1163
+bcd0 6 1961 1163
+bcd6 6 1987 1163
+bcdc 16 2026 1163
+bcf2 2 2045 1163
+bcf4 5 2051 1163
+bcf9 2 2071 1163
+bcfb 4 2074 1163
+bcff 6 2080 1163
+bd05 2 2099 1163
+bd07 5 2105 1163
+bd0c 10 2128 1163
+bd1c 7 2129 1163
+bd23 7 2130 1163
+bd2a c 2136 1163
+bd36 2 2142 1163
+bd38 6 2148 1163
+bd3e 7 2149 1163
+bd45 2 2150 1163
+bd47 4 2151 1163
+bd4b a 2152 1163
+bd55 3 2153 1163
+bd58 6 2157 1163
+bd5e 3 2158 1163
+bd61 6 2163 1163
+bd67 10 2165 1163
+bd77 10 2166 1163
+bd87 c 2168 1163
+bd93 3 2170 1163
+bd96 3 2172 1163
+bd99 2 2173 1163
+bd9b 8 2175 1163
+bda3 1 2176 1163
+bda4 19 2180 1163
+bdbd 9 2181 1163
+bdc6 1 2182 1163
+bdc7 2 2185 1163
+bdc9 4 1625 1163
+bdcd 8 1626 1163
+bdd5 c 1628 1163
+bde1 7 1629 1163
+bde8 2 1630 1163
+bdea 4 1629 1163
+bdee 8 1631 1163
+bdf6 a 2201 1163
+be00 7 2204 1163
+be07 6 2205 1163
+be0d 6 2207 1163
+be13 2 2208 1163
+be15 4 2210 1163
+be19 6 2212 1163
+be1f 2 2213 1163
+be21 4 2215 1163
+be25 6 2217 1163
+be2b 7 2218 1163
+be32 b 2224 1163
+be3d 6 2228 1163
+be43 11 2230 1163
+be54 11 2234 1163
+be65 d 2236 1163
+be72 f 2238 1163
+be81 a 2263 1163
+be8b 3 2267 1163
+be8e 3 2268 1163
+be91 3 2269 1163
+be94 1a 2276 1163
+beae 7 2278 1163
+beb5 e 2282 1163
+bec3 a 2283 1163
+becd 2 1690 1163
+becf 4 2279 1163
+bed3 2 2285 1163
+bed5 d 2286 1163
+bee2 c 2290 1163
+beee 11 2292 1163
+beff 6 2297 1163
+bf05 8 2298 1163
+bf0d 4 2299 1163
+bf11 1 2298 1163
+bf12 1b 1073 1163
+bf2d 17 1690 1163
+bf44 10 2376 1163
+bf54 38 2377 1163
+FUNC bf8c 97 10 _vswprintf_l
+bf8c 7 125 1425
+bf93 24 130 1425
+bfb7 8 135 1425
+bfbf 29 155 1425
+bfe8 1d 166 1425
+c005 18 167 1425
+c01d 4 169 1425
+c021 2 183 1425
+FUNC c023 17 c _vswprintf
+c023 0 192 1425
+c023 16 195 1425
+c039 1 197 1425
+FUNC c03a 5 10 __vswprintf_l
+c03a 0 205 1425
+c03a 5 208 1425
+FUNC c03f 55 10 _vscwprintf_helper
+c03f 7 430 1425
+c046 24 435 1425
+c06a 28 441 1425
+c092 2 443 1425
+FUNC c094 18 8 _vscwprintf
+c094 0 449 1425
+c094 17 450 1425
+c0ab 1 451 1425
+FUNC c0ac 1a c _vscwprintf_l
+c0ac 0 458 1425
+c0ac 19 459 1425
+c0c5 1 460 1425
+FUNC c0c6 18 8 _vscwprintf_p
+c0c6 0 466 1425
+c0c6 17 467 1425
+c0dd 1 468 1425
+FUNC c0de 1a c _vscwprintf_p_l
+c0de 0 475 1425
+c0de 19 476 1425
+c0f7 1 477 1425
+FUNC c0f8 14e 14 vfprintf_helper
+c0f8 c 51 1462
+c104 5 54 1462
+c109 2e 56 1462
+c137 c 57 1462
+c143 3 60 1462
+c146 7 62 1462
+c14d 3 63 1462
+c150 b0 65 1462
+c200 5 66 1462
+c205 8 68 1462
+c20d 10 69 1462
+c21d a 70 1462
+c227 c 74 1462
+c233 3 78 1462
+c236 6 79 1462
+c23c a 75 1462
+FUNC c246 1e 10 _vfprintf_l
+c246 0 87 1462
+c246 1d 88 1462
+c263 1 89 1462
+FUNC c264 1e 10 _vfprintf_s_l
+c264 0 97 1462
+c264 1d 98 1462
+c281 1 99 1462
+FUNC c282 1e 10 _vfprintf_p_l
+c282 0 107 1462
+c282 1d 108 1462
+c29f 1 109 1462
+FUNC c2a0 1c c vfprintf
+c2a0 0 116 1462
+c2a0 1b 117 1462
+c2bb 1 118 1462
+FUNC c2bc 1c c vfprintf_s
+c2bc 0 125 1462
+c2bc 1b 126 1462
+c2d7 1 127 1462
+FUNC c2d8 1c c _vfprintf_p
+c2d8 0 134 1462
+c2d8 1b 135 1462
+c2f3 1 136 1462
+FUNC c2f4 25 4 write_char
+c2f4 0 2433 1053
+c2f4 a 2434 1053
+c2fe 2 2437 1053
+c300 12 2440 1053
+c312 3 2444 1053
+c315 1 2447 1053
+c316 2 2446 1053
+c318 1 2447 1053
+FUNC c319 25 c write_multi_char
+c319 6 2498 1053
+c31f 2 2501 1053
+c321 e 2500 1053
+c32f 6 2501 1053
+c335 7 2499 1053
+c33c 2 2504 1053
+FUNC c33e 4f 4 write_string
+c33e 0 2563 1053
+c33e 12 2564 1053
+c350 6 2566 1053
+c356 2 2567 1053
+c358 11 2570 1053
+c369 6 2571 1053
+c36f a 2573 1053
+c379 a 2574 1053
+c383 9 2569 1053
+c38c 1 2579 1053
+FUNC c38d 91c 10 _woutput_s_l
+c38d 29 975 1053
+c3b6 3 976 1053
+c3b9 f 1007 1053
+c3c8 24 2172 1053
+c3ec 2f 1031 1053
+c41b 18 1036 1053
+c433 2e 1073 1053
+c461 16 1078 1053
+c477 e 1079 1053
+c485 11 1124 1053
+c496 10 1131 1053
+c4a6 2 1171 1053
+c4a8 13 1173 1053
+c4bb 3 1174 1053
+c4be 5 1175 1053
+c4c3 1e 1179 1053
+c4e1 3 1193 1053
+c4e4 5 1194 1053
+c4e9 4 1181 1053
+c4ed 5 1182 1053
+c4f2 4 1184 1053
+c4f6 5 1185 1053
+c4fb 7 1190 1053
+c502 5 1191 1053
+c507 3 1187 1053
+c50a 5 1196 1053
+c50f 6 1200 1053
+c515 5 1206 1053
+c51a e 1233 1053
+c528 4 1235 1053
+c52c 3 1236 1053
+c52f 5 1239 1053
+c534 10 1241 1053
+c544 5 1243 1053
+c549 4 1248 1053
+c54d 5 1249 1053
+c552 6 1253 1053
+c558 5 1259 1053
+c55d e 1284 1053
+c56b 4 1285 1053
+c56f 5 1287 1053
+c574 10 1289 1053
+c584 5 1291 1053
+c589 1b 1295 1053
+c5a4 7 1362 1053
+c5ab 5 1363 1053
+c5b0 6 1301 1053
+c5b6 2 1303 1053
+c5b8 7 1304 1053
+c5bf 5 1306 1053
+c5c4 4 1308 1053
+c5c8 5 1310 1053
+c5cd 4 1358 1053
+c5d1 5 1359 1053
+c5d6 10 1322 1053
+c5e6 3 1324 1053
+c5e9 c 1325 1053
+c5f5 d 1327 1053
+c602 3 1329 1053
+c605 7 1330 1053
+c60c 5 1332 1053
+c611 3c 1337 1053
+c64d 4 1352 1053
+c651 14 1166 1053
+c665 5 1167 1053
+c66a 32 1378 1053
+c69c d 1716 1053
+c6a9 4 1724 1053
+c6ad 18 1749 1053
+c6c5 c 1750 1053
+c6d1 c 1381 1053
+c6dd 9 1383 1053
+c6e6 8 1564 1053
+c6ee 4 1565 1053
+c6f2 d 1584 1053
+c6ff 3 1589 1053
+c702 13 1610 1053
+c715 4 1611 1053
+c719 8 1612 1053
+c721 19 1614 1053
+c73a 13 1618 1053
+c74d 1 1620 1053
+c74e 9 1621 1053
+c757 5 1622 1053
+c75c 1e 1378 1053
+c77a 9 1397 1053
+c783 f 1415 1053
+c792 3 1420 1053
+c795 25 1430 1053
+c7ba 3 1434 1053
+c7bd 2 1436 1053
+c7bf 4 1437 1053
+c7c3 6 1439 1053
+c7c9 3 1440 1053
+c7cc 5 1506 1053
+c7d1 5 1523 1053
+c7d6 e 1541 1053
+c7e4 6 1546 1053
+c7ea b 1548 1053
+c7f5 7 1549 1053
+c7fc 5 1550 1053
+c801 4 1551 1053
+c805 5 1553 1053
+c80a 8 1543 1053
+c812 7 1544 1053
+c819 5 1557 1053
+c81e 34 1378 1053
+c852 9 1908 1053
+c85b 9 1910 1053
+c864 8 1668 1053
+c86c d 1688 1053
+c879 6 1702 1053
+c87f 7 1703 1053
+c886 2 1704 1053
+c888 5 1706 1053
+c88d 7 1708 1053
+c894 5 1710 1053
+c899 4 1864 1053
+c89d 7 1869 1053
+c8a4 c 1933 1053
+c8b0 8 1939 1053
+c8b8 5 1958 1053
+c8bd 8 1751 1053
+c8c5 9 1752 1053
+c8ce 5 1753 1053
+c8d3 3 1754 1053
+c8d6 9 1756 1053
+c8df f 1759 1053
+c8ee 3 1760 1053
+c8f1 15 1765 1053
+c906 7 1767 1053
+c90d e 1809 1053
+c91b 27 1828 1053
+c942 14 1838 1053
+c956 15 1840 1053
+c96b b 1844 1053
+c976 15 1846 1053
+c98b 5 1852 1053
+c990 7 1853 1053
+c997 4 1854 1053
+c99b 1 1857 1053
+c99c 5 1859 1053
+c9a1 3 1877 1053
+c9a4 7 1887 1053
+c9ab 2 1888 1053
+c9ad 1a 1378 1053
+c9c7 7 1892 1053
+c9ce 11 1897 1053
+c9df 10 1900 1053
+c9ef 3 1901 1053
+c9f2 5 1903 1053
+c9f7 6 1961 1053
+c9fd 6 1987 1053
+ca03 16 2026 1053
+ca19 2 2045 1053
+ca1b 5 2051 1053
+ca20 2 2071 1053
+ca22 4 2074 1053
+ca26 6 2080 1053
+ca2c 2 2099 1053
+ca2e 5 2105 1053
+ca33 10 2128 1053
+ca43 7 2129 1053
+ca4a 7 2130 1053
+ca51 c 2136 1053
+ca5d 2 2142 1053
+ca5f 6 2148 1053
+ca65 7 2149 1053
+ca6c 2 2150 1053
+ca6e 4 2151 1053
+ca72 a 2152 1053
+ca7c 3 2153 1053
+ca7f 6 2157 1053
+ca85 3 2158 1053
+ca88 6 2163 1053
+ca8e 10 2165 1053
+ca9e 10 2166 1053
+caae c 2168 1053
+caba 3 2170 1053
+cabd 3 2172 1053
+cac0 2 2173 1053
+cac2 8 2175 1053
+caca 1 2176 1053
+cacb 19 2180 1053
+cae4 9 2181 1053
+caed 1 2182 1053
+caee 2 2185 1053
+caf0 4 1625 1053
+caf4 8 1626 1053
+cafc c 1628 1053
+cb08 7 1629 1053
+cb0f 2 1630 1053
+cb11 4 1629 1053
+cb15 8 1631 1053
+cb1d a 2201 1053
+cb27 7 2204 1053
+cb2e 6 2205 1053
+cb34 6 2207 1053
+cb3a 2 2208 1053
+cb3c 4 2210 1053
+cb40 6 2212 1053
+cb46 2 2213 1053
+cb48 4 2215 1053
+cb4c 6 2217 1053
+cb52 7 2218 1053
+cb59 b 2224 1053
+cb64 6 2228 1053
+cb6a 11 2230 1053
+cb7b 11 2234 1053
+cb8c d 2236 1053
+cb99 f 2238 1053
+cba8 a 2263 1053
+cbb2 3 2267 1053
+cbb5 3 2268 1053
+cbb8 3 2269 1053
+cbbb 1a 2276 1053
+cbd5 7 2278 1053
+cbdc e 2282 1053
+cbea a 2283 1053
+cbf4 2 1690 1053
+cbf6 4 2279 1053
+cbfa 2 2285 1053
+cbfc d 2286 1053
+cc09 c 2290 1053
+cc15 11 2292 1053
+cc26 6 2297 1053
+cc2c 8 2298 1053
+cc34 16 2299 1053
+cc4a 7 1073 1053
+cc51 10 2310 1053
+cc61 10 2376 1053
+cc71 38 2377 1053
+FUNC cca9 154 10 _validate_param_reuseW
+cca9 3 606 1108
+ccac 21 610 1108
+cccd 13 617 1108
+cce0 13 618 1108
+ccf3 10 620 1108
+cd03 4a 629 1108
+cd4d 54 632 1108
+cda1 2 633 1108
+cda3 1a 639 1108
+cdbd f 645 1108
+cdcc 23 626 1108
+cdef c 614 1108
+cdfb 2 646 1108
+FUNC cdfd 25 4 write_char
+cdfd 0 2433 1108
+cdfd a 2434 1108
+ce07 2 2437 1108
+ce09 12 2440 1108
+ce1b 3 2444 1108
+ce1e 1 2447 1108
+ce1f 2 2446 1108
+ce21 1 2447 1108
+FUNC ce22 25 c write_multi_char
+ce22 6 2498 1108
+ce28 2 2501 1108
+ce2a e 2500 1108
+ce38 6 2501 1108
+ce3e 7 2499 1108
+ce45 2 2504 1108
+FUNC ce47 4f 4 write_string
+ce47 0 2563 1108
+ce47 12 2564 1108
+ce59 6 2566 1108
+ce5f 2 2567 1108
+ce61 11 2570 1108
+ce72 6 2571 1108
+ce78 a 2573 1108
+ce82 a 2574 1108
+ce8c 9 2569 1108
+ce95 1 2579 1108
+FUNC ce96 f60 10 _woutput_p_l
+ce96 1b 975 1108
+ceb1 20 1013 1108
+ced1 28 2172 1108
+cef9 2c 1031 1108
+cf25 4 1036 1108
+cf29 3 1038 1108
+cf2c 3 1041 1108
+cf2f 3 1043 1108
+cf32 f 1046 1108
+cf41 44 1073 1108
+cf85 1a 1078 1108
+cf9f 11 1079 1108
+cfb0 16 1082 1108
+cfc6 6 1084 1108
+cfcc 1c 1087 1108
+cfe8 6 1089 1108
+cfee 16 1091 1108
+d004 7 1093 1108
+d00b 2 1095 1108
+d00d 7 1097 1108
+d014 6 1101 1108
+d01a c 1103 1108
+d026 7 1104 1108
+d02d f 1106 1108
+d03c 1d 1109 1108
+d059 8 1112 1108
+d061 5 1131 1108
+d066 3 1117 1108
+d069 7 1131 1108
+d070 9 1120 1108
+d079 b 1131 1108
+d084 24 1137 1108
+d0a8 5 1145 1108
+d0ad 2 1171 1108
+d0af 16 1173 1108
+d0c5 3 1174 1108
+d0c8 5 1175 1108
+d0cd 1f 1179 1108
+d0ec 7 1193 1108
+d0f3 5 1194 1108
+d0f8 7 1181 1108
+d0ff 5 1182 1108
+d104 7 1184 1108
+d10b 5 1185 1108
+d110 a 1190 1108
+d11a 5 1191 1108
+d11f 6 1187 1108
+d125 5 1196 1108
+d12a a 1200 1108
+d134 6 1203 1108
+d13a a 1206 1108
+d144 2 1209 1108
+d146 c 1211 1108
+d152 6 1212 1108
+d158 e 1214 1108
+d166 1c 1216 1108
+d182 8 1219 1108
+d18a 12 1221 1108
+d19c a 1274 1108
+d1a6 5 1275 1108
+d1ab c 1228 1108
+d1b7 b 1233 1108
+d1c2 7 1235 1108
+d1c9 3 1236 1108
+d1cc 5 1239 1108
+d1d1 10 1241 1108
+d1e1 5 1243 1108
+d1e6 4 1248 1108
+d1ea 5 1249 1108
+d1ef 6 1253 1108
+d1f5 6 1256 1108
+d1fb a 1259 1108
+d205 2 1262 1108
+d207 c 1264 1108
+d213 6 1265 1108
+d219 12 1267 1108
+d22b c 1280 1108
+d237 b 1284 1108
+d242 4 1285 1108
+d246 5 1287 1108
+d24b 22 1274 1108
+d26d 10 1289 1108
+d27d 5 1291 1108
+d282 1b 1295 1108
+d29d a 1362 1108
+d2a7 5 1363 1108
+d2ac 6 1301 1108
+d2b2 2 1303 1108
+d2b4 d 1304 1108
+d2c1 5 1306 1108
+d2c6 7 1308 1108
+d2cd 5 1310 1108
+d2d2 7 1358 1108
+d2d9 5 1359 1108
+d2de 10 1322 1108
+d2ee 3 1324 1108
+d2f1 12 1325 1108
+d303 d 1327 1108
+d310 3 1329 1108
+d313 d 1330 1108
+d320 5 1332 1108
+d325 24 1337 1108
+d349 4 1352 1108
+d34d 13 1166 1108
+d360 5 1167 1108
+d365 a 1342 1108
+d36f 5 1366 1108
+d374 36 1378 1108
+d3aa d 1716 1108
+d3b7 7 1724 1108
+d3be 14 1726 1108
+d3d2 9 1728 1108
+d3db 2a 1739 1108
+d405 b 1381 1108
+d410 9 1383 1108
+d419 b 1564 1108
+d424 7 1565 1108
+d42b d 1584 1108
+d438 b 1586 1108
+d443 a 1589 1108
+d44d 5 1592 1108
+d452 22 1378 1108
+d474 d 1394 1108
+d481 b 1397 1108
+d48c 2 1400 1108
+d48e 9 1402 1108
+d497 6 1404 1108
+d49d 24 1406 1108
+d4c1 5 1407 1108
+d4c6 d 1411 1108
+d4d3 c 1415 1108
+d4df 3 1420 1108
+d4e2 28 1430 1108
+d50a 7 1434 1108
+d511 2 1436 1108
+d513 7 1437 1108
+d51a 9 1439 1108
+d523 7 1440 1108
+d52a 5 1506 1108
+d52f 6 1520 1108
+d535 a 1523 1108
+d53f 2 1526 1108
+d541 9 1528 1108
+d54a 4 1530 1108
+d54e 6 1533 1108
+d554 c 1537 1108
+d560 b 1541 1108
+d56b 9 1546 1108
+d574 b 1548 1108
+d57f 7 1549 1108
+d586 5 1550 1108
+d58b 4 1551 1108
+d58f 5 1553 1108
+d594 8 1543 1108
+d59c 7 1544 1108
+d5a3 5 1557 1108
+d5a8 38 1378 1108
+d5e0 15 1908 1108
+d5f5 11 1910 1108
+d606 6 1665 1108
+d60c a 1668 1108
+d616 2 1671 1108
+d618 9 1673 1108
+d621 6 1675 1108
+d627 1f 1677 1108
+d646 5 1678 1108
+d64b c 1682 1108
+d657 d 1688 1108
+d664 9 1702 1108
+d66d 7 1703 1108
+d674 2 1704 1108
+d676 5 1706 1108
+d67b 7 1708 1108
+d682 5 1710 1108
+d687 7 1864 1108
+d68e 7 1869 1108
+d695 6 1910 1108
+d69b 9 1933 1108
+d6a4 a 1936 1108
+d6ae f 1939 1108
+d6bd 5 1942 1108
+d6c2 1a 1739 1108
+d6dc 21 1109 1108
+d6fd 17 1749 1108
+d714 9 1750 1108
+d71d 8 1751 1108
+d725 9 1752 1108
+d72e 5 1753 1108
+d733 3 1754 1108
+d736 a 1756 1108
+d740 f 1759 1108
+d74f 2 1760 1108
+d751 13 1765 1108
+d764 3 1767 1108
+d767 7 1806 1108
+d76e 9 1809 1108
+d777 2 1812 1108
+d779 a 1818 1108
+d783 6 1821 1108
+d789 16 1822 1108
+d79f 24 1828 1108
+d7c3 16 1838 1108
+d7d9 15 1840 1108
+d7ee b 1844 1108
+d7f9 15 1846 1108
+d80e 5 1852 1108
+d813 a 1853 1108
+d81d 4 1854 1108
+d821 1 1857 1108
+d822 5 1859 1108
+d827 7 1877 1108
+d82e 7 1887 1108
+d835 2 1888 1108
+d837 1a 1378 1108
+d851 7 1892 1108
+d858 14 1897 1108
+d86c 10 1900 1108
+d87c 3 1901 1108
+d87f 5 1903 1108
+d884 9 1944 1108
+d88d 28 1948 1108
+d8b5 5 1949 1108
+d8ba 7 1961 1108
+d8c1 4 1964 1108
+d8c5 6 1970 1108
+d8cb 9 1972 1108
+d8d4 28 1976 1108
+d8fc 5 1977 1108
+d901 c 1981 1108
+d90d 5 1987 1108
+d912 5 2019 1108
+d917 5 2020 1108
+d91c 6 2023 1108
+d922 b 2026 1108
+d92d 5 2029 1108
+d932 9 2031 1108
+d93b 4 2033 1108
+d93f 2 2036 1108
+d941 d 2040 1108
+d94e 5 2045 1108
+d953 6 2048 1108
+d959 b 2051 1108
+d964 5 2054 1108
+d969 9 2056 1108
+d972 4 2058 1108
+d976 2 2061 1108
+d978 d 2065 1108
+d985 2 2071 1108
+d987 5 2074 1108
+d98c 6 2077 1108
+d992 a 2080 1108
+d99c 2 2083 1108
+d99e 9 2085 1108
+d9a7 6 2087 1108
+d9ad 17 2089 1108
+d9c4 15 2114 1108
+d9d9 5 2115 1108
+d9de d 2094 1108
+d9eb 2 2099 1108
+d9ed 6 2102 1108
+d9f3 a 2105 1108
+d9fd 2 2108 1108
+d9ff 9 2110 1108
+da08 6 2112 1108
+da0e e 2119 1108
+da1c f 2128 1108
+da2b 7 2129 1108
+da32 c 2130 1108
+da3e c 2136 1108
+da4a 4 2142 1108
+da4e 6 2148 1108
+da54 7 2149 1108
+da5b 2 2150 1108
+da5d 1a 2114 1108
+da77 3 2151 1108
+da7a 10 2152 1108
+da8a 3 2153 1108
+da8d 7 2157 1108
+da94 3 2158 1108
+da97 6 2163 1108
+da9d 11 2165 1108
+daae 12 2166 1108
+dac0 d 2168 1108
+dacd 3 2170 1108
+dad0 b 2173 1108
+dadb 8 2175 1108
+dae3 1 2176 1108
+dae4 20 2180 1108
+db04 9 2181 1108
+db0d 1 2182 1108
+db0e 5 2185 1108
+db13 9 1594 1108
+db1c 9 1596 1108
+db25 c 1603 1108
+db31 c 1610 1108
+db3d 4 1611 1108
+db41 8 1612 1108
+db49 11 1614 1108
+db5a 13 1618 1108
+db6d 1 1620 1108
+db6e 9 1621 1108
+db77 2 1622 1108
+db79 19 1598 1108
+db92 5 1625 1108
+db97 8 1626 1108
+db9f c 1628 1108
+dbab 6 1629 1108
+dbb1 2 1630 1108
+dbb3 4 1629 1108
+dbb7 8 1631 1108
+dbbf 10 2189 1108
+dbcf a 2201 1108
+dbd9 a 2204 1108
+dbe3 6 2205 1108
+dbe9 6 2207 1108
+dbef 2 2208 1108
+dbf1 4 2210 1108
+dbf5 6 2212 1108
+dbfb 2 2213 1108
+dbfd 4 2215 1108
+dc01 6 2217 1108
+dc07 7 2218 1108
+dc0e b 2224 1108
+dc19 9 2228 1108
+dc22 11 2230 1108
+dc33 11 2234 1108
+dc44 13 2236 1108
+dc57 f 2238 1108
+dc66 a 2263 1108
+dc70 3 2267 1108
+dc73 3 2268 1108
+dc76 3 2269 1108
+dc79 1a 2276 1108
+dc93 7 2278 1108
+dc9a e 2282 1108
+dca8 a 2283 1108
+dcb2 2 2310 1108
+dcb4 4 2279 1108
+dcb8 2 2285 1108
+dcba d 2286 1108
+dcc7 f 2290 1108
+dcd6 11 2292 1108
+dce7 6 2297 1108
+dced 8 2298 1108
+dcf5 4 2299 1108
+dcf9 1 2298 1108
+dcfa 12 1073 1108
+dd0c c 2310 1108
+dd18 c 2314 1108
+dd24 10 2319 1108
+dd34 16 2321 1108
+dd4a 2 2360 1108
+dd4c 9 2361 1108
+dd55 6 2362 1108
+dd5b 2 2344 1108
+dd5d 3 2345 1108
+dd60 2 2346 1108
+dd62 2 2324 1108
+dd64 6 2325 1108
+dd6a 9 2319 1108
+dd73 13 1043 1108
+dd86 17 1121 1108
+dd9d f 1818 1108
+ddac 10 2376 1108
+ddbc 3a 2377 1108
+FUNC ddf6 1f 0 _initp_misc_cfltcvt_tab
+ddf6 2 54 4074
+ddf8 8 56 4074
+de00 14 58 4074
+de14 1 60 4074
+FUNC de20 29 4 _ValidateImageBase
+de20 0 44 3159
+de20 b 50 3159
+de2b 2 52 3159
+de2d 1 68 3159
+de2e 5 55 3159
+de33 6 56 3159
+de39 2 58 3159
+de3b d 62 3159
+de48 1 68 3159
+FUNC de50 42 8 _FindPESection
+de50 0 92 3159
+de50 9 99 3159
+de59 19 108 3159
+de72 10 111 3159
+de82 a 108 3159
+de8c 5 123 3159
+de91 1 124 3159
+FUNC dea0 bb 4 _IsNonwritableInCurrentImage
+dea0 33 149 3159
+ded3 7 156 3159
+deda f 164 3159
+dee9 2 166 3159
+deeb 8 174 3159
+def3 e 175 3159
+df01 2 176 3159
+df03 2 178 3159
+df05 12 185 3159
+df17 12 195 3159
+df29 17 187 3159
+df40 9 193 3159
+df49 12 195 3159
+FUNC df5b 19 4 _initp_misc_winsig
+df5b 0 57 2785
+df5b 9 58 2785
+df64 5 59 2785
+df69 5 60 2785
+df6e 5 61 2785
+df73 1 62 2785
+FUNC df74 9b 4 ctrlevent_capture
+df74 c 89 2785
+df80 9 94 2785
+df89 3 95 2785
+df8c 5 102 2785
+df91 5 103 2785
+df96 e 104 2785
+dfa4 7 105 2785
+dfab 2 107 2785
+dfad 5 108 2785
+dfb2 e 109 2785
+dfc0 7 110 2785
+dfc7 1 109 2785
+dfc8 9 113 2785
+dfd1 7 117 2785
+dfd8 c 120 2785
+dfe4 5 124 2785
+dfe9 4 128 2785
+dfed 2 120 2785
+dfef 8 121 2785
+dff7 6 130 2785
+dffd 7 131 2785
+e004 3 138 2785
+e007 8 139 2785
+FUNC e00f 34 4 siglookup
+e00f 0 634 2785
+e00f b 635 2785
+e01a 15 645 2785
+e02f f 649 2785
+e03e 2 653 2785
+e040 2 658 2785
+e042 1 659 2785
+FUNC e043 d 0 __get_sigabrt
+e043 0 676 2785
+e043 c 677 2785
+e04f 1 678 2785
+FUNC e050 9 0 __fpecode
+e050 0 699 2785
+e050 8 700 2785
+e058 1 701 2785
+FUNC e059 9 0 __pxcptinfoptrs
+e059 0 721 2785
+e059 8 722 2785
+e061 1 723 2785
+FUNC e062 23d 8 signal
+e062 c 219 2785
+e06e 4 224 2785
+e072 3 230 2785
+e075 3 244 2785
+e078 12 230 2785
+e08a 2f 244 2785
+e0b9 13 327 2785
+e0cc 7 334 2785
+e0d3 8 335 2785
+e0db a 342 2785
+e0e5 17 346 2785
+e0fc 10 352 2785
+e10c 13 367 2785
+e11f 3 380 2785
+e122 e 382 2785
+e130 3 395 2785
+e133 17 401 2785
+e14a 5 390 2785
+e14f 5 401 2785
+e154 8 246 2785
+e15c 4 247 2785
+e160 12 254 2785
+e172 14 257 2785
+e186 6 259 2785
+e18c 2 261 2785
+e18e f 263 2785
+e19d a 264 2785
+e1a7 18 268 2785
+e1bf f 288 2785
+e1ce 4 289 2785
+e1d2 b 291 2785
+e1dd 2 293 2785
+e1df f 279 2785
+e1ee 4 280 2785
+e1f2 b 282 2785
+e1fd 2 284 2785
+e1ff f 296 2785
+e20e 4 297 2785
+e212 b 299 2785
+e21d 2 301 2785
+e21f f 271 2785
+e22e 4 272 2785
+e232 c 274 2785
+e23e c 305 2785
+e24a 9 309 2785
+e253 4 407 2785
+e257 3 305 2785
+e25a 9 306 2785
+e263 19 410 2785
+e27c 1a 419 2785
+e296 3 417 2785
+e299 6 423 2785
+FUNC e29f 1b0 4 raise
+e29f c 452 2785
+e2ab 5 459 2785
+e2b0 3 460 2785
+e2b3 1f 462 2785
+e2d2 a 488 2785
+e2dc 4 489 2785
+e2e0 8 490 2785
+e2e8 a 465 2785
+e2f2 2 467 2785
+e2f4 11 492 2785
+e305 2 493 2785
+e307 f 462 2785
+e316 1c 500 2785
+e332 a 476 2785
+e33c 2 478 2785
+e33e a 470 2785
+e348 2 472 2785
+e34a a 481 2785
+e354 7 482 2785
+e35b a 502 2785
+e365 2 510 2785
+e367 4 509 2785
+e36b 6 510 2785
+e371 5 515 2785
+e376 7 520 2785
+e37d 5 527 2785
+e382 7 528 2785
+e389 5 530 2785
+e38e f 543 2785
+e39d 6 544 2785
+e3a3 3 545 2785
+e3a6 5 551 2785
+e3ab 6 552 2785
+e3b1 7 553 2785
+e3b8 5 561 2785
+e3bd 1c 568 2785
+e3d9 d 571 2785
+e3e6 5 568 2785
+e3eb 7 574 2785
+e3f2 c 577 2785
+e3fe 5 582 2785
+e403 8 588 2785
+e40b 2 589 2785
+e40d 6 577 2785
+e413 6 578 2785
+e419 9 579 2785
+e422 5 590 2785
+e427 f 597 2785
+e436 6 598 2785
+e43c 5 603 2785
+e441 6 604 2785
+e447 2 607 2785
+e449 6 608 2785
+FUNC e44f a 4 _initp_misc_rand_s
+e44f 0 58 3075
+e44f 9 59 3075
+e458 1 60 3075
+FUNC e459 104 4 rand_s
+e459 3 66 3075
+e45c b 67 3075
+e467 2b 68 3075
+e492 c 71 3075
+e49e d 77 3075
+e4ab 4 78 3075
+e4af 1e 80 3075
+e4cd e 83 3075
+e4db 4 84 3075
+e4df 2f 86 3075
+e50e 9 88 3075
+e517 5 89 3075
+e51c 16 94 3075
+e532 7 103 3075
+e539 9 107 3075
+e542 b 109 3075
+e54d 9 110 3075
+e556 6 112 3075
+e55c 1 113 3075
+FUNC e55d 15a 14 __getlocaleinfo
+e55d 1d 70 3523
+e57a 7 76 3523
+e581 87 109 3523
+e608 13 103 3523
+e61b 5 114 3523
+e620 7 115 3523
+e627 3 141 3523
+e62a 12 142 3523
+e63c 20 106 3523
+e65c 5 108 3523
+e661 7 109 3523
+e668 4 111 3523
+e66c 5 118 3523
+e671 1a 126 3523
+e68b 2 127 3523
+e68d 2 129 3523
+e68f 10 134 3523
+e69f 16 135 3523
+e6b5 2 139 3523
+FUNC e6b7 a 4 _initp_misc_purevirt
+e6b7 0 166 3523
+e6b7 9 167 3523
+e6c0 1 168 3523
+FUNC e6c1 a 4 _initp_misc_initcrit
+e6c1 0 47 3609
+e6c1 9 48 3609
+e6ca 1 49 3609
+FUNC e6cb 10 8 __crtInitCritSecNoSpinCount
+e6cb 0 76 3609
+e6cb a 77 3609
+e6d5 3 78 3609
+e6d8 3 79 3609
+FUNC e6db c5 8 __crtInitCritSecAndSpinCount
+e6db c 109 3609
+e6e7 5 111 3609
+e6ec e 112 3609
+e6fa 4 114 3609
+e6fe 1b 120 3609
+e719 4 121 3609
+e71d 2 129 3609
+e71f b 130 3609
+e72a 4 131 3609
+e72e e 134 3609
+e73c 4 136 3609
+e740 5 149 3609
+e745 c 152 3609
+e751 3 155 3609
+e754 b 161 3609
+e75f 2 162 3609
+e761 1a 163 3609
+e77b 9 170 3609
+e784 8 171 3609
+e78c 4 173 3609
+e790 7 174 3609
+e797 3 176 3609
+e79a 6 177 3609
+FUNC e7a0 5e 4 _isatty
+e7a0 0 37 4912
+e7a0 16 44 4912
+e7b6 2 59 4912
+e7b8 29 45 4912
+e7e1 1 59 4912
+e7e2 1b 58 4912
+e7fd 1 59 4912
+FUNC e7fe 2f 0 CPtoLCID
+e7fe 0 329 4615
+e7fe 14 330 4615
+e812 2 345 4615
+e814 1 346 4615
+e815 5 342 4615
+e81a 1 346 4615
+e81b 5 339 4615
+e820 1 346 4615
+e821 5 336 4615
+e826 1 346 4615
+e827 5 333 4615
+e82c 1 346 4615
+FUNC e82d 55 0 setSBCS
+e82d 4 363 4615
+e831 14 368 4615
+e845 3 371 4615
+e848 3 374 4615
+e84b 3 376 4615
+e84e 8 379 4615
+e856 a 381 4615
+e860 9 382 4615
+e869 b 384 4615
+e874 d 385 4615
+e881 1 386 4615
+FUNC e882 18a 0 setSBUpLow
+e882 1d 402 4615
+e89f f 412 4615
+e8ae d 415 4615
+e8bb c 416 4615
+e8c7 e 420 4615
+e8d5 3 419 4615
+e8d8 28 421 4615
+e900 1d 427 4615
+e91d 23 432 4615
+e940 25 437 4615
+e965 2 442 4615
+e967 a 443 4615
+e971 5 445 4615
+e976 9 446 4615
+e97f 5 448 4615
+e984 5 450 4615
+e989 e 451 4615
+e997 2 453 4615
+e999 8 454 4615
+e9a1 5 442 4615
+e9a6 8 456 4615
+e9ae 2c 472 4615
+e9da 5 466 4615
+e9df 5 468 4615
+e9e4 7 469 4615
+e9eb 2 471 4615
+e9ed 3 472 4615
+e9f0 5 460 4615
+e9f5 17 474 4615
+FUNC ea0c a4 0 __updatetmbcinfo
+ea0c c 496 4615
+ea18 7 499 4615
+ea1f 10 500 4615
+ea2f 3 533 4615
+ea32 4 536 4615
+ea36 8 538 4615
+ea3e 2 541 4615
+ea40 6 542 4615
+ea46 8 501 4615
+ea4e 4 503 4615
+ea52 e 506 4615
+ea60 17 512 4615
+ea77 7 517 4615
+ea7e 11 524 4615
+ea8f 7 525 4615
+ea96 11 528 4615
+eaa7 9 530 4615
+FUNC eab0 7a 0 getSystemCP
+eab0 7 282 4615
+eab7 b 284 4615
+eac2 b 289 4615
+eacd a 291 4615
+ead7 14 292 4615
+eaeb 5 295 4615
+eaf0 a 297 4615
+eafa 8 298 4615
+eb02 5 302 4615
+eb07 12 305 4615
+eb19 f 308 4615
+eb28 2 309 4615
+FUNC eb2a 1d9 8 _setmbcp_nolock
+eb2a 15 686 4615
+eb3f b 693 4615
+eb4a 9 696 4615
+eb53 7 698 4615
+eb5a 7 699 4615
+eb61 3 703 4615
+eb64 2 705 4615
+eb66 19 708 4615
+eb7f 2a 743 4615
+eba9 13 751 4615
+ebbc f 756 4615
+ebcb 15 761 4615
+ebe0 17 764 4615
+ebf7 c 766 4615
+ec03 f 712 4615
+ec12 15 715 4615
+ec27 9 720 4615
+ec30 8 723 4615
+ec38 12 724 4615
+ec4a 9 723 4615
+ec53 5 720 4615
+ec58 12 715 4615
+ec6a 20 731 4615
+ec8a d 733 4615
+ec97 7 736 4615
+ec9e 5 737 4615
+eca3 6 767 4615
+eca9 10 766 4615
+ecb9 8 771 4615
+ecc1 7 772 4615
+ecc8 b 775 4615
+ecd3 3 778 4615
+ecd6 2 780 4615
+ecd8 3 782 4615
+ecdb 8 785 4615
+ece3 2 789 4615
+ece5 6 794 4615
+eceb 6 797 4615
+ecf1 3 746 4615
+ecf4 f 802 4615
+FUNC ed03 3c 0 _getmbcp
+ed03 6 819 4615
+ed09 a 821 4615
+ed13 9 822 4615
+ed1c 10 823 4615
+ed2c 2 826 4615
+ed2e f 825 4615
+ed3d 2 826 4615
+FUNC ed3f 19a 4 _setmbcp
+ed3f c 574 4615
+ed4b 4 575 4615
+ed4f a 579 4615
+ed59 5 581 4615
+ed5e 3 582 4615
+ed61 b 585 4615
+ed6c 9 587 4615
+ed75 d 593 4615
+ed82 8 595 4615
+ed8a c 597 4615
+ed96 3 607 4615
+ed99 16 612 4615
+edaf 1a 614 4615
+edc9 7 615 4615
+edd0 3 619 4615
+edd3 9 620 4615
+eddc 17 622 4615
+edf3 8 624 4615
+edfb 4 625 4615
+edff 8 630 4615
+ee07 8 631 4615
+ee0f 8 632 4615
+ee17 a 633 4615
+ee21 d 634 4615
+ee2e 3 633 4615
+ee31 c 635 4615
+ee3d a 636 4615
+ee47 3 635 4615
+ee4a c 637 4615
+ee56 d 638 4615
+ee63 3 637 4615
+ee66 1c 640 4615
+ee82 7 641 4615
+ee89 6 645 4615
+ee8f 3 646 4615
+ee92 e 648 4615
+eea0 9 650 4615
+eea9 2 653 4615
+eeab 5 654 4615
+eeb0 8 660 4615
+eeb8 7 661 4615
+eebf b 662 4615
+eeca 2 668 4615
+eecc 4 673 4615
+eed0 3 682 4615
+eed3 6 683 4615
+FUNC eed9 1e 0 __initmbctable
+eed9 0 843 4615
+eed9 9 853 4615
+eee2 8 854 4615
+eeea a 855 4615
+eef4 2 860 4615
+eef6 1 861 4615
+FUNC eef7 6 0 ___setlc_active_func
+eef7 0 90 2995
+eef7 5 91 2995
+eefc 1 92 2995
+FUNC eefd 6 0 ___unguarded_readlc_active_add_func
+eefd 0 104 2995
+eefd 5 105 2995
+ef02 1 106 2995
+FUNC ef03 140 4 __freetlocinfo
+ef03 3 144 2995
+ef06 26 152 2995
+ef2c e 155 2995
+ef3a 6 157 2995
+ef40 d 158 2995
+ef4d e 162 2995
+ef5b 6 164 2995
+ef61 d 165 2995
+ef6e b 168 2995
+ef79 d 169 2995
+ef86 e 176 2995
+ef94 11 178 2995
+efa5 13 179 2995
+efb8 e 180 2995
+efc6 e 181 2995
+efd4 17 188 2995
+efeb 6 190 2995
+eff1 9 191 2995
+effa 6 194 2995
+f000 13 197 2995
+f013 7 199 2995
+f01a 10 205 2995
+f02a d 207 2995
+f037 b 214 2995
+f042 1 215 2995
+FUNC f043 86 4 __addlocaleref
+f043 3 225 2995
+f046 e 227 2995
+f054 a 228 2995
+f05e 3 229 2995
+f061 a 231 2995
+f06b 3 232 2995
+f06e a 234 2995
+f078 3 235 2995
+f07b a 237 2995
+f085 3 238 2995
+f088 6 240 2995
+f08e f 242 2995
+f09d 3 243 2995
+f0a0 d 245 2995
+f0ad 9 246 2995
+f0b6 12 248 2995
+f0c8 1 249 2995
+FUNC f0c9 8c 4 __removelocaleref
+f0c9 1 259 2995
+f0ca b 261 2995
+f0d5 9 263 2995
+f0de a 265 2995
+f0e8 3 266 2995
+f0eb a 268 2995
+f0f5 3 269 2995
+f0f8 a 271 2995
+f102 3 272 2995
+f105 a 274 2995
+f10f 3 275 2995
+f112 6 277 2995
+f118 f 279 2995
+f127 3 280 2995
+f12a d 282 2995
+f137 9 283 2995
+f140 11 285 2995
+f151 3 287 2995
+f154 1 288 2995
+FUNC f155 24 0 _copytlocinfo_nolock
+f155 3 302 2995
+f158 d 303 2995
+f165 7 304 2995
+f16c 3 305 2995
+f16f 9 306 2995
+f178 1 308 2995
+FUNC f179 3e 0 _updatetlocinfoEx_nolock
+f179 0 321 2995
+f179 9 324 2995
+f182 2 326 2995
+f184 4 327 2995
+f188 8 334 2995
+f190 5 339 2995
+f195 6 341 2995
+f19b e 350 2995
+f1a9 7 351 2995
+f1b0 3 355 2995
+f1b3 1 356 2995
+f1b4 2 325 2995
+f1b6 1 356 2995
+FUNC f1b7 76 0 __updatetlocinfo
+f1b7 c 382 2995
+f1c3 7 384 2995
+f1ca 10 386 2995
+f1da 8 397 2995
+f1e2 4 399 2995
+f1e6 8 401 2995
+f1ee 2 404 2995
+f1f0 6 405 2995
+f1f6 8 387 2995
+f1fe 4 388 2995
+f202 11 390 2995
+f213 e 392 2995
+f221 8 394 2995
+f229 4 395 2995
+FUNC f22d 66 4 _configthreadlocale
+f22d 2 420 2995
+f22f 5 434 2995
+f234 10 435 2995
+f244 19 437 2995
+f25d 1d 456 2995
+f27a 3 444 2995
+f27d 2 445 2995
+f27f 6 440 2995
+f285 2 441 2995
+f287 7 452 2995
+f28e 4 460 2995
+f292 1 462 2995
+FUNC f293 53 0 sync_legacy_variables_lk
+f293 0 489 2995
+f293 e 490 2995
+f2a1 9 491 2995
+f2aa c 492 2995
+f2b6 c 493 2995
+f2c2 c 494 2995
+f2ce c 495 2995
+f2da b 496 2995
+f2e5 1 497 2995
+FUNC f2e6 96 4 _free_locale
+f2e6 c 517 2995
+f2f2 9 518 2995
+f2fb 1c 522 2995
+f317 7 524 2995
+f31e 4 526 2995
+f322 8 534 2995
+f32a 3 535 2995
+f32d 8 537 2995
+f335 11 540 2995
+f346 7 541 2995
+f34d c 543 2995
+f359 7 552 2995
+f360 3 553 2995
+f363 7 554 2995
+f36a 6 556 2995
+f370 3 543 2995
+f373 9 545 2995
+FUNC f37c 5 4 __free_locale
+f37c 0 562 2995
+f37c 5 563 2995
+FUNC f381 88 0 _get_current_locale
+f381 c 687 2995
+f38d 7 689 2995
+f394 14 691 2995
+f3a8 b 693 2995
+f3b3 4 694 2995
+f3b7 5 697 2995
+f3bc 5 698 2995
+f3c1 5 706 2995
+f3c6 6 707 2995
+f3cc 8 708 2995
+f3d4 4 709 2995
+f3d8 8 710 2995
+f3e0 c 712 2995
+f3ec 9 715 2995
+f3f5 2 717 2995
+f3f7 6 718 2995
+f3fd 3 712 2995
+f400 9 713 2995
+FUNC f409 5 0 __get_current_locale
+f409 0 722 2995
+f409 5 723 2995
+FUNC f40e 3 4 __init_dummy
+f40e 0 1283 2995
+f40e 2 1284 2995
+f410 1 1285 2995
+FUNC f411 3e c _strcats
+f411 2 1288 2995
+f413 f 1294 2995
+f422 26 1296 2995
+f448 6 1294 2995
+f44e 1 1299 2995
+FUNC f44f 129 8 __lc_strtolc
+f44f 6 1302 2995
+f455 11 1307 2995
+f466 c 1309 2995
+f472 7 1310 2995
+f479 b 1313 2995
+f484 25 1315 2995
+f4a9 6 1317 2995
+f4af 2 1318 2995
+f4b1 15 1323 2995
+f4c6 1d 1328 2995
+f4e3 9 1329 2995
+f4ec 10 1331 2995
+f4fc c 1332 2995
+f508 14 1334 2995
+f51c 28 1335 2995
+f544 9 1340 2995
+f54d b 1348 2995
+f558 18 1350 2995
+f570 6 1338 2995
+f576 2 1353 2995
+FUNC f578 6b c __lc_lctostr
+f578 5 1356 2995
+f57d 25 1357 2995
+f5a2 7 1358 2995
+f5a9 16 1359 2995
+f5bf c 1360 2995
+f5cb 16 1361 2995
+f5e1 2 1362 2995
+FUNC f5e3 171 0 _setlocale_get_all
+f5e3 4 1124 2995
+f5e7 3 1126 2995
+f5ea 1d 1134 2995
+f607 3 1137 2995
+f60a 3 1139 2995
+f60d 2 1140 2995
+f60f 2f 1143 2995
+f63e 26 1146 2995
+f664 10 1147 2995
+f674 5 1148 2995
+f679 4 1141 2995
+f67d 2f 1143 2995
+f6ac a 1144 2995
+f6b6 8 1152 2995
+f6be 14 1154 2995
+f6d2 9 1156 2995
+f6db e 1159 2995
+f6e9 9 1161 2995
+f6f2 7 1165 2995
+f6f9 7 1166 2995
+f700 9 1168 2995
+f709 15 1170 2995
+f71e 9 1172 2995
+f727 e 1175 2995
+f735 9 1177 2995
+f73e 12 1183 2995
+f750 4 1187 2995
+FUNC f754 1d4 18 _expandlocale
+f754 15 1198 2995
+f769 41 1230 2995
+f7aa 14 1211 2995
+f7be b 1216 2995
+f7c9 26 1219 2995
+f7ef 4 1220 2995
+f7f3 3 1222 2995
+f7f6 4 1223 2995
+f7fa 4 1224 2995
+f7fe 7 1226 2995
+f805 2 1228 2995
+f807 8 1230 2995
+f80f 6 1234 2995
+f815 2f 1236 2995
+f844 4 1241 2995
+f848 e 1243 2995
+f856 6 1244 2995
+f85c 10 1246 2995
+f86c 6 1247 2995
+f872 9 1251 2995
+f87b 10 1253 2995
+f88b a 1255 2995
+f895 2 1260 2995
+f897 8 1263 2995
+f89f 26 1267 2995
+f8c5 5 1271 2995
+f8ca e 1272 2995
+f8d8 5 1273 2995
+f8dd 10 1274 2995
+f8ed 22 1276 2995
+f90f 5 1277 2995
+f914 2 1212 2995
+f916 12 1278 2995
+FUNC f928 2f6 4 _setlocale_set_cat
+f928 19 980 2995
+f941 5 993 2995
+f946 2f 998 2995
+f975 7 1000 2995
+f97c 19 1002 2995
+f995 6 1004 2995
+f99b c 1007 2995
+f9a7 16 1008 2995
+f9bd 2 1010 2995
+f9bf 3 1013 2995
+f9c2 d 1014 2995
+f9cf 2c 1015 2995
+f9fb 3 1016 2995
+f9fe 39 1019 2995
+fa37 6 1020 2995
+fa3d 15 1021 2995
+fa52 17 1022 2995
+fa69 a 1029 2995
+fa73 6 1031 2995
+fa79 18 1037 2995
+fa91 7 1039 2995
+fa98 8 1053 2995
+faa0 14 1054 2995
+fab4 18 1055 2995
+facc 2 1039 2995
+face a 1044 2995
+fad8 d 1046 2995
+fae5 b 1047 2995
+faf0 9 1058 2995
+faf9 26 1066 2995
+fb1f 2 1069 2995
+fb21 10 1071 2995
+fb31 22 1072 2995
+fb53 2 1081 2995
+fb55 4 1082 2995
+fb59 5 1083 2995
+fb5e 9 1085 2995
+fb67 6 1088 2995
+fb6d 9 1089 2995
+fb76 12 1091 2995
+fb88 6 1094 2995
+fb8e e 1095 2995
+fb9c f 1096 2995
+fbab 9 1097 2995
+fbb4 5 1099 2995
+fbb9 24 1106 2995
+fbdd 7 1109 2995
+fbe4 8 1110 2995
+fbec 6 1111 2995
+fbf2 18 1116 2995
+fc0a 3 1118 2995
+fc0d 11 1119 2995
+FUNC fc1e 1ce 4 _setlocale_nolock
+fc1e 1a 873 2995
+fc38 7 877 2995
+fc3f 5 904 2995
+fc44 17 880 2995
+fc5b 5 882 2995
+fc60 12 888 2995
+fc72 1d 890 2995
+fc8f 2 894 2995
+fc91 d 898 2995
+fc9e 1e 900 2995
+fcbc 11 904 2995
+fccd 1d 907 2995
+fcea e 904 2995
+fcf8 1b 913 2995
+fd13 6 916 2995
+fd19 24 918 2995
+fd3d 18 922 2995
+fd55 3 923 2995
+fd58 7 925 2995
+fd5f 1 926 2995
+fd60 9 928 2995
+fd69 c 930 2995
+fd75 4 901 2995
+fd79 19 935 2995
+fd92 3 937 2995
+fd95 4 939 2995
+fd99 11 941 2995
+fdaa c 943 2995
+fdb6 2 947 2995
+fdb8 3 949 2995
+fdbb 2 952 2995
+fdbd 3 953 2995
+fdc0 9 937 2995
+fdc9 5 956 2995
+fdce 2 961 2995
+fdd0 3 962 2995
+fdd3 2 965 2995
+fdd5 5 966 2995
+fdda 12 972 2995
+FUNC fdec f3 8 _create_locale
+fdec 0 605 2995
+fdec 10 609 2995
+fdfc 13 612 2995
+fe0f b 614 2995
+fe1a 4 610 2995
+fe1e c 658 2995
+fe2a 8 617 2995
+fe32 7 619 2995
+fe39 2 621 2995
+fe3b 14 623 2995
+fe4f 7 625 2995
+fe56 7 626 2995
+fe5d 2 628 2995
+fe5f c 630 2995
+fe6b 14 632 2995
+fe7f 7 634 2995
+fe86 7 635 2995
+fe8d 9 637 2995
+fe96 2 640 2995
+fe98 13 642 2995
+feab 8 644 2995
+feb3 7 645 2995
+feba 7 646 2995
+fec1 9 647 2995
+feca 2 648 2995
+fecc 2 650 2995
+fece 5 652 2995
+fed3 5 653 2995
+fed8 7 657 2995
+FUNC fedf 5 8 __create_locale
+fedf 0 665 2995
+fedf 5 666 2995
+FUNC fee4 170 8 setlocale
+fee4 c 791 2995
+fef0 5 792 2995
+fef5 25 797 2995
+ff1a a 799 2995
+ff24 5 801 2995
+ff29 4 806 2995
+ff2d 3 807 2995
+ff30 1b 808 2995
+ff4b 8 818 2995
+ff53 7 819 2995
+ff5a a 820 2995
+ff64 8 822 2995
+ff6c 19 826 2995
+ff85 18 834 2995
+ff9d a 836 2995
+ffa7 8 839 2995
+ffaf 7 840 2995
+ffb6 a 841 2995
+ffc0 7 842 2995
+ffc7 f 846 2995
+ffd6 c 847 2995
+ffe2 18 849 2995
+fffa 5 850 2995
+ffff b 852 2995
+1000a 8 822 2995
+10012 9 823 2995
+1001b 3 852 2995
+1001e 9 853 2995
+10027 2 855 2995
+10029 6 856 2995
+1002f 8 857 2995
+10037 c 860 2995
+10043 3 865 2995
+10046 6 866 2995
+1004c 3 860 2995
+1004f 5 862 2995
+FUNC 10054 15f 14 _wctomb_s_l
+10054 8 56 6128
+1005c 11 57 6128
+1006d 7 60 6128
+10074 2 62 6128
+10076 4 64 6128
+1007a 7 67 6128
+10081 3 69 6128
+10084 23 74 6128
+100a7 b 77 6128
+100b2 c 79 6128
+100be a 81 6128
+100c8 8 83 6128
+100d0 b 85 6128
+100db b 125 6128
+100e6 13 126 6128
+100f9 5 136 6128
+100fe 4 91 6128
+10102 2c 93 6128
+1012e 2 94 6128
+10130 7 96 6128
+10137 6 98 6128
+1013d 15 100 6128
+10152 27 115 6128
+10179 7 129 6128
+10180 2 131 6128
+10182 2 133 6128
+10184 f 117 6128
+10193 10 119 6128
+101a3 b 121 6128
+101ae 5 123 6128
+FUNC 101b3 1b 10 wctomb_s
+101b3 0 144 6128
+101b3 1a 145 6128
+101cd 1 146 6128
+FUNC 101ce 4f c _wctomb_l
+101ce 6 178 6128
+101d4 f 181 6128
+101e3 1f 183 6128
+10202 19 184 6128
+1021b 2 185 6128
+FUNC 1021d 30 8 wctomb
+1021d 4 191 6128
+10221 4 192 6128
+10225 1a 195 6128
+1023f 7 196 6128
+10246 2 197 6128
+10248 3 196 6128
+1024b 2 197 6128
+FUNC 1024d 36 8 _isleadbyte_l
+1024d 6 55 6490
+10253 b 56 6490
+1025e 23 57 6490
+10281 2 58 6490
+FUNC 10283 e 4 isleadbyte
+10283 0 63 6490
+10283 d 64 6490
+10290 1 65 6490
+FUNC 10291 16 8 _iswalpha_l
+10291 0 71 6490
+10291 15 72 6490
+102a6 1 73 6490
+FUNC 102a7 11 4 iswalpha
+102a7 0 78 6490
+102a7 10 79 6490
+102b7 1 80 6490
+FUNC 102b8 13 8 _iswupper_l
+102b8 0 86 6490
+102b8 12 87 6490
+102ca 1 88 6490
+FUNC 102cb e 4 iswupper
+102cb 0 93 6490
+102cb d 94 6490
+102d8 1 95 6490
+FUNC 102d9 13 8 _iswlower_l
+102d9 0 101 6490
+102d9 12 102 6490
+102eb 1 103 6490
+FUNC 102ec e 4 iswlower
+102ec 0 108 6490
+102ec d 109 6490
+102f9 1 110 6490
+FUNC 102fa 13 8 _iswdigit_l
+102fa 0 116 6490
+102fa 12 117 6490
+1030c 1 118 6490
+FUNC 1030d e 4 iswdigit
+1030d 0 123 6490
+1030d d 124 6490
+1031a 1 125 6490
+FUNC 1031b 16 8 _iswxdigit_l
+1031b 0 131 6490
+1031b 15 132 6490
+10330 1 133 6490
+FUNC 10331 11 4 iswxdigit
+10331 0 138 6490
+10331 10 139 6490
+10341 1 140 6490
+FUNC 10342 13 8 _iswspace_l
+10342 0 146 6490
+10342 12 147 6490
+10354 1 148 6490
+FUNC 10355 e 4 iswspace
+10355 0 153 6490
+10355 d 154 6490
+10362 1 155 6490
+FUNC 10363 13 8 _iswpunct_l
+10363 0 161 6490
+10363 12 162 6490
+10375 1 163 6490
+FUNC 10376 e 4 iswpunct
+10376 0 168 6490
+10376 d 169 6490
+10383 1 170 6490
+FUNC 10384 16 8 _iswalnum_l
+10384 0 176 6490
+10384 15 177 6490
+10399 1 178 6490
+FUNC 1039a 11 4 iswalnum
+1039a 0 183 6490
+1039a 10 184 6490
+103aa 1 185 6490
+FUNC 103ab 16 8 _iswprint_l
+103ab 0 191 6490
+103ab 15 192 6490
+103c0 1 193 6490
+FUNC 103c1 11 4 iswprint
+103c1 0 198 6490
+103c1 10 199 6490
+103d1 1 200 6490
+FUNC 103d2 16 8 _iswgraph_l
+103d2 0 206 6490
+103d2 15 207 6490
+103e7 1 208 6490
+FUNC 103e8 11 4 iswgraph
+103e8 0 213 6490
+103e8 10 214 6490
+103f8 1 215 6490
+FUNC 103f9 13 8 _iswcntrl_l
+103f9 0 221 6490
+103f9 12 222 6490
+1040b 1 223 6490
+FUNC 1040c e 4 iswcntrl
+1040c 0 228 6490
+1040c d 229 6490
+10419 1 230 6490
+FUNC 1041a c 4 iswascii
+1041a 0 235 6490
+1041a b 236 6490
+10425 1 237 6490
+FUNC 10426 26 8 _iswcsym_l
+10426 0 243 6490
+10426 21 244 6490
+10447 1 245 6490
+10448 3 244 6490
+1044b 1 245 6490
+FUNC 1044c 21 4 __iswcsym
+1044c 0 250 6490
+1044c 1c 251 6490
+10468 1 252 6490
+10469 3 251 6490
+1046c 1 252 6490
+FUNC 1046d 26 8 _iswcsymf_l
+1046d 0 258 6490
+1046d 21 259 6490
+1048e 1 260 6490
+1048f 3 259 6490
+10492 1 260 6490
+FUNC 10493 21 4 __iswcsymf
+10493 0 265 6490
+10493 1c 266 6490
+104af 1 267 6490
+104b0 3 266 6490
+104b3 1 267 6490
+FUNC 104c0 95 0 _aulldvrm
+104c0 0 45 5113
+104c0 1 47 5113
+104c1 4 79 5113
+104c5 2 80 5113
+104c7 2 81 5113
+104c9 4 82 5113
+104cd 4 83 5113
+104d1 2 84 5113
+104d3 2 85 5113
+104d5 2 86 5113
+104d7 4 87 5113
+104db 2 88 5113
+104dd 2 89 5113
+104df 2 94 5113
+104e1 4 95 5113
+104e5 2 96 5113
+104e7 2 97 5113
+104e9 4 98 5113
+104ed 2 99 5113
+104ef 2 100 5113
+104f1 2 107 5113
+104f3 4 108 5113
+104f7 4 109 5113
+104fb 4 110 5113
+104ff 2 112 5113
+10501 2 113 5113
+10503 2 114 5113
+10505 2 115 5113
+10507 2 116 5113
+10509 2 117 5113
+1050b 2 118 5113
+1050d 2 119 5113
+1050f 4 128 5113
+10513 2 129 5113
+10515 4 130 5113
+10519 2 131 5113
+1051b 2 132 5113
+1051d 2 133 5113
+1051f 4 141 5113
+10523 2 142 5113
+10525 2 143 5113
+10527 4 144 5113
+1052b 2 145 5113
+1052d 1 147 5113
+1052e 4 148 5113
+10532 4 149 5113
+10536 2 151 5113
+10538 4 160 5113
+1053c 4 161 5113
+10540 2 162 5113
+10542 2 163 5113
+10544 3 164 5113
+10547 2 169 5113
+10549 2 170 5113
+1054b 2 171 5113
+1054d 2 172 5113
+1054f 2 173 5113
+10551 1 179 5113
+10552 3 181 5113
+FUNC 10558 90 0 _local_unwind4
+FUNC 105e8 46 0 _unwind_handler4
+FUNC 1062e 1c 4 _seh_longjmp_unwind4
+FUNC 1064a 17 0 _EH4_CallFilterFunc
+FUNC 10661 19 0 _EH4_TransferToHandler
+FUNC 1067a 1a 0 _EH4_GlobalUnwind
+FUNC 10694 17 8 _EH4_LocalUnwind
+FUNC 106ab 33 0 write_char
+106ab 0 2433 1218
+106ab a 2434 1218
+106b5 2 2437 1218
+106b7 21 2442 1218
+106d8 2 2444 1218
+106da 1 2447 1218
+106db 2 2446 1218
+106dd 1 2447 1218
+FUNC 106de 24 c write_multi_char
+106de 6 2498 1218
+106e4 2 2501 1218
+106e6 e 2500 1218
+106f4 5 2501 1218
+106f9 7 2499 1218
+10700 2 2504 1218
+FUNC 10702 4a 4 write_string
+10702 0 2563 1218
+10702 12 2564 1218
+10714 6 2566 1218
+1071a 2 2567 1218
+1071c e 2570 1218
+1072a 5 2571 1218
+1072f a 2573 1218
+10739 9 2574 1218
+10742 9 2569 1218
+1074b 1 2579 1218
+FUNC 1074c 9b0 10 _output_s_l
+1074c 1b 975 1218
+10767 45 1036 1218
+107ac 2d 1031 1218
+107d9 b1 1033 1218
+1088a 8 1036 1218
+10892 28 1073 1218
+108ba 17 1078 1218
+108d1 e 1079 1218
+108df 11 1124 1218
+108f0 12 1131 1218
+10902 2 1171 1218
+10904 13 1173 1218
+10917 3 1174 1218
+1091a 5 1175 1218
+1091f 1e 1179 1218
+1093d 3 1193 1218
+10940 5 1194 1218
+10945 4 1181 1218
+10949 5 1182 1218
+1094e 4 1184 1218
+10952 5 1185 1218
+10957 7 1190 1218
+1095e 5 1191 1218
+10963 4 1187 1218
+10967 5 1196 1218
+1096c 5 1200 1218
+10971 9 1206 1218
+1097a b 1233 1218
+10985 4 1235 1218
+10989 3 1236 1218
+1098c 5 1239 1218
+10991 10 1241 1218
+109a1 5 1243 1218
+109a6 4 1248 1218
+109aa 5 1249 1218
+109af 5 1253 1218
+109b4 9 1259 1218
+109bd b 1284 1218
+109c8 4 1285 1218
+109cc 5 1287 1218
+109d1 10 1289 1218
+109e1 5 1291 1218
+109e6 18 1295 1218
+109fe 7 1362 1218
+10a05 5 1363 1218
+10a0a 5 1301 1218
+10a0f 1 1303 1218
+10a10 a 1304 1218
+10a1a 5 1306 1218
+10a1f 4 1308 1218
+10a23 5 1310 1218
+10a28 4 1358 1218
+10a2c 5 1359 1218
+10a31 c 1322 1218
+10a3d 2 1324 1218
+10a3f f 1325 1218
+10a4e a 1327 1218
+10a58 2 1329 1218
+10a5a a 1330 1218
+10a64 5 1332 1218
+10a69 30 1337 1218
+10a99 4 1352 1218
+10a9d 4 1154 1218
+10aa1 10 1158 1218
+10ab1 11 1160 1218
+10ac2 3 1161 1218
+10ac5 b 1163 1218
+10ad0 b 1166 1218
+10adb 5 1167 1218
+10ae0 32 1378 1218
+10b12 d 1716 1218
+10b1f 4 1724 1218
+10b23 18 1749 1218
+10b3b c 1750 1218
+10b47 8 1381 1218
+10b4f 9 1385 1218
+10b58 8 1561 1218
+10b60 7 1562 1218
+10b67 d 1584 1218
+10b74 3 1589 1218
+10b77 15 1635 1218
+10b8c 4 1636 1218
+10b90 8 1637 1218
+10b98 f 1639 1218
+10ba7 1d 1378 1218
+10bc4 12 1448 1218
+10bd6 16 1467 1218
+10bec 4 1470 1218
+10bf0 7 1471 1218
+10bf7 2 1472 1218
+10bf9 6 1499 1218
+10bff 7 1500 1218
+10c06 6 1503 1218
+10c0c 5 1506 1218
+10c11 5 1523 1218
+10c16 e 1541 1218
+10c24 6 1546 1218
+10c2a d 1548 1218
+10c37 7 1549 1218
+10c3e 5 1550 1218
+10c43 4 1551 1218
+10c47 5 1553 1218
+10c4c 8 1543 1218
+10c54 7 1544 1218
+10c5b 5 1557 1218
+10c60 34 1378 1218
+10c94 9 1908 1218
+10c9d 9 1910 1218
+10ca6 8 1668 1218
+10cae d 1688 1218
+10cbb 6 1702 1218
+10cc1 7 1703 1218
+10cc8 2 1704 1218
+10cca 5 1706 1218
+10ccf 7 1708 1218
+10cd6 5 1710 1218
+10cdb 4 1864 1218
+10cdf 7 1869 1218
+10ce6 c 1933 1218
+10cf2 8 1939 1218
+10cfa 5 1958 1218
+10cff 7 1751 1218
+10d06 9 1752 1218
+10d0f 5 1753 1218
+10d14 3 1754 1218
+10d17 9 1756 1218
+10d20 f 1759 1218
+10d2f 2 1760 1218
+10d31 15 1765 1218
+10d46 8 1767 1218
+10d4e e 1809 1218
+10d5c 27 1828 1218
+10d83 14 1838 1218
+10d97 15 1840 1218
+10dac a 1844 1218
+10db6 15 1846 1218
+10dcb 5 1852 1218
+10dd0 7 1853 1218
+10dd7 4 1854 1218
+10ddb 1 1857 1218
+10ddc 5 1859 1218
+10de1 3 1877 1218
+10de4 3 1887 1218
+10de7 2 1888 1218
+10de9 1a 1378 1218
+10e03 7 1892 1218
+10e0a 11 1897 1218
+10e1b c 1900 1218
+10e27 7 1901 1218
+10e2e 5 1903 1218
+10e33 5 1961 1218
+10e38 6 1987 1218
+10e3e 14 2026 1218
+10e52 2 2045 1218
+10e54 5 2051 1218
+10e59 2 2071 1218
+10e5b 3 2074 1218
+10e5e 6 2080 1218
+10e64 2 2099 1218
+10e66 5 2105 1218
+10e6b f 2128 1218
+10e7a 7 2129 1218
+10e81 7 2130 1218
+10e88 c 2136 1218
+10e94 2 2142 1218
+10e96 6 2148 1218
+10e9c 7 2149 1218
+10ea3 2 2150 1218
+10ea5 4 2151 1218
+10ea9 a 2152 1218
+10eb3 3 2153 1218
+10eb6 6 2157 1218
+10ebc 3 2158 1218
+10ebf 6 2163 1218
+10ec5 10 2165 1218
+10ed5 10 2166 1218
+10ee5 c 2168 1218
+10ef1 3 2170 1218
+10ef4 3 2172 1218
+10ef7 2 2173 1218
+10ef9 8 2175 1218
+10f01 1 2176 1218
+10f02 19 2180 1218
+10f1b 9 2181 1218
+10f24 1 2182 1218
+10f25 2 2185 1218
+10f27 7 1640 1218
+10f2e 2 1641 1218
+10f30 4 1640 1218
+10f34 5 1642 1218
+10f39 2 1644 1218
+10f3b 4 1645 1218
+10f3f 8 1646 1218
+10f47 5 1647 1218
+10f4c 6 1648 1218
+10f52 1 1649 1218
+10f53 4 1648 1218
+10f57 6 1650 1218
+10f5d a 2201 1218
+10f67 7 2204 1218
+10f6e 6 2205 1218
+10f74 4 2207 1218
+10f78 2 2208 1218
+10f7a 4 2210 1218
+10f7e 4 2212 1218
+10f82 2 2213 1218
+10f84 4 2215 1218
+10f88 4 2217 1218
+10f8c 7 2218 1218
+10f93 9 2224 1218
+10f9c 6 2228 1218
+10fa2 11 2230 1218
+10fb3 11 2234 1218
+10fc4 d 2236 1218
+10fd1 f 2238 1218
+10fe0 d 2243 1218
+10fed 3 2249 1218
+10ff0 3 2250 1218
+10ff3 1e 2252 1218
+11011 9 2253 1218
+1101a 18 2257 1218
+11032 2 1690 1218
+11034 4 2254 1218
+11038 2 2259 1218
+1103a d 2260 1218
+11047 c 2290 1218
+11053 f 2292 1218
+11062 6 2297 1218
+11068 8 2298 1218
+11070 1b 2299 1218
+1108b 17 1125 1218
+110a2 2 1690 1218
+110a4 f 2310 1218
+110b3 10 2376 1218
+110c3 39 2377 1218
+FUNC 110fc 129 10 _validate_param_reuseA
+110fc 3 606 1271
+110ff 1c 610 1271
+1111b f 617 1271
+1112a 11 618 1271
+1113b 10 620 1271
+1114b 36 629 1271
+11181 46 632 1271
+111c7 2 633 1271
+111c9 17 639 1271
+111e0 c 645 1271
+111ec 2c 626 1271
+11218 b 614 1271
+11223 2 646 1271
+FUNC 11225 33 0 write_char
+11225 0 2433 1271
+11225 a 2434 1271
+1122f 2 2437 1271
+11231 21 2442 1271
+11252 2 2444 1271
+11254 1 2447 1271
+11255 2 2446 1271
+11257 1 2447 1271
+FUNC 11258 24 c write_multi_char
+11258 6 2498 1271
+1125e 2 2501 1271
+11260 e 2500 1271
+1126e 5 2501 1271
+11273 7 2499 1271
+1127a 2 2504 1271
+FUNC 1127c 4a 4 write_string
+1127c 0 2563 1271
+1127c 12 2564 1271
+1128e 6 2566 1271
+11294 2 2567 1271
+11296 e 2570 1271
+112a4 5 2571 1271
+112a9 a 2573 1271
+112b3 9 2574 1271
+112bc 9 2569 1271
+112c5 1 2579 1271
+FUNC 112c6 10 4 get_crtdouble_arg
+112c6 0 2684 1271
+112c6 f 2685 1271
+112d5 1 2686 1271
+FUNC 112d6 f88 10 _output_p_l
+112d6 1b 975 1271
+112f1 15 986 1271
+11306 b 1007 1271
+11311 2b 2172 1271
+1133c 2c 1031 1271
+11368 9b 1033 1271
+11403 8 1036 1271
+1140b 3 1038 1271
+1140e 3 1041 1271
+11411 3 1043 1271
+11414 11 1046 1271
+11425 7 1061 1271
+1142c 4 1062 1271
+11430 7 1069 1271
+11437 32 1073 1271
+11469 19 1078 1271
+11482 e 1079 1271
+11490 1a 1082 1271
+114aa 6 1084 1271
+114b0 1b 1087 1271
+114cb 5 1089 1271
+114d0 15 1091 1271
+114e5 3 1093 1271
+114e8 2 1095 1271
+114ea 6 1097 1271
+114f0 5 1101 1271
+114f5 c 1103 1271
+11501 7 1104 1271
+11508 e 1106 1271
+11516 1a 1109 1271
+11530 8 1112 1271
+11538 f 1131 1271
+11547 9 1120 1271
+11550 b 1131 1271
+1155b 21 1137 1271
+1157c 5 1145 1271
+11581 16 1173 1271
+11597 3 1174 1271
+1159a 5 1175 1271
+1159f 1f 1179 1271
+115be 7 1193 1271
+115c5 5 1194 1271
+115ca 7 1181 1271
+115d1 5 1182 1271
+115d6 6 1184 1271
+115dc 5 1185 1271
+115e1 a 1190 1271
+115eb 5 1191 1271
+115f0 7 1187 1271
+115f7 5 1196 1271
+115fc 9 1200 1271
+11605 5 1203 1271
+1160a a 1206 1271
+11614 2 1209 1271
+11616 c 1211 1271
+11622 7 1212 1271
+11629 b 1214 1271
+11634 1b 1216 1271
+1164f 8 1219 1271
+11657 12 1221 1271
+11669 9 1274 1271
+11672 5 1275 1271
+11677 c 1228 1271
+11683 b 1233 1271
+1168e 7 1235 1271
+11695 3 1236 1271
+11698 5 1239 1271
+1169d 10 1241 1271
+116ad 5 1243 1271
+116b2 3 1248 1271
+116b5 5 1249 1271
+116ba 5 1253 1271
+116bf 5 1256 1271
+116c4 a 1259 1271
+116ce 2 1262 1271
+116d0 c 1264 1271
+116dc 7 1265 1271
+116e3 f 1267 1271
+116f2 c 1280 1271
+116fe b 1284 1271
+11709 4 1285 1271
+1170d 5 1287 1271
+11712 1c 1274 1271
+1172e 10 1289 1271
+1173e 5 1291 1271
+11743 18 1295 1271
+1175b a 1362 1271
+11765 5 1363 1271
+1176a 5 1301 1271
+1176f 1 1303 1271
+11770 d 1304 1271
+1177d 5 1306 1271
+11782 7 1308 1271
+11789 5 1310 1271
+1178e 7 1358 1271
+11795 5 1359 1271
+1179a c 1322 1271
+117a6 2 1324 1271
+117a8 12 1325 1271
+117ba a 1327 1271
+117c4 2 1329 1271
+117c6 d 1330 1271
+117d3 5 1332 1271
+117d8 18 1337 1271
+117f0 3 1352 1271
+117f3 13 1158 1271
+11806 11 1160 1271
+11817 8 1161 1271
+1181f 8 1163 1271
+11827 b 1166 1271
+11832 5 1167 1271
+11837 a 1342 1271
+11841 5 1366 1271
+11846 39 1378 1271
+1187f 9 1716 1271
+11888 7 1724 1271
+1188f 12 1726 1271
+118a1 a 1728 1271
+118ab 27 1739 1271
+118d2 b 1381 1271
+118dd c 1385 1271
+118e9 b 1561 1271
+118f4 a 1562 1271
+118fe d 1584 1271
+1190b 9 1586 1271
+11914 a 1589 1271
+1191e 5 1592 1271
+11923 25 1378 1271
+11948 b 1442 1271
+11953 5 1445 1271
+11958 b 1448 1271
+11963 2 1451 1271
+11965 a 1453 1271
+1196f 27 1457 1271
+11996 5 1458 1271
+1199b a 1462 1271
+119a5 19 1467 1271
+119be 4 1470 1271
+119c2 3 1471 1271
+119c5 2 1472 1271
+119c7 5 1477 1271
+119cc b 1480 1271
+119d7 2 1483 1271
+119d9 a 1485 1271
+119e3 f 1489 1271
+119f2 a 1494 1271
+119fc 6 1499 1271
+11a02 3 1500 1271
+11a05 9 1503 1271
+11a0e 5 1506 1271
+11a13 5 1520 1271
+11a18 a 1523 1271
+11a22 2 1526 1271
+11a24 a 1528 1271
+11a2e 9 1532 1271
+11a37 6 1533 1271
+11a3d 9 1537 1271
+11a46 b 1541 1271
+11a51 9 1546 1271
+11a5a d 1548 1271
+11a67 3 1549 1271
+11a6a 5 1550 1271
+11a6f 3 1551 1271
+11a72 5 1553 1271
+11a77 8 1543 1271
+11a7f 7 1544 1271
+11a86 5 1557 1271
+11a8b 38 1378 1271
+11ac3 14 1908 1271
+11ad7 f 1910 1271
+11ae6 5 1665 1271
+11aeb a 1668 1271
+11af5 2 1671 1271
+11af7 a 1673 1271
+11b01 25 1677 1271
+11b26 5 1678 1271
+11b2b 9 1682 1271
+11b34 9 1688 1271
+11b3d 9 1702 1271
+11b46 7 1703 1271
+11b4d 2 1704 1271
+11b4f 5 1706 1271
+11b54 3 1708 1271
+11b57 5 1710 1271
+11b5c 7 1864 1271
+11b63 7 1869 1271
+11b6a f 1933 1271
+11b79 9 1936 1271
+11b82 e 1939 1271
+11b90 5 1942 1271
+11b95 1c 1739 1271
+11bb1 21 1109 1271
+11bd2 16 1749 1271
+11be8 9 1750 1271
+11bf1 7 1751 1271
+11bf8 3 1767 1271
+11bfb 5 1806 1271
+11c00 9 1809 1271
+11c09 2 1812 1271
+11c0b 5 1753 1271
+11c10 3 1754 1271
+11c13 a 1756 1271
+11c1d f 1759 1271
+11c2c 2 1760 1271
+11c2e 11 1765 1271
+11c3f a 1818 1271
+11c49 6 1821 1271
+11c4f 16 1822 1271
+11c65 26 1828 1271
+11c8b 16 1838 1271
+11ca1 17 1840 1271
+11cb8 a 1844 1271
+11cc2 17 1846 1271
+11cd9 8 1852 1271
+11ce1 a 1853 1271
+11ceb 3 1854 1271
+11cee 3 1857 1271
+11cf1 5 1859 1271
+11cf6 7 1877 1271
+11cfd 7 1887 1271
+11d04 2 1888 1271
+11d06 1a 1378 1271
+11d20 7 1892 1271
+11d27 14 1897 1271
+11d3b c 1900 1271
+11d47 7 1901 1271
+11d4e 5 1903 1271
+11d53 a 1944 1271
+11d5d 2c 1948 1271
+11d89 5 1949 1271
+11d8e 6 1961 1271
+11d94 3 1964 1271
+11d97 6 1970 1271
+11d9d a 1972 1271
+11da7 2c 1976 1271
+11dd3 5 1977 1271
+11dd8 c 1981 1271
+11de4 5 1987 1271
+11de9 4 2019 1271
+11ded 4 2020 1271
+11df1 5 2023 1271
+11df6 b 2026 1271
+11e01 5 2029 1271
+11e06 a 2031 1271
+11e10 f 2035 1271
+11e1f a 2040 1271
+11e29 2 2045 1271
+11e2b 5 2048 1271
+11e30 b 2051 1271
+11e3b 2 2054 1271
+11e3d a 2056 1271
+11e47 b 2060 1271
+11e52 a 2065 1271
+11e5c 2 2071 1271
+11e5e 4 2074 1271
+11e62 5 2077 1271
+11e67 a 2080 1271
+11e71 2 2083 1271
+11e73 a 2085 1271
+11e7d b 2089 1271
+11e88 a 2094 1271
+11e92 2 2099 1271
+11e94 5 2102 1271
+11e99 a 2105 1271
+11ea3 2 2108 1271
+11ea5 a 2110 1271
+11eaf 38 2114 1271
+11ee7 5 2115 1271
+11eec b 2119 1271
+11ef7 13 2128 1271
+11f0a 7 2129 1271
+11f11 a 2130 1271
+11f1b f 2136 1271
+11f2a 2 2142 1271
+11f2c 6 2148 1271
+11f32 7 2149 1271
+11f39 2 2150 1271
+11f3b 7 2151 1271
+11f42 a 2152 1271
+11f4c 3 2153 1271
+11f4f 6 2157 1271
+11f55 3 2158 1271
+11f58 6 2163 1271
+11f5e 10 2165 1271
+11f6e 10 2166 1271
+11f7e c 2168 1271
+11f8a 3 2170 1271
+11f8d 3 2172 1271
+11f90 2 2173 1271
+11f92 8 2175 1271
+11f9a 1 2176 1271
+11f9b 24 2180 1271
+11fbf 9 2181 1271
+11fc8 1 2182 1271
+11fc9 5 2185 1271
+11fce c 1594 1271
+11fda c 1598 1271
+11fe6 9 1603 1271
+11fef e 1635 1271
+11ffd 4 1636 1271
+12001 8 1637 1271
+12009 8 1639 1271
+12011 1c 1598 1271
+1202d 6 1640 1271
+12033 2 1641 1271
+12035 4 1640 1271
+12039 5 1642 1271
+1203e 2 1644 1271
+12040 5 1645 1271
+12045 8 1646 1271
+1204d 5 1647 1271
+12052 6 1648 1271
+12058 1 1649 1271
+12059 4 1648 1271
+1205d 6 1650 1271
+12063 10 2189 1271
+12073 a 2201 1271
+1207d a 2204 1271
+12087 6 2205 1271
+1208d 4 2207 1271
+12091 2 2208 1271
+12093 4 2210 1271
+12097 4 2212 1271
+1209b 2 2213 1271
+1209d 4 2215 1271
+120a1 4 2217 1271
+120a5 7 2218 1271
+120ac 9 2224 1271
+120b5 4 2228 1271
+120b9 11 2230 1271
+120ca 11 2234 1271
+120db 13 2236 1271
+120ee f 2238 1271
+120fd d 2243 1271
+1210a 3 2249 1271
+1210d 3 2250 1271
+12110 1e 2252 1271
+1212e 9 2253 1271
+12137 18 2257 1271
+1214f 2 2310 1271
+12151 4 2254 1271
+12155 2 2259 1271
+12157 d 2260 1271
+12164 f 2290 1271
+12173 f 2292 1271
+12182 6 2297 1271
+12188 8 2298 1271
+12190 15 2299 1271
+121a5 2 1073 1271
+121a7 f 2310 1271
+121b6 b 2314 1271
+121c1 10 2319 1271
+121d1 1d 2321 1271
+121ee 2 2360 1271
+121f0 3 2361 1271
+121f3 2 2362 1271
+121f5 2 2324 1271
+121f7 f 2325 1271
+12206 10 1043 1271
+12216 10 2376 1271
+12226 38 2377 1271
+FUNC 1225e c2 4 _putwch_nolock
+1225e 11 84 4721
+1226f a 89 4721
+12279 9 91 4721
+12282 5 92 4721
+12287 a 96 4721
+12291 6 97 4721
+12297 16 103 4721
+122ad 14 105 4721
+122c1 6 106 4721
+122c7 1c 123 4721
+122e3 1e 129 4721
+12301 2 131 4721
+12303 4 133 4721
+12307 d 134 4721
+12314 a 110 4721
+1231e 2 113 4721
+FUNC 12320 9b 4 _cputws
+12320 c 151 4721
+1232c 5 153 4721
+12331 30 155 4721
+12361 b 157 4721
+1236c 9 158 4721
+12375 3 159 4721
+12378 a 160 4721
+12382 17 162 4721
+12399 4 164 4721
+1239d c 169 4721
+123a9 3 172 4721
+123ac 6 173 4721
+123b2 9 170 4721
+FUNC 123bb 46 4 _putwch
+123bb c 49 4721
+123c7 8 52 4721
+123cf 4 53 4721
+123d3 f 55 4721
+123e2 c 58 4721
+123ee 4 62 4721
+123f2 6 63 4721
+123f8 9 59 4721
+FUNC 12401 113 10 _mbtowc_l
+12401 8 55 6355
+12409 e 56 6355
+12417 4 61 6355
+1241b 7 64 6355
+12422 3 65 6355
+12425 4 59 6355
+12429 2 116 6355
+1242b b 70 6355
+12436 8 73 6355
+1243e 7 75 6355
+12445 7 76 6355
+1244c 11 77 6355
+1245d 13 80 6355
+12470 33 90 6355
+124a3 10 93 6355
+124b3 1b 99 6355
+124ce b 95 6355
+124d9 14 96 6355
+124ed 25 108 6355
+12512 2 111 6355
+FUNC 12514 17 c mbtowc
+12514 0 123 6355
+12514 16 124 6355
+1252a 1 125 6355
+FUNC 1252b 83 10 _lseeki64_nolock
+1252b 5 120 4872
+12530 4 126 4872
+12534 1b 134 4872
+1254f b 136 4872
+1255a 6 138 4872
+12560 22 146 4872
+12582 7 148 4872
+12589 2 149 4872
+1258b 19 152 4872
+125a4 8 153 4872
+125ac 2 154 4872
+FUNC 125ae 119 10 _lseeki64
+125ae c 73 4872
+125ba 9 74 4872
+125c3 24 77 4872
+125e7 2f 78 4872
+12616 46 79 4872
+1265c 7 81 4872
+12663 3 82 4872
+12666 9 84 4872
+1266f 1a 85 4872
+12689 2 86 4872
+1268b b 87 4872
+12696 7 88 4872
+1269d 8 89 4872
+126a5 c 93 4872
+126b1 6 97 4872
+126b7 6 98 4872
+126bd a 94 4872
+FUNC 126c7 7d 8 _set_osfhnd
+126c7 0 213 4825
+126c7 2e 216 4825
+126f5 e 217 4825
+12703 b 218 4825
+1270e 3 226 4825
+12711 2 227 4825
+12713 3 223 4825
+12716 2 224 4825
+12718 9 220 4825
+12721 5 231 4825
+12726 5 232 4825
+1272b b 234 4825
+12736 8 235 4825
+1273e 5 236 4825
+12743 1 238 4825
+FUNC 12744 81 4 _free_osfhnd
+12744 0 263 4825
+12744 38 266 4825
+1277c 9 268 4825
+12785 a 269 4825
+1278f 3 277 4825
+12792 2 278 4825
+12794 3 274 4825
+12797 2 275 4825
+12799 9 271 4825
+127a2 6 282 4825
+127a8 4 283 4825
+127ac b 285 4825
+127b7 7 286 4825
+127be 6 287 4825
+127c4 1 289 4825
+FUNC 127c5 71 4 _get_osfhandle
+127c5 0 312 4825
+127c5 1f 313 4825
+127e4 2 318 4825
+127e6 e 314 4825
+127f4 3d 315 4825
+12831 1 318 4825
+12832 3 317 4825
+12835 1 318 4825
+FUNC 12836 a0 4 __lock_fhandle
+12836 c 437 4825
+12842 17 438 4825
+12859 7 439 4825
+12860 7 444 4825
+12867 8 446 4825
+1286f 3 447 4825
+12872 5 448 4825
+12877 14 449 4825
+1288b 3 453 4825
+1288e 3 455 4825
+12891 c 457 4825
+1289d 5 462 4825
+128a2 1d 464 4825
+128bf 3 467 4825
+128c2 6 468 4825
+128c8 5 457 4825
+128cd 9 458 4825
+FUNC 128d6 22 4 _unlock_fhandle
+128d6 0 489 4825
+128d6 21 490 4825
+128f7 1 491 4825
+FUNC 128f8 19f 0 _alloc_osfhnd
+128f8 c 52 4825
+12904 4 53 4825
+12908 5 56 4825
+1290d c 58 4825
+12919 8 59 4825
+12921 8 61 4825
+12929 3 62 4825
+1292c c 71 4825
+12938 f 77 4825
+12947 17 83 4825
+1295e 6 85 4825
+12964 6 89 4825
+1296a 8 90 4825
+12972 6 91 4825
+12978 6 92 4825
+1297e 14 93 4825
+12992 3 99 4825
+12995 2 101 4825
+12997 3 103 4825
+1299a 9 106 4825
+129a3 6 111 4825
+129a9 a 113 4825
+129b3 6 119 4825
+129b9 7 120 4825
+129c0 5 83 4825
+129c5 6 106 4825
+129cb 9 107 4825
+129d4 6 124 4825
+129da 4 126 4825
+129de 3 127 4825
+129e1 19 128 4825
+129fa 6 137 4825
+12a00 6 71 4825
+12a06 12 145 4825
+12a18 9 151 4825
+12a21 7 152 4825
+12a28 c 154 4825
+12a34 4 155 4825
+12a38 3 156 4825
+12a3b 4 157 4825
+12a3f 4 158 4825
+12a43 8 154 4825
+12a4b 6 165 4825
+12a51 19 166 4825
+12a6a b 167 4825
+12a75 4 171 4825
+12a79 c 178 4825
+12a85 3 186 4825
+12a88 6 187 4825
+12a8e 9 179 4825
+FUNC 12a97 115 8 _open_osfhandle
+12a97 c 343 4825
+12aa3 5 347 4825
+12aa8 2 351 4825
+12aaa 6 353 4825
+12ab0 3 354 4825
+12ab3 8 356 4825
+12abb 3 357 4825
+12abe 6 359 4825
+12ac4 3 360 4825
+12ac7 9 364 4825
+12ad0 4 365 4825
+12ad4 d 367 4825
+12ae1 3 409 4825
+12ae4 6 410 4825
+12aea 5 372 4825
+12aef 5 373 4825
+12af4 5 374 4825
+12af9 3 375 4825
+12afc f 380 4825
+12b0b b 381 4825
+12b16 7 382 4825
+12b1d 2 383 4825
+12b1f 3 385 4825
+12b22 b 391 4825
+12b2d 3 393 4825
+12b30 1a 395 4825
+12b4a 9 396 4825
+12b53 9 397 4825
+12b5c 7 399 4825
+12b63 c 401 4825
+12b6f 10 409 4825
+12b7f 5 401 4825
+12b84 5 402 4825
+12b89 1b 404 4825
+12ba4 8 406 4825
+FUNC 12bac 11e c _calloc_impl
+12bac c 23 5592
+12bb8 9 28 5592
+12bc1 2e 30 5592
+12bef 9 32 5592
+12bf8 4 36 5592
+12bfc 3 37 5592
+12bff 5 41 5592
+12c04 5 43 5592
+12c09 9 46 5592
+12c12 9 50 5592
+12c1b b 52 5592
+12c26 8 56 5592
+12c2e 3 57 5592
+12c31 c 58 5592
+12c3d c 60 5592
+12c49 7 64 5592
+12c50 d 65 5592
+12c5d 4 93 5592
+12c61 11 94 5592
+12c72 c 97 5592
+12c7e f 109 5592
+12c8d b 111 5592
+12c98 6 112 5592
+12c9e 5 113 5592
+12ca3 5 60 5592
+12ca8 9 61 5592
+12cb1 4 100 5592
+12cb5 7 102 5592
+12cbc 6 103 5592
+12cc2 2 105 5592
+12cc4 6 119 5592
+FUNC 12cca 3f 8 calloc
+12cca 4 145 5592
+12cce 5 146 5592
+12cd3 14 147 5592
+12ce7 15 149 5592
+12cfc 8 151 5592
+12d04 3 153 5592
+12d07 2 154 5592
+FUNC 12d09 21b 8 realloc
+12d09 c 64 5338
+12d15 7 69 5338
+12d1c e 70 5338
+12d2a 7 73 5338
+12d31 7 75 5338
+12d38 5 76 5338
+12d3d d 81 5338
+12d4a 5 88 5338
+12d4f 9 89 5338
+12d58 8 91 5338
+12d60 3 92 5338
+12d63 12 96 5338
+12d75 8 100 5338
+12d7d f 102 5338
+12d8c 5 103 5338
+12d91 e 104 5338
+12d9f 4 107 5338
+12da3 10 108 5338
+12db3 9 110 5338
+12dbc a 111 5338
+12dc6 5 118 5338
+12dcb 4 120 5338
+12dcf 6 121 5338
+12dd5 9 123 5338
+12dde 15 124 5338
+12df3 4 127 5338
+12df7 10 128 5338
+12e07 c 129 5338
+12e13 c 135 5338
+12e1f 6 142 5338
+12e25 4 144 5338
+12e29 1 145 5338
+12e2a 9 147 5338
+12e33 14 148 5338
+12e47 6 135 5338
+12e4d 9 137 5338
+12e56 3 148 5338
+12e59 10 158 5338
+12e69 f 181 5338
+12e78 5 186 5338
+12e7d 5 183 5338
+12e82 11 186 5338
+12e93 2 188 5338
+12e95 8 160 5338
+12e9d 5 170 5338
+12ea2 3 167 5338
+12ea5 2 172 5338
+12ea7 6 174 5338
+12ead 2 155 5338
+12eaf 4 321 5338
+12eb3 1 322 5338
+12eb4 12 323 5338
+12ec6 c 332 5338
+12ed2 b 347 5338
+12edd 5 319 5338
+12ee2 7 327 5338
+12ee9 b 328 5338
+12ef4 2 329 5338
+12ef6 6 356 5338
+12efc 5 349 5338
+12f01 5 350 5338
+12f06 4 334 5338
+12f0a 16 341 5338
+12f20 4 343 5338
+FUNC 12f24 79 c _recalloc
+12f24 3 744 5338
+12f27 a 749 5338
+12f31 28 751 5338
+12f59 4 753 5338
+12f5d 9 754 5338
+12f66 b 755 5338
+12f71 b 756 5338
+12f7c a 757 5338
+12f86 10 759 5338
+12f96 5 761 5338
+12f9b 2 762 5338
+FUNC 12f9d 21 0 _get_sbh_threshold
+12f9d 0 61 5281
+12f9d 9 64 5281
+12fa6 2 66 5281
+12fa8 1 81 5281
+12fa9 14 69 5281
+12fbd 1 81 5281
+FUNC 12fbe 46 4 _set_amblksiz
+12fbe 0 214 5281
+12fbe 2b 216 5281
+12fe9 1 224 5281
+12fea 11 217 5281
+12ffb 5 220 5281
+13000 3 223 5281
+13003 1 224 5281
+FUNC 13004 3c 4 _get_amblksiz
+13004 0 243 5281
+13004 27 245 5281
+1302b 1 253 5281
+1302c 8 246 5281
+13034 8 249 5281
+1303c 3 252 5281
+1303f 1 253 5281
+FUNC 13040 48 4 __sbh_heap_init
+13040 0 274 5281
+13040 1c 275 5281
+1305c 1 285 5281
+1305d 4 278 5281
+13061 7 280 5281
+13068 c 281 5281
+13074 13 284 5281
+13087 1 285 5281
+FUNC 13088 2b 4 __sbh_find_block
+13088 0 306 5281
+13088 12 307 5281
+1309a 7 316 5281
+130a1 8 317 5281
+130a9 3 319 5281
+130ac 4 314 5281
+130b0 2 321 5281
+130b2 1 322 5281
+FUNC 130b3 314 8 __sbh_free_block
+130b3 6 381 5281
+130b9 7 399 5281
+130c0 9 402 5281
+130c9 18 407 5281
+130e1 3 408 5281
+130e4 d 412 5281
+130f1 3 416 5281
+130f4 5 417 5281
+130f9 6 420 5281
+130ff b 424 5281
+1310a 4 429 5281
+1310e 5 430 5281
+13113 3 431 5281
+13116 8 434 5281
+1311e 3 439 5281
+13121 b 441 5281
+1312c e 442 5281
+1313a 5 443 5281
+1313f 2 445 5281
+13141 5 448 5281
+13146 11 449 5281
+13157 9 450 5281
+13160 9 455 5281
+13169 15 459 5281
+1317e 6 463 5281
+13184 5 464 5281
+13189 3 465 5281
+1318c f 468 5281
+1319b 3 474 5281
+1319e 6 477 5281
+131a4 b 478 5281
+131af 2 479 5281
+131b1 3 483 5281
+131b4 6 484 5281
+131ba 7 485 5281
+131c1 2 486 5281
+131c3 4 489 5281
+131c7 b 493 5281
+131d2 3 498 5281
+131d5 11 501 5281
+131e6 6 502 5281
+131ec 5 503 5281
+131f1 2 505 5281
+131f3 e 508 5281
+13201 6 509 5281
+13207 6 511 5281
+1320d c 516 5281
+13219 c 517 5281
+13225 8 520 5281
+1322d e 524 5281
+1323b 6 528 5281
+13241 3 529 5281
+13244 6 530 5281
+1324a 3 531 5281
+1324d 6 532 5281
+13253 8 535 5281
+1325b 18 541 5281
+13273 e 542 5281
+13281 f 543 5281
+13290 2 545 5281
+13292 6 547 5281
+13298 10 548 5281
+132a8 13 550 5281
+132bb 5 556 5281
+132c0 4 558 5281
+132c4 b 561 5281
+132cf d 564 5281
+132dc 6 568 5281
+132e2 1a 569 5281
+132fc 15 573 5281
+13311 16 577 5281
+13327 19 578 5281
+13340 9 579 5281
+13349 6 583 5281
+1334f 8 586 5281
+13357 16 589 5281
+1336d 25 595 5281
+13392 14 599 5281
+133a6 4 600 5281
+133aa a 603 5281
+133b4 8 608 5281
+133bc 9 609 5281
+133c5 2 611 5281
+FUNC 133c7 b0 0 __sbh_alloc_new_region
+133c7 0 891 5281
+133c7 13 897 5281
+133da 1e 900 5281
+133f8 4 901 5281
+133fc 12 905 5281
+1340e 9 909 5281
+13417 18 913 5281
+1342f 2 914 5281
+13431 1a 918 5281
+1344b 10 920 5281
+1345b 2 921 5281
+1345d 9 927 5281
+13466 6 930 5281
+1346c 6 933 5281
+13472 4 935 5281
+13476 1 936 5281
+FUNC 13477 106 4 __sbh_alloc_new_group
+13477 5 958 5281
+1347c 3 959 5281
+1347f 9 972 5281
+13488 4 973 5281
+1348c 2 976 5281
+1348e 1 977 5281
+1348f 4 974 5281
+13493 15 981 5281
+134a8 c 986 5281
+134b4 1f 993 5281
+134d3 8 994 5281
+134db 6 998 5281
+134e1 12 1001 5281
+134f3 4 1004 5281
+134f7 7 1005 5281
+134fe 8 1011 5281
+13506 10 1013 5281
+13516 12 1016 5281
+13528 3 1001 5281
+1352b 8 1021 5281
+13533 6 1023 5281
+13539 3 1024 5281
+1353c 6 1027 5281
+13542 3 1028 5281
+13545 5 1030 5281
+1354a a 1031 5281
+13554 9 1032 5281
+1355d b 1033 5281
+13568 e 1036 5281
+13576 5 1038 5281
+1357b 2 1039 5281
+FUNC 1357d 2df c __sbh_resize_block
+1357d 6 1061 5281
+13583 c 1080 5281
+1358f b 1083 5281
+1359a 3 1084 5281
+1359d 12 1085 5281
+135af 7 1089 5281
+135b6 14 1096 5281
+135ca 13 1099 5281
+135dd 7 1105 5281
+135e4 8 1106 5281
+135ec 6 1107 5281
+135f2 8 1110 5281
+135fa 3 1115 5281
+135fd 9 1117 5281
+13606 11 1118 5281
+13617 5 1119 5281
+1361c 2 1121 5281
+1361e 5 1124 5281
+13623 14 1125 5281
+13637 6 1126 5281
+1363d 9 1131 5281
+13646 9 1132 5281
+1364f 12 1135 5281
+13661 a 1141 5281
+1366b 9 1142 5281
+13674 3 1143 5281
+13677 9 1147 5281
+13680 6 1148 5281
+13686 6 1149 5281
+1368c 3 1150 5281
+1368f 6 1151 5281
+13695 8 1154 5281
+1369d 18 1160 5281
+136b5 e 1161 5281
+136c3 6 1162 5281
+136c9 2 1164 5281
+136cb 6 1166 5281
+136d1 10 1167 5281
+136e1 13 1169 5281
+136f4 c 1174 5281
+13700 9 1176 5281
+13709 6 1180 5281
+1370f 9 1182 5281
+13718 7 1100 5281
+1371f 6 1186 5281
+13725 3 1189 5281
+13728 d 1195 5281
+13735 7 1198 5281
+1373c b 1199 5281
+13747 3 1200 5281
+1374a a 1203 5281
+13754 7 1208 5281
+1375b 5 1209 5281
+13760 3 1210 5281
+13763 8 1213 5281
+1376b 3 1218 5281
+1376e b 1221 5281
+13779 e 1222 5281
+13787 5 1223 5281
+1378c 2 1225 5281
+1378e 5 1228 5281
+13793 11 1229 5281
+137a4 9 1231 5281
+137ad 9 1236 5281
+137b6 9 1237 5281
+137bf 9 1240 5281
+137c8 4 1241 5281
+137cc 5 1242 5281
+137d1 3 1243 5281
+137d4 6 1249 5281
+137da 3 1250 5281
+137dd 6 1251 5281
+137e3 3 1252 5281
+137e6 6 1253 5281
+137ec 8 1256 5281
+137f4 18 1262 5281
+1380c e 1263 5281
+1381a 6 1264 5281
+13820 2 1266 5281
+13822 6 1268 5281
+13828 10 1269 5281
+13838 13 1271 5281
+1384b 5 1276 5281
+13850 4 1278 5281
+13854 6 1281 5281
+1385a 2 1282 5281
+FUNC 1385c cd 0 __sbh_heapmin
+1385c 0 1302 5281
+1385c d 1306 5281
+13869 6 1310 5281
+1386f 17 1311 5281
+13886 15 1314 5281
+1389b 16 1318 5281
+138b1 19 1319 5281
+138ca 9 1320 5281
+138d3 f 1325 5281
+138e2 11 1328 5281
+138f3 28 1333 5281
+1391b 6 1334 5281
+13921 7 1338 5281
+13928 1 1340 5281
+FUNC 13929 2e2 0 __sbh_heap_check
+13929 3 1361 5281
+1392c 12 1391 5281
+1393e 8 1393 5281
+13946 16 1398 5281
+1395c 3 1401 5281
+1395f 8 1402 5281
+13967 6 1406 5281
+1396d 9 1407 5281
+13976 c 1408 5281
+13982 3 1409 5281
+13985 3 1410 5281
+13988 6 1411 5281
+1398e 4 1418 5281
+13992 1b 1421 5281
+139ad 9 1424 5281
+139b6 9 1428 5281
+139bf 1c 1438 5281
+139db 2 1445 5281
+139dd 7 1446 5281
+139e4 1 1449 5281
+139e5 c 1452 5281
+139f1 3 1456 5281
+139f4 2 1458 5281
+139f6 6 1462 5281
+139fc 5 1463 5281
+13a01 3 1464 5281
+13a04 9 1465 5281
+13a0d 1e 1470 5281
+13a2b c 1475 5281
+13a37 2 1479 5281
+13a39 4 1481 5281
+13a3d 6 1484 5281
+13a43 10 1488 5281
+13a53 e 1492 5281
+13a61 2 1498 5281
+13a63 4 1502 5281
+13a67 20 1505 5281
+13a87 19 1509 5281
+13aa0 8 1514 5281
+13aa8 3 1518 5281
+13aab 6 1520 5281
+13ab1 8 1524 5281
+13ab9 4 1527 5281
+13abd e 1532 5281
+13acb 8 1536 5281
+13ad3 6 1541 5281
+13ad9 5 1542 5281
+13ade 3 1543 5281
+13ae1 8 1544 5281
+13ae9 c 1549 5281
+13af5 11 1554 5281
+13b06 6 1559 5281
+13b0c 3 1561 5281
+13b0f e 1563 5281
+13b1d 3 1564 5281
+13b20 2 1566 5281
+13b22 8 1568 5281
+13b2a 3 1569 5281
+13b2d 1c 1575 5281
+13b49 c 1580 5281
+13b55 10 1585 5281
+13b65 17 1591 5281
+13b7c 7 1595 5281
+13b83 7 1596 5281
+13b8a 16 1597 5281
+13ba0 f 1602 5281
+13baf 18 1606 5281
+13bc7 5 1608 5281
+13bcc 2 1609 5281
+13bce 4 1403 5281
+13bd2 4 1425 5281
+13bd6 4 1453 5281
+13bda 4 1485 5281
+13bde 4 1471 5281
+13be2 4 1439 5281
+13be6 4 1493 5281
+13bea 4 1537 5281
+13bee 4 1545 5281
+13bf2 4 1550 5281
+13bf6 4 1510 5281
+13bfa 4 1581 5281
+13bfe 4 1576 5281
+13c02 4 1592 5281
+13c06 5 1603 5281
+FUNC 13c0b a8 4 _set_sbh_threshold
+13c0b 1 102 5281
+13c0c a 104 5281
+13c16 3 106 5281
+13c19 1 195 5281
+13c1a a 109 5281
+13c24 25 112 5281
+13c49 5 113 5281
+13c4e 4 114 5281
+13c52 2 195 5281
+13c54 6 173 5281
+13c5a 2 175 5281
+13c5c 5 179 5281
+13c61 2d 185 5281
+13c8e 6 186 5281
+13c94 a 187 5281
+13c9e 5 188 5281
+13ca3 b 193 5281
+13cae 4 194 5281
+13cb2 1 195 5281
+FUNC 13cb3 2e3 4 __sbh_alloc_block
+13cb3 6 632 5281
+13cb9 5 633 5281
+13cbe 15 650 5281
+13cd3 5 668 5281
+13cd8 7 669 5281
+13cdf 5 671 5281
+13ce4 4 672 5281
+13ce8 2 674 5281
+13cea d 677 5281
+13cf7 a 682 5281
+13d01 e 686 5281
+13d0f 3 688 5281
+13d12 2 683 5281
+13d14 5 688 5281
+13d19 4 692 5281
+13d1d 8 694 5281
+13d25 e 698 5281
+13d33 3 700 5281
+13d36 2 695 5281
+13d38 5 700 5281
+13d3d 6 705 5281
+13d43 6 709 5281
+13d49 6 711 5281
+13d4f 4 707 5281
+13d53 4 715 5281
+13d57 8 717 5281
+13d5f 6 720 5281
+13d65 3 722 5281
+13d68 2 718 5281
+13d6a 5 722 5281
+13d6f 4 726 5281
+13d73 e 727 5281
+13d81 7 728 5281
+13d88 12 733 5281
+13d9a 2 734 5281
+13d9c 6 737 5281
+13da2 3 739 5281
+13da5 2 740 5281
+13da7 1c 745 5281
+13dc3 4 749 5281
+13dc7 14 751 5281
+13ddb e 752 5281
+13de9 3 751 5281
+13dec 12 754 5281
+13dfe a 760 5281
+13e08 d 763 5281
+13e15 2 768 5281
+13e17 2 767 5281
+13e19 1 768 5281
+13e1a 4 765 5281
+13e1e 7 770 5281
+13e25 5 775 5281
+13e2a 6 776 5281
+13e30 8 777 5281
+13e38 3 778 5281
+13e3b 8 781 5281
+13e43 8 784 5281
+13e4b 3 788 5281
+13e4e e 791 5281
+13e5c 15 792 5281
+13e71 8 793 5281
+13e79 2 795 5281
+13e7b f 798 5281
+13e8a f 799 5281
+13e99 e 800 5281
+13ea7 1c 809 5281
+13ec3 6 813 5281
+13ec9 3 814 5281
+13ecc 6 815 5281
+13ed2 3 816 5281
+13ed5 6 817 5281
+13edb 8 820 5281
+13ee3 18 826 5281
+13efb b 827 5281
+13f06 10 829 5281
+13f16 2 831 5281
+13f18 6 833 5281
+13f1e d 835 5281
+13f2b 16 837 5281
+13f41 3 831 5281
+13f44 4 844 5281
+13f48 2 846 5281
+13f4a 9 848 5281
+13f53 a 853 5281
+13f5d 4 855 5281
+13f61 e 858 5281
+13f6f 13 862 5281
+13f82 7 863 5281
+13f89 5 866 5281
+13f8e 6 868 5281
+13f94 2 869 5281
+FUNC 13f96 72 4 _fclose_nolock
+13f96 2 86 1752
+13f98 2a 90 1752
+13fc2 6 96 1752
+13fc8 6 105 1752
+13fce 8 106 1752
+13fd6 13 108 1752
+13fe9 5 109 1752
+13fee 7 111 1752
+13ff5 7 120 1752
+13ffc 3 121 1752
+13fff 3 126 1752
+14002 5 127 1752
+14007 1 128 1752
+FUNC 14008 7c 4 fclose
+14008 c 44 1752
+14014 4 45 1752
+14018 2d 47 1752
+14045 6 50 1752
+1404b 3 51 1752
+1404e 3 64 1752
+14051 6 65 1752
+14057 7 55 1752
+1405e 3 56 1752
+14061 a 57 1752
+1406b 11 59 1752
+1407c 8 60 1752
+FUNC 14084 d 8 _ValidateRead(void const *,unsigned int)
+14084 0 63 5683
+14084 3 64 5683
+14087 7 65 5683
+1408e 2 68 5683
+14090 1 71 5683
+FUNC 14091 d 8 _ValidateWrite(void *,unsigned int)
+14091 0 74 5683
+14091 3 75 5683
+14094 7 76 5683
+1409b 2 79 5683
+1409d 1 82 5683
+FUNC 1409e d 4 _ValidateExecute(int (*)(void))
+1409e 0 85 5683
+1409e 3 86 5683
+140a1 7 87 5683
+140a8 2 90 5683
+140aa 1 93 5683
+FUNC 140ab f3 0 abort
+140ab 1b 53 4119
+140c6 a 56 4119
+140d0 8 59 4119
+140d8 5 68 4119
+140dd 4 69 4119
+140e1 8 71 4119
+140e9 d 78 4119
+140f6 6 87 4119
+140fc 6 88 4119
+14102 6 89 4119
+14108 3 90 4119
+1410b 3 91 4119
+1410e 3 92 4119
+14111 7 93 4119
+14118 7 94 4119
+1411f 4 95 4119
+14123 4 96 4119
+14127 4 97 4119
+1412b 4 98 4119
+1412f 1 99 4119
+14130 6 100 4119
+14136 6 106 4119
+1413c 19 107 4119
+14155 3 109 4119
+14158 13 117 4119
+1416b 9 122 4119
+14174 3 123 4119
+14177 15 126 4119
+1418c a 128 4119
+14196 8 137 4119
+FUNC 1419e 1e 8 _set_abort_behavior
+1419e 0 158 4119
+1419e 1d 160 4119
+141bb 1 162 4119
+FUNC 141bc 20 0 _global_unwind2
+FUNC 141dc 45 0 __unwind_handler
+FUNC 14221 84 0 _local_unwind2
+FUNC 142a5 23 0 _abnormal_termination
+FUNC 142c8 9 0 _NLG_Notify1
+FUNC 142d1 1f 0 _NLG_Notify
+PUBLIC 142e8 0 _NLG_Dispatch2
+FUNC 142f0 3 0 _NLG_Call
+PUBLIC 142f2 0 _NLG_Return2
+FUNC 142f3 a3 4 _msize
+142f3 c 43 5383
+142ff 2d 47 5383
+1432c 9 51 5383
+14335 8 55 5383
+1433d 3 56 5383
+14340 e 57 5383
+1434e e 59 5383
+1435c c 61 5383
+14368 5 64 5383
+1436d 10 88 5383
+1437d 2 91 5383
+1437f 6 93 5383
+14385 8 61 5383
+1438d 9 62 5383
+FUNC 14396 6 0 HeapManager::Block::Block()
+14396 6 90 5771
+FUNC 1439c 1b 8 HeapManager::Constructor(void * (*)(unsigned int),void (*)(void *))
+1439c 6 100 5771
+143a2 7 101 5771
+143a9 5 102 5771
+143ae 3 103 5771
+143b1 3 104 5771
+143b4 3 105 5771
+FUNC 143b7 26 0 HeapManager::Destructor()
+143b7 9 110 5771
+143c0 2 111 5771
+143c2 5 113 5771
+143c7 15 115 5771
+143dc 1 118 5771
+FUNC 143dd 63 0 UnDecorator::getNumberOfDimensions()
+143dd 0 1663 5771
+143dd c 1664 5771
+143e9 2 1665 5771
+143eb 1 1696 5771
+143ec a 1666 5771
+143f6 d 1667 5771
+14403 1 1696 5771
+14404 4 1670 5771
+14408 4 1677 5771
+1440c a 1679 5771
+14416 6 1680 5771
+1441c d 1684 5771
+14429 5 1675 5771
+1442e e 1690 5771
+1443c 3 1691 5771
+1443f 1 1696 5771
+FUNC 14440 474 0 UnDecorator::getTypeEncoding()
+14440 f 2335 5771
+1444f 2 2336 5771
+14451 5 2341 5771
+14456 9 2345 5771
+1445f c 2351 5771
+1446b 9 2423 5771
+14474 2 2426 5771
+14476 2a 2427 5771
+144a0 8 2450 5771
+144a8 2 2451 5771
+144aa 24 2454 5771
+144ce 7 2462 5771
+144d5 5 2463 5771
+144da 6 2353 5771
+144e0 8 2358 5771
+144e8 b 2362 5771
+144f3 5 2363 5771
+144f8 2 2364 5771
+144fa 5 2365 5771
+144ff 9 2369 5771
+14508 1b 2373 5771
+14523 11 2377 5771
+14534 a 2393 5771
+1453e 10 2388 5771
+1454e 2 2389 5771
+14550 18 2384 5771
+14568 2 2385 5771
+1456a 12 2380 5771
+1457c 16 2399 5771
+14592 11 2418 5771
+145a3 a 2406 5771
+145ad 5 2407 5771
+145b2 15 2410 5771
+145c7 5 2422 5771
+145cc 1b 2427 5771
+145e7 a 2430 5771
+145f1 5 2431 5771
+145f6 7 2472 5771
+145fd a 2478 5771
+14607 c 2483 5771
+14613 5 2485 5771
+14618 5 2486 5771
+1461d 5 2487 5771
+14622 5 2490 5771
+14627 5 2505 5771
+1462c 5 2508 5771
+14631 5 2509 5771
+14636 5 2434 5771
+1463b 5 2435 5771
+14640 1a 2427 5771
+1465a 30 2568 5771
+1468a 5 2529 5771
+1468f 4 2530 5771
+14693 a 2531 5771
+1469d 2 2532 5771
+1469f a 2533 5771
+146a9 5 2537 5771
+146ae 5 2538 5771
+146b3 2 2539 5771
+146b5 5 2540 5771
+146ba e 2544 5771
+146c8 6 2560 5771
+146ce 10 2555 5771
+146de 2 2556 5771
+146e0 18 2551 5771
+146f8 2 2552 5771
+146fa 12 2547 5771
+1470c 2 2564 5771
+1470e a 2442 5771
+14718 2 2443 5771
+1471a a 2438 5771
+14724 2 2439 5771
+14726 5 2445 5771
+1472b c 2574 5771
+14737 14 2577 5771
+1474b a 2579 5771
+14755 18 2586 5771
+1476d 1a 2589 5771
+14787 1b 2590 5771
+147a2 5 2591 5771
+147a7 1a 2594 5771
+147c1 1b 2595 5771
+147dc 5 2596 5771
+147e1 1a 2599 5771
+147fb 10 2600 5771
+1480b 2 2601 5771
+1480d 7 2604 5771
+14814 2 2605 5771
+14816 a 2608 5771
+14820 2 2609 5771
+14822 a 2612 5771
+1482c 2 2613 5771
+1482e a 2616 5771
+14838 2 2617 5771
+1483a a 2620 5771
+14844 2 2621 5771
+14846 a 2624 5771
+14850 7 2634 5771
+14857 7 2635 5771
+1485e 7 2637 5771
+14865 10 2639 5771
+14875 3f 2648 5771
+FUNC 148b4 b 0 UnDecorator::doUnderScore()
+148b4 b 4259 5771
+FUNC 148bf d 0 UnDecorator::doMSKeywords()
+148bf d 4260 5771
+FUNC 148cc e 0 UnDecorator::doPtr64()
+148cc e 4261 5771
+FUNC 148da e 0 UnDecorator::doFunctionReturns()
+148da e 4262 5771
+FUNC 148e8 e 0 UnDecorator::doAllocationModel()
+148e8 e 4263 5771
+FUNC 148f6 e 0 UnDecorator::doAllocationLanguage()
+148f6 e 4264 5771
+FUNC 14904 12 0 UnDecorator::doThisTypes()
+14904 12 4271 5771
+FUNC 14916 e 0 UnDecorator::doAccessSpecifiers()
+14916 e 4272 5771
+FUNC 14924 e 0 UnDecorator::doThrowTypes()
+14924 e 4273 5771
+FUNC 14932 e 0 UnDecorator::doMemberTypes()
+14932 e 4274 5771
+FUNC 14940 b 0 UnDecorator::doNameOnly()
+14940 b 4279 5771
+FUNC 1494b b 0 UnDecorator::doTypeOnly()
+1494b b 4280 5771
+FUNC 14956 b 0 UnDecorator::haveTemplateParameters()
+14956 b 4281 5771
+FUNC 14961 e 0 UnDecorator::doEcsu()
+14961 e 4282 5771
+FUNC 1496f b 0 UnDecorator::doNoIdentCharCheck()
+1496f b 4283 5771
+FUNC 1497a e 0 UnDecorator::doEllipsis()
+1497a e 4284 5771
+FUNC 14988 19 4 UnDecorator::UScore(Tokens)
+14988 0 4288 5771
+14988 9 4293 5771
+14991 d 4294 5771
+1499e 2 4296 5771
+149a0 1 4298 5771
+FUNC 149a1 84 8 HeapManager::getMemory(unsigned int,int)
+149a1 2 134 5804
+149a3 a 137 5804
+149ad 9 139 5804
+149b6 6 140 5804
+149bc 4 146 5804
+149c0 3 147 5804
+149c3 8 149 5804
+149cb 7 153 5804
+149d2 2 154 5804
+149d4 1c 159 5804
+149f0 4 164 5804
+149f4 7 168 5804
+149fb 2 169 5804
+149fd 2 170 5804
+149ff 3 171 5804
+14a02 8 175 5804
+14a0a 2 182 5804
+14a0c 4 179 5804
+14a10 5 183 5804
+14a15 d 187 5804
+14a22 3 190 5804
+FUNC 14a25 d 0 DName::DName()
+14a25 2 210 5804
+14a27 3 211 5804
+14a2a 7 220 5804
+14a31 1 221 5804
+FUNC 14a32 12 4 DName::DName(DNameNode *)
+14a32 2 224 5804
+14a34 4 225 5804
+14a38 9 234 5804
+14a41 3 235 5804
+FUNC 14a44 9c 4 DName::DName(DName const &)
+14a44 2 259 5804
+14a46 17 260 5804
+14a5d 10 261 5804
+14a6d d 262 5804
+14a7a d 263 5804
+14a87 10 264 5804
+14a97 4 265 5804
+14a9b e 266 5804
+14aa9 13 267 5804
+14abc 10 268 5804
+14acc 11 269 5804
+14add 3 270 5804
+FUNC 14ae0 a 0 DName::status()
+14ae0 a 481 5804
+FUNC 14aea 5 0 DName::clearStatus()
+14aea 5 482 5804
+FUNC 14aef 7 0 DName::setPtrRef()
+14aef 7 484 5804
+FUNC 14af6 a 0 DName::isPtrRef()
+14af6 a 485 5804
+FUNC 14b00 8 0 DName::setIsArray()
+14b00 8 490 5804
+FUNC 14b08 a 0 DName::isArray()
+14b08 a 491 5804
+FUNC 14b12 a 0 DName::isNoTE()
+14b12 a 492 5804
+FUNC 14b1c 8 0 DName::setIsNoTE()
+14b1c 8 493 5804
+FUNC 14b24 a 0 DName::isPinPtr()
+14b24 a 494 5804
+FUNC 14b2e 8 0 DName::setIsPinPtr()
+14b2e 8 495 5804
+FUNC 14b36 a 0 DName::isComArray()
+14b36 a 496 5804
+FUNC 14b40 8 0 DName::setIsComArray()
+14b40 8 497 5804
+FUNC 14b48 a 0 DName::isVCallThunk()
+14b48 a 498 5804
+FUNC 14b52 8 0 DName::setIsVCallThunk()
+14b52 8 499 5804
+FUNC 14b5a 7b 4 DName::operator=(DName const &)
+14b5a 3 879 5804
+14b5d 12 880 5804
+14b6f 17 882 5804
+14b86 d 883 5804
+14b93 d 884 5804
+14ba0 d 885 5804
+14bad 10 886 5804
+14bbd 10 887 5804
+14bcd 5 889 5804
+14bd2 3 897 5804
+FUNC 14bd5 9 0 Replicator::isFull()
+14bd5 9 1001 5804
+FUNC 14bde 25 4 Replicator::operator[](int)
+14bde 0 1028 5804
+14bde 9 1029 5804
+14be7 b 1031 5804
+14bf2 6 1034 5804
+14bf8 5 1032 5804
+14bfd 3 1030 5804
+14c00 3 1036 5804
+FUNC 14c03 d 0 DNameNode::DNameNode()
+14c03 d 1048 5804
+FUNC 14c10 4 0 DNameNode::nextNode()
+14c10 4 1052 5804
+FUNC 14c14 29 4 DNameNode::operator+=(DNameNode *)
+14c14 2 1131 5804
+14c16 8 1132 5804
+14c1e 8 1134 5804
+14c26 b 1139 5804
+14c31 4 1144 5804
+14c35 2 1147 5804
+14c37 3 1148 5804
+14c3a 3 1156 5804
+FUNC 14c3d 16 4 charNode::charNode(char)
+14c3d 16 1166 5804
+FUNC 14c53 4 0 charNode::length()
+14c53 4 1168 5804
+FUNC 14c57 4 0 charNode::getLastChar()
+14c57 4 1170 5804
+FUNC 14c5b 1b 8 charNode::getString(char *,int)
+14c5b 0 1173 5804
+14c5b f 1174 5804
+14c6a 5 1175 5804
+14c6f 2 1176 5804
+14c71 2 1177 5804
+14c73 3 1183 5804
+FUNC 14c76 4 0 pcharNode::length()
+14c76 4 1189 5804
+FUNC 14c7a 2f 4 pDNameNode::pDNameNode(DName *)
+14c7a 2f 1244 5804
+FUNC 14ca9 25 4 DNameStatusNode::DNameStatusNode(DNameStatus)
+14ca9 25 1261 5804
+FUNC 14cce 4 0 DNameStatusNode::length()
+14cce 4 1263 5804
+FUNC 14cd2 d 0 DNameStatusNode::getLastChar()
+14cd2 d 1266 5804
+FUNC 14cdf e 0 und_strlen
+14cdf 0 1283 5804
+14cdf 6 1286 5804
+14ce5 7 1287 5804
+14cec 1 1291 5804
+FUNC 14ced 20 8 und_strncpy
+14ced 0 1295 5804
+14ced 1b 1296 5804
+14d08 4 1299 5804
+14d0c 1 1301 5804
+FUNC 14d0d 25 4 und_strncmp
+14d0d 0 1304 5804
+14d0d 7 1305 5804
+14d14 2 1306 5804
+14d16 1 1315 5804
+14d17 a 1308 5804
+14d21 1 1310 5804
+14d22 1 1311 5804
+14d23 6 1308 5804
+14d29 8 1314 5804
+14d31 1 1315 5804
+FUNC 14d32 33 0 UnDecorator::getDataIndirectType()
+14d32 33 4033 5771
+FUNC 14d65 34 0 UnDecorator::getThisType()
+14d65 34 4034 5771
+FUNC 14d99 13 c operator new(unsigned int,HeapManager &,int)
+14d99 13 131 5804
+FUNC 14dac 56 4 DName::DName(DName *)
+14dac 0 274 5804
+14dac a 275 5804
+14db6 23 277 5804
+14dd9 13 278 5804
+14dec 2 281 5804
+14dee 4 283 5804
+14df2 3 284 5804
+14df5 7 295 5804
+14dfc 6 296 5804
+FUNC 14e02 61 4 DName::DName(DNameStatus)
+14e02 2 457 5804
+14e04 21 458 5804
+14e25 1e 459 5804
+14e43 7 467 5804
+14e4a 9 469 5804
+14e53 a 470 5804
+14e5d 6 472 5804
+FUNC 14e63 17 0 DName::isValid()
+14e63 17 478 5804
+FUNC 14e7a 15 0 DName::isEmpty()
+14e7a 15 479 5804
+FUNC 14e8f 14 0 DName::isUDC()
+14e8f 14 486 5804
+FUNC 14ea3 e 0 DName::setIsUDC()
+14ea3 e 487 5804
+FUNC 14eb1 14 0 DName::isUDTThunk()
+14eb1 14 488 5804
+FUNC 14ec5 25 0 DName::length()
+14ec5 1 502 5804
+14ec6 2 503 5804
+14ec8 a 506 5804
+14ed2 4 507 5804
+14ed6 b 508 5804
+14ee1 5 507 5804
+14ee6 3 510 5804
+14ee9 1 512 5804
+FUNC 14eea 38 0 DName::getLastChar()
+14eea 2 516 5804
+14eec 2 517 5804
+14eee 9 519 5804
+14ef7 6 520 5804
+14efd a 521 5804
+14f07 2 522 5804
+14f09 7 520 5804
+14f10 11 524 5804
+14f21 1 526 5804
+FUNC 14f22 91 8 DName::getString(char *,int)
+14f22 7 530 5804
+14f29 9 531 5804
+14f32 5 535 5804
+14f37 7 537 5804
+14f3e e 538 5804
+14f4c c 544 5804
+14f58 d 550 5804
+14f65 4 553 5804
+14f69 8 555 5804
+14f71 4 561 5804
+14f75 6 565 5804
+14f7b 2 566 5804
+14f7d b 570 5804
+14f88 4 574 5804
+14f8c 2 578 5804
+14f8e 3 579 5804
+14f91 3 586 5804
+14f94 4 553 5804
+14f98 4 590 5804
+14f9c 2 593 5804
+14f9e 6 594 5804
+14fa4 6 595 5804
+14faa 5 599 5804
+14faf 4 601 5804
+FUNC 14fb3 35 4 DName::operator|=(DName const &)
+14fb3 3 832 5804
+14fb6 19 835 5804
+14fcf 13 836 5804
+14fe2 3 840 5804
+14fe5 3 842 5804
+FUNC 14fe8 81 4 DName::operator=(DNameStatus)
+14fe8 2 928 5804
+14fea 10 929 5804
+14ffa 12 937 5804
+1500c 26 945 5804
+15032 6 947 5804
+15038 e 948 5804
+15046 10 933 5804
+15056 d 934 5804
+15063 3 954 5804
+15066 3 956 5804
+FUNC 15069 1e 0 Replicator::Replicator()
+15069 1e 1004 5804
+FUNC 15087 47 4 Replicator::operator+=(DName const &)
+15087 3 1009 5804
+1508a 12 1010 5804
+1509c 20 1012 5804
+150bc 4 1017 5804
+150c0 8 1018 5804
+150c8 3 1022 5804
+150cb 3 1024 5804
+FUNC 150ce 47 0 DNameNode::clone()
+150ce 3 1055 5804
+150d1 43 1056 5804
+15114 1 1057 5804
+FUNC 15115 65 8 pcharNode::pcharNode(char const *,int)
+15115 1 1197 5804
+15116 1f 1200 5804
+15135 c 1201 5804
+15141 8 1205 5804
+15149 c 1207 5804
+15155 a 1210 5804
+1515f b 1211 5804
+1516a 2 1214 5804
+1516c 3 1216 5804
+1516f 4 1217 5804
+15173 7 1220 5804
+FUNC 1517a 12 0 pcharNode::getLastChar()
+1517a 12 1191 5804
+FUNC 1518c 31 8 pcharNode::getString(char *,int)
+1518c 0 1224 5804
+1518c b 1227 5804
+15197 2 1228 5804
+15199 21 1232 5804
+151ba 3 1234 5804
+FUNC 151bd f 0 pDNameNode::length()
+151bd f 1246 5804
+FUNC 151cc f 0 pDNameNode::getLastChar()
+151cc f 1248 5804
+FUNC 151db 1d 8 pDNameNode::getString(char *,int)
+151db 1d 1251 5804
+FUNC 151f8 33 8 DNameStatusNode::getString(char *,int)
+151f8 0 1269 5804
+151f8 b 1272 5804
+15203 2 1273 5804
+15205 23 1277 5804
+15228 3 1279 5804
+FUNC 1522b 73 14 UnDecorator::UnDecorator(char *,char const *,int,char * (*)(long),unsigned long)
+1522b 16 736 5771
+15241 8 737 5771
+15249 5 738 5771
+1524e 9 740 5771
+15257 a 741 5771
+15261 5 745 5771
+15266 2 747 5771
+15268 6 748 5771
+1526e 6 749 5771
+15274 8 754 5771
+1527c 15 755 5771
+15291 d 758 5771
+FUNC 1529e 2f 4 UnDecorator::getReturnType(DName *)
+1529e 3 2906 5771
+152a1 8 2907 5771
+152a9 15 2911 5771
+152be d 2915 5771
+152cb 2 2917 5771
+FUNC 152cd f 0 UnDecorator::getStorageConvention()
+152cd f 4032 5771
+FUNC 152dc 79 4 DName::operator+=(DNameStatus)
+152dc 4 799 5804
+152e0 17 800 5804
+152f7 20 804 5804
+15317 4 807 5804
+1531b 7 809 5804
+15322 6 811 5804
+15328 8 812 5804
+15330 2 815 5804
+15332 3 816 5804
+15335 5 818 5804
+1533a e 819 5804
+15348 7 801 5804
+1534f 3 825 5804
+15352 3 827 5804
+FUNC 15355 68 4 DName::operator=(DName *)
+15355 3 901 5804
+15358 12 902 5804
+1536a 7 903 5804
+15371 29 911 5804
+1539a 6 913 5804
+153a0 c 914 5804
+153ac 2 917 5804
+153ae 9 918 5804
+153b7 3 922 5804
+153ba 3 924 5804
+FUNC 153bd a6 8 DName::doPchar(char const *,int)
+153bd 3 962 5804
+153c0 1e 963 5804
+153de 6 964 5804
+153e4 c 965 5804
+153f0 10 966 5804
+15400 5 970 5804
+15405 23 984 5804
+15428 6 986 5804
+1542e 9 987 5804
+15437 2 988 5804
+15439 1b 977 5804
+15454 c 993 5804
+15460 3 995 5804
+FUNC 15463 26 4 DName::DName(char)
+15463 3 238 5804
+15466 3 244 5804
+15469 7 248 5804
+15470 7 252 5804
+15477 c 253 5804
+15483 6 255 5804
+FUNC 15489 31 4 DName::DName(char const *)
+15489 0 300 5804
+15489 16 312 5804
+1549f 15 313 5804
+154b4 6 315 5804
+FUNC 154ba d0 8 DName::DName(char const * &,char)
+154ba 7 319 5804
+154c1 d 329 5804
+154ce f 333 5804
+154dd 8 334 5804
+154e5 9 342 5804
+154ee 40 343 5804
+1552e b 344 5804
+15539 9 355 5804
+15542 8 359 5804
+1554a 8 361 5804
+15552 9 363 5804
+1555b 3 364 5804
+1555e 2 367 5804
+15560 3 347 5804
+15563 a 378 5804
+1556d 8 380 5804
+15575 6 368 5804
+1557b 7 371 5804
+15582 6 372 5804
+15588 2 375 5804
+FUNC 1558a 69 8 DName::DName(unsigned __int64)
+1558a 15 384 5804
+1559f 3 390 5804
+155a2 a 398 5804
+155ac 4 402 5804
+155b0 13 406 5804
+155c3 3 407 5804
+155c6 c 409 5804
+155d2 e 411 5804
+155e0 13 413 5804
+FUNC 155f3 96 8 DName::DName(__int64)
+155f3 10 416 5804
+15603 26 436 5804
+15629 15 438 5804
+1563e 10 443 5804
+1564e 5 444 5804
+15653 c 446 5804
+1565f 6 448 5804
+15665 4 449 5804
+15669 e 452 5804
+15677 12 453 5804
+FUNC 15689 2e 4 DName::operator+(DNameStatus)
+15689 1 675 5804
+1568a c 676 5804
+15696 9 679 5804
+1569f b 680 5804
+156aa 2 681 5804
+156ac 5 682 5804
+156b1 3 686 5804
+156b4 3 688 5804
+FUNC 156b7 62 4 DName::operator+=(DName const &)
+156b7 2 739 5804
+156b9 f 740 5804
+156c8 13 741 5804
+156db 2 742 5804
+156dd 9 743 5804
+156e6 6 744 5804
+156ec 2 745 5804
+156ee 7 747 5804
+156f5 6 749 5804
+156fb 9 750 5804
+15704 2 751 5804
+15706 d 752 5804
+15713 3 758 5804
+15716 3 760 5804
+FUNC 15719 8b 4 DName::operator+=(DName *)
+15719 2 764 5804
+1571b a 765 5804
+15725 9 766 5804
+1572e 8 767 5804
+15736 10 768 5804
+15746 8 789 5804
+1574e 20 770 5804
+1576e 4 773 5804
+15772 7 775 5804
+15779 6 777 5804
+1577f 8 778 5804
+15787 2 781 5804
+15789 3 782 5804
+1578c 5 784 5804
+15791 d 785 5804
+1579e 3 793 5804
+157a1 3 795 5804
+FUNC 157a4 1c 4 DName::operator=(char)
+157a4 1 847 5804
+157a5 15 854 5804
+157ba 3 856 5804
+157bd 3 858 5804
+FUNC 157c0 2a 4 DName::operator=(char const *)
+157c0 0 862 5804
+157c0 24 869 5804
+157e4 3 873 5804
+157e7 3 875 5804
+FUNC 157ea a6 0 UnDecorator::getCallingConvention()
+157ea 5 2825 5771
+157ef f 2826 5771
+157fe c 2828 5771
+1580a 5 2835 5771
+1580f 1a 2845 5771
+15829 20 2852 5771
+15849 2 2875 5771
+1584b 2 2876 5771
+1584d 2 2871 5771
+1584f 2 2872 5771
+15851 2 2867 5771
+15853 2 2868 5771
+15855 2 2863 5771
+15857 2 2864 5771
+15859 1 2859 5771
+1585a 2 2860 5771
+1585c 13 2855 5771
+1586f e 2891 5771
+1587d 4 2895 5771
+15881 d 2899 5771
+1588e 2 2901 5771
+FUNC 15890 37 0 UnDecorator::getVCallThunkType()
+15890 3 4057 5771
+15893 9 4059 5771
+1589c 5 4066 5771
+158a1 4 4059 5771
+158a5 4 4066 5771
+158a9 6 4061 5771
+158af c 4062 5771
+158bb a 4064 5771
+158c5 2 4170 5771
+FUNC 158c7 51 4 DName::operator+(DName const &)
+158c7 1 639 5804
+158c8 c 640 5804
+158d4 b 643 5804
+158df b 644 5804
+158ea d 645 5804
+158f7 11 646 5804
+15908 2 647 5804
+1590a 8 648 5804
+15912 3 652 5804
+15915 3 654 5804
+FUNC 15918 2e 4 DName::operator+(DName *)
+15918 1 658 5804
+15919 c 659 5804
+15925 9 662 5804
+1592e b 663 5804
+15939 2 664 5804
+1593b 5 665 5804
+15940 3 669 5804
+15943 3 671 5804
+FUNC 15946 6a 4 DName::operator+=(char)
+15946 1 693 5804
+15947 b 694 5804
+15952 9 695 5804
+1595b 6 696 5804
+15961 2 697 5804
+15963 7 699 5804
+1596a 6 701 5804
+15970 2b 702 5804
+1599b 2 703 5804
+1599d c 704 5804
+159a9 4 710 5804
+159ad 3 712 5804
+FUNC 159b0 6c 4 DName::operator+=(char const *)
+159b0 2 716 5804
+159b2 f 717 5804
+159c1 9 718 5804
+159ca 6 719 5804
+159d0 2 720 5804
+159d2 7 722 5804
+159d9 6 724 5804
+159df 28 725 5804
+15a07 2 726 5804
+15a09 d 727 5804
+15a16 3 733 5804
+15a19 3 735 5804
+FUNC 15a1c e0 0 UnDecorator::getArgumentList()
+15a1c 7 3076 5771
+15a23 12 3078 5771
+15a35 29 3081 5771
+15a5e 6 3085 5771
+15a64 4 3086 5771
+15a68 2 3087 5771
+15a6a e 3088 5771
+15a78 6 3093 5771
+15a7e 6 3095 5771
+15a84 5 3100 5771
+15a89 1 3102 5771
+15a8a 11 3106 5771
+15a9b 2 3109 5771
+15a9d 16 3116 5771
+15ab3 19 3121 5771
+15acc 9 3122 5771
+15ad5 17 3126 5771
+15aec b 3132 5771
+15af7 3 3141 5771
+15afa 2 3143 5771
+FUNC 15afc 4f 4 UnDecorator::getVdispMapType(DName const &)
+15afc 6 4230 5771
+15b02 d 4231 5771
+15b0f c 4232 5771
+15b1b 12 4233 5771
+15b2d 9 4234 5771
+15b36 a 4236 5771
+15b40 6 4237 5771
+15b46 3 4238 5771
+15b49 2 4239 5771
+FUNC 15b4b 22 8 operator+(char,DName const &)
+15b4b 22 198 5804
+FUNC 15b6d 22 8 operator+(DNameStatus,DName const &)
+15b6d 22 201 5804
+FUNC 15b8f 22 8 operator+(char const *,DName const &)
+15b8f 22 204 5804
+FUNC 15bb1 2e 4 DName::operator+(char)
+15bb1 1 605 5804
+15bb2 c 606 5804
+15bbe 9 609 5804
+15bc7 b 610 5804
+15bd2 2 611 5804
+15bd4 5 612 5804
+15bd9 3 616 5804
+15bdc 3 618 5804
+FUNC 15bdf 2e 4 DName::operator+(char const *)
+15bdf 1 622 5804
+15be0 c 623 5804
+15bec 9 626 5804
+15bf5 b 627 5804
+15c00 2 628 5804
+15c02 5 629 5804
+15c07 3 633 5804
+15c0a 3 635 5804
+FUNC 15c0d 141 4 UnDecorator::getDimension(bool)
+15c0d 7 1616 5771
+15c14 10 1618 5771
+15c24 e 1620 5771
+15c32 6 1623 5771
+15c38 f 1624 5771
+15c47 8 1625 5771
+15c4f 47 1626 5771
+15c96 4 1629 5771
+15c9a 4 1636 5771
+15c9e 8 1638 5771
+15ca6 20 1639 5771
+15cc6 d 1643 5771
+15cd3 4 1634 5771
+15cd7 b 1649 5771
+15ce2 2 1650 5771
+15ce4 5 1652 5771
+15ce9 13 1653 5771
+15cfc c 1637 5771
+15d08 4 1641 5771
+15d0c a 1653 5771
+15d16 36 1655 5771
+15d4c 2 1659 5771
+FUNC 15d4e d4 0 UnDecorator::getEnumType()
+15d4e 6 2762 5771
+15d54 1a 2766 5771
+15d6e 12 2770 5771
+15d80 5 2774 5771
+15d85 2 2775 5771
+15d87 5 2779 5771
+15d8c 2 2780 5771
+15d8e 5 2786 5771
+15d93 2 2787 5771
+15d95 d 2791 5771
+15da2 1f 2801 5771
+15dc1 1e 2807 5771
+15ddf e 2814 5771
+15ded 4 2795 5771
+15df1 d 2818 5771
+15dfe 24 2820 5771
+FUNC 15e22 c4 0 UnDecorator::getArgumentTypes()
+15e22 3 3035 5771
+15e25 18 3036 5771
+15e3d 9 3046 5771
+15e46 7 3051 5771
+15e4d 13 3052 5771
+15e60 c 3064 5771
+15e6c 36 3058 5771
+15ea2 b 3061 5771
+15ead 21 3039 5771
+15ece 16 3042 5771
+15ee4 2 3072 5771
+FUNC 15ee6 7e 0 UnDecorator::getThrowTypes()
+15ee6 3 3148 5771
+15ee9 e 3149 5771
+15ef7 2 3150 5771
+15ef9 21 3151 5771
+15f1a 1f 3153 5771
+15f39 29 3155 5771
+15f62 2 3157 5771
+FUNC 15f64 125 c UnDecorator::getExtendedDataIndirectType(char &,bool &,int)
+15f64 6 3636 5771
+15f6a 1a 3641 5771
+15f84 1c 3643 5771
+15fa0 a 3669 5771
+15faa 6 3670 5771
+15fb0 b 3672 5771
+15fbb a 3674 5771
+15fc5 21 3675 5771
+15fe6 17 3678 5771
+15ffd a 3680 5771
+16007 6 3689 5771
+1600d 2 3691 5771
+1600f 17 3693 5771
+16026 1e 3700 5771
+16044 6 3663 5771
+1604a 2 3665 5771
+1604c 3 3656 5771
+1604f d 3657 5771
+1605c 2 3659 5771
+1605e 6 3647 5771
+16064 13 3649 5771
+16077 10 3703 5771
+16087 2 3704 5771
+FUNC 16089 15f 4 UnDecorator::getArrayType(DName const &)
+16089 3 3986 5771
+1608c 12 3987 5771
+1609e 7 3989 5771
+160a5 4 3991 5771
+160a9 2 3992 5771
+160ab 4 3994 5771
+160af 9 3995 5771
+160b8 2a 4026 5771
+160e2 2 4028 5771
+160e4 c 3998 5771
+160f0 9 4000 5771
+160f9 d 4001 5771
+16106 35 4005 5771
+1613b b 4009 5771
+16146 4 4010 5771
+1614a 8 4011 5771
+16152 2 4012 5771
+16154 2c 4013 5771
+16180 d 4017 5771
+1618d 9 4018 5771
+16196 12 4019 5771
+161a8 a 4023 5771
+161b2 36 4024 5771
+FUNC 161e8 31 0 UnDecorator::getLexicalFrame()
+161e8 31 4031 5771
+FUNC 16219 12 0 UnDecorator::getDisplacement()
+16219 12 4048 5771
+FUNC 1622b 12 0 UnDecorator::getCallIndex()
+1622b 12 4049 5771
+FUNC 1623d 12 0 UnDecorator::getGuardNumber()
+1623d 12 4050 5771
+FUNC 1624f 150 4 UnDecorator::getVfTableType(DName const &)
+1624f 7 4174 5771
+16256 d 4175 5771
+16263 1d 4178 5771
+16280 2c 4180 5771
+162ac f 4182 5771
+162bb e 4184 5771
+162c9 5 4186 5771
+162ce 11 4188 5771
+162df 2d 4190 5771
+1630c b 4194 5771
+16317 7 4195 5771
+1631e 10 4199 5771
+1632e a 4200 5771
+16338 b 4188 5771
+16343 b 4204 5771
+1634e a 4206 5771
+16358 7 4207 5771
+1635f 9 4209 5771
+16368 a 4216 5771
+16372 6 4217 5771
+16378 2 4220 5771
+1637a 9 4221 5771
+16383 17 4222 5771
+1639a 3 4224 5771
+1639d 2 4226 5771
+FUNC 1639f a0 8 UnDecorator::getStringEncoding(char *,int)
+1639f 6 1447 5771
+163a5 b 1448 5771
+163b0 22 1451 5771
+163d2 6 1456 5771
+163d8 b 1459 5771
+163e3 b 1462 5771
+163ee 13 1464 5771
+16401 c 1466 5771
+1640d 5 1469 5771
+16412 6 1470 5771
+16418 4 1471 5771
+1641c 14 1477 5771
+16430 d 1452 5771
+1643d 2 1478 5771
+FUNC 1643f 50 0 UnDecorator::getSignedDimension()
+1643f 5 1603 5771
+16444 b 1604 5771
+1644f c 1605 5771
+1645b 2 1606 5771
+1645d 23 1608 5771
+16480 d 1611 5771
+1648d 2 1612 5771
+FUNC 1648f 2bb 0 UnDecorator::getTemplateConstant()
+1648f 15 1877 5771
+164a4 f 1884 5771
+164b3 32 1885 5771
+164e5 9 1921 5771
+164ee b 1922 5771
+164f9 20 1924 5771
+16519 12 1931 5771
+1652b e 1932 5771
+16539 3 1937 5771
+1653c 7 1939 5771
+16543 6 1941 5771
+16549 4 1942 5771
+1654d 2 1944 5771
+1654f 4 1945 5771
+16553 2a 1950 5771
+1657d a 1900 5771
+16587 6 1902 5771
+1658d 11 1903 5771
+1659e 1b 1906 5771
+165b9 b 1892 5771
+165c4 6 2034 5771
+165ca 7 1954 5771
+165d1 26 1885 5771
+165f7 b 1990 5771
+16602 c 1991 5771
+1660e 10 1992 5771
+1661e 9 1966 5771
+16627 c 1968 5771
+16633 e 1971 5771
+16641 10 1973 5771
+16651 6 1975 5771
+16657 6 1976 5771
+1665d 3 1980 5771
+16660 29 1981 5771
+16689 a 1983 5771
+16693 a 2001 5771
+1669d a 2003 5771
+166a7 13 2007 5771
+166ba a 2008 5771
+166c4 11 2012 5771
+166d5 13 2015 5771
+166e8 a 2016 5771
+166f2 13 2021 5771
+16705 a 2022 5771
+1670f 13 2026 5771
+16722 d 2029 5771
+1672f 7 1913 5771
+16736 14 2041 5771
+FUNC 1674a d9 8 UnDecorator::getPtrRefDataType(DName const &,int)
+1674a 3 3937 5771
+1674d 11 3940 5771
+1675e b 3944 5771
+16769 12 3948 5771
+1677b 12 3949 5771
+1678d 10 3951 5771
+1679d 5 3957 5771
+167a2 16 3961 5771
+167b8 d 3967 5771
+167c5 c 3968 5771
+167d1 b 3970 5771
+167dc 6 3972 5771
+167e2 1e 3974 5771
+16800 e 3976 5771
+1680e 13 3980 5771
+16821 2 3982 5771
+FUNC 16823 14 4 UnDecorator::getVbTableType(DName const &)
+16823 14 4053 5771
+FUNC 16837 1b8 0 UnDecorator::getTemplateArgumentList()
+16837 14 1775 5771
+1684b c 1777 5771
+16857 7 1778 5771
+1685e 2a 1781 5771
+16888 6 1785 5771
+1688e 4 1786 5771
+16892 2 1787 5771
+16894 e 1788 5771
+168a2 8 1793 5771
+168aa 5 1798 5771
+168af 1 1800 5771
+168b0 11 1804 5771
+168c1 5 1807 5771
+168c6 7 1810 5771
+168cd 7 1816 5771
+168d4 6 1817 5771
+168da 12 1818 5771
+168ec a 1820 5771
+168f6 5 1821 5771
+168fb e 1822 5771
+16909 5 1824 5771
+1690e 9 1830 5771
+16917 c 1832 5771
+16923 e 1835 5771
+16931 10 1837 5771
+16941 6 1839 5771
+16947 1 1840 5771
+16948 2 1842 5771
+1694a 25 1843 5771
+1696f 2 1846 5771
+16971 10 1847 5771
+16981 2 1850 5771
+16983 1f 1851 5771
+169a2 17 1857 5771
+169b9 9 1858 5771
+169c2 16 1862 5771
+169d8 17 1873 5771
+FUNC 169ef 56f 8 UnDecorator::getOperatorName(bool,bool *)
+169ef b 1095 5771
+169fa 53 1103 5771
+16a4d 13 1183 5771
+16a60 c 1439 5771
+16a6c 1d 1440 5771
+16a89 11 1442 5771
+16a9a 5 1444 5771
+16a9f 3 1124 5771
+16aa2 8 1126 5771
+16aaa 21 1127 5771
+16acb c 1129 5771
+16ad7 a 1130 5771
+16ae1 a 1133 5771
+16aeb 7 1135 5771
+16af2 3 1136 5771
+16af5 9 1144 5771
+16afe 5 1145 5771
+16b03 6 1148 5771
+16b09 2 1154 5771
+16b0b 15 1156 5771
+16b20 18 1160 5771
+16b38 1a 1161 5771
+16b52 10 1166 5771
+16b62 b 1167 5771
+16b6d 5 1170 5771
+16b72 6 1106 5771
+16b78 f 1108 5771
+16b87 21 1103 5771
+16ba8 3d 1220 5771
+16be5 18 1240 5771
+16bfd b 1234 5771
+16c08 5 1235 5771
+16c0d 13 1245 5771
+16c20 7 1247 5771
+16c27 8 1249 5771
+16c2f 18 1220 5771
+16c47 13 1255 5771
+16c5a 7 1256 5771
+16c61 2 1257 5771
+16c63 16 1335 5771
+16c79 7 1356 5771
+16c80 6 1350 5771
+16c86 2 1352 5771
+16c88 25 1220 5771
+16cad 13 1290 5771
+16cc0 17 1291 5771
+16cd7 24 1292 5771
+16cfb 14 1313 5771
+16d0f 6 1316 5771
+16d15 5 1317 5771
+16d1a 10 1302 5771
+16d2a 20 1303 5771
+16d4a 20 1304 5771
+16d6a 20 1305 5771
+16d8a 22 1306 5771
+16dac 12 1307 5771
+16dbe c 1296 5771
+16dca 2b 1297 5771
+16df5 13 1281 5771
+16e08 17 1282 5771
+16e1f 1a 1283 5771
+16e39 5 1284 5771
+16e3e 2d 1220 5771
+16e6b 25 1364 5771
+16e90 10 1373 5771
+16ea0 13 1378 5771
+16eb3 a 1397 5771
+16ebd 13 1399 5771
+16ed0 a 1403 5771
+16eda 6 1405 5771
+16ee0 2 1408 5771
+16ee2 13 1410 5771
+16ef5 d 1413 5771
+16f02 5 1415 5771
+16f07 10 1278 5771
+16f17 b 1330 5771
+16f22 5 1428 5771
+16f27 3 1187 5771
+16f2a 13 1216 5771
+16f3d 8 1437 5771
+16f45 19 1438 5771
+FUNC 16f5e 153 4 UnDecorator::getTemplateName(bool)
+16f5e 5 1700 5771
+16f63 1f 1704 5771
+16f82 16 1714 5771
+16f98 1d 1716 5771
+16fb5 23 1725 5771
+16fd8 e 1729 5771
+16fe6 6 1730 5771
+16fec 12 1732 5771
+16ffe 2 1734 5771
+17000 16 1735 5771
+17016 c 1738 5771
+17022 7 1739 5771
+17029 6 1746 5771
+1702f 21 1747 5771
+17050 c 1749 5771
+1705c a 1750 5771
+17066 a 1753 5771
+17070 6 1755 5771
+17076 6 1756 5771
+1707c 23 1769 5771
+1709f d 1705 5771
+170ac 5 1771 5771
+FUNC 170b1 1ea 4 UnDecorator::getZName(bool)
+170b1 10 1007 5771
+170c1 11 1008 5771
+170d2 3 1013 5771
+170d5 26 1043 5771
+170fb b 1024 5771
+17106 5 1026 5771
+1710b 16 1028 5771
+17121 16 1030 5771
+17137 17 1031 5771
+1714e 7 1033 5771
+17155 25 1040 5771
+1717a 5 1042 5771
+1717f 29 1043 5771
+171a8 8 1045 5771
+171b0 b 1051 5771
+171bb c 1053 5771
+171c7 e 1056 5771
+171d5 10 1058 5771
+171e5 4 1060 5771
+171e9 b 1061 5771
+171f4 2 1063 5771
+171f6 a 1064 5771
+17200 10 1065 5771
+17210 2 1068 5771
+17212 d 1069 5771
+1721f 2a 1070 5771
+17249 2 1073 5771
+1724b 1a 1076 5771
+17265 11 1083 5771
+17276 9 1084 5771
+1727f f 1087 5771
+1728e d 1090 5771
+FUNC 1729b e4 0 UnDecorator::getScopedName()
+1729b 7 2727 5771
+172a2 e 2728 5771
+172b0 15 2733 5771
+172c5 1a 2737 5771
+172df 2a 2738 5771
+17309 b 2742 5771
+17314 8 2743 5771
+1731c 4 2744 5771
+17320 1b 2745 5771
+1733b b 2746 5771
+17346 7 2747 5771
+1734d 2 2748 5771
+1734f 2b 2749 5771
+1737a 3 2753 5771
+1737d 2 2755 5771
+FUNC 1737f f 0 UnDecorator::getECSUName()
+1737f f 2758 5771
+FUNC 1738e 100 0 UnDecorator::getECSUDataType()
+1738e 3 3392 5771
+17391 20 3395 5771
+173b1 37 3399 5771
+173e8 5 3424 5771
+173ed 2 3425 5771
+173ef 5 3420 5771
+173f4 2 3421 5771
+173f6 26 3431 5771
+1741c 2 3432 5771
+1741e 5 3415 5771
+17423 2 3416 5771
+17425 5 3411 5771
+1742a 2 3412 5771
+1742c d 3407 5771
+17439 7 3439 5771
+17440 4 3441 5771
+17444 c 3442 5771
+17450 16 3446 5771
+17466 e 3450 5771
+17474 18 3404 5771
+1748c 2 3452 5771
+FUNC 1748e 46 0 UnDecorator::getSymbolName()
+1748e 3 989 5771
+17491 a 990 5771
+1749b 6 991 5771
+174a1 c 992 5771
+174ad 16 997 5771
+174c3 f 1001 5771
+174d2 2 1003 5771
+FUNC 174d4 92 0 UnDecorator::getBasedType()
+174d4 6 2653 5771
+174da 13 2654 5771
+174ed a 2659 5771
+174f7 17 2661 5771
+1750e c 2707 5771
+1751a 13 2699 5771
+1752d 2 2700 5771
+1752f d 2674 5771
+1753c 2 2711 5771
+1753e a 2712 5771
+17548 d 2716 5771
+17555 f 2720 5771
+17564 2 2722 5771
+FUNC 17566 b42 4 UnDecorator::composeDeclaration(DName const &)
+17566 6 2045 5771
+1756c e 2046 5771
+1757a 5 2047 5771
+1757f a 2048 5771
+17589 b 2053 5771
+17594 f 2054 5771
+175a3 8 2055 5771
+175ab 15 2056 5771
+175c0 8 2057 5771
+175c8 10 2058 5771
+175d8 83 2075 5771
+1765b 7 2081 5771
+17662 19 2082 5771
+1767b 21 2083 5771
+1769c 2 2084 5771
+1769e 15 2085 5771
+176b3 27 2090 5771
+176da 33 2092 5771
+1770d 9 2094 5771
+17716 9 2096 5771
+1771f 2b 2098 5771
+1774a d 2101 5771
+17757 9 2103 5771
+17760 2d 2105 5771
+1778d 2e 2107 5771
+177bb 5 2111 5771
+177c0 3 2114 5771
+177c3 3 2115 5771
+177c6 3 2116 5771
+177c9 3 2117 5771
+177cc 3 2118 5771
+177cf 26 2121 5771
+177f5 12 2123 5771
+17807 19 2125 5771
+17820 19 2126 5771
+17839 2 2127 5771
+1783b 12 2129 5771
+1784d 19 2131 5771
+17866 1b 2134 5771
+17881 13 2141 5771
+17894 a 2142 5771
+1789e 15 2143 5771
+178b3 2 2144 5771
+178b5 f 2145 5771
+178c4 10 2147 5771
+178d4 9 2151 5771
+178dd 22 2152 5771
+178ff 2 2153 5771
+17901 13 2168 5771
+17914 c 2172 5771
+17920 14 2173 5771
+17934 1a 2174 5771
+1794e 2 2175 5771
+17950 b 2176 5771
+1795b 5 2182 5771
+17960 6 2185 5771
+17966 27 2187 5771
+1798d b 2189 5771
+17998 5 2190 5771
+1799d 1b 2194 5771
+179b8 15 2195 5771
+179cd 1d 2202 5771
+179ea 16 2204 5771
+17a00 55 2205 5771
+17a55 12 2206 5771
+17a67 2b 2207 5771
+17a92 2 2208 5771
+17a94 d 2209 5771
+17aa1 1a 2211 5771
+17abb 2e 2218 5771
+17ae9 12 2222 5771
+17afb c 2223 5771
+17b07 c 2227 5771
+17b13 15 2228 5771
+17b28 2 2229 5771
+17b2a f 2230 5771
+17b39 1a 2235 5771
+17b53 b 2237 5771
+17b5e 3 2238 5771
+17b61 5 2243 5771
+17b66 b 2245 5771
+17b71 1c 2250 5771
+17b8d 13 2251 5771
+17ba0 e 2252 5771
+17bae 2 2253 5771
+17bb0 10 2254 5771
+17bc0 3d 2255 5771
+17bfd c 2256 5771
+17c09 e 2257 5771
+17c17 4c 2258 5771
+17c63 a 2259 5771
+17c6d 4b 2260 5771
+17cb8 7 2261 5771
+17cbf 4b 2262 5771
+17d0a f 2263 5771
+17d19 f 2264 5771
+17d28 6 2268 5771
+17d2e 61 2277 5771
+17d8f 15 2281 5771
+17da4 2 2283 5771
+17da6 18 2285 5771
+17dbe 2d 2292 5771
+17deb 12 2294 5771
+17dfd 37 2296 5771
+17e34 23 2297 5771
+17e57 b7 2299 5771
+17f0e 23 2300 5771
+17f31 12 2306 5771
+17f43 37 2307 5771
+17f7a b 2308 5771
+17f85 37 2309 5771
+17fbc b 2310 5771
+17fc7 30 2311 5771
+17ff7 23 2312 5771
+1801a 36 2319 5771
+18050 1e 2320 5771
+1806e 8 2325 5771
+18076 1e 2326 5771
+18094 12 2329 5771
+180a6 2 2331 5771
+FUNC 180a8 211 0 UnDecorator::getDecoratedName()
+180a8 7 861 5771
+180af e 864 5771
+180bd a 868 5771
+180c7 b 873 5771
+180d2 8 874 5771
+180da 11 876 5771
+180eb 10 878 5771
+180fb 6 882 5771
+18101 9 903 5771
+1810a 9 906 5771
+18113 8 910 5771
+1811b 6 912 5771
+18121 5 910 5771
+18126 2 915 5771
+18128 a 918 5771
+18132 19 919 5771
+1814b 6 920 5771
+18151 f 924 5771
+18160 8 925 5771
+18168 17 929 5771
+1817f a 930 5771
+18189 c 932 5771
+18195 8 933 5771
+1819d 5 934 5771
+181a2 18 935 5771
+181ba a 936 5771
+181c4 13 937 5771
+181d7 b 938 5771
+181e2 2 940 5771
+181e4 29 941 5771
+1820d 4 945 5771
+18211 10 946 5771
+18221 9 948 5771
+1822a 3 950 5771
+1822d 1c 955 5771
+18249 f 959 5771
+18258 4 976 5771
+1825c 6 962 5771
+18262 14 964 5771
+18276 19 967 5771
+1828f 5 968 5771
+18294 10 971 5771
+182a4 2 979 5771
+182a6 2 980 5771
+182a8 f 982 5771
+182b7 2 984 5771
+FUNC 182b9 28b 0 UnDecorator::getScope()
+182b9 d 1482 5771
+182c6 f 1483 5771
+182d5 2a 1489 5771
+182ff 14 1492 5771
+18313 b 1495 5771
+1831e 16 1496 5771
+18334 5 1498 5771
+18339 17 1499 5771
+18350 3 1500 5771
+18353 f 1506 5771
+18362 2a 1507 5771
+1838c 10 1566 5771
+1839c 5 1567 5771
+183a1 34 1561 5771
+183d5 4 1562 5771
+183d9 5 1563 5771
+183de e 1510 5771
+183ec 5 1514 5771
+183f1 22 1515 5771
+18413 e 1518 5771
+18421 6 1519 5771
+18427 5 1522 5771
+1842c 2a 1523 5771
+18456 2 1524 5771
+18458 f 1546 5771
+18467 1a 1548 5771
+18481 b 1550 5771
+1848c 9 1551 5771
+18495 2 1554 5771
+18497 f 1530 5771
+184a6 2 1570 5771
+184a8 21 1571 5771
+184c9 a 1489 5771
+184d3 f 1577 5771
+184e2 18 1590 5771
+184fa 2 1591 5771
+184fc b 1580 5771
+18507 7 1581 5771
+1850e 2 1582 5771
+18510 2b 1583 5771
+1853b 4 1597 5771
+1853f 5 1599 5771
+FUNC 18544 341 4 UnDecorator::getFunctionIndirectType(DName const &)
+18544 3 3461 5771
+18547 e 3462 5771
+18555 15 3463 5771
+1856a f 3465 5771
+18579 10 3466 5771
+18589 7 3469 5771
+18590 a 3471 5771
+1859a 6 3473 5771
+185a0 7 3475 5771
+185a7 d 3477 5771
+185b4 17 3482 5771
+185cb 9 3485 5771
+185d4 3 3486 5771
+185d7 5 3490 5771
+185dc f 3491 5771
+185eb 6 3496 5771
+185f1 13 3497 5771
+18604 b 3501 5771
+1860f 1e 3503 5771
+1862d 8 3505 5771
+18635 29 3506 5771
+1865e 2 3507 5771
+18660 17 3508 5771
+18677 f 3510 5771
+18686 4 3511 5771
+1868a 10 3518 5771
+1869a 15 3519 5771
+186af 9 3527 5771
+186b8 d 3528 5771
+186c5 30 3529 5771
+186f5 2 3530 5771
+186f7 11 3521 5771
+18708 7 3514 5771
+1870f 16 3516 5771
+18725 13 3531 5771
+18738 d 3535 5771
+18745 22 3537 5771
+18767 2 3546 5771
+18769 13 3547 5771
+1877c c 3551 5771
+18788 28 3552 5771
+187b0 1e 3557 5771
+187ce c 3558 5771
+187da 2e 3561 5771
+18808 10 3563 5771
+18818 c 3564 5771
+18824 c 3566 5771
+18830 15 3567 5771
+18845 2 3568 5771
+18847 f 3569 5771
+18856 4 3573 5771
+1885a b 3574 5771
+18865 e 3580 5771
+18873 10 3576 5771
+18883 2 3581 5771
+FUNC 18885 4e4 10 UnDecorator::getDataIndirectType(DName const &,char,DName const &,int)
+18885 6 3707 5771
+1888b 23 3711 5771
+188ae 4 3713 5771
+188b2 17 3715 5771
+188c9 c 3717 5771
+188d5 10 3719 5771
+188e5 e 3723 5771
+188f3 6 3725 5771
+188f9 15 3726 5771
+1890e 17 3732 5771
+18925 11 3751 5771
+18936 a 3752 5771
+18940 32 3753 5771
+18972 5 3754 5771
+18977 11 3743 5771
+18988 a 3744 5771
+18992 25 3745 5771
+189b7 2 3746 5771
+189b9 8 3747 5771
+189c1 2 3749 5771
+189c3 19 3735 5771
+189dc a 3736 5771
+189e6 14 3737 5771
+189fa 5 3738 5771
+189ff 11 3739 5771
+18a10 6 3766 5771
+18a16 a 3768 5771
+18a20 17 3770 5771
+18a37 10 3772 5771
+18a47 1a 3778 5771
+18a61 5 3780 5771
+18a66 6 3782 5771
+18a6c 9 3787 5771
+18a75 b 3789 5771
+18a80 19 3791 5771
+18a99 c 3793 5771
+18aa5 24 3794 5771
+18ac9 c 3796 5771
+18ad5 22 3797 5771
+18af7 9 3801 5771
+18b00 5 3805 5771
+18b05 7 3806 5771
+18b0c 6 3810 5771
+18b12 1e 3812 5771
+18b30 8 3814 5771
+18b38 1b 3815 5771
+18b53 2 3816 5771
+18b55 16 3817 5771
+18b6b a 3819 5771
+18b75 13 3828 5771
+18b88 b 3833 5771
+18b93 c 3834 5771
+18b9f 8 3835 5771
+18ba7 6 3836 5771
+18bad b 3842 5771
+18bb8 b 3843 5771
+18bc3 3 3863 5771
+18bc6 6 3864 5771
+18bcc 22 3866 5771
+18bee 9 3871 5771
+18bf7 13 3872 5771
+18c0a 5 3876 5771
+18c0f 1e 3877 5771
+18c2d 5 3879 5771
+18c32 1e 3880 5771
+18c50 5 3884 5771
+18c55 e 3885 5771
+18c63 14 3889 5771
+18c77 28 3895 5771
+18c9f 2 3890 5771
+18ca1 b 3891 5771
+18cac 2 3892 5771
+18cae c 3898 5771
+18cba 17 3899 5771
+18cd1 4 3902 5771
+18cd5 6 3904 5771
+18cdb 7 3906 5771
+18ce2 8 3774 5771
+18cea 13 3918 5771
+18cfd 12 3922 5771
+18d0f 29 3925 5771
+18d38 10 3923 5771
+18d48 c 3928 5771
+18d54 3 3929 5771
+18d57 10 3931 5771
+18d67 2 3933 5771
+FUNC 18d69 14c 0 UnDecorator::operator char *()
+18d69 6 762 5771
+18d6f 4 763 5771
+18d73 f 764 5771
+18d82 9 770 5771
+18d8b c 772 5771
+18d97 7 775 5771
+18d9e 1d 776 5771
+18dbb 4 782 5771
+18dbf 16 783 5771
+18dd5 9 785 5771
+18dde 5 794 5771
+18de3 9 795 5771
+18dec 13 799 5771
+18dff e 808 5771
+18e0d 2 809 5771
+18e0f 2 848 5771
+18e11 1a 810 5771
+18e2b e 813 5771
+18e39 e 811 5771
+18e47 9 817 5771
+18e50 e 819 5771
+18e5e d 820 5771
+18e6b a 824 5771
+18e75 f 825 5771
+18e84 5 828 5771
+18e89 2 829 5771
+18e8b 2 830 5771
+18e8d 5 831 5771
+18e92 1 832 5771
+18e93 5 833 5771
+18e98 1 835 5771
+18e99 5 834 5771
+18e9e 2 838 5771
+18ea0 a 839 5771
+18eaa 9 841 5771
+18eb3 2 848 5771
+FUNC 18eb5 116 c UnDecorator::getPtrRefType(DName const &,DName const &,char)
+18eb5 5 3585 5771
+18eba f 3588 5771
+18ec9 d 3589 5771
+18ed6 b 3591 5771
+18ee1 20 3594 5771
+18f01 b 3595 5771
+18f0c b 3597 5771
+18f17 9 3598 5771
+18f20 14 3600 5771
+18f34 14 3606 5771
+18f48 1b 3608 5771
+18f63 a 3612 5771
+18f6d b 3615 5771
+18f78 c 3617 5771
+18f84 9 3618 5771
+18f8d c 3620 5771
+18f99 c 3622 5771
+18fa5 a 3623 5771
+18faf b 3625 5771
+18fba f 3629 5771
+18fc9 2 3632 5771
+FUNC 18fcb 1b 8 UnDecorator::getPointerType(DName const &,DName const &)
+18fcb 1b 4037 5771
+FUNC 18fe6 1b 8 UnDecorator::getPointerTypeArray(DName const &,DName const &)
+18fe6 1b 4040 5771
+FUNC 19001 1b 8 UnDecorator::getReferenceType(DName const &,DName const &)
+19001 1b 4043 5771
+FUNC 1901c a3 18 __unDName
+1901c f 604 5771
+1902b 9 606 5771
+19034 4 607 5771
+19038 a 612 5771
+19042 2 613 5771
+19044 8 614 5771
+1904c 3 615 5771
+1904f 20 618 5771
+1906f 1a 627 5771
+19089 e 628 5771
+19097 a 633 5771
+190a1 c 636 5771
+190ad 3 643 5771
+190b0 6 645 5771
+190b6 9 637 5771
+FUNC 190bf a3 1c __unDNameEx
+190bf f 684 5771
+190ce 9 687 5771
+190d7 4 688 5771
+190db a 693 5771
+190e5 2 694 5771
+190e7 8 695 5771
+190ef 3 696 5771
+190f2 20 699 5771
+19112 1a 708 5771
+1912c e 709 5771
+1913a a 714 5771
+19144 c 717 5771
+19150 3 724 5771
+19153 6 726 5771
+19159 9 718 5771
+FUNC 19162 387 4 UnDecorator::getBasicDataType(DName const &)
+19162 3 3162 5771
+19165 15 3163 5771
+1917a 6 3165 5771
+19180 4 3168 5771
+19184 35 3173 5771
+191b9 5 3178 5771
+191be 5 3179 5771
+191c3 5 3183 5771
+191c8 5 3184 5771
+191cd 5 3188 5771
+191d2 5 3189 5771
+191d7 5 3193 5771
+191dc 5 3194 5771
+191e1 5 3203 5771
+191e6 5 3204 5771
+191eb 2a 3173 5771
+19215 3c 3222 5771
+19251 5 3231 5771
+19256 5 3232 5771
+1925b 22 3273 5771
+1927d 5 3235 5771
+19282 5 3236 5771
+19287 f 3222 5771
+19296 5 3243 5771
+1929b 5 3244 5771
+192a0 5 3239 5771
+192a5 5 3240 5771
+192aa 5 3247 5771
+192af 5 3248 5771
+192b4 1b 3222 5771
+192cf 3 3264 5771
+192d2 6 3262 5771
+192d8 10 3264 5771
+192e8 10 3266 5771
+192f8 11 3267 5771
+19309 5 3275 5771
+1930e 2 3276 5771
+19310 5 3255 5771
+19315 2 3257 5771
+19317 3 3224 5771
+1931a 12 3343 5771
+1932c 9 3345 5771
+19335 7 3347 5771
+1933c 16 3348 5771
+19352 6 3352 5771
+19358 d 3353 5771
+19365 5 3355 5771
+1936a 5 3227 5771
+1936f 2 3278 5771
+19371 d 3281 5771
+1937e 2 3282 5771
+19380 5 3219 5771
+19385 2 3220 5771
+19387 3 3287 5771
+1938a 5 3290 5771
+1938f d 3207 5771
+1939c d 3212 5771
+193a9 9 3297 5771
+193b2 1f 3301 5771
+193d1 19 3314 5771
+193ea c 3322 5771
+193f6 2 3326 5771
+193f8 c 3307 5771
+19404 2 3308 5771
+19406 1e 3311 5771
+19424 10 3332 5771
+19434 18 3333 5771
+1944c 5 3337 5771
+19451 c 3360 5771
+1945d 5 3367 5771
+19462 d 3369 5771
+1946f 5 3371 5771
+19474 d 3372 5771
+19481 2 3373 5771
+19483 5 3374 5771
+19488 d 3375 5771
+19495 17 3380 5771
+194ac 16 3385 5771
+194c2 27 3387 5771
+FUNC 194e9 13e 4 UnDecorator::getPrimaryDataType(DName const &)
+194e9 7 2962 5771
+194f0 2b 2966 5771
+1951b 12 3027 5771
+1952d d 2972 5771
+1953a c 2974 5771
+19546 a 2975 5771
+19550 b 2981 5771
+1955b 6 2984 5771
+19561 1e 2986 5771
+1957f 7 2996 5771
+19586 2 2997 5771
+19588 6 2998 5771
+1958e f 3000 5771
+1959d 8 3002 5771
+195a5 10 3004 5771
+195b5 2f 3022 5771
+195e4 16 3012 5771
+195fa 17 3008 5771
+19611 14 2969 5771
+19625 2 3030 5771
+FUNC 19627 b1 4 UnDecorator::getDataType(DName *)
+19627 6 2922 5771
+1962d b 2923 5771
+19638 15 2928 5771
+1964d 10 2954 5771
+1965d 6 2934 5771
+19663 c 2936 5771
+1966f f 2937 5771
+1967e 13 2939 5771
+19691 6 2944 5771
+19697 29 2946 5771
+196c0 2 2947 5771
+196c2 14 2931 5771
+196d6 2 2957 5771
+FUNC 196d8 64 4 UnDecorator::getExternalDataType(DName const &)
+196d8 7 4244 5771
+196df 1e 4247 5771
+196fd 9 4248 5771
+19706 30 4253 5771
+19736 4 4255 5771
+1973a 2 4257 5771
+FUNC 1973c 57 8 fastzero_I
+FUNC 19793 8f c _VEC_memzero
+FUNC 19822 14 0 _sse2_mathfcns_init
+FUNC 19836 14 4 _set_SSE2_enable
+FUNC 1984a 87 c fastcopy_I
+FUNC 198d1 e3 c _VEC_memcpy
+FUNC 199b4 1bd c __crtMessageBoxA
+199b4 9 41 4033
+199bd 5 49 4033
+199c2 2 56 4033
+199c4 18 64 4033
+199dc d 66 4033
+199e9 2 67 4033
+199eb 6 69 4033
+199f1 10 76 4033
+19a01 6 78 4033
+19a07 6 80 4033
+19a0d 15 83 4033
+19a22 1a 86 4033
+19a3c 1c 88 4033
+19a58 6 89 4033
+19a5e 8 95 4033
+19a66 6 98 4033
+19a6c a 100 4033
+19a76 14 102 4033
+19a8a 14 116 4033
+19a9e 6 119 4033
+19aa4 d 120 4033
+19ab1 c 122 4033
+19abd 1f 127 4033
+19adc 1b 136 4033
+19af7 6 137 4033
+19afd 7 138 4033
+19b04 2 139 4033
+19b06 7 140 4033
+19b0d 2 142 4033
+19b0f a 144 4033
+19b19 6 146 4033
+19b1f 5 147 4033
+19b24 2 149 4033
+19b26 11 153 4033
+19b37 6 155 4033
+19b3d 5 156 4033
+19b42 8 158 4033
+19b4a b 165 4033
+19b55 5 166 4033
+19b5a 10 168 4033
+19b6a 5 173 4033
+19b6f 2 176 4033
+FUNC 19b71 71 c strcat_s
+19b71 0 13 823
+19b71 30 18 823
+19ba1 c 19 823
+19bad 2 21 823
+19baf 4 23 823
+19bb3 1 25 823
+19bb4 3 26 823
+19bb7 2 29 823
+19bb9 2 32 823
+19bbb d 35 823
+19bc8 4 39 823
+19bcc 2 41 823
+19bce e 42 823
+19bdc 5 45 823
+19be1 1 46 823
+FUNC 19be2 b3 10 strncpy_s
+19be2 5 13 739
+19be7 14 17 739
+19bfb 5 65 739
+19c00 2 66 739
+19c02 26 24 739
+19c28 5 25 739
+19c2d 2 28 739
+19c2f 2 29 739
+19c31 b 31 739
+19c3c 8 35 739
+19c44 d 37 739
+19c51 2 41 739
+19c53 12 45 739
+19c65 5 48 739
+19c6a 2 50 739
+19c6c 4 54 739
+19c70 6 56 739
+19c76 3 58 739
+19c79 c 59 739
+19c85 2 61 739
+19c87 e 62 739
+FUNC 19c95 46 4 _set_error_mode
+19c95 0 43 3937
+19c95 15 50 3937
+19caa 6 58 3937
+19cb0 1 65 3937
+19cb1 5 54 3937
+19cb6 7 55 3937
+19cbd 1 65 3937
+19cbe 1c 61 3937
+19cda 1 65 3937
+FUNC 19cdb a 4 __set_app_type
+19cdb 0 91 3937
+19cdb 9 96 3937
+19ce4 1 97 3937
+FUNC 19ce5 6 0 __get_app_type
+19ce5 0 120 3937
+19ce5 5 125 3937
+19cea 1 126 3937
+FUNC 19ceb 51 10 x_ismbbtype_l
+19ceb 6 213 4669
+19cf1 b 214 4669
+19cfc 4 219 4669
+19d00 3a 222 4669
+19d3a 2 223 4669
+FUNC 19d3c 15 8 _ismbbkalnum_l
+19d3c 0 80 4669
+19d3c 14 81 4669
+19d50 1 82 4669
+FUNC 19d51 13 4 _ismbbkalnum
+19d51 0 85 4669
+19d51 12 86 4669
+19d63 1 87 4669
+FUNC 19d64 15 8 _ismbbkprint_l
+19d64 0 90 4669
+19d64 14 91 4669
+19d78 1 92 4669
+FUNC 19d79 13 4 _ismbbkprint
+19d79 0 95 4669
+19d79 12 96 4669
+19d8b 1 97 4669
+FUNC 19d8c 15 8 _ismbbkpunct_l
+19d8c 0 100 4669
+19d8c 14 101 4669
+19da0 1 102 4669
+FUNC 19da1 13 4 _ismbbkpunct
+19da1 0 105 4669
+19da1 12 106 4669
+19db3 1 107 4669
+FUNC 19db4 18 8 _ismbbalnum_l
+19db4 0 113 4669
+19db4 17 114 4669
+19dcb 1 115 4669
+FUNC 19dcc 16 4 _ismbbalnum
+19dcc 0 118 4669
+19dcc 15 119 4669
+19de1 1 120 4669
+FUNC 19de2 18 8 _ismbbalpha_l
+19de2 0 123 4669
+19de2 17 124 4669
+19df9 1 125 4669
+FUNC 19dfa 16 4 _ismbbalpha
+19dfa 0 128 4669
+19dfa 15 129 4669
+19e0f 1 130 4669
+FUNC 19e10 18 8 _ismbbgraph_l
+19e10 0 133 4669
+19e10 17 134 4669
+19e27 1 135 4669
+FUNC 19e28 16 4 _ismbbgraph
+19e28 0 138 4669
+19e28 15 139 4669
+19e3d 1 140 4669
+FUNC 19e3e 18 8 _ismbbprint_l
+19e3e 0 143 4669
+19e3e 17 144 4669
+19e55 1 145 4669
+FUNC 19e56 16 4 _ismbbprint
+19e56 0 148 4669
+19e56 15 149 4669
+19e6b 1 150 4669
+FUNC 19e6c 15 8 _ismbbpunct_l
+19e6c 0 153 4669
+19e6c 14 154 4669
+19e80 1 155 4669
+FUNC 19e81 13 4 _ismbbpunct
+19e81 0 158 4669
+19e81 12 159 4669
+19e93 1 160 4669
+FUNC 19e94 15 8 _ismbblead_l
+19e94 0 166 4669
+19e94 14 167 4669
+19ea8 1 168 4669
+FUNC 19ea9 13 4 _ismbblead
+19ea9 0 171 4669
+19ea9 12 172 4669
+19ebb 1 173 4669
+FUNC 19ebc 15 8 _ismbbtrail_l
+19ebc 0 176 4669
+19ebc 14 177 4669
+19ed0 1 178 4669
+FUNC 19ed1 13 4 _ismbbtrail
+19ed1 0 181 4669
+19ed1 12 182 4669
+19ee3 1 183 4669
+FUNC 19ee4 53 8 _ismbbkana_l
+19ee4 6 189 4669
+19eea b 190 4669
+19ef5 10 192 4669
+19f05 1f 194 4669
+19f24 2 197 4669
+19f26 f 196 4669
+19f35 2 197 4669
+FUNC 19f37 e 4 _ismbbkana
+19f37 0 200 4669
+19f37 d 201 4669
+19f44 1 202 4669
+FUNC 19f45 44 4 _getbuf
+19f45 0 43 1893
+19f45 6 50 1893
+19f4b 16 58 1893
+19f61 4 61 1893
+19f65 7 62 1893
+19f6c 2 65 1893
+19f6e 4 69 1893
+19f72 6 70 1893
+19f78 7 71 1893
+19f7f 3 75 1893
+19f82 6 76 1893
+19f88 1 79 1893
+FUNC 19f89 1de 8 _fputwc_nolock
+19f89 15 90 2124
+19f9e b 93 2124
+19fa9 48 95 2124
+19ff1 6 101 2124
+19ff7 45 104 2124
+1a03c 27 115 2124
+1a063 9 116 2124
+1a06c 22 120 2124
+1a08e 2 121 2124
+1a090 8 124 2124
+1a098 42 127 2124
+1a0da 17 133 2124
+1a0f1 6 139 2124
+1a0f7 7 141 2124
+1a0fe 34 143 2124
+1a132 6 146 2124
+1a138 6 150 2124
+1a13e d 151 2124
+1a14b d 153 2124
+1a158 f 154 2124
+FUNC 1a167 78 8 fputwc
+1a167 c 48 2124
+1a173 2e 52 2124
+1a1a1 3 55 2124
+1a1a4 7 57 2124
+1a1ab 3 58 2124
+1a1ae 11 60 2124
+1a1bf c 63 2124
+1a1cb 4 67 2124
+1a1cf 6 68 2124
+1a1d5 a 64 2124
+FUNC 1a1df 5 8 putwc
+1a1df 0 162 2124
+1a1df 5 163 2124
+FUNC 1a1e4 1f7 14 wcstoxl
+1a1e4 8 82 6173
+1a1ec b 88 6173
+1a1f7 3 92 6173
+1a1fa b 95 6173
+1a205 2f 97 6173
+1a234 12 98 6173
+1a246 9 103 6173
+1a24f 2 105 6173
+1a251 18 106 6173
+1a269 6 108 6173
+1a26f 4 109 6173
+1a273 2 110 6173
+1a275 6 112 6173
+1a27b 5 113 6173
+1a280 5 115 6173
+1a285 b 118 6173
+1a290 9 119 6173
+1a299 f 120 6173
+1a2a8 9 123 6173
+1a2b1 7 121 6173
+1a2b8 6 126 6173
+1a2be 1a 128 6173
+1a2d8 2 129 6173
+1a2da 5 130 6173
+1a2df d 135 6173
+1a2ec c 141 6173
+1a2f8 15 143 6173
+1a30d 12 144 6173
+1a31f 5 148 6173
+1a324 4 152 6173
+1a328 c 159 6173
+1a334 4 165 6173
+1a338 6 166 6173
+1a33e 9 178 6173
+1a347 6 181 6173
+1a34d 3 183 6173
+1a350 4 184 6173
+1a354 2 186 6173
+1a356 c 161 6173
+1a362 5 173 6173
+1a367 2 174 6173
+1a369 24 189 6173
+1a38d 5 192 6173
+1a392 c 193 6173
+1a39e 6 194 6173
+1a3a4 10 195 6173
+1a3b4 8 201 6173
+1a3bc 2 203 6173
+1a3be 6 205 6173
+1a3c4 3 207 6173
+1a3c7 12 209 6173
+1a3d9 2 210 6173
+FUNC 1a3db 29 c wcstol
+1a3db 3 217 6173
+1a3de 8 218 6173
+1a3e6 13 220 6173
+1a3f9 9 224 6173
+1a402 2 226 6173
+FUNC 1a404 1b 10 _wcstol_l
+1a404 0 234 6173
+1a404 1a 235 6173
+1a41e 1 236 6173
+FUNC 1a41f 2a c wcstoul
+1a41f 3 243 6173
+1a422 7 244 6173
+1a429 14 246 6173
+1a43d a 250 6173
+1a447 2 252 6173
+FUNC 1a449 1b 10 _wcstoul_l
+1a449 0 260 6173
+1a449 1a 261 6173
+1a463 1 262 6173
+FUNC 1a464 9 0 _fptrap
+1a464 0 46 2503
+1a464 8 47 2503
+1a46c 1 48 2503
+FUNC 1a46d 54 8 _isalpha_l
+1a46d 6 57 6535
+1a473 b 58 6535
+1a47e 41 60 6535
+1a4bf 2 61 6535
+FUNC 1a4c1 2b 4 isalpha
+1a4c1 0 66 6535
+1a4c1 9 67 6535
+1a4ca 13 69 6535
+1a4dd 1 75 6535
+1a4de d 73 6535
+1a4eb 1 75 6535
+FUNC 1a4ec 4f 8 _isupper_l
+1a4ec 6 81 6535
+1a4f2 b 82 6535
+1a4fd 3c 84 6535
+1a539 2 85 6535
+FUNC 1a53b 29 4 isupper
+1a53b 0 90 6535
+1a53b 9 91 6535
+1a544 11 93 6535
+1a555 1 99 6535
+1a556 d 97 6535
+1a563 1 99 6535
+FUNC 1a564 4f 8 _islower_l
+1a564 6 105 6535
+1a56a b 106 6535
+1a575 3c 108 6535
+1a5b1 2 109 6535
+FUNC 1a5b3 29 4 islower
+1a5b3 0 114 6535
+1a5b3 9 115 6535
+1a5bc 11 117 6535
+1a5cd 1 123 6535
+1a5ce d 121 6535
+1a5db 1 123 6535
+FUNC 1a5dc 4f 8 _isdigit_l
+1a5dc 6 129 6535
+1a5e2 b 130 6535
+1a5ed 3c 132 6535
+1a629 2 133 6535
+FUNC 1a62b 29 4 isdigit
+1a62b 0 138 6535
+1a62b 9 139 6535
+1a634 11 141 6535
+1a645 1 147 6535
+1a646 d 145 6535
+1a653 1 147 6535
+FUNC 1a654 54 8 _isxdigit_l
+1a654 6 153 6535
+1a65a b 154 6535
+1a665 41 156 6535
+1a6a6 2 157 6535
+FUNC 1a6a8 2b 4 isxdigit
+1a6a8 0 162 6535
+1a6a8 9 163 6535
+1a6b1 13 165 6535
+1a6c4 1 171 6535
+1a6c5 d 169 6535
+1a6d2 1 171 6535
+FUNC 1a6d3 4f 8 _isspace_l
+1a6d3 6 177 6535
+1a6d9 b 178 6535
+1a6e4 3c 180 6535
+1a720 2 181 6535
+FUNC 1a722 29 4 isspace
+1a722 0 186 6535
+1a722 9 187 6535
+1a72b 11 189 6535
+1a73c 1 195 6535
+1a73d d 193 6535
+1a74a 1 195 6535
+FUNC 1a74b 4f 8 _ispunct_l
+1a74b 6 201 6535
+1a751 b 202 6535
+1a75c 3c 204 6535
+1a798 2 205 6535
+FUNC 1a79a 29 4 ispunct
+1a79a 0 210 6535
+1a79a 9 211 6535
+1a7a3 11 213 6535
+1a7b4 1 219 6535
+1a7b5 d 217 6535
+1a7c2 1 219 6535
+FUNC 1a7c3 54 8 _isalnum_l
+1a7c3 6 225 6535
+1a7c9 b 226 6535
+1a7d4 41 228 6535
+1a815 2 229 6535
+FUNC 1a817 2b 4 isalnum
+1a817 0 234 6535
+1a817 9 235 6535
+1a820 13 237 6535
+1a833 1 243 6535
+1a834 d 241 6535
+1a841 1 243 6535
+FUNC 1a842 54 8 _isprint_l
+1a842 6 249 6535
+1a848 b 250 6535
+1a853 41 252 6535
+1a894 2 253 6535
+FUNC 1a896 2b 4 isprint
+1a896 0 258 6535
+1a896 9 259 6535
+1a89f 13 261 6535
+1a8b2 1 267 6535
+1a8b3 d 265 6535
+1a8c0 1 267 6535
+FUNC 1a8c1 54 8 _isgraph_l
+1a8c1 6 273 6535
+1a8c7 b 274 6535
+1a8d2 41 276 6535
+1a913 2 277 6535
+FUNC 1a915 2b 4 isgraph
+1a915 0 282 6535
+1a915 9 283 6535
+1a91e 13 285 6535
+1a931 1 291 6535
+1a932 d 289 6535
+1a93f 1 291 6535
+FUNC 1a940 4f 8 _iscntrl_l
+1a940 6 297 6535
+1a946 b 298 6535
+1a951 3c 300 6535
+1a98d 2 301 6535
+FUNC 1a98f 29 4 iscntrl
+1a98f 0 306 6535
+1a98f 9 307 6535
+1a998 11 309 6535
+1a9a9 1 315 6535
+1a9aa d 313 6535
+1a9b7 1 315 6535
+FUNC 1a9b8 d 4 __isascii
+1a9b8 0 320 6535
+1a9b8 c 321 6535
+1a9c4 1 322 6535
+FUNC 1a9c5 8 4 __toascii
+1a9c5 0 327 6535
+1a9c5 7 328 6535
+1a9cc 1 329 6535
+FUNC 1a9cd 1f 8 _iscsymf_l
+1a9cd 0 335 6535
+1a9cd 1a 336 6535
+1a9e7 1 337 6535
+1a9e8 3 336 6535
+1a9eb 1 337 6535
+FUNC 1a9ec 1a 4 __iscsymf
+1a9ec 0 341 6535
+1a9ec 15 342 6535
+1aa01 1 343 6535
+1aa02 3 342 6535
+1aa05 1 343 6535
+FUNC 1aa06 1f 8 _iscsym_l
+1aa06 0 349 6535
+1aa06 1a 350 6535
+1aa20 1 351 6535
+1aa21 3 350 6535
+1aa24 1 351 6535
+FUNC 1aa25 1c 4 __iscsym
+1aa25 0 356 6535
+1aa25 17 357 6535
+1aa3c 1 358 6535
+1aa3d 3 357 6535
+1aa40 1 358 6535
+FUNC 1aa41 12 8 _MarkAllocaS
+1aa41 0 207 2895
+1aa41 8 208 2895
+1aa49 6 210 2895
+1aa4f 3 211 2895
+1aa52 1 214 2895
+FUNC 1aa53 1b 4 _freea
+1aa53 0 249 2895
+1aa53 8 251 2895
+1aa5b 3 253 2895
+1aa5e 8 255 2895
+1aa66 7 257 2895
+1aa6d 1 266 2895
+FUNC 1aa6e 13b 18 __crtGetLocaleInfoW_stat
+1aa6e f 60 2876
+1aa7d 14 68 2876
+1aa91 d 70 2876
+1aa9e 8 71 2876
+1aaa6 b 73 2876
+1aab1 f 74 2876
+1aac0 5 79 2876
+1aac5 13 81 2876
+1aad8 7 86 2876
+1aadf 2 140 2876
+1aae1 8 96 2876
+1aae9 b 97 2876
+1aaf4 16 100 2876
+1ab0a 7 101 2876
+1ab11 48 104 2876
+1ab59 2 105 2876
+1ab5b 2 106 2876
+1ab5d e 110 2876
+1ab6b 7 113 2876
+1ab72 2 121 2876
+1ab74 2 123 2876
+1ab76 17 130 2876
+1ab8d 6 134 2876
+1ab93 4 136 2876
+1ab97 12 141 2876
+FUNC 1aba9 3b 18 __crtGetLocaleInfoW
+1aba9 6 151 2876
+1abaf b 152 2876
+1abba 28 161 2876
+1abe2 2 162 2876
+FUNC 1abe4 13d 18 __crtGetLocaleInfoA_stat
+1abe4 f 60 4251
+1abf3 17 68 4251
+1ac0a a 70 4251
+1ac14 8 71 4251
+1ac1c b 73 4251
+1ac27 f 74 4251
+1ac36 11 79 4251
+1ac47 4 86 4251
+1ac4b 5 96 4251
+1ac50 b 97 4251
+1ac5b 13 100 4251
+1ac6e 7 101 4251
+1ac75 49 104 4251
+1acbe 2 105 4251
+1acc0 2 106 4251
+1acc2 10 110 4251
+1acd2 3 114 4251
+1acd5 6 124 4251
+1acdb 2 126 4251
+1acdd 15 135 4251
+1acf2 7 139 4251
+1acf9 4 141 4251
+1acfd 12 81 4251
+1ad0f 12 145 4251
+FUNC 1ad21 3b 18 __crtGetLocaleInfoA
+1ad21 6 155 4251
+1ad27 b 156 4251
+1ad32 28 165 4251
+1ad5a 2 166 4251
+FUNC 1ad5c 1a 4 strncnt
+1ad5c 0 48 4203
+1ad5c 6 49 4203
+1ad62 6 52 4203
+1ad68 1 53 4203
+1ad69 5 52 4203
+1ad6e 7 55 4203
+1ad75 1 56 4203
+FUNC 1ad76 3a2 20 __crtLCMapStringA_stat
+1ad76 12 99 4203
+1ad88 d 108 4203
+1ad95 1b 109 4203
+1adb0 8 110 4203
+1adb8 b 111 4203
+1adc3 a 112 4203
+1adcd 5 119 4203
+1add2 19 120 4203
+1adeb 5 124 4203
+1adf0 1 125 4203
+1adf1 3 127 4203
+1adf4 16 133 4203
+1ae0a 9 213 4203
+1ae13 8 235 4203
+1ae1b 8 236 4203
+1ae23 27 247 4203
+1ae4a 6 248 4203
+1ae50 48 251 4203
+1ae98 3 252 4203
+1ae9b 6 253 4203
+1aea1 19 262 4203
+1aeba 21 271 4203
+1aedb 8 274 4203
+1aee3 9 277 4203
+1aeec 9 279 4203
+1aef5 12 288 4203
+1af07 5 292 4203
+1af0c 4b 298 4203
+1af57 4 299 4203
+1af5b 18 309 4203
+1af73 3 312 4203
+1af76 6 322 4203
+1af7c 2 325 4203
+1af7e 17 335 4203
+1af95 7 342 4203
+1af9c 8 344 4203
+1afa4 9 346 4203
+1afad b 141 4203
+1afb8 8 142 4203
+1afc0 5 143 4203
+1afc5 8 144 4203
+1afcd 11 146 4203
+1afde 7 147 4203
+1afe5 9 153 4203
+1afee 15 155 4203
+1b003 5 156 4203
+1b008 2 157 4203
+1b00a 1b 164 4203
+1b025 7 166 4203
+1b02c 41 169 4203
+1b06d 2 170 4203
+1b06f 28 196 4203
+1b097 2 183 4203
+1b099 2 184 4203
+1b09b 25 190 4203
+1b0c0 7 198 4203
+1b0c7 2 199 4203
+1b0c9 1a 202 4203
+1b0e3 5 204 4203
+1b0e8 9 205 4203
+1b0f1 c 206 4203
+1b0fd 7 207 4203
+1b104 2 208 4203
+1b106 12 350 4203
+FUNC 1b118 43 24 __crtLCMapStringA
+1b118 6 363 4203
+1b11e b 364 4203
+1b129 30 376 4203
+1b159 2 377 4203
+FUNC 1b15b 1b8 1c __crtGetStringTypeA_stat
+1b15b f 66 4155
+1b16a 10 75 4155
+1b17a 18 79 4155
+1b192 8 80 4155
+1b19a b 82 4155
+1b1a5 f 83 4155
+1b1b4 11 88 4155
+1b1c5 9 120 4155
+1b1ce 8 141 4155
+1b1d6 8 142 4155
+1b1de 27 153 4155
+1b205 6 154 4155
+1b20b 3e 157 4155
+1b249 2 158 4155
+1b24b 2 159 4155
+1b24d f 161 4155
+1b25c 13 169 4155
+1b26f 11 174 4155
+1b280 6 176 4155
+1b286 6 178 4155
+1b28c 2 90 4155
+1b28e 5 94 4155
+1b293 8 95 4155
+1b29b 5 96 4155
+1b2a0 8 97 4155
+1b2a8 e 99 4155
+1b2b6 4 100 4155
+1b2ba 5 104 4155
+1b2bf 17 106 4155
+1b2d6 2 107 4155
+1b2d8 2 108 4155
+1b2da 3 109 4155
+1b2dd 15 112 4155
+1b2f2 6 113 4155
+1b2f8 7 114 4155
+1b2ff 2 115 4155
+1b301 12 182 4155
+FUNC 1b313 40 20 __crtGetStringTypeA
+1b313 6 194 4155
+1b319 b 195 4155
+1b324 2d 206 4155
+1b351 2 207 4155
+FUNC 1b353 6 0 __pwctype_func
+1b353 0 24 3986
+1b353 5 25 3986
+1b358 1 26 3986
+FUNC 1b359 29 0 __pctype_func
+1b359 0 29 3986
+1b359 7 35 3986
+1b360 3 36 3986
+1b363 18 38 3986
+1b37b 6 39 3986
+1b381 1 40 3986
+FUNC 1b382 419 0 _get_lc_time
+1b382 6 94 3379
+1b388 12 104 3379
+1b39a 3 105 3379
+1b39d 2 170 3379
+1b39f 9 108 3379
+1b3a8 16 112 3379
+1b3be 15 113 3379
+1b3d3 15 114 3379
+1b3e8 18 115 3379
+1b400 15 116 3379
+1b415 13 117 3379
+1b428 14 118 3379
+1b43c 18 120 3379
+1b454 15 121 3379
+1b469 15 122 3379
+1b47e 15 123 3379
+1b493 18 124 3379
+1b4ab 15 125 3379
+1b4c0 15 126 3379
+1b4d5 15 128 3379
+1b4ea 18 129 3379
+1b502 15 130 3379
+1b517 15 131 3379
+1b52c 15 132 3379
+1b541 18 133 3379
+1b559 15 134 3379
+1b56e 15 135 3379
+1b583 15 136 3379
+1b598 18 137 3379
+1b5b0 15 138 3379
+1b5c5 15 139 3379
+1b5da 15 141 3379
+1b5ef 18 142 3379
+1b607 15 143 3379
+1b61c 15 144 3379
+1b631 15 145 3379
+1b646 18 146 3379
+1b65e 18 147 3379
+1b676 18 148 3379
+1b68e 18 149 3379
+1b6a6 1b 150 3379
+1b6c1 18 151 3379
+1b6d9 18 152 3379
+1b6f1 18 154 3379
+1b709 1b 155 3379
+1b724 18 160 3379
+1b73c 18 161 3379
+1b754 1b 163 3379
+1b76f 20 165 3379
+1b78f a 169 3379
+1b799 2 170 3379
+FUNC 1b79b 190 4 __free_lc_time
+1b79b 1 179 3379
+1b79c c 180 3379
+1b7a8 8 183 3379
+1b7b0 8 184 3379
+1b7b8 8 185 3379
+1b7c0 8 186 3379
+1b7c8 8 187 3379
+1b7d0 8 188 3379
+1b7d8 7 189 3379
+1b7df 8 191 3379
+1b7e7 8 192 3379
+1b7ef 8 193 3379
+1b7f7 8 194 3379
+1b7ff 8 195 3379
+1b807 8 196 3379
+1b80f 8 197 3379
+1b817 8 199 3379
+1b81f b 200 3379
+1b82a 8 201 3379
+1b832 8 202 3379
+1b83a 8 203 3379
+1b842 8 204 3379
+1b84a 8 205 3379
+1b852 8 206 3379
+1b85a 8 207 3379
+1b862 8 208 3379
+1b86a 8 209 3379
+1b872 8 210 3379
+1b87a 8 212 3379
+1b882 8 213 3379
+1b88a 8 214 3379
+1b892 8 215 3379
+1b89a 8 216 3379
+1b8a2 b 217 3379
+1b8ad b 218 3379
+1b8b8 b 219 3379
+1b8c3 b 220 3379
+1b8ce b 221 3379
+1b8d9 b 222 3379
+1b8e4 b 223 3379
+1b8ef b 225 3379
+1b8fa b 226 3379
+1b905 b 228 3379
+1b910 b 229 3379
+1b91b f 230 3379
+1b92a 1 232 3379
+FUNC 1b92b 73 4 __init_time
+1b92b 4 56 3379
+1b92f f 60 3379
+1b93e 16 64 3379
+1b954 4 65 3379
+1b958 b 67 3379
+1b963 6 69 3379
+1b969 8 70 3379
+1b971 2 71 3379
+1b973 6 73 3379
+1b979 2 74 3379
+1b97b 2 75 3379
+1b97d 18 78 3379
+1b995 2 82 3379
+1b997 6 83 3379
+1b99d 1 84 3379
+FUNC 1b99e 33 0 fix_grouping
+1b99e 0 32 3427
+1b99e 8 40 3427
+1b9a6 a 43 3427
+1b9b0 4 45 3427
+1b9b4 1 61 3427
+1b9b5 6 40 3427
+1b9bb 1 63 3427
+1b9bc 4 50 3427
+1b9c0 2 52 3427
+1b9c2 7 55 3427
+1b9c9 6 56 3427
+1b9cf 2 60 3427
+FUNC 1b9d1 40 4 __free_lconv_num
+1b9d1 1 211 3427
+1b9d2 8 212 3427
+1b9da a 215 3427
+1b9e4 7 216 3427
+1b9eb b 218 3427
+1b9f6 7 219 3427
+1b9fd b 221 3427
+1ba08 8 222 3427
+1ba10 1 223 3427
+FUNC 1ba11 1c8 4 __init_numeric
+1ba11 7 84 3427
+1ba18 4 92 3427
+1ba1c 2 93 3427
+1ba1e 11 96 3427
+1ba2f 3 177 3427
+1ba32 3 178 3427
+1ba35 c 179 3427
+1ba41 14 102 3427
+1ba55 8 103 3427
+1ba5d 9 108 3427
+1ba66 13 113 3427
+1ba79 9 115 3427
+1ba82 2 116 3427
+1ba84 2 118 3427
+1ba86 9 120 3427
+1ba8f 12 125 3427
+1baa1 8 127 3427
+1baa9 a 128 3427
+1bab3 7 129 3427
+1baba 2 131 3427
+1babc 19 140 3427
+1bad5 15 142 3427
+1baea 1b 144 3427
+1bb05 2 146 3427
+1bb07 c 148 3427
+1bb13 1e 154 3427
+1bb31 2 156 3427
+1bb33 17 154 3427
+1bb4a b 164 3427
+1bb55 9 165 3427
+1bb5e c 166 3427
+1bb6a 8 168 3427
+1bb72 7 169 3427
+1bb79 2 170 3427
+1bb7b 13 186 3427
+1bb8e 11 191 3427
+1bb9f b 193 3427
+1bbaa d 194 3427
+1bbb7 9 197 3427
+1bbc0 9 198 3427
+1bbc9 9 200 3427
+1bbd2 5 201 3427
+1bbd7 2 202 3427
+FUNC 1bbd9 33 0 fix_grouping
+1bbd9 0 214 3470
+1bbd9 8 222 3470
+1bbe1 a 225 3470
+1bbeb 4 227 3470
+1bbef 1 243 3470
+1bbf0 6 222 3470
+1bbf6 1 245 3470
+1bbf7 4 232 3470
+1bbfb 2 234 3470
+1bbfd 7 237 3470
+1bc04 6 238 3470
+1bc0a 2 242 3470
+FUNC 1bc0c 89 4 __free_lconv_mon
+1bc0c 1 255 3470
+1bc0d 8 256 3470
+1bc15 b 259 3470
+1bc20 7 260 3470
+1bc27 b 262 3470
+1bc32 7 263 3470
+1bc39 b 265 3470
+1bc44 7 266 3470
+1bc4b b 268 3470
+1bc56 7 269 3470
+1bc5d b 271 3470
+1bc68 7 272 3470
+1bc6f b 274 3470
+1bc7a 7 275 3470
+1bc81 b 277 3470
+1bc8c 8 278 3470
+1bc94 1 279 3470
+FUNC 1bc95 2c4 4 __init_monetary
+1bc95 8 65 3470
+1bc9d 6 73 3470
+1bca3 13 77 3470
+1bcb6 3 187 3470
+1bcb9 3 188 3470
+1bcbc a 189 3470
+1bcc6 11 83 3470
+1bcd7 8 84 3470
+1bcdf f 89 3470
+1bcee 7 91 3470
+1bcf5 2 92 3470
+1bcf7 2 94 3470
+1bcf9 9 96 3470
+1bd02 f 101 3470
+1bd11 6 103 3470
+1bd17 9 104 3470
+1bd20 2 105 3470
+1bd22 2 107 3470
+1bd24 4 112 3470
+1bd28 14 117 3470
+1bd3c 14 119 3470
+1bd50 14 121 3470
+1bd64 17 123 3470
+1bd7b 14 125 3470
+1bd8f 14 128 3470
+1bda3 14 130 3470
+1bdb7 17 133 3470
+1bdce 14 135 3470
+1bde2 14 137 3470
+1bdf6 14 139 3470
+1be0a 17 141 3470
+1be21 14 143 3470
+1be35 14 145 3470
+1be49 17 147 3470
+1be60 2 149 3470
+1be62 6 150 3470
+1be68 6 151 3470
+1be6e 8 152 3470
+1be76 b 153 3470
+1be81 5 154 3470
+1be86 1c 157 3470
+1bea2 2 159 3470
+1bea4 17 157 3470
+1bebb c 169 3470
+1bec7 3 175 3470
+1beca 32 181 3470
+1befc 11 194 3470
+1bf0d 15 199 3470
+1bf22 b 201 3470
+1bf2d d 202 3470
+1bf3a 9 204 3470
+1bf43 9 205 3470
+1bf4c 6 206 3470
+1bf52 5 208 3470
+1bf57 2 209 3470
+FUNC 1bf59 395 4 __init_ctype
+1bf59 11 59 3562
+1bf6a 6 60 3562
+1bf70 1f 82 3562
+1bf8f 7 84 3562
+1bf96 20 89 3562
+1bfb6 7 94 3562
+1bfbd 10 98 3562
+1bfcd b 100 3562
+1bfd8 b 102 3562
+1bfe3 12 104 3562
+1bff5 2f 106 3562
+1c024 5 109 3562
+1c029 2 112 3562
+1c02b e 113 3562
+1c039 15 115 3562
+1c04e a 118 3562
+1c058 4 121 3562
+1c05c 8 124 3562
+1c064 e 126 3562
+1c072 9 128 3562
+1c07b b 129 3562
+1c086 b 128 3562
+1c091 2c 140 3562
+1c0bd 33 155 3562
+1c0f0 2d 166 3562
+1c11d 37 178 3562
+1c154 11 180 3562
+1c165 17 182 3562
+1c17c 15 183 3562
+1c191 d 180 3562
+1c19e 12 189 3562
+1c1b0 f 190 3562
+1c1bf 12 191 3562
+1c1d1 18 195 3562
+1c1e9 11 198 3562
+1c1fa 13 199 3562
+1c20d e 200 3562
+1c21b e 201 3562
+1c229 9 203 3562
+1c232 6 204 3562
+1c238 9 206 3562
+1c241 9 207 3562
+1c24a 9 208 3562
+1c253 9 209 3562
+1c25c 9 210 3562
+1c265 9 213 3562
+1c26e 4 214 3562
+1c272 8 217 3562
+1c27a 8 218 3562
+1c282 8 219 3562
+1c28a 10 220 3562
+1c29a 13 227 3562
+1c2ad 2 231 3562
+1c2af 6 232 3562
+1c2b5 a 233 3562
+1c2bf a 234 3562
+1c2c9 a 235 3562
+1c2d3 a 236 3562
+1c2dd 2 238 3562
+1c2df f 240 3562
+FUNC 1c2ee 29 0 ___mb_cur_max_func
+1c2ee 0 248 3562
+1c2ee 7 254 3562
+1c2f5 3 255 3562
+1c2f8 18 257 3562
+1c310 6 259 3562
+1c316 1 260 3562
+FUNC 1c317 16 4 ___mb_cur_max_l_func
+1c317 0 263 3562
+1c317 15 264 3562
+1c32c 1 265 3562
+FUNC 1c32d 26 0 ___lc_codepage_func
+1c32d 0 268 3562
+1c32d 7 274 3562
+1c334 3 275 3562
+1c337 18 277 3562
+1c34f 3 279 3562
+1c352 1 280 3562
+FUNC 1c353 26 0 ___lc_collate_cp_func
+1c353 0 284 3562
+1c353 7 290 3562
+1c35a 3 291 3562
+1c35d 18 293 3562
+1c375 3 295 3562
+1c378 1 296 3562
+FUNC 1c379 26 0 ___lc_handle_func
+1c379 0 300 3562
+1c379 7 306 3562
+1c380 3 307 3562
+1c383 18 309 3562
+1c39b 3 311 3562
+1c39e 1 312 3562
+FUNC 1c39f 3 4 __init_collate
+1c39f 0 41 3650
+1c39f 2 42 3650
+1c3a1 1 43 3650
+FUNC 1c3a2 fe 4 _Getdays_l
+1c3a2 9 111 516
+1c3ab d 115 516
+1c3b8 9 117 516
+1c3c1 9 119 516
+1c3ca 28 120 516
+1c3f2 b 121 516
+1c3fd c 123 516
+1c409 4 126 516
+1c40d 30 128 516
+1c43d 8 129 516
+1c445 31 131 516
+1c476 12 132 516
+1c488 3 134 516
+1c48b 13 137 516
+1c49e 2 138 516
+FUNC 1c4a0 9 0 _Getdays
+1c4a0 0 142 516
+1c4a0 8 143 516
+1c4a8 1 144 516
+FUNC 1c4a9 fe 4 _Getmonths_l
+1c4a9 9 150 516
+1c4b2 d 154 516
+1c4bf 16 156 516
+1c4d5 2b 159 516
+1c500 b 160 516
+1c50b 8 162 516
+1c513 a 163 516
+1c51d 2d 167 516
+1c54a 8 168 516
+1c552 2c 170 516
+1c57e 11 171 516
+1c58f 3 173 516
+1c592 13 176 516
+1c5a5 2 177 516
+FUNC 1c5a7 9 0 _Getmonths
+1c5a7 0 181 516
+1c5a7 8 182 516
+1c5af 1 183 516
+FUNC 1c5b0 355 4 _Gettnames_l
+1c5b0 9 189 516
+1c5b9 d 193 516
+1c5c6 9 195 516
+1c5cf 9 197 516
+1c5d8 28 198 516
+1c600 d 199 516
+1c60d 29 200 516
+1c636 18 201 516
+1c64e 11 202 516
+1c65f f 203 516
+1c66e f 204 516
+1c67d 7 205 516
+1c684 e 206 516
+1c692 8 208 516
+1c69a 12 212 516
+1c6ac 13 213 516
+1c6bf 6 214 516
+1c6c5 2a 215 516
+1c6ef 6 216 516
+1c6f5 d 217 516
+1c702 26 218 516
+1c728 1c 219 516
+1c744 18 221 516
+1c75c 6 222 516
+1c762 26 223 516
+1c788 a 224 516
+1c792 5 225 516
+1c797 2a 226 516
+1c7c1 18 227 516
+1c7d9 30 230 516
+1c809 a 231 516
+1c813 30 233 516
+1c843 a 234 516
+1c84d 30 236 516
+1c87d a 237 516
+1c887 30 239 516
+1c8b7 a 240 516
+1c8c1 30 242 516
+1c8f1 12 245 516
+1c903 2 246 516
+FUNC 1c905 9 0 _Gettnames
+1c905 0 250 516
+1c905 8 251 516
+1c90d 1 252 516
+FUNC 1c90e 20 0 _store_str
+1c90e 0 869 516
+1c90e f 871 516
+1c91d 7 872 516
+1c924 9 873 516
+1c92d 1 875 516
+FUNC 1c92e 36 0 _store_number
+1c92e 0 965 516
+1c92e 8 973 516
+1c936 c 976 516
+1c942 2 977 516
+1c944 b 978 516
+1c94f 2 981 516
+1c951 2 982 516
+1c953 1 983 516
+1c954 7 988 516
+1c95b 3 989 516
+1c95e 5 990 516
+1c963 1 991 516
+FUNC 1c964 79 4 _store_num
+1c964 8 909 516
+1c96c 2 910 516
+1c96e 8 912 516
+1c976 33 913 516
+1c9a9 2 914 516
+1c9ab 4 917 516
+1c9af 8 918 516
+1c9b7 b 919 516
+1c9c2 c 921 516
+1c9ce 5 923 516
+1c9d3 2 924 516
+1c9d5 2 926 516
+1c9d7 4 927 516
+1c9db 2 928 516
+FUNC 1c9dd 3e6 10 _expandtime
+1c9dd 5 548 516
+1c9e2 4f 558 516
+1ca31 16 659 516
+1ca47 5 662 516
+1ca4c 16 587 516
+1ca62 7 589 516
+1ca69 5 590 516
+1ca6e 16 571 516
+1ca84 7 573 516
+1ca8b 5 574 516
+1ca90 5 822 516
+1ca95 7 823 516
+1ca9c 5 824 516
+1caa1 16 667 516
+1cab7 10 668 516
+1cac7 2 669 516
+1cac9 5 672 516
+1cace 23 558 516
+1caf1 6 787 516
+1caf7 5 789 516
+1cafc 15 736 516
+1cb11 2 737 516
+1cb13 2 739 516
+1cb15 5 740 516
+1cb1a 15 722 516
+1cb2f 2 723 516
+1cb31 16 742 516
+1cb47 4 743 516
+1cb4b 2 744 516
+1cb4d 5 745 516
+1cb52 6 746 516
+1cb58 8 747 516
+1cb60 1 748 516
+1cb61 5 752 516
+1cb66 f 715 516
+1cb75 5 718 516
+1cb7a 3 696 516
+1cb7d 2 699 516
+1cb7f 1d 804 516
+1cb9c 6 806 516
+1cba2 d 808 516
+1cbaf 2 809 516
+1cbb1 37 558 516
+1cbe8 19 678 516
+1cc01 8 680 516
+1cc09 2 681 516
+1cc0b 15 650 516
+1cc20 13 652 516
+1cc33 5 653 516
+1cc38 1e 601 516
+1cc56 2 603 516
+1cc58 5 606 516
+1cc5d 2 607 516
+1cc5f 2 608 516
+1cc61 25 615 516
+1cc86 2 617 516
+1cc88 1 627 516
+1cc89 2 642 516
+1cc8b e 579 516
+1cc99 7 581 516
+1cca0 5 582 516
+1cca5 2d 562 516
+1ccd2 6 564 516
+1ccd8 5 565 516
+1ccdd e 687 516
+1cceb 3 689 516
+1ccee 5 690 516
+1ccf3 15 558 516
+1cd08 2 834 516
+1cd0a 5 814 516
+1cd0f 19 817 516
+1cd28 5 819 516
+1cd2d d 795 516
+1cd3a b 798 516
+1cd45 5 799 516
+1cd4a 11 762 516
+1cd5b 5 764 516
+1cd60 1 774 516
+1cd61 5 776 516
+1cd66 16 729 516
+1cd7c 6 731 516
+1cd82 5 732 516
+1cd87 16 704 516
+1cd9d 3 705 516
+1cda0 b 706 516
+1cdab 2 707 516
+1cdad e 708 516
+1cdbb 6 839 516
+1cdc1 2 840 516
+FUNC 1cdc3 45d 18 _store_winword
+1cdc3 10 1035 516
+1cdd3 5 1043 516
+1cdd8 a 1053 516
+1cde2 3 1043 516
+1cde5 6 1053 516
+1cdeb 2 1054 516
+1cded 6 1049 516
+1cdf3 2 1050 516
+1cdf5 6 1046 516
+1cdfb 10 1057 516
+1ce0b 4 1066 516
+1ce0f 8 1067 516
+1ce17 6 1069 516
+1ce1d d 1075 516
+1ce2a a 1076 516
+1ce34 8 1077 516
+1ce3c 4 1078 516
+1ce40 2a 1085 516
+1ce6a b 1087 516
+1ce75 31 1092 516
+1cea6 7 1093 516
+1cead 3 1097 516
+1ceb0 13 1100 516
+1cec3 10 1101 516
+1ced3 b 1102 516
+1cede b 1103 516
+1cee9 9 1106 516
+1cef2 3 1291 516
+1cef5 12 1292 516
+1cf07 11 1114 516
+1cf18 5 1117 516
+1cf1d b 1120 516
+1cf28 37 1125 516
+1cf5f 14 1274 516
+1cf73 c 1277 516
+1cf7f 8 1283 516
+1cf87 4 1284 516
+1cf8b 9 1286 516
+1cf94 c 1287 516
+1cfa0 5 1277 516
+1cfa5 e 1128 516
+1cfb3 7 1133 516
+1cfba 7 1132 516
+1cfc1 7 1130 516
+1cfc8 2 1131 516
+1cfca 5 1134 516
+1cfcf a 1156 516
+1cfd9 7 1158 516
+1cfe0 2 1159 516
+1cfe2 5 1160 516
+1cfe7 11 1175 516
+1cff8 5 1176 516
+1cffd 11 1177 516
+1d00e 6 1178 516
+1d014 2 1179 516
+1d016 5 1180 516
+1d01b b 1225 516
+1d026 13 1226 516
+1d039 4 1228 516
+1d03d 1a 1233 516
+1d057 9 1236 516
+1d060 8 1242 516
+1d068 4 1243 516
+1d06c 9 1246 516
+1d075 8 1247 516
+1d07d 5 1277 516
+1d082 1 1230 516
+1d083 5 1250 516
+1d088 12 1136 516
+1d09a 7 1141 516
+1d0a1 7 1140 516
+1d0a8 7 1138 516
+1d0af 2 1139 516
+1d0b1 5 1142 516
+1d0b6 29 1125 516
+1d0df e 1144 516
+1d0ed 7 1147 516
+1d0f4 2 1146 516
+1d0f6 5 1148 516
+1d0fb 7 1182 516
+1d102 b 1183 516
+1d10d 2 1184 516
+1d10f 6 1185 516
+1d115 12 1187 516
+1d127 17 1188 516
+1d13e c 1191 516
+1d14a 8 1197 516
+1d152 4 1198 516
+1d156 8 1201 516
+1d15e 2 1202 516
+1d160 5 1203 516
+1d165 9 1204 516
+1d16e 1a 1205 516
+1d188 9 1207 516
+1d191 8 1212 516
+1d199 4 1213 516
+1d19d 9 1215 516
+1d1a6 8 1216 516
+1d1ae 2 1220 516
+1d1b0 d 1168 516
+1d1bd 7 1170 516
+1d1c4 2 1171 516
+1d1c6 2 1172 516
+1d1c8 d 1162 516
+1d1d5 7 1164 516
+1d1dc 2 1165 516
+1d1de 2 1166 516
+1d1e0 d 1150 516
+1d1ed 7 1152 516
+1d1f4 2 1153 516
+1d1f6 1b 1268 516
+1d211 3 1272 516
+1d214 5 1273 516
+1d219 7 1194 516
+FUNC 1d220 1af 18 _Strftime_l
+1d220 6 356 516
+1d226 4 361 516
+1d22a 13 362 516
+1d23d 33 364 516
+1d270 33 365 516
+1d2a3 d 368 516
+1d2b0 10 375 516
+1d2c0 e 385 516
+1d2ce a 387 516
+1d2d8 1e 435 516
+1d2f6 4 438 516
+1d2fa a 446 516
+1d304 5 447 516
+1d309 b 452 516
+1d314 3 453 516
+1d317 2 454 516
+1d319 7 400 516
+1d320 1 405 516
+1d321 2 408 516
+1d323 5 409 516
+1d328 1 411 516
+1d329 1 412 516
+1d32a 1d 415 516
+1d347 1 428 516
+1d348 5 385 516
+1d34d 5 464 516
+1d352 5 469 516
+1d357 13 470 516
+1d36a 3 441 516
+1d36d f 478 516
+1d37c b 481 516
+1d387 2 483 516
+1d389 b 402 516
+1d394 2 403 516
+1d396 5 421 516
+1d39b 7 423 516
+1d3a2 2 464 516
+1d3a4 18 485 516
+1d3bc 11 488 516
+1d3cd 2 490 516
+FUNC 1d3cf 1e 14 _strftime_l
+1d3cf 3 291 516
+1d3d2 19 292 516
+1d3eb 2 293 516
+FUNC 1d3ed 1d 10 strftime
+1d3ed 0 300 516
+1d3ed 1c 301 516
+1d409 1 302 516
+FUNC 1d40a 1e 14 _Strftime
+1d40a 3 343 516
+1d40d 19 345 516
+1d426 2 346 516
+FUNC 1d428 26 0 localeconv
+1d428 0 69 3302
+1d428 5 75 3302
+1d42d 1b 78 3302
+1d448 5 79 3302
+1d44d 1 80 3302
+FUNC 1d450 46 8 strcspn
+1d450 4 191 924
+1d454 2 198 924
+1d456 1 199 924
+1d457 1 200 924
+1d458 1 201 924
+1d459 1 202 924
+1d45a 1 203 924
+1d45b 1 204 924
+1d45c 1 205 924
+1d45d 1 206 924
+1d45e 6 212 924
+1d464 2 216 924
+1d466 2 217 924
+1d468 2 218 924
+1d46a 3 219 924
+1d46d 4 220 924
+1d471 2 221 924
+1d473 3 227 924
+1d476 6 229 924
+1d47c 3 234 924
+1d47f 2 236 924
+1d481 2 237 924
+1d483 2 238 924
+1d485 3 239 924
+1d488 4 240 924
+1d48c 2 245 924
+1d48e 2 255 924
+1d490 3 257 924
+1d493 3 259 924
+FUNC 1d496 60 c TranslateName
+1d496 3 340 3849
+1d499 3 342 3849
+1d49c 3 343 3849
+1d49f b 346 3849
+1d4aa a 348 3849
+1d4b4 14 349 3849
+1d4c8 6 351 3849
+1d4ce a 352 3849
+1d4d8 2 353 3849
+1d4da 4 354 3849
+1d4de 2 355 3849
+1d4e0 3 356 3849
+1d4e3 7 346 3849
+1d4ea a 359 3849
+1d4f4 2 360 3849
+FUNC 1d4f6 14 0 GetLcidFromDefault
+1d4f6 0 761 3849
+1d4f6 7 762 3849
+1d4fd c 763 3849
+1d509 1 764 3849
+FUNC 1d50a 77 0 ProcessCodePage
+1d50a 13 784 3849
+1d51d 1a 787 3849
+1d537 11 795 3849
+1d548 8 799 3849
+1d550 2 801 3849
+1d552 18 791 3849
+1d56a 3 793 3849
+1d56d 7 805 3849
+1d574 d 806 3849
+FUNC 1d581 1e 4 TestDefaultCountry
+1d581 0 826 3849
+1d581 2 830 3849
+1d583 15 832 3849
+1d598 3 835 3849
+1d59b 1 836 3849
+1d59c 2 833 3849
+1d59e 1 836 3849
+FUNC 1d59f 32 0 LcidFromHexString
+1d59f 1 893 3849
+1d5a0 2 895 3849
+1d5a2 2 897 3849
+1d5a4 9 899 3849
+1d5ad 5 900 3849
+1d5b2 8 901 3849
+1d5ba 3 902 3849
+1d5bd 10 903 3849
+1d5cd 3 906 3849
+1d5d0 1 907 3849
+FUNC 1d5d1 1b 0 GetPrimaryLen
+1d5d1 0 926 3849
+1d5d1 2 927 3849
+1d5d3 3 930 3849
+1d5d6 12 931 3849
+1d5e8 1 933 3849
+1d5e9 2 935 3849
+1d5eb 1 938 3849
+FUNC 1d5ec 96 4 CountryEnumProc
+1d5ec 15 717 3849
+1d601 7 718 3849
+1d608 f 719 3849
+1d617 23 725 3849
+1d63a 3 728 3849
+1d63d 3 729 3849
+1d640 12 731 3849
+1d652 b 734 3849
+1d65d a 738 3849
+1d667 b 741 3849
+1d672 10 742 3849
+FUNC 1d682 72 8 TestDefaultLanguage
+1d682 11 858 3849
+1d693 22 864 3849
+1d6b5 4 865 3849
+1d6b9 d 867 3849
+1d6c6 1c 871 3849
+1d6e2 2 872 3849
+1d6e4 3 874 3849
+1d6e7 d 875 3849
+FUNC 1d6f4 1d0 4 LangCountryEnumProc
+1d6f4 16 435 3849
+1d70a 7 436 3849
+1d711 d 437 3849
+1d71e 27 444 3849
+1d745 4 447 3849
+1d749 8 448 3849
+1d751 16 450 3849
+1d767 1d 456 3849
+1d784 2 460 3849
+1d786 11 462 3849
+1d797 7 467 3849
+1d79e 5 468 3849
+1d7a3 6 472 3849
+1d7a9 1a 475 3849
+1d7c3 14 482 3849
+1d7d7 3 483 3849
+1d7da a 487 3849
+1d7e4 b 490 3849
+1d7ef 6 493 3849
+1d7f5 3 494 3849
+1d7f8 12 501 3849
+1d80a 1d 506 3849
+1d827 6 510 3849
+1d82d c 513 3849
+1d839 16 518 3849
+1d84f 8 522 3849
+1d857 14 528 3849
+1d86b 2 531 3849
+1d86d 2 540 3849
+1d86f 1b 550 3849
+1d88a f 553 3849
+1d899 7 557 3849
+1d8a0 5 558 3849
+1d8a5 3 559 3849
+1d8a8 b 566 3849
+1d8b3 11 567 3849
+FUNC 1d8c4 bf 4 LanguageEnumProc
+1d8c4 15 624 3849
+1d8d9 7 625 3849
+1d8e0 f 626 3849
+1d8ef 23 632 3849
+1d912 3 635 3849
+1d915 3 636 3849
+1d918 11 639 3849
+1d929 7 643 3849
+1d930 2 650 3849
+1d932 1d 651 3849
+1d94f f 654 3849
+1d95e a 658 3849
+1d968 b 662 3849
+1d973 10 663 3849
+FUNC 1d983 2c 0 GetLcidFromCountry
+1d983 0 686 3849
+1d983 10 687 3849
+1d993 11 689 3849
+1d9a4 6 693 3849
+1d9aa 4 694 3849
+1d9ae 1 695 3849
+FUNC 1d9af 65 0 GetLcidFromLangCountry
+1d9af 0 386 3849
+1d9af 7 388 3849
+1d9b6 1a 389 3849
+1d9d0 5 390 3849
+1d9d5 17 392 3849
+1d9ec 10 394 3849
+1d9fc 13 402 3849
+1da0f 4 403 3849
+1da13 1 404 3849
+FUNC 1da14 3c 0 GetLcidFromLanguage
+1da14 0 591 3849
+1da14 13 593 3849
+1da27 e 594 3849
+1da35 10 596 3849
+1da45 6 600 3849
+1da4b 4 601 3849
+1da4f 1 602 3849
+FUNC 1da50 1e3 c __get_qualified_locale
+1da50 4 205 3849
+1da54 5 208 3849
+1da59 12 212 3849
+1da6b 7 215 3849
+1da72 5 217 3849
+1da77 3 222 3849
+1da7a f 223 3849
+1da89 10 226 3849
+1da99 d 230 3849
+1daa6 a 232 3849
+1dab0 5 235 3849
+1dab5 2 237 3849
+1dab7 5 240 3849
+1dabc 5 243 3849
+1dac1 14 248 3849
+1dad5 a 250 3849
+1dadf 5 252 3849
+1dae4 2 254 3849
+1dae6 5 256 3849
+1daeb 2 261 3849
+1daed a 263 3849
+1daf7 28 266 3849
+1db1f 2 268 3849
+1db21 13 271 3849
+1db34 3 277 3849
+1db37 6 278 3849
+1db3d 17 281 3849
+1db54 32 285 3849
+1db86 d 289 3849
+1db93 6 290 3849
+1db99 8 293 3849
+1dba1 7 295 3849
+1dba8 8 296 3849
+1dbb0 4 297 3849
+1dbb4 8 301 3849
+1dbbc d 305 3849
+1dbc9 23 306 3849
+1dbec 2 307 3849
+1dbee f 308 3849
+1dbfd 2 309 3849
+1dbff 12 311 3849
+1dc11 2 312 3849
+1dc13 14 313 3849
+1dc27 5 315 3849
+1dc2c 6 286 3849
+1dc32 1 316 3849
+FUNC 1dc33 12 0 cmpResult
+FUNC 1dc45 18 0 cmpBYTE
+FUNC 1dc5d 40 0 cmpWORD
+FUNC 1dc9d 78 0 cmpDWORD
+FUNC 1dd15 1490 0 unaligned_memcmp
+FUNC 1f1a5 1680 c memcmp
+FUNC 20825 be c strncmp
+20825 4 42 876
+20829 5 43 876
+2082e 7 45 876
+20835 7 46 876
+2083c 6 48 876
+20842 d 51 876
+2084f 11 56 876
+20860 c 61 876
+2086c c 66 876
+20878 15 71 876
+2088d 2 81 876
+2088f a 73 876
+20899 a 68 876
+208a3 a 63 876
+208ad 10 58 876
+208bd 2 79 876
+208bf a 81 876
+208c9 1 85 876
+208ca 4 86 876
+208ce 5 79 876
+208d3 4 89 876
+208d7 2 90 876
+208d9 a 83 876
+FUNC 208f0 40 8 strpbrk
+208f0 4 191 869
+208f4 2 198 869
+208f6 1 199 869
+208f7 1 200 869
+208f8 1 201 869
+208f9 1 202 869
+208fa 1 203 869
+208fb 1 204 869
+208fc 1 205 869
+208fd 1 206 869
+208fe 6 212 869
+20904 2 216 869
+20906 2 217 869
+20908 2 218 869
+2090a 3 219 869
+2090d 4 220 869
+20911 2 221 869
+20913 5 227 869
+20918 2 236 869
+2091a 2 237 869
+2091c 2 238 869
+2091e 3 239 869
+20921 4 240 869
+20925 2 247 869
+20927 3 248 869
+2092a 3 257 869
+2092d 3 259 869
+FUNC 20930 82 c _iswctype_l
+20930 6 66 6445
+20936 8 69 6445
+2093e 6 70 6445
+20944 8 71 6445
+2094c 18 72 6445
+20964 2 73 6445
+20966 b 75 6445
+20971 25 85 6445
+20996 3 86 6445
+20999 d 87 6445
+209a6 a 89 6445
+209b0 2 90 6445
+FUNC 209b2 6e 8 iswctype
+209b2 4 96 6445
+209b6 8 97 6445
+209be 2 99 6445
+209c0 2 122 6445
+209c2 8 101 6445
+209ca 14 103 6445
+209de 2 122 6445
+209e0 9 106 6445
+209e9 25 117 6445
+20a0e 10 121 6445
+20a1e 2 122 6445
+FUNC 20a20 5 8 is_wctype
+20a20 0 148 6445
+20a20 5 149 6445
+FUNC 20a25 22b 14 strtoxl
+20a25 8 80 6309
+20a2d b 86 6309
+20a38 3 89 6309
+20a3b b 92 6309
+20a46 30 94 6309
+20a76 11 95 6309
+20a87 c 100 6309
+20a93 34 101 6309
+20ac7 5 102 6309
+20acc 5 104 6309
+20ad1 4 105 6309
+20ad5 2 106 6309
+20ad7 5 108 6309
+20adc 3 109 6309
+20adf 1d 111 6309
+20afc 4 118 6309
+20b00 5 121 6309
+20b05 9 122 6309
+20b0e a 123 6309
+20b18 9 126 6309
+20b21 7 124 6309
+20b28 2 129 6309
+20b2a 5 140 6309
+20b2f f 142 6309
+20b3e 1 143 6309
+20b3f 9 144 6309
+20b48 8 149 6309
+20b50 c 154 6309
+20b5c 8 155 6309
+20b64 7 156 6309
+20b6b 13 157 6309
+20b7e 5 160 6309
+20b83 4 164 6309
+20b87 b 171 6309
+20b92 4 177 6309
+20b96 6 178 6309
+20b9c 8 190 6309
+20ba4 6 193 6309
+20baa 3 195 6309
+20bad 4 196 6309
+20bb1 2 198 6309
+20bb3 c 173 6309
+20bbf 3 185 6309
+20bc2 2 186 6309
+20bc4 24 201 6309
+20be8 5 204 6309
+20bed c 205 6309
+20bf9 6 206 6309
+20bff 10 207 6309
+20c0f 7 213 6309
+20c16 2 215 6309
+20c18 6 217 6309
+20c1e 3 219 6309
+20c21 12 221 6309
+20c33 7 113 6309
+20c3a 2 115 6309
+20c3c 12 116 6309
+20c4e 2 222 6309
+FUNC 20c50 29 c strtol
+20c50 3 229 6309
+20c53 8 230 6309
+20c5b 13 232 6309
+20c6e 9 236 6309
+20c77 2 238 6309
+FUNC 20c79 1b 10 _strtol_l
+20c79 0 246 6309
+20c79 1a 247 6309
+20c93 1 248 6309
+FUNC 20c94 2a c strtoul
+20c94 3 255 6309
+20c97 7 256 6309
+20c9e 14 258 6309
+20cb2 a 262 6309
+20cbc 2 264 6309
+FUNC 20cbe 1b 10 _strtoul_l
+20cbe 0 272 6309
+20cbe 1a 273 6309
+20cd8 1 274 6309
+FUNC 20cd9 1f 0 __initconin
+20cd9 0 58 5008
+20cd9 1e 65 5008
+20cf7 1 67 5008
+FUNC 20cf8 1f 0 __initconout
+20cf8 0 90 5008
+20cf8 1e 97 5008
+20d16 1 98 5008
+FUNC 20d17 2d 0 __termcon
+20d17 0 120 5008
+20d17 16 121 5008
+20d2d 3 122 5008
+20d30 f 125 5008
+20d3f 4 126 5008
+20d43 1 128 5008
+FUNC 20d44 94 4 _close_nolock
+20d44 1 72 5094
+20d45 54 93 5094
+20d99 a 99 5094
+20da3 2 96 5094
+20da5 6 101 5094
+20dab b 103 5094
+20db6 11 105 5094
+20dc7 7 107 5094
+20dce 5 108 5094
+20dd3 4 111 5094
+20dd7 1 112 5094
+FUNC 20dd8 cd 4 _close
+20dd8 c 42 5094
+20de4 23 46 5094
+20e07 2f 47 5094
+20e36 20 48 5094
+20e56 7 50 5094
+20e5d 3 52 5094
+20e60 9 53 5094
+20e69 c 54 5094
+20e75 2 55 5094
+20e77 b 56 5094
+20e82 4 57 5094
+20e86 c 61 5094
+20e92 3 65 5094
+20e95 6 66 5094
+20e9b a 62 5094
+FUNC 20ea5 2c 4 _freebuf
+20ea5 1 47 1927
+20ea6 f 50 1927
+20eb5 8 52 1927
+20ebd 7 54 1927
+20ec4 8 55 1927
+20ecc 4 56 1927
+20ed0 1 58 1927
+FUNC 20ed1 2a 0 _purecall
+20ed1 0 43 3119
+20ed1 b 44 3119
+20edc 5 45 3119
+20ee1 2 47 3119
+20ee3 7 54 3119
+20eea c 56 3119
+20ef6 5 57 3119
+FUNC 20efb 22 4 _set_purecall_handler
+20efb 1 82 3119
+20efc b 85 3119
+20f07 12 86 3119
+20f19 3 88 3119
+20f1c 1 89 3119
+FUNC 20f1d d 0 _get_purecall_handler
+20f1d 0 92 3119
+20f1d c 93 3119
+20f29 1 94 3119
+FUNC 20f30 34 0 _allmul
+20f30 0 47 5116
+20f30 4 62 5116
+20f34 4 63 5116
+20f38 2 64 5116
+20f3a 4 65 5116
+20f3e 2 66 5116
+20f40 4 68 5116
+20f44 2 69 5116
+20f46 3 71 5116
+20f49 1 74 5116
+20f4a 2 81 5116
+20f4c 2 82 5116
+20f4e 4 84 5116
+20f52 4 85 5116
+20f56 2 86 5116
+20f58 4 88 5116
+20f5c 2 89 5116
+20f5e 2 90 5116
+20f60 1 92 5116
+20f61 3 94 5116
+FUNC 20f64 11 4 atol
+20f64 0 55 6631
+20f64 10 56 6631
+20f74 1 57 6631
+FUNC 20f75 15 8 _atol_l
+20f75 0 64 6631
+20f75 14 65 6631
+20f89 1 66 6631
+FUNC 20f8a 5 4 atoi
+20f8a 0 99 6631
+20f8a 5 100 6631
+FUNC 20f8f 5 8 _atoi_l
+20f8f 0 107 6631
+20f8f 5 108 6631
+FUNC 20f94 11 4 _atoi64
+20f94 0 143 6631
+20f94 10 144 6631
+20fa4 1 145 6631
+FUNC 20fa5 15 8 _atoi64_l
+20fa5 0 151 6631
+20fa5 14 152 6631
+20fb9 1 153 6631
+FUNC 20fba 50 0 has_osfxsr_set
+FUNC 2100a 60 0 _get_sse2_info
+FUNC 2106a d 0 __sse2_available_init
+FUNC 21077 170 8 _flswbuf
+21077 5 93 1980
+2107c c 104 1980
+21088 8 106 1980
+21090 b 107 1980
+2109b 4 108 1980
+2109f a 109 1980
+210a9 4 110 1980
+210ad b 111 1980
+210b8 2 113 1980
+210ba 4 124 1980
+210be 4 125 1980
+210c2 8 126 1980
+210ca 3 127 1980
+210cd 8 128 1980
+210d5 3 137 1980
+210d8 11 138 1980
+210e9 9 141 1980
+210f2 25 151 1980
+21117 7 153 1980
+2111e d 158 1980
+2112b 5 162 1980
+21130 5 163 1980
+21135 7 164 1980
+2113c 7 166 1980
+21143 10 167 1980
+21153 2 168 1980
+21155 6 131 1980
+2115b 5 132 1980
+21160 2e 169 1980
+2118e 13 171 1980
+211a1 2 174 1980
+211a3 9 181 1980
+211ac 2 186 1980
+211ae 1d 195 1980
+211cb 5 201 1980
+211d0 4 202 1980
+211d4 7 203 1980
+211db a 209 1980
+211e5 2 212 1980
+FUNC 211e7 182 4 _wchartodigit
+211e7 0 32 6613
+211e7 1b 41 6613
+21202 1 73 6613
+21203 e 42 6613
+21211 19 44 6613
+2122a 1 73 6613
+2122b 14 45 6613
+2123f 14 46 6613
+21253 14 47 6613
+21267 14 48 6613
+2127b 14 49 6613
+2128f 14 50 6613
+212a3 18 51 6613
+212bb 18 52 6613
+212d3 18 53 6613
+212eb 14 54 6613
+212ff 14 55 6613
+21313 12 56 6613
+21325 14 57 6613
+21339 14 58 6613
+2134d c 59 6613
+21359 2 62 6613
+2135b 4 67 6613
+2135f 6 69 6613
+21365 3 71 6613
+21368 1 73 6613
+FUNC 21369 b6 c _isctype_l
+21369 7 114 6399
+21370 b 118 6399
+2137b d 121 6399
+21388 f 122 6399
+21397 1f 124 6399
+213b6 3 126 6399
+213b9 d 129 6399
+213c6 2 130 6399
+213c8 a 133 6399
+213d2 26 144 6399
+213f8 10 146 6399
+21408 15 149 6399
+2141d 2 150 6399
+FUNC 2141f 2f 8 _isctype
+2141f 0 156 6399
+2141f 9 157 6399
+21428 12 159 6399
+2143a 1 165 6399
+2143b 12 163 6399
+2144d 1 165 6399
+FUNC 21450 2c 0 _alloca_probe_16
+21450 0 44 2632
+21450 1 46 2632
+21451 4 47 2632
+21455 2 48 2632
+21457 3 49 2632
+2145a 2 50 2632
+2145c 2 51 2632
+2145e 2 52 2632
+21460 1 53 2632
+21461 5 54 2632
+21466 1 59 2632
+21467 4 60 2632
+2146b 2 61 2632
+2146d 3 62 2632
+21470 2 63 2632
+21472 2 64 2632
+21474 2 65 2632
+21476 1 66 2632
+21477 5 67 2632
+PUBLIC 21466 0 _alloca_probe_8
+FUNC 2147c 47 4 __ansicp
+2147c 10 39 2934
+2148c 1c 44 2934
+214a8 3 45 2934
+214ab 2 46 2934
+214ad a 47 2934
+214b7 c 49 2934
+FUNC 214c3 1b2 18 __convertcp
+214c3 16 79 2934
+214d9 10 83 2934
+214e9 18 85 2934
+21501 17 90 2934
+21518 13 92 2934
+2152b 6 93 2934
+21531 d 99 2934
+2153e 2 101 2934
+21540 c 103 2934
+2154c 2a 115 2934
+21576 15 111 2934
+2158b 7 112 2934
+21592 1c 115 2934
+215ae 3 116 2934
+215b1 2 117 2934
+215b3 10 119 2934
+215c3 15 127 2934
+215d8 7 129 2934
+215df 18 138 2934
+215f7 3 139 2934
+215fa 2 140 2934
+215fc 1f 149 2934
+2161b 11 151 2934
+2162c 12 160 2934
+2163e 9 162 2934
+21647 3 163 2934
+2164a 2 164 2934
+2164c 6 165 2934
+21652 5 166 2934
+21657 9 174 2934
+21660 3 177 2934
+21663 12 178 2934
+FUNC 21675 34 4 _get_daylight
+21675 0 35 487
+21675 27 36 487
+2169c 1 41 487
+2169d 8 39 487
+216a5 3 40 487
+216a8 1 41 487
+FUNC 216a9 34 4 _get_dstbias
+216a9 0 44 487
+216a9 27 45 487
+216d0 1 50 487
+216d1 8 48 487
+216d9 3 49 487
+216dc 1 50 487
+FUNC 216dd 34 4 _get_timezone
+216dd 0 53 487
+216dd 27 54 487
+21704 1 59 487
+21705 8 57 487
+2170d 3 58 487
+21710 1 59 487
+FUNC 21711 a2 10 _get_tzname
+21711 3 62 487
+21714 10 63 487
+21724 4 64 487
+21728 3 66 487
+2172b 7 68 487
+21732 27 69 487
+21759 20 63 487
+21779 f 72 487
+21788 8 73 487
+21790 4 76 487
+21794 5 78 487
+21799 5 80 487
+2179e 13 82 487
+217b1 2 83 487
+FUNC 217b3 6 0 __daylight
+217b3 0 118 487
+217b3 5 119 487
+217b8 1 120 487
+FUNC 217b9 6 0 __dstbias
+217b9 0 123 487
+217b9 5 124 487
+217be 1 125 487
+FUNC 217bf 6 0 __timezone
+217bf 0 128 487
+217bf 5 129 487
+217c4 1 130 487
+FUNC 217c5 6 0 __tzname
+217c5 0 133 487
+217c5 5 134 487
+217ca 1 135 487
+FUNC 217cb c 4 _set_daylight
+217cb c 189 418
+FUNC 217d7 c 4 _set_dstbias
+217d7 c 190 418
+FUNC 217e3 c 4 _set_timezone
+217e3 c 191 418
+FUNC 217ef 349 0 _tzset_nolock
+217ef c 124 440
+217fb 5 127 440
+21800 3 129 440
+21803 3 130 440
+21806 3 131 440
+21809 3 132 440
+2180c 3 133 440
+2180f 8 135 440
+21817 3 136 440
+2181a 8 139 440
+21822 1b 142 440
+2183d 1b 143 440
+21858 1b 144 440
+21873 8 149 440
+2187b 6 154 440
+21881 f 160 440
+21890 18 165 440
+218a8 14 260 440
+218bc b 268 440
+218c7 4 274 440
+218cb 7 275 440
+218d2 16 277 440
+218e8 6 281 440
+218ee 32 283 440
+21920 9 174 440
+21929 7 175 440
+21930 6 176 440
+21936 13 179 440
+21949 9 183 440
+21952 b 188 440
+2195d 9 190 440
+21966 e 191 440
+21974 12 199 440
+21986 3 201 440
+21989 c 203 440
+21995 2 205 440
+21997 3 206 440
+2199a 3 214 440
+2199d 27 234 440
+219c4 8 235 440
+219cc 2 236 440
+219ce 7 237 440
+219d5 23 247 440
+219f8 9 248 440
+21a01 2 249 440
+21a03 8 250 440
+21a0b 7 256 440
+21a12 a 288 440
+21a1c a 289 440
+21a26 a 290 440
+21a30 c 292 440
+21a3c 9 296 440
+21a45 23 301 440
+21a68 8 310 440
+21a70 7 311 440
+21a77 1 312 440
+21a78 10 318 440
+21a88 11 320 440
+21a99 5 292 440
+21a9e 9 293 440
+21aa7 5 325 440
+21aac e 329 440
+21aba d 330 440
+21ac7 5 335 440
+21acc b 339 440
+21ad7 d 340 440
+21ae4 5 344 440
+21ae9 3 345 440
+21aec 6 350 440
+21af2 4 351 440
+21af6 21 352 440
+21b17 2 354 440
+21b19 5 355 440
+21b1e a 357 440
+21b28 a 358 440
+21b32 6 360 440
+FUNC 21b38 1f5 24 cvtdate
+21b38 6 409 440
+21b3e 4 412 440
+21b42 c 414 440
+21b4e 52 424 440
+21ba0 4c 430 440
+21bec 14 436 440
+21c00 2 437 440
+21c02 2 438 440
+21c04 46 447 440
+21c4a 3 449 440
+21c4d 2 452 440
+21c4f 3c 457 440
+21c8b 3 459 440
+21c8e 27 467 440
+21cb5 6 472 440
+21cbb 2 474 440
+21cbd 29 485 440
+21ce6 11 486 440
+21cf7 a 487 440
+21d01 8 488 440
+21d09 d 490 440
+21d16 6 491 440
+21d1c 6 492 440
+21d22 9 499 440
+21d2b 2 503 440
+FUNC 21d2d 1ae 0 _isindst_nolock
+21d2d 5 554 440
+21d32 20 558 440
+21d52 5 560 440
+21d57 7 561 440
+21d5e 1b 568 440
+21d79 c 569 440
+21d85 7 573 440
+21d8c 34 584 440
+21dc0 2 585 440
+21dc2 19 596 440
+21ddb 40 611 440
+21e1b 2 612 440
+21e1d 1e 623 440
+21e3b 2 626 440
+21e3d 14 641 440
+21e51 1a 653 440
+21e6b d 660 440
+21e78 d 664 440
+21e85 8 666 440
+21e8d 4 674 440
+21e91 2 697 440
+21e93 8 673 440
+21e9b 8 675 440
+21ea3 4 676 440
+21ea7 14 679 440
+21ebb 4 681 440
+21ebf b 682 440
+21eca 2 685 440
+21ecc d 691 440
+21ed9 2 694 440
+FUNC 21edb 4f 0 __tzset
+21edb c 85 440
+21ee7 a 88 440
+21ef1 8 90 440
+21ef9 3 91 440
+21efc 8 93 440
+21f04 5 94 440
+21f09 6 95 440
+21f0f c 98 440
+21f1b 6 103 440
+21f21 9 99 440
+FUNC 21f2a 38 0 _tzset
+21f2a c 109 440
+21f36 8 110 440
+21f3e 4 111 440
+21f42 5 113 440
+21f47 c 115 440
+21f53 6 118 440
+21f59 9 116 440
+FUNC 21f62 41 4 _isindst
+21f62 c 538 440
+21f6e 8 541 440
+21f76 4 542 440
+21f7a b 543 440
+21f85 c 544 440
+21f91 3 548 440
+21f94 6 549 440
+21f9a 9 545 440
+FUNC 21fa3 35 8 __ascii_stricmp
+21fa3 a 75 693
+21fad c 80 693
+21fb9 3 81 693
+21fbc c 82 693
+21fc8 3 83 693
+21fcb 9 85 693
+21fd4 3 87 693
+21fd7 1 88 693
+FUNC 21fd8 d3 c _stricmp_l
+21fd8 7 47 693
+21fdf b 49 693
+21fea 36 52 693
+22020 32 53 693
+22052 8 55 693
+2205a e 57 693
+22068 15 63 693
+2207d 11 64 693
+2208e 8 65 693
+22096 13 68 693
+220a9 2 69 693
+FUNC 220ab 50 8 _stricmp
+220ab 4 94 693
+220af a 95 693
+220b9 24 98 693
+220dd 6 99 693
+220e3 1 107 693
+220e4 5 101 693
+220e9 10 105 693
+220f9 2 107 693
+FUNC 220fb f0 10 _strnicmp_l
+220fb 7 51 650
+22102 d 54 650
+2210f b 56 650
+2211a 33 59 650
+2214d 7 60 650
+22154 32 61 650
+22186 8 63 650
+2218e 1d 65 650
+221ab 15 71 650
+221c0 11 72 650
+221d1 d 74 650
+221de 6 76 650
+221e4 5 79 650
+221e9 2 80 650
+FUNC 221eb 5c c _strnicmp
+221eb 4 125 650
+221ef a 127 650
+221f9 24 130 650
+2221d 5 131 650
+22222 a 132 650
+2222c 1 141 650
+2222d 5 134 650
+22232 13 138 650
+22245 2 141 650
+FUNC 22247 db c xtoa_s
+22247 8 93 6581
+2224f 24 102 6581
+22273 24 103 6581
+22297 19 105 6581
+222b0 b 106 6581
+222bb a 112 6581
+222c5 6 114 6581
+222cb 7 116 6581
+222d2 2 118 6581
+222d4 2 121 6581
+222d6 5 124 6581
+222db 5 128 6581
+222e0 3 129 6581
+222e3 2 130 6581
+222e5 6 131 6581
+222eb 3 135 6581
+222ee e 136 6581
+222fc 8 139 6581
+22304 2 141 6581
+22306 2 142 6581
+22308 3 148 6581
+2230b 6 152 6581
+22311 3 154 6581
+22314 1 155 6581
+22315 4 156 6581
+22319 5 158 6581
+2231e 4 160 6581
+FUNC 22322 28 10 _itoa_s
+22322 3 172 6581
+22325 d 175 6581
+22332 4 176 6581
+22336 2 177 6581
+22338 10 178 6581
+22348 2 181 6581
+FUNC 2234a 25 10 _ltoa_s
+2234a 3 189 6581
+2234d 20 190 6581
+2236d 2 191 6581
+FUNC 2236f 18 10 _ultoa_s
+2236f 0 199 6581
+2236f 17 200 6581
+22386 1 201 6581
+FUNC 22387 f6 14 x64toa_s
+22387 7 309 6581
+2238e 25 318 6581
+223b3 5 319 6581
+223b8 19 321 6581
+223d1 b 322 6581
+223dc 3 327 6581
+223df 20 333 6581
+223ff 3 336 6581
+22402 1e 352 6581
+22420 3 344 6581
+22423 2 345 6581
+22425 5 346 6581
+2242a 5 351 6581
+2242f 13 352 6581
+22442 5 355 6581
+22447 3 357 6581
+2244a 13 358 6581
+2245d 4 364 6581
+22461 9 368 6581
+2246a 3 370 6581
+2246d 1 371 6581
+2246e 7 372 6581
+22475 4 375 6581
+22479 4 377 6581
+FUNC 2247d 33 14 _i64toa_s
+2247d 3 390 6581
+22480 2e 391 6581
+224ae 2 392 6581
+FUNC 224b0 1d 14 _ui64toa_s
+224b0 4 400 6581
+224b4 17 401 6581
+224cb 2 402 6581
+FUNC 224cd 224 1c __crtGetStringTypeW_stat
+224cd 10 64 2828
+224dd 9 72 2828
+224e6 7 73 2828
+224ed 14 75 2828
+22501 11 79 2828
+22512 8 80 2828
+2251a b 82 2828
+22525 f 83 2828
+22534 4 88 2828
+22538 13 90 2828
+2254b 7 95 2828
+22552 2 199 2828
+22554 8 119 2828
+2255c b 120 2828
+22567 5 121 2828
+2256c b 122 2828
+22577 e 128 2828
+22585 5 130 2828
+2258a 3 131 2828
+2258d 1d 142 2828
+225aa 6 143 2828
+225b0 40 146 2828
+225f0 3 147 2828
+225f3 6 148 2828
+225f9 d 150 2828
+22606 1a 160 2828
+22620 4d 164 2828
+2266d 4 165 2828
+22671 5 170 2828
+22676 b 171 2828
+22681 3 174 2828
+22684 23 178 2828
+226a7 12 186 2828
+226b9 f 189 2828
+226c8 4 187 2828
+226cc 7 191 2828
+226d3 8 194 2828
+226db 4 196 2828
+226df 12 200 2828
+FUNC 226f1 3e 1c __crtGetStringTypeW
+226f1 6 211 2828
+226f7 b 212 2828
+22702 2b 222 2828
+2272d 2 223 2828
+FUNC 2272f 294 14 strtoxq
+2272f 8 80 6264
+22737 b 86 6264
+22742 3 89 6264
+22745 b 92 6264
+22750 31 94 6264
+22781 12 95 6264
+22793 c 100 6264
+2279f 37 102 6264
+227d6 2 103 6264
+227d8 9 105 6264
+227e1 4 106 6264
+227e5 2 107 6264
+227e7 6 109 6264
+227ed 9 110 6264
+227f6 8 112 6264
+227fe 6 115 6264
+22804 9 116 6264
+2280d a 117 6264
+22817 9 120 6264
+22820 3 118 6264
+22823 5 123 6264
+22828 10 125 6264
+22838 1 126 6264
+22839 9 127 6264
+22842 26 132 6264
+22868 e 137 6264
+22876 8 138 6264
+2287e 6 139 6264
+22884 11 140 6264
+22895 5 143 6264
+2289a 31 154 6264
+228cb 4 160 6264
+228cf 6 161 6264
+228d5 a 173 6264
+228df 7 176 6264
+228e6 6 178 6264
+228ec 6 179 6264
+228f2 5 181 6264
+228f7 19 156 6264
+22910 b 168 6264
+2291b 5 169 6264
+22920 35 184 6264
+22955 5 187 6264
+2295a c 188 6264
+22966 a 189 6264
+22970 6 190 6264
+22976 7 191 6264
+2297d 2 192 6264
+2297f 7 193 6264
+22986 8 195 6264
+2298e 5 197 6264
+22993 6 199 6264
+22999 13 201 6264
+229ac 15 203 6264
+229c1 2 204 6264
+FUNC 229c3 29 c _strtoi64
+229c3 3 211 6264
+229c6 8 212 6264
+229ce 13 214 6264
+229e1 9 218 6264
+229ea 2 220 6264
+FUNC 229ec 1b 10 _strtoi64_l
+229ec 0 227 6264
+229ec 1a 228 6264
+22a06 1 229 6264
+FUNC 22a07 2a c _strtoui64
+22a07 3 236 6264
+22a0a 7 237 6264
+22a11 14 239 6264
+22a25 a 243 6264
+22a2f 2 245 6264
+FUNC 22a31 1b 10 _strtoui64_l
+22a31 0 253 6264
+22a31 1a 254 6264
+22a4b 1 255 6264
+FUNC 22a50 2b 0 _chkstk
+22a50 0 65 2634
+22a50 1 69 2634
+22a51 4 73 2634
+22a55 2 74 2634
+22a57 2 79 2634
+22a59 2 80 2634
+22a5b 2 81 2634
+22a5d 2 83 2634
+22a5f 5 84 2634
+22a64 2 87 2634
+22a66 2 88 2634
+22a68 2 89 2634
+22a6a 1 90 2634
+22a6b 1 91 2634
+22a6c 2 92 2634
+22a6e 3 93 2634
+22a71 1 94 2634
+22a72 5 98 2634
+22a77 2 99 2634
+22a79 2 100 2634
+FUNC 22a7b 81 4 _getenv_helper_nolock
+22a7b 0 95 3904
+22a7b 10 103 3904
+22a8b 3 104 3904
+22a8e 1 169 3904
+22a8f e 128 3904
+22a9d 7 131 3904
+22aa4 2 132 3904
+22aa6 6 135 3904
+22aac c 140 3904
+22ab8 9 142 3904
+22ac1 2 150 3904
+22ac3 22 154 3904
+22ae5 3 164 3904
+22ae8 6 150 3904
+22aee 5 168 3904
+22af3 9 169 3904
+FUNC 22afc 93 c _getenv_s_helper
+22afc 7 220 3904
+22b03 21 224 3904
+22b24 15 226 3904
+22b39 4 227 3904
+22b3d 3 229 3904
+22b40 a 233 3904
+22b4a 3 234 3904
+22b4d 2 236 3904
+22b4f 7 239 3904
+22b56 6 240 3904
+22b5c 2 243 3904
+22b5e 5 246 3904
+22b63 5 251 3904
+22b68 20 254 3904
+22b88 5 256 3904
+22b8d 2 257 3904
+FUNC 22b8f a2 8 _dupenv_s_helper
+22b8f 6 339 3904
+22b95 21 344 3904
+22bb6 9 346 3904
+22bbf 2 348 3904
+22bc1 5 350 3904
+22bc6 8 352 3904
+22bce 6 353 3904
+22bd4 2 355 3904
+22bd6 9 358 3904
+22bdf b 362 3904
+22bea 6 364 3904
+22bf0 b 366 3904
+22bfb 9 367 3904
+22c04 1e 370 3904
+22c22 7 371 3904
+22c29 2 373 3904
+22c2b 4 375 3904
+22c2f 2 376 3904
+FUNC 22c31 83 4 getenv
+22c31 c 75 3904
+22c3d 2a 78 3904
+22c67 18 79 3904
+22c7f 8 81 3904
+22c87 3 82 3904
+22c8a c 83 3904
+22c96 c 85 3904
+22ca2 3 89 3904
+22ca5 6 90 3904
+22cab 9 86 3904
+FUNC 22cb4 d8 10 getenv_s
+22cb4 c 198 3904
+22cc0 8 201 3904
+22cc8 5 202 3904
+22ccd a1 203 3904
+22d6e c 205 3904
+22d7a 3 209 3904
+22d7d 6 210 3904
+22d83 9 206 3904
+FUNC 22d8c e6 c _dupenv_s
+22d8c c 303 3904
+22d98 8 306 3904
+22da0 5 307 3904
+22da5 af 311 3904
+22e54 c 314 3904
+22e60 3 318 3904
+22e63 6 319 3904
+22e69 9 315 3904
+FUNC 22e72 8 4 _tolower
+22e72 0 48 6218
+22e72 7 49 6218
+22e79 1 50 6218
+FUNC 22e7a 117 8 _tolower_l
+22e7a 8 70 6218
+22e82 b 74 6218
+22e8d c 77 6218
+22e99 31 79 6218
+22eca f 80 6218
+22ed9 14 82 6218
+22eed 2b 86 6218
+22f18 3 88 6218
+22f1b d 91 6218
+22f28 2 92 6218
+22f2a b 94 6218
+22f35 a 97 6218
+22f3f 25 110 6218
+22f64 6 112 6218
+22f6a 5 116 6218
+22f6f 6 117 6218
+22f75 1a 119 6218
+22f8f 2 120 6218
+FUNC 22f91 27 4 tolower
+22f91 0 143 6218
+22f91 9 145 6218
+22f9a f 147 6218
+22fa9 1 153 6218
+22faa d 151 6218
+22fb7 1 153 6218
+FUNC 22fc0 61 c __ascii_strnicmp
+22fc0 6 69 871
+22fc6 3 75 871
+22fc9 2 76 871
+22fcb 2 77 871
+22fcd 3 79 871
+22fd0 3 80 871
+22fd3 2 82 871
+22fd5 2 83 871
+22fd7 5 84 871
+22fdc 2 89 871
+22fde 2 91 871
+22fe0 2 93 871
+22fe2 2 95 871
+22fe4 2 97 871
+22fe6 2 98 871
+22fe8 3 100 871
+22feb 3 101 871
+22fee 2 103 871
+22ff0 2 104 871
+22ff2 2 106 871
+22ff4 2 107 871
+22ff6 2 109 871
+22ff8 2 112 871
+22ffa 2 113 871
+22ffc 2 115 871
+22ffe 2 116 871
+23000 2 118 871
+23002 2 121 871
+23004 2 122 871
+23006 3 124 871
+23009 2 125 871
+2300b 2 128 871
+2300d 2 129 871
+2300f 2 130 871
+23011 5 133 871
+23016 2 134 871
+23018 2 135 871
+2301a 2 138 871
+2301c 5 140 871
+FUNC 23021 ec 10 _mbsnbicoll_l
+23021 7 53 4518
+23028 b 55 4518
+23033 9 57 4518
+2303c 13 58 4518
+2304f 33 61 4518
+23082 6 62 4518
+23088 23 63 4518
+230ab 8 65 4518
+230b3 14 66 4518
+230c7 23 74 4518
+230ea 10 75 4518
+230fa 11 77 4518
+2310b 2 79 4518
+FUNC 2310d 17 c _mbsnbicoll
+2310d 0 85 4518
+2310d 16 86 4518
+23123 1 87 4518
+FUNC 23124 95 0 __wtomb_environ
+23124 7 43 2699
+2312b 3 44 2699
+2312e 9 45 2699
+23137 c 52 2699
+23143 12 57 2699
+23155 11 61 2699
+23166 12 65 2699
+23178 10 72 2699
+23188 5 74 2699
+2318d 9 76 2699
+23196 3 77 2699
+23199 9 81 2699
+231a2 5 84 2699
+231a7 2 85 2699
+231a9 5 58 2699
+231ae 9 67 2699
+231b7 2 68 2699
+FUNC 231b9 1a 8 strnlen
+231b9 0 38 864
+231b9 19 45 864
+231d2 1 49 864
+FUNC 231d3 1a 4 strncnt
+231d3 0 50 4345
+231d3 6 51 4345
+231d9 6 54 4345
+231df 1 55 4345
+231e0 5 54 4345
+231e5 7 57 4345
+231ec 1 58 4345
+FUNC 231ed 389 18 __crtCompareStringA_stat
+231ed 10 96 4345
+231fd 31 280 4345
+2322e c 107 4345
+2323a b 109 4345
+23245 a 110 4345
+2324f 5 118 4345
+23254 1b 119 4345
+2326f 7 122 4345
+23276 1f 123 4345
+23295 6 120 4345
+2329b 7 121 4345
+232a2 3 124 4345
+232a5 2 125 4345
+232a7 17 130 4345
+232be 7 189 4345
+232c5 8 201 4345
+232cd 8 202 4345
+232d5 d 208 4345
+232e2 5 214 4345
+232e7 8 215 4345
+232ef 2 218 4345
+232f1 6 219 4345
+232f7 5 222 4345
+232fc 4 223 4345
+23300 f 231 4345
+2330f 2 232 4345
+23311 5 237 4345
+23316 4 239 4345
+2331a 2 240 4345
+2331c 10 244 4345
+2332c a 246 4345
+23336 7 244 4345
+2333d 2 262 4345
+2333f 5 253 4345
+23344 6 255 4345
+2334a 8 256 4345
+23352 10 260 4345
+23362 11 262 4345
+23373 7 260 4345
+2337a 2 262 4345
+2337c 1a 280 4345
+23396 6 281 4345
+2339c 4d 284 4345
+233e9 4 285 4345
+233ed 6 286 4345
+233f3 19 295 4345
+2340c 17 305 4345
+23423 46 309 4345
+23469 4 310 4345
+2346d 13 320 4345
+23480 17 326 4345
+23497 7 328 4345
+2349e 8 331 4345
+234a6 9 333 4345
+234af 4 132 4345
+234b3 5 137 4345
+234b8 8 138 4345
+234c0 5 139 4345
+234c5 8 140 4345
+234cd e 142 4345
+234db 6 143 4345
+234e1 5 148 4345
+234e6 19 155 4345
+234ff 2 156 4345
+23501 6 157 4345
+23507 19 163 4345
+23520 4 164 4345
+23524 7 166 4345
+2352b 5 167 4345
+23530 3 169 4345
+23533 3 170 4345
+23536 18 178 4345
+2354e 6 179 4345
+23554 6 181 4345
+2355a 8 182 4345
+23562 2 184 4345
+23564 12 337 4345
+FUNC 23576 40 20 __crtCompareStringA
+23576 6 349 4345
+2357c b 350 4345
+23587 2d 361 4345
+235b4 2 362 4345
+FUNC 235b6 f8 10 _strnicoll_l
+235b6 7 55 603
+235bd b 57 603
+235c8 9 59 603
+235d1 13 60 603
+235e4 33 63 603
+23617 6 64 603
+2361d 23 65 603
+23640 a 67 603
+2364a 15 68 603
+2365f 21 78 603
+23680 b 80 603
+2368b 10 81 603
+2369b 11 84 603
+236ac 2 85 603
+FUNC 236ae 27 c _strnicoll
+236ae 3 92 603
+236b1 9 93 603
+236ba 1 101 603
+236bb 5 95 603
+236c0 13 99 603
+236d3 2 101 603
+FUNC 236d5 4d 4 findenv
+236d5 1 387 3036
+236d6 8 390 3036
+236de 12 394 3036
+236f0 d 399 3036
+236fd 9 390 3036
+23706 e 407 3036
+23714 1 408 3036
+23715 c 400 3036
+23721 1 408 3036
+FUNC 23722 5d 0 copy_environ
+23722 4 428 3036
+23726 2 429 3036
+23728 6 434 3036
+2372e 2 464 3036
+23730 7 438 3036
+23737 8 439 3036
+2373f 14 443 3036
+23753 8 444 3036
+2375b 6 448 3036
+23761 11 458 3036
+23772 4 448 3036
+23776 2 461 3036
+23778 5 463 3036
+2377d 2 464 3036
+FUNC 2377f 24c 8 __crtsetenv
+2377f 6 76 3036
+23785 2c 89 3036
+237b1 2 91 3036
+237b3 1c 98 3036
+237cf 5 114 3036
+237d4 13 125 3036
+237e7 c 126 3036
+237f3 4 130 3036
+237f7 d 153 3036
+23804 9 155 3036
+2380d b 100 3036
+23818 6 101 3036
+2381e 2 356 3036
+23820 3 164 3036
+23823 6 165 3036
+23829 f 171 3036
+23838 2 172 3036
+2383a 2 173 3036
+2383c 8 176 3036
+23844 f 178 3036
+23853 2 179 3036
+23855 2 180 3036
+23857 6 196 3036
+2385d 5 197 3036
+23862 2 200 3036
+23864 10 207 3036
+23874 9 210 3036
+2387d a 216 3036
+23887 6 218 3036
+2388d 5 235 3036
+23892 5 238 3036
+23897 5 241 3036
+2389c c 222 3036
+238a8 4 221 3036
+238ac 1d 230 3036
+238c9 2 233 3036
+238cb 9 245 3036
+238d4 4 250 3036
+238d8 2 251 3036
+238da 2f 255 3036
+23909 8 258 3036
+23911 3 259 3036
+23914 5 262 3036
+23919 5 264 3036
+2391e 21 287 3036
+2393f 25 289 3036
+23964 21 338 3036
+23985 4 339 3036
+23989 b 343 3036
+23994 7 346 3036
+2399b 5 349 3036
+239a0 8 351 3036
+239a8 6 352 3036
+239ae 8 355 3036
+239b6 8 271 3036
+239be 6 274 3036
+239c4 7 276 3036
+FUNC 239cb 50 4 _strdup
+239cb 1 66 901
+239cc b 70 901
+239d7 6 71 901
+239dd 9 73 901
+239e6 e 77 901
+239f4 1c 80 901
+23a10 4 81 901
+23a14 6 84 901
+23a1a 1 85 901
+FUNC 23a1b ba c _mbschr_l
+23a1b 7 53 4568
+23a22 b 55 4568
+23a2d 32 58 4568
+23a5f 8 60 4568
+23a67 d 61 4568
+23a74 a 65 4568
+23a7e 7 67 4568
+23a85 10 69 4568
+23a95 3 70 4568
+23a98 8 72 4568
+23aa0 d 63 4568
+23aad 8 76 4568
+23ab5 e 77 4568
+23ac3 10 79 4568
+23ad3 2 80 4568
+FUNC 23ad5 13 8 _mbschr
+23ad5 0 86 4568
+23ad5 12 87 4568
+23ae7 1 88 4568
+FUNC 23b00 be 8 strchr
+23b00 0 60 928
+23b00 2 68 928
+23b02 4 69 928
+23b06 1 73 928
+23b07 2 74 928
+23b09 3 75 928
+23b0c 4 76 928
+23b10 6 77 928
+23b16 2 78 928
+23b18 2 81 928
+23b1a 3 82 928
+23b1d 2 83 928
+23b1f 2 84 928
+23b21 2 85 928
+23b23 2 86 928
+23b25 6 87 928
+23b2b 2 88 928
+23b2d 2 91 928
+23b2f 1 92 928
+23b30 2 93 928
+23b32 3 94 928
+23b35 1 95 928
+23b36 2 96 928
+23b38 2 101 928
+23b3a 5 102 928
+23b3f 2 104 928
+23b41 2 105 928
+23b43 2 107 928
+23b45 2 108 928
+23b47 2 110 928
+23b49 3 111 928
+23b4c 3 113 928
+23b4f 2 114 928
+23b51 2 116 928
+23b53 3 117 928
+23b56 6 119 928
+23b5c 2 120 928
+23b5e 5 124 928
+23b63 2 125 928
+23b65 5 127 928
+23b6a 2 128 928
+23b6c 6 130 928
+23b72 2 131 928
+23b74 1 134 928
+23b75 1 135 928
+23b76 1 137 928
+23b77 2 138 928
+23b79 1 139 928
+23b7a 3 142 928
+23b7d 2 143 928
+23b7f 2 144 928
+23b81 2 145 928
+23b83 2 146 928
+23b85 2 147 928
+23b87 2 148 928
+23b89 2 149 928
+23b8b 2 150 928
+23b8d 3 151 928
+23b90 2 152 928
+23b92 2 153 928
+23b94 2 154 928
+23b96 2 155 928
+23b98 2 156 928
+23b9a 2 157 928
+23b9c 2 158 928
+23b9e 2 159 928
+23ba0 2 160 928
+23ba2 1 163 928
+23ba3 1 164 928
+23ba4 3 165 928
+23ba7 1 166 928
+23ba8 1 167 928
+23ba9 3 170 928
+23bac 1 171 928
+23bad 1 172 928
+23bae 1 173 928
+23baf 1 174 928
+23bb0 3 177 928
+23bb3 1 178 928
+23bb4 1 179 928
+23bb5 1 180 928
+23bb6 1 181 928
+23bb7 3 184 928
+23bba 1 185 928
+23bbb 1 186 928
+23bbc 1 187 928
+23bbd 1 188 928
+PUBLIC 23b06 0 __from_strstr_to_strchr
+FUNC 240b9 14 0 `operator new'::`6'::`dynamic atexit destructor for 'nomem''
+STACK WIN 4 41b0 86 13 0 8 0 e0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 4240 41 3 0 18 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 4290 18 4 0 0 0 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 42ae 18 7 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 42af 14 6 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 42c6 b 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 42d1 22 3 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 42d2 1e 2 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 42f3 3f c 0 0 c 50 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 4332 3f c 0 0 c 50 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 4371 3f c 0 0 c 50 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 43b0 18 7 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 43b1 14 6 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 43c8 af c 0 4 c 1c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 4464 12 0 0 4 c 1c 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 4477 16 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 448d 16 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 44a3 14 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 44b7 16 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 44cd 14 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 44e1 25 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 4506 16 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 451c f 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 452b 62 2 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 452c 60 1 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 452d 5c 0 0 4 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 454a 35 0 0 4 c 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 458d 42 1 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 458e 40 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 45cf da c 0 4 c 24 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 466c 15 0 0 4 c 24 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 46a0 8 0 0 4 c 24 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 46a9 53 c 0 4 c 1c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 46f2 9 0 0 4 c 1c 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 46fc 9 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 4705 6 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 470b b1 8 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 4713 a8 0 0 0 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 4785 33 0 0 0 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 47bc 20 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 47dc 3c 1 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 47dd 3a 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 4818 2e 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 4846 36 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 487c 2a 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 48a6 16 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 48bc 5 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 48c1 30 5 0 8 0 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 48c6 2b 0 0 8 4 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 8 - ^ =
+STACK WIN 4 48f1 7 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 48f8 7 0 0 c 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 48ff 7 0 0 10 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 4906 52 8 0 8 8 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 490c 4c 2 0 8 c 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 12 - ^ =
+STACK WIN 4 4958 36 0 0 10 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 498e 36 0 0 10 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 49c4 36 0 0 10 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 49fa 1a 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 4a14 30 1 0 10 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 4a15 2e 0 0 10 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 4a44 d5 7 0 1c 0 38 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 4a4b ce 0 0 1c 4 38 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 60 - ^ =
+STACK WIN 4 4b19 9d 5 0 10 0 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 4b1e 98 0 0 10 4 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 8 - ^ =
+STACK WIN 4 4bb6 73 7 0 14 0 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 4bbb 6c 2 0 14 4 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 8 - ^ =
+STACK WIN 4 4bbc 6a 1 0 14 8 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 8 - ^ =
+STACK WIN 4 4bbd 68 0 0 14 c 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 8 - ^ =
+STACK WIN 4 4c29 28 5 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 4c2e 22 0 0 8 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 4c51 21 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 4c72 4c 1 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 4c73 4a 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 4cbe 5e 6 0 14 0 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 4d1c 4a b 0 8 0 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 4d26 1b 1 0 8 4 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 4d27 16 0 0 8 8 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 4d66 19 a 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 4d67 17 9 0 0 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 4d7f 6a 6 0 4 0 c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 4de9 f 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 4df8 e 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 4e06 1c 3 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 4e07 18 2 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 4e22 f 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 4e31 8 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 4e39 1b 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 4e54 1c 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 4e70 1f 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 4e8f 4 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 4e93 b 2 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 4e9e 5 2 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 4ea3 11 2 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 4eb4 4e 9 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 4eb5 4a 8 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 4eba 44 3 0 4 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 4ebb 42 2 0 4 c 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 4f02 18 2 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 4f1a 58 8 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 4f1b 54 7 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 4f20 4e 2 0 4 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 4f34 37 0 0 4 c 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 4f72 56 9 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 4f73 52 8 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 4f78 4c 3 0 4 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 4f79 4a 2 0 4 c 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 4fc8 16 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 4fde d 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 4feb 19 8 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 4fec 15 7 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5004 18 7 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5005 14 6 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 501c b 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5027 19 8 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5028 15 7 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5040 18 7 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5041 14 6 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5058 b 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5063 18 7 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5064 14 6 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 507b 18 7 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 507c 14 6 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5093 b 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 509e 1c 3 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 509f 18 2 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 50ba 22 3 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 50bb 1e 2 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 50dc 22 3 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 50dd 1e 2 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 50fe 22 3 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 50ff 1e 2 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5120 7b 8 0 10 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 5124 75 4 0 10 4 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 5128 70 0 0 10 8 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 519b 5b 8 0 10 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 51a2 52 1 0 10 4 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 51a3 50 0 0 10 8 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 51f6 a 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5200 a 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 520a a 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5214 a 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 521e a 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5228 24 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 524c 41 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 528d 1b6 c 0 0 c 2c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 5405 14 0 0 0 c 2c 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 5443 a 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 544d a 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5457 fc 1c 0 14 4 328 0 1 $T0 $ebp 680 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 5553 22 1 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5554 20 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5575 d 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5582 9 3 0 14 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 558b 24 3 0 14 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 55af 10 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 55bf 9 3 0 14 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 55c8 96 7 0 8 0 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 55cf 8d 0 0 8 4 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 36 - ^ =
+STACK WIN 4 55fb 60 0 0 8 8 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 36 - ^ =
+STACK WIN 4 565e 1a 0 0 c 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5678 1c 0 0 c 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5694 1f 3 0 10 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 56b3 1c 0 0 c 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 56cf 1d 3 0 10 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 56ec 20 3 0 14 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 570c 1d 3 0 10 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 5729 11 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 573a 11 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 574b 16 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5761 16 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5777 14f c 0 8 c 1c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 58bc 9 0 0 8 c 1c 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 58c6 1a 0 0 c 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 58e0 1a 0 0 c 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 58fa 18 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5912 1a 0 0 c 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 592c 18 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5944 f6 7 0 18 0 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 594b ed 0 0 18 4 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 36 - ^ =
+STACK WIN 4 5973 c4 0 0 18 8 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 36 - ^ =
+STACK WIN 4 5977 bf 0 0 18 c 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 36 - ^ =
+STACK WIN 4 5a3a 27 0 0 10 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5a61 28 3 0 14 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 5a89 87 4 0 14 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 5a8d 81 0 0 14 4 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 5ab2 5b 0 0 14 8 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 5b10 1b 0 0 10 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5b2b 107 5 0 18 0 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 5b30 100 0 0 18 4 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 8 - ^ =
+STACK WIN 4 5b5b d4 0 0 18 8 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 8 - ^ =
+STACK WIN 4 5b5f cf 0 0 18 c 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 8 - ^ =
+STACK WIN 4 5c32 1e 3 0 14 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 5c50 27 0 0 10 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5c77 28 3 0 14 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 5c9f 24 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5cc3 26 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5ce9 15 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5cfe 9 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5d07 9 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5d10 18 3 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5d11 16 2 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5d28 20 1 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5d29 1e 0 0 8 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5d48 37 5 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5d4d 31 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5d7f 3c 5 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5d84 36 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5dbb 3c 5 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5dc0 36 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5df7 3c 5 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5dfc 36 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5e33 3c 5 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5e38 36 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5e6f 37 5 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5e74 31 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5ea6 37 5 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5eab 31 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5edd 92 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5f1b 34 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5f1c 32 0 0 4 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 5f6f e2 c 0 c c 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 6039 11 0 0 c c 20 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 6051 11 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 6062 11 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 6073 f 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 6082 f 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 6091 4c 1 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 6092 4a 0 0 0 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 616b 33 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 619e 36 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 61d4 36 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 620a 39 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 6243 14 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 6257 f 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 6266 f 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 6275 96 1 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 6276 94 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 62ba 4a 0 0 4 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 8 - ^ =
+STACK WIN 4 62bb 46 0 0 4 c 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 8 - ^ =
+STACK WIN 4 630b 2f 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 6313 26 0 0 8 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 633a 82 9 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 6341 78 2 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 63bc e 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 63ca 3 2 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 63cd 33 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 6400 24 6 0 c 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 6404 1e 2 0 c 4 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 6424 4a a 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 6429 44 5 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 642a 42 4 0 4 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 646e d 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 647b 10 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 648b e 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 6499 994 2c 0 10 0 278 0 1 $T0 $ebp 504 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 64bb 945 a 0 10 4 278 0 1 $T0 $ebp 504 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 636 - ^ =
+STACK WIN 4 64c2 93b 3 0 10 8 278 0 1 $T0 $ebp 504 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 636 - ^ =
+STACK WIN 4 64c5 937 0 0 10 c 278 0 1 $T0 $ebp 504 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 636 - ^ =
+STACK WIN 4 6e2d 3b 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 6e68 13 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 6e7b 13 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 6e8e 1e 1 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 6e8f 1c 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 6eac 1b 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 6ec7 2a 1 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 6ec8 28 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 6ef1 1b 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 6f0c 2a 1 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 6f0d 28 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 6fa0 24 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 6fd0 196 14 0 10 0 14 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 6fd4 d3 10 0 10 4 14 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 24 - ^ =
+STACK WIN 4 6fd9 cd b 0 10 8 14 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 28 - ^ = $ebx $T0 24 - ^ =
+STACK WIN 4 6fda cb a 0 10 c 14 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 28 - ^ = $ebx $T0 24 - ^ =
+STACK WIN 4 6fe4 c0 0 0 10 10 14 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 28 - ^ = $ebx $T0 24 - ^ =
+STACK WIN 4 7166 90 c 0 10 c 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 71eb a 0 0 10 c 20 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 71f6 1a 0 0 c 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 7210 1a 0 0 c 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 722a 1a 0 0 c 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 7244 18 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 725c 18 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 7274 18 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 728c 104 9 0 0 0 328 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 7390 5c6 22 0 c 0 594 0 1 $T0 $ebp 1304 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 73b2 597 0 0 c 4 594 0 1 $T0 $ebp 1304 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 73fe 542 0 0 c 8 594 0 1 $T0 $ebp 1304 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 1436 - ^ =
+STACK WIN 4 740c 533 0 0 c c 594 0 1 $T0 $ebp 1304 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 1436 - ^ =
+STACK WIN 4 7956 dc c 0 c c 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 7a28 9 0 0 c c 20 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 7a32 2d 5 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 7a37 27 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 7a5f e1 c 0 4 c 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 7b36 9 0 0 4 c 20 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 7b40 49 2 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 7b41 3b 1 0 0 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 7b42 39 0 0 0 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 7b89 55 8 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 7b8a 53 7 0 0 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 7b91 4b 0 0 0 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 7b97 2a 0 0 0 c 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 7bde 15 3 0 4 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 7bf3 18 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 7c0b c3 c 0 4 c 1c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 7cc5 8 0 0 4 c 1c 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 7cce 31 7 0 4 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 7cd5 28 0 0 4 4 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 7cff 240 c 0 0 c 64 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 7f28 4 0 0 0 c 64 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 7f3f 4c 2 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 7f40 4a 1 0 0 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 7f41 48 0 0 0 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 7f8b 21 1 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 7f8c 1f 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 7fac 10 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 7fbc 40 2 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 7fbd 3e 1 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 7fbe 3c 0 0 4 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 7ffc 48 2 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 7ffd 46 1 0 8 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 7ffe 44 0 0 8 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 8044 4b 2 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 8045 49 1 0 8 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 8046 47 0 0 8 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 808f 50 2 0 c 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 8090 4e 1 0 c 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 8091 4c 0 0 c 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 80df 8 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 80e7 a 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 80f1 a 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 80fb 8e c 0 4 c 1c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 8151 8 0 0 4 c 1c 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 8189 9f c 0 0 c 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 821f 8 0 0 0 c 20 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 8228 19 8 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 8229 15 7 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 8241 b 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 824c 22 3 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 824d 1e 2 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 826e 5c 2 0 c 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 826f 5a 1 0 c 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 8270 58 0 0 c 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 82ca 44 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 830e e1 c 0 10 c 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 8390 a 0 0 10 c 20 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 83ce 20 0 0 10 c 20 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 83ef 45 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 8434 54 c 0 8 c 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 8477 9 0 0 8 c 18 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 8488 25 7 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 848f 1d 0 0 8 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 84ad 13 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 84c0 b3 8 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 84c7 9a 1 0 8 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 84c8 98 0 0 8 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 8573 4c 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 85bf 139 1 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 85c0 137 0 0 8 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 85cf 127 0 0 8 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 8 - ^ =
+STACK WIN 4 85d0 11f 0 0 8 c 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 12 - ^ = $ebx $T0 8 - ^ =
+STACK WIN 4 85d1 11d 0 0 8 10 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 12 - ^ = $ebx $T0 8 - ^ =
+STACK WIN 4 86f8 4 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 86fc 32 c 0 8 c 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 8714 a 0 0 8 c 18 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 872e 33 c 0 8 c 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 8747 a 0 0 8 c 18 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 8761 32 c 0 8 c 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 8779 a 0 0 8 c 18 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 8793 3b c 0 14 c 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 87b4 a 0 0 14 c 18 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 87ce 79 6 0 4 0 c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 87f0 52 0 0 4 4 c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 16 - ^ =
+STACK WIN 4 87f1 50 0 0 4 8 c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 16 - ^ =
+STACK WIN 4 8847 49 c 0 4 c 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 8890 30 2 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 8891 2a 1 0 0 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 8892 28 0 0 0 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 88c0 82 8 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 88c1 7b 7 0 8 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 88c8 73 0 0 8 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 8942 19c 14 0 18 c 3c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 89d2 9 0 0 18 c 3c 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 8a62 7b 0 0 18 c 3c 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 8ade 17f c 0 10 c 1c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 8c49 4 0 0 10 c 1c 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 8c5d 91 c 0 10 c 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 8ce2 4 0 0 10 c 18 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 8cee 143 9 0 10 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 8cfe 131 0 0 10 4 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 20 - ^ =
+STACK WIN 4 8d02 12c 0 0 10 8 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 20 - ^ =
+STACK WIN 4 8d05 128 0 0 10 c 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 20 - ^ =
+STACK WIN 4 8e31 6c 3 0 1c 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 8e9d f2 6 0 20 0 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 8ea3 ea 0 0 20 4 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 8eb3 d9 0 0 20 8 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 8f31 5a 0 0 20 c 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 40 - ^ =
+STACK WIN 4 8f8f 356 17 0 20 0 2c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 8f99 34a d 0 20 4 2c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 48 - ^ =
+STACK WIN 4 8fa5 33d 1 0 20 8 2c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 48 - ^ =
+STACK WIN 4 8fa6 33b 0 0 20 c 2c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 48 - ^ =
+STACK WIN 4 92e5 18 7 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 92e6 14 6 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 92fd e4 6 0 20 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 9301 de 2 0 20 4 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 4 - ^ =
+STACK WIN 4 9302 dc 1 0 20 8 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 4 - ^ =
+STACK WIN 4 9303 da 0 0 20 c 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 4 - ^ =
+STACK WIN 4 93e1 6c 7 0 0 0 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 93e7 64 1 0 0 4 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 12 - ^ =
+STACK WIN 4 93e8 62 0 0 0 8 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 12 - ^ =
+STACK WIN 4 9408 41 0 0 0 c 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 12 - ^ =
+STACK WIN 4 944d 6e 1 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 944e 6c 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 94bb 9 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 94c4 6e 1 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 94c5 6c 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 9532 9 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 953b 15 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 9550 6 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 9556 32 1 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 9557 30 0 0 0 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 9588 19 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 95a1 3d 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 95de bf c 0 8 c 1c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 9694 8 0 0 8 c 1c 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 969d 77 2 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 969e 75 1 0 0 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 969f 71 0 0 0 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 9714 18 1 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 9715 16 0 0 0 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 972c 121 c 0 4 c 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 9835 b 0 0 4 c 18 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 9841 b 0 0 4 c 18 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 984d 69 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 9857 4b 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 9860 25 0 0 4 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 98b6 6 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 98bc 6 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 98c2 184 1 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 98c3 182 0 0 0 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 98de 166 0 0 0 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 9a46 39 c 0 0 c 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 9a66 4 0 0 0 c 18 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 9a7f 13 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 9a92 37 c 0 0 c 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 9ab6 4 0 0 0 c 18 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 9ac9 11 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 9b2c b9 5 0 4 0 4 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 9b2e b5 3 0 4 4 4 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 8 - ^ =
+STACK WIN 4 9b2f b3 2 0 4 8 4 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 12 - ^ = $ebx $T0 8 - ^ =
+STACK WIN 4 9b30 b1 1 0 4 c 4 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 12 - ^ = $ebx $T0 8 - ^ =
+STACK WIN 4 9b31 af 0 0 4 10 4 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 12 - ^ = $ebx $T0 8 - ^ =
+STACK WIN 4 9be5 2f 1 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 9be6 2d 0 0 0 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 9c14 3c c 0 4 c 1c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 9c4a 5 0 0 4 c 1c 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 9c50 12 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 9c62 4f c 0 4 c 1c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 9ca8 8 0 0 4 c 1c 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 9cb1 75 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 9cf9 2c 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 9d26 c3 1 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 9d27 c1 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 4 - ^ =
+STACK WIN 4 9d35 9c 0 0 4 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 4 - ^ = $ebx $T0 8 - ^ =
+STACK WIN 4 9d3c 94 0 0 4 c 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 4 - ^ = $ebx $T0 8 - ^ =
+STACK WIN 4 9d3d 90 0 0 4 10 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 4 - ^ = $ebx $T0 8 - ^ =
+STACK WIN 4 9de9 a 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 9df3 31 1 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 9df4 2f 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 9e24 9 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 9e2d d 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 9e3a 22 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 9e5c 22 3 0 18 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 9e7e 70 c 0 4 c 1c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 9ee5 8 0 0 4 c 1c 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 9eee f5 c 0 8 c 1c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 9fd7 b 0 0 8 c 1c 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 9fe3 70 c 0 4 c 1c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 a04a 8 0 0 4 c 1c 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 a053 31 3 0 10 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 a084 eb c 0 8 c 1c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 a163 b 0 0 8 c 1c 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 a16f 53 c 0 4 c 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 a1b9 8 0 0 4 c 18 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 a258 65 b 0 c 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 a25d 5f 6 0 c 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 a262 59 1 0 c 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 a263 57 0 0 c c 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 aa15 3d 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 aa52 e 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 aa60 1a0 8 0 4 0 4 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 aa62 19c 6 0 4 4 4 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 8 - ^ =
+STACK WIN 4 aa67 196 1 0 4 8 4 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 8 - ^ =
+STACK WIN 4 aa68 194 0 0 4 c 4 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 8 - ^ =
+STACK WIN 4 aa85 176 0 0 4 10 4 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 20 - ^ = $ebx $T0 8 - ^ =
+STACK WIN 4 ac00 20 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 ac20 39 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 ac59 1 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 ac5a 32 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 ac65 1c 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 ac8c 15e 6 0 8 0 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 ac92 156 0 0 8 4 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 acaa 13d 0 0 8 8 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 acb0 136 0 0 8 c 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 20 - ^ =
+STACK WIN 4 adea 1b 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 ae05 db b 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 ae06 c3 a 0 0 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 ae0f b9 1 0 0 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 ae10 b7 0 0 0 c 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 ae5f 67 0 0 0 10 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 16 - ^ = $ebx $T0 4 - ^ =
+STACK WIN 4 aee0 a 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 aeea 198 e 0 c 0 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 aef2 187 6 0 c 4 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 8 - ^ =
+STACK WIN 4 aef8 180 0 0 c 8 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 8 - ^ =
+STACK WIN 4 b082 b9 11 0 0 0 c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 b089 b0 a 0 0 4 c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 16 - ^ =
+STACK WIN 4 b092 a6 1 0 0 8 c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 16 - ^ =
+STACK WIN 4 b093 a4 0 0 0 c c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 16 - ^ =
+STACK WIN 4 b13b 135 b 0 0 0 8 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 b143 12a 3 0 0 4 8 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 12 - ^ =
+STACK WIN 4 b144 128 2 0 0 8 8 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 16 - ^ = $ebx $T0 12 - ^ =
+STACK WIN 4 b145 126 1 0 0 c 8 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 16 - ^ = $ebx $T0 12 - ^ =
+STACK WIN 4 b146 124 0 0 0 10 8 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 16 - ^ = $ebx $T0 12 - ^ =
+STACK WIN 4 b270 24 2 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 b271 22 1 0 0 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 b272 20 0 0 0 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 b294 24 2 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 b295 22 1 0 0 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 b296 20 0 0 0 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 b2b8 5b 6 0 0 0 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 b2be 43 0 0 0 4 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 b313 5a 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 b36d 74 1 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 b36e 72 0 0 0 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 4 - ^ =
+STACK WIN 4 b37a 53 0 0 0 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 4 - ^ = $ebx $T0 8 - ^ =
+STACK WIN 4 b381 4b 0 0 0 c 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 4 - ^ = $ebx $T0 8 - ^ =
+STACK WIN 4 b38c 30 0 0 0 10 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 4 - ^ = $ebx $T0 8 - ^ =
+STACK WIN 4 b3e1 6 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 b3e7 94 15 0 0 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 b3fb 7e 1 0 0 4 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 20 - ^ =
+STACK WIN 4 b3fc 7c 0 0 0 8 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 20 - ^ =
+STACK WIN 4 b418 5f 0 0 0 c 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 20 - ^ =
+STACK WIN 4 b47b 8 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 b483 160 5 0 8 0 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 b488 159 0 0 8 4 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 b4c5 11b 0 0 8 8 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 12 - ^ =
+STACK WIN 4 b52c b3 0 0 8 c 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 12 - ^ =
+STACK WIN 4 b5e3 25 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 b608 25 6 0 c 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 b60c 1f 2 0 c 4 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 b62d 4f a 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 b632 49 5 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 b633 47 4 0 4 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 b67c 910 30 0 10 0 474 0 1 $T0 $ebp 1012 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 b69e 8c1 e 0 10 4 474 0 1 $T0 $ebp 1012 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 1144 - ^ =
+STACK WIN 4 b6a5 8b7 7 0 10 8 474 0 1 $T0 $ebp 1012 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 1144 - ^ =
+STACK WIN 4 b6ac 8af 0 0 10 c 474 0 1 $T0 $ebp 1012 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 1144 - ^ =
+STACK WIN 4 bf8c 97 7 0 10 0 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 bf93 8e 0 0 10 4 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 36 - ^ =
+STACK WIN 4 bfbf 61 0 0 10 8 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 36 - ^ =
+STACK WIN 4 c023 17 0 0 c 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 c03a 5 0 0 10 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 c03f 55 7 0 10 0 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 c046 4c 0 0 10 4 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 c094 18 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 c0ac 1a 0 0 c 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 c0c6 18 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 c0de 1a 0 0 c 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 c0f8 14e c 0 14 c 1c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 c23c 9 0 0 14 c 1c 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 c246 1e 0 0 10 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 c264 1e 0 0 10 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 c282 1e 0 0 10 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 c2a0 1c 0 0 c 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 c2bc 1c 0 0 c 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 c2d8 1c 0 0 c 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 c2f4 25 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 c319 25 6 0 c 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 c31d 1f 2 0 c 4 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 c33e 4f a 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 c343 49 5 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 c344 47 4 0 4 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 c38d 91c 2c 0 10 0 474 0 1 $T0 $ebp 1012 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 c3a9 8d3 10 0 10 4 474 0 1 $T0 $ebp 1012 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 1144 - ^ =
+STACK WIN 4 c3b0 8c9 9 0 10 8 474 0 1 $T0 $ebp 1012 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 1144 - ^ =
+STACK WIN 4 c3b9 8bf 0 0 10 c 474 0 1 $T0 $ebp 1012 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 1144 - ^ =
+STACK WIN 4 cca9 154 9 0 10 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 ccb1 14a 1 0 10 4 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 ccb2 148 0 0 10 8 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 cdfd 25 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 ce22 25 6 0 c 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 ce26 1f 2 0 c 4 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 ce47 4f a 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 ce4c 49 5 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 ce4d 47 4 0 4 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 ce96 f60 2a 0 10 0 ad4 0 1 $T0 $ebp 1160 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 ceb8 f0f 8 0 10 4 ad4 0 1 $T0 $ebp 1160 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 2776 - ^ =
+STACK WIN 4 ceb9 f0b 7 0 10 8 ad4 0 1 $T0 $ebp 1160 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 2776 - ^ =
+STACK WIN 4 cec0 f03 0 0 10 c ad4 0 1 $T0 $ebp 1160 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 2776 - ^ =
+STACK WIN 4 ddf6 1f 2 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 ddf7 1d 1 0 0 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 ddf8 1b 0 0 0 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 de20 29 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 de50 42 18 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 de5e 33 a 0 8 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 de5f 31 9 0 8 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 de68 27 0 0 8 c 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 dea0 bb 33 0 4 c 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 deba a1 19 0 4 10 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 28 - ^ =
+STACK WIN 4 df29 14 0 0 4 c 18 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + = $ebx $T0 28 - ^ =
+STACK WIN 4 df5b 19 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 df74 9b c 0 4 c 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 dfed 9 0 0 4 c 20 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 e00f 34 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 e01a 1d 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 e043 d 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 e050 9 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 e059 9 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 e062 23d c 0 8 c 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 e257 b 0 0 8 c 20 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 e29f 1b0 c 0 4 c 30 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 e40d 14 0 0 4 c 30 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 e44f a 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 e459 104 3 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 e45a 102 2 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 4 - ^ =
+STACK WIN 4 e45b 100 1 0 4 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 4 - ^ =
+STACK WIN 4 e45c fe 0 0 4 c 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 4 - ^ =
+STACK WIN 4 e495 c4 0 0 4 10 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 4 - ^ = $ebx $T0 16 - ^ =
+STACK WIN 4 e55d 15a 24 0 14 0 94 0 1 $T0 $ebp 100 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 e576 bc b 0 14 4 94 0 1 $T0 $ebp 100 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 152 - ^ =
+STACK WIN 4 e577 b8 a 0 14 8 94 0 1 $T0 $ebp 100 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 152 - ^ =
+STACK WIN 4 e581 ad 0 0 14 c 94 0 1 $T0 $ebp 100 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 152 - ^ =
+STACK WIN 4 e6b7 a 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 e6c1 a 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 e6cb 10 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 e6db c5 c 0 8 c 24 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 e761 17 0 0 8 c 24 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 e7a0 5e 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 e7b8 45 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 e7fe 2f 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 e82d 55 b 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 e82e 53 a 0 0 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 e82f 51 9 0 0 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 8 - ^ = $ebx $T0 4 - ^ =
+STACK WIN 4 e830 4f 8 0 0 c 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 8 - ^ = $ebx $T0 4 - ^ =
+STACK WIN 4 e831 4d 7 0 0 10 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 8 - ^ = $ebx $T0 4 - ^ =
+STACK WIN 4 e882 18a 1d 0 0 0 51c 0 1 $T0 $ebp 1180 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 e89e 161 1 0 0 4 51c 0 1 $T0 $ebp 1180 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 1312 - ^ =
+STACK WIN 4 e89f 15d 0 0 0 8 51c 0 1 $T0 $ebp 1180 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 1312 - ^ =
+STACK WIN 4 ea0c a4 c 0 0 c 1c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 eaa4 b 0 0 0 c 1c 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 eab0 7a 7 0 0 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 eab7 71 0 0 0 4 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 20 - ^ =
+STACK WIN 4 eb2a 1d9 19 0 8 0 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 eb3b 1c1 8 0 8 4 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 36 - ^ =
+STACK WIN 4 eb3f 1ba 4 0 8 8 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 36 - ^ =
+STACK WIN 4 eb43 1b5 0 0 8 c 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 36 - ^ =
+STACK WIN 4 ed03 3c 6 0 0 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 ed3f 19a c 0 4 c 24 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 eea0 8 0 0 4 c 24 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 eed9 1e 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 eef7 6 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 eefd 6 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 ef03 140 12 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 ef04 13e 11 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 ef05 13c 10 0 4 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 8 - ^ = $ebx $T0 4 - ^ =
+STACK WIN 4 ef06 13a f 0 4 c 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 8 - ^ = $ebx $T0 4 - ^ =
+STACK WIN 4 ef15 12a 0 0 4 10 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 8 - ^ = $ebx $T0 4 - ^ =
+STACK WIN 4 f043 86 8 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 f044 84 7 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 f045 82 6 0 4 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 8 - ^ = $ebx $T0 4 - ^ =
+STACK WIN 4 f046 80 5 0 4 c 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 8 - ^ = $ebx $T0 4 - ^ =
+STACK WIN 4 f04b 7a 0 0 4 10 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 8 - ^ = $ebx $T0 4 - ^ =
+STACK WIN 4 f0c9 8c 1 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 f0ca 8a 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 f0d3 7e 0 0 4 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 8 - ^ =
+STACK WIN 4 f0d4 7c 0 0 4 c 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 12 - ^ = $ebx $T0 8 - ^ =
+STACK WIN 4 f0d5 7a 0 0 4 10 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 12 - ^ = $ebx $T0 8 - ^ =
+STACK WIN 4 f155 24 3 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 f156 22 2 0 0 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 f165 12 0 0 0 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 f179 3e 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 f182 31 0 0 0 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 f1b7 76 c 0 0 c 1c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 f221 8 0 0 0 c 1c 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 f22d 66 2 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 f22e 64 1 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 f22f 62 0 0 4 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 f293 53 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 f2e6 96 c 0 4 c 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 f370 b 0 0 4 c 18 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 f37c 5 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 f381 88 c 0 0 c 1c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 f3fd b 0 0 0 c 1c 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 f409 5 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 f40e 3 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 f411 3e 2 0 c 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 f412 3c 1 0 c 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 f413 3a 0 0 c 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 f41e 2e 0 0 c c 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 f44f 129 6 0 8 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 f453 123 2 0 8 4 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 4 - ^ =
+STACK WIN 4 f454 121 1 0 8 8 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 4 - ^ =
+STACK WIN 4 f455 11f 0 0 8 c 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 4 - ^ =
+STACK WIN 4 f578 6b 5 0 c 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 f57c 4d 1 0 c 4 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 4 - ^ =
+STACK WIN 4 f57d 4b 0 0 c 8 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 4 - ^ =
+STACK WIN 4 f5e3 171 4 0 0 0 10 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 f5e7 169 0 0 0 4 10 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 20 - ^ =
+STACK WIN 4 f606 149 0 0 0 8 10 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 24 - ^ = $ebx $T0 20 - ^ =
+STACK WIN 4 f607 141 0 0 0 c 10 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 24 - ^ = $ebx $T0 20 - ^ =
+STACK WIN 4 f754 1d4 1e 0 18 0 b4 0 1 $T0 $ebp 96 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 f76d 1b1 5 0 18 4 b4 0 1 $T0 $ebp 96 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 184 - ^ =
+STACK WIN 4 f76e 1ad 4 0 18 8 b4 0 1 $T0 $ebp 96 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 184 - ^ =
+STACK WIN 4 f772 1a8 0 0 18 c b4 0 1 $T0 $ebp 96 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 184 - ^ =
+STACK WIN 4 f928 2f6 17 0 4 0 1c4 0 1 $T0 $ebp 116 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 f93e 2d6 1 0 4 4 1c4 0 1 $T0 $ebp 116 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 456 - ^ =
+STACK WIN 4 f93f 2d2 0 0 4 8 1c4 0 1 $T0 $ebp 116 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 456 - ^ =
+STACK WIN 4 fc1e 1ce 18 0 4 0 98 0 1 $T0 $ebp 116 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 fc37 1ab 0 0 4 4 98 0 1 $T0 $ebp 116 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 156 - ^ =
+STACK WIN 4 fc38 1a7 0 0 4 8 98 0 1 $T0 $ebp 116 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 156 - ^ =
+STACK WIN 4 fc3f 19f 0 0 4 c 98 0 1 $T0 $ebp 116 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 156 - ^ =
+STACK WIN 4 fdec f3 7 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 fdf2 2c 1 0 8 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 fdf3 2a 0 0 8 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 fedf 5 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 fee4 170 c 0 8 c 24 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1000a 10 0 0 8 c 24 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 1001b b 0 0 8 c 24 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 1004c 7 0 0 8 c 24 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 10054 15f 10 0 14 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1005b a1 9 0 14 4 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 20 - ^ =
+STACK WIN 4 1005c b2 8 0 14 8 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 20 - ^ =
+STACK WIN 4 10064 96 0 0 14 c 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 20 - ^ =
+STACK WIN 4 101b3 1b 0 0 10 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 101ce 4f 6 0 c 0 14 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1021d 30 4 0 8 0 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1024d 36 6 0 8 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 10283 e 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 10291 16 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 102a7 11 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 102b8 13 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 102cb e 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 102d9 13 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 102ec e 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 102fa 13 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1030d e 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1031b 16 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 10331 11 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 10342 13 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 10355 e 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 10363 13 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 10376 e 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 10384 16 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1039a 11 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 103ab 16 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 103c1 11 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 103d2 16 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 103e8 11 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 103f9 13 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1040c e 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1041a c 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 10426 26 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1044c 21 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1046d 26 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 10493 21 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 106ab 33 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 106de 24 6 0 c 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 106e2 1e 2 0 c 4 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 10702 4a a 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 10707 44 5 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 10708 42 4 0 4 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 1074c 9b0 2c 0 10 0 278 0 1 $T0 $ebp 504 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1076e 960 a 0 10 4 278 0 1 $T0 $ebp 504 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 636 - ^ =
+STACK WIN 4 10775 956 3 0 10 8 278 0 1 $T0 $ebp 504 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 636 - ^ =
+STACK WIN 4 10778 952 0 0 10 c 278 0 1 $T0 $ebp 504 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 636 - ^ =
+STACK WIN 4 110fc 129 8 0 10 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 11103 120 1 0 10 4 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 11104 11e 0 0 10 8 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 11225 33 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 11258 24 6 0 c 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1125c 1e 2 0 c 4 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1127c 4a a 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 11281 44 5 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 11282 42 4 0 4 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 112c6 10 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 112d6 f88 2a 0 10 0 8d0 0 1 $T0 $ebp 656 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 112f8 f39 8 0 10 4 8d0 0 1 $T0 $ebp 656 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 2260 - ^ =
+STACK WIN 4 112f9 f35 7 0 10 8 8d0 0 1 $T0 $ebp 656 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 2260 - ^ =
+STACK WIN 4 11300 f2d 0 0 10 c 8d0 0 1 $T0 $ebp 656 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 2260 - ^ =
+STACK WIN 4 1225e c2 11 0 4 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1226f 9e 0 0 4 4 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 12320 9b c 0 4 c 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 123b2 8 0 0 4 c 20 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 123bb 46 c 0 4 c 1c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 123f8 8 0 0 4 c 1c 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 12401 113 8 0 10 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 12408 21 1 0 10 4 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 20 - ^ =
+STACK WIN 4 12409 1f 0 0 10 8 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 20 - ^ =
+STACK WIN 4 12514 17 0 0 c 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1252b 83 13 0 10 0 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 12534 78 a 0 10 4 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1253e 6d 0 0 10 8 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 125ae 119 c 0 10 c 24 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 126bd 9 0 0 10 c 24 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 126c7 7d 8 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 126ce 75 1 0 8 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 126cf 73 0 0 8 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 126fd 2c 0 0 8 c 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 12 - ^ =
+STACK WIN 4 12744 81 b 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 12749 7b 6 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 1274e 75 1 0 4 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 1274f 73 0 0 4 c 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 127c5 71 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 127e6 4f 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 12836 a0 c 0 4 c 1c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 128c8 d 0 0 4 c 1c 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 128d6 22 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 128f8 19f c 0 0 c 28 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 129c5 e 0 0 0 c 28 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 12a8e 8 0 0 0 c 28 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 12a97 115 c 0 8 c 1c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 12b7f 2c 0 0 8 c 1c 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 12bac 11e c 0 c c 1c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 12ca3 d 0 0 c c 1c 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 12cca 3f 9 0 8 0 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 12cd3 34 0 0 8 4 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 12cec 18 0 0 8 8 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 12d09 21b c 0 8 c 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 12e47 e 0 0 8 c 20 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 12f24 79 7 0 c 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 12f2b 70 0 0 c 4 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 4 - ^ =
+STACK WIN 4 12f61 39 0 0 c 8 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 4 - ^ =
+STACK WIN 4 12f62 37 0 0 c c 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 4 - ^ =
+STACK WIN 4 12f9d 21 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 12fbe 46 b 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 12fc9 3a 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 13004 3c 5 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 13009 36 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 13040 48 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 13088 2b 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 130b3 314 11 0 8 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 130c0 305 4 0 8 4 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 130c4 300 0 0 8 8 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 130f1 2d2 0 0 8 c 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 28 - ^ =
+STACK WIN 4 133c7 b0 d 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 133cd a9 7 0 0 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 133d4 a1 0 0 0 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 13477 106 11 0 4 0 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 13483 f8 5 0 4 4 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 12 - ^ =
+STACK WIN 4 13484 f6 4 0 4 8 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 12 - ^ =
+STACK WIN 4 13488 f1 0 0 4 c 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 12 - ^ =
+STACK WIN 4 1357d 2df 12 0 c 0 c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1358a 2d0 5 0 c 4 c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 16 - ^ =
+STACK WIN 4 1358b 2ce 4 0 c 8 c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 16 - ^ =
+STACK WIN 4 1358f 2c9 0 0 c c c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 16 - ^ =
+STACK WIN 4 1385c cd 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 13929 2e2 f 0 0 0 138 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 13938 294 0 0 0 4 138 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 316 - ^ =
+STACK WIN 4 1394d 27e 0 0 0 8 138 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 316 - ^ =
+STACK WIN 4 13950 27a 0 0 0 c 138 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 316 - ^ =
+STACK WIN 4 13c0b a8 1 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 13c0c a6 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 13c54 5d 0 0 4 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 13cb3 2e3 2a 0 4 0 14 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 13cd7 2bd 6 0 4 4 14 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 24 - ^ =
+STACK WIN 4 13cdc 2b7 1 0 4 8 14 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 24 - ^ =
+STACK WIN 4 13cdd 2b5 0 0 4 c 14 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 24 - ^ =
+STACK WIN 4 13f96 72 7 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 13f97 70 6 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 13f98 6e 5 0 4 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 13f9d 68 0 0 4 c 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 14008 7c c 0 4 c 1c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 14079 a 0 0 4 c 1c 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 14084 d 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14091 d 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1409e d 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 140ab f3 23 0 0 4 328 0 1 $T0 $ebp 680 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1419e 1e 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 142f3 a3 c 0 4 c 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 14385 10 0 0 4 c 20 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 14396 6 2 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1439c 1b 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 143b7 26 3 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 143b8 24 2 0 0 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 143dd 63 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14440 474 a 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14447 42e 3 0 0 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 14448 42c 2 0 0 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 8 - ^ = $ebx $T0 4 - ^ =
+STACK WIN 4 14449 42a 1 0 0 c 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 8 - ^ = $ebx $T0 4 - ^ =
+STACK WIN 4 1444a 428 0 0 0 10 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 8 - ^ = $ebx $T0 4 - ^ =
+STACK WIN 4 148b4 b 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 148bf d 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 148cc e 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 148da e 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 148e8 e 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 148f6 e 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14904 12 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14916 e 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14924 e 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14932 e 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14940 b 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1494b b 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14956 b 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14961 e 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1496f b 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1497a e 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14988 19 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 149a1 84 13 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 149a2 80 12 0 8 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 149a3 7e 11 0 8 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 149c9 57 0 0 8 c 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 12 - ^ =
+STACK WIN 4 14a25 d 2 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14a32 12 2 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14a44 9c 2 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14a57 86 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14ae0 a 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14aea 5 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14aef 7 2 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14af6 a 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14b00 8 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14b08 a 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14b12 a 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14b1c 8 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14b24 a 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14b2e 8 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14b36 a 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14b40 8 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14b48 a 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14b52 8 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14b5a 7b 2 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14b5d 75 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14bd5 9 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14bde 25 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14c03 d 2 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14c10 4 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14c14 29 2 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14c26 f 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14c3d 16 2 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14c53 4 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14c57 4 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14c5b 1b 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14c76 4 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14c7a 2f 6 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14ca9 25 2 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14cce 4 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14cd2 d 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14cdf e 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14ced 20 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14d0d 25 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14d32 33 6 0 4 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 14d65 34 6 0 4 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 14d99 13 0 0 c 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14dac 56 8 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14db2 4d 2 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14e02 61 b 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14e03 5d a 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14e04 59 9 0 4 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14e63 17 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14e7a 15 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14e8f 14 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14ea3 e 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14eb1 14 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14ec5 25 1 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14ec6 23 0 0 0 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14ed2 14 0 0 0 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14eea 38 2 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14eeb 36 1 0 0 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14eec 32 0 0 0 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14f22 91 7 0 8 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 14f26 89 3 0 8 4 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 14f27 87 2 0 8 8 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 14f5c 40 0 0 8 c 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 12 - ^ =
+STACK WIN 4 14fb3 35 2 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14fb6 2f 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14fe8 81 b 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14fe9 7d a 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 14fea 79 9 0 4 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 15069 1e 3 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1506a 1c 2 0 0 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 15087 47 3 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 15088 43 2 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 150ce 47 7 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 150cf 45 6 0 0 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 150d0 43 5 0 0 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 150d1 41 4 0 0 c 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 15115 65 11 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 15116 61 10 0 8 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 1511b 5b b 0 8 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 1511c 57 a 0 8 c 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 1517a 12 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1518c 31 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 151bd f 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 151cc f 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 151db 1d 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 151f8 33 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1522b 73 7 0 14 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1522f 6b 3 0 14 4 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 15230 5b 2 0 14 8 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1529e 2f 3 0 8 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 152cd f 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 152dc 79 4 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 152dd 75 3 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 152de 71 2 0 4 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 15355 68 3 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 15356 64 2 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 153bd a6 3 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 153be a2 2 0 8 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 153de 81 0 0 8 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 8 - ^ =
+STACK WIN 4 153f0 6e 0 0 8 c 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 8 - ^ =
+STACK WIN 4 15463 26 3 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 15464 22 2 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 15489 31 7 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1548e 29 2 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 154ba d0 7 0 8 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 154be b3 3 0 8 4 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 4 - ^ =
+STACK WIN 4 154bf b1 2 0 8 8 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 4 - ^ =
+STACK WIN 4 154ce 9f 0 0 8 c 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 4 - ^ =
+STACK WIN 4 1558a 69 13 0 8 0 24 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1559b 4f 2 0 8 4 24 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 40 - ^ =
+STACK WIN 4 1559c 4b 1 0 8 8 24 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 40 - ^ =
+STACK WIN 4 1559d 49 0 0 8 c 24 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 40 - ^ =
+STACK WIN 4 155f3 96 22 0 8 0 28 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 15607 79 e 0 8 4 28 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 15615 66 0 0 8 8 28 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1563a 29 0 0 8 c 28 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 52 - ^ =
+STACK WIN 4 15689 2e 1 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1568a 2a 0 0 8 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 156b7 62 8 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 156b8 5e 7 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 156b9 5a 6 0 4 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 15719 8b a 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1571a 87 9 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1571b 83 8 0 4 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 157a4 1c 9 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 157a5 18 8 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 157c0 2a 7 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 157c5 22 2 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 157ea a6 5 0 4 0 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 15890 37 3 0 4 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 158c7 51 1 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 158c8 4d 0 0 8 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 15918 2e 1 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 15919 2a 0 0 8 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 15946 6a a 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 15947 66 9 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 1594e 5e 2 0 4 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 159b0 6c a 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 159b1 68 9 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 159b2 64 8 0 4 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 15a1c e0 e 0 4 0 14 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 15a23 d7 7 0 4 4 14 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 15a2a cd 0 0 4 8 14 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 15a45 b1 0 0 4 c 14 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 32 - ^ =
+STACK WIN 4 15afc 4f 6 0 8 0 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 15b02 47 0 0 8 4 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 15b4b 22 5 0 c 0 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 15b6d 22 5 0 c 0 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 15b8f 22 5 0 c 0 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 15bb1 2e 1 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 15bb2 2a 0 0 8 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 15bdf 2e 1 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 15be0 2a 0 0 8 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 15c0d 141 7 0 8 0 1c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 15c14 138 0 0 8 4 1c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 15c95 b3 0 0 8 8 1c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 36 - ^ =
+STACK WIN 4 15c96 b1 0 0 8 c 1c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 36 - ^ =
+STACK WIN 4 15d4e d4 6 0 4 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 15e22 c4 e 0 4 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 15ee6 7e d 0 4 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 15f64 125 11 0 10 0 28 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 15f75 112 0 0 10 4 28 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 16089 15f f 0 8 0 28 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 16098 4a 0 0 8 4 28 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 160f0 b3 0 0 8 8 28 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 161e8 31 6 0 4 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 16219 12 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1622b 12 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1623d 12 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1624f 150 7 0 8 0 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 16256 147 0 0 8 4 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1639f a0 6 0 c 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1643f 50 5 0 4 0 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1648f 2bb 2b 0 4 0 d0 0 1 $T0 $ebp 116 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 164aa 296 10 0 4 4 d0 0 1 $T0 $ebp 116 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 212 - ^ =
+STACK WIN 4 164b3 28a 7 0 4 8 d0 0 1 $T0 $ebp 116 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 212 - ^ =
+STACK WIN 4 164ba 282 0 0 4 c d0 0 1 $T0 $ebp 116 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 212 - ^ =
+STACK WIN 4 1674a d9 b 0 c 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 167b8 17 0 0 c 4 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 16823 14 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 16837 1b8 18 0 4 0 60 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 16848 1a0 7 0 4 4 60 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1684f 18d 0 0 4 8 60 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 16870 168 0 0 4 c 60 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 108 - ^ =
+STACK WIN 4 169ef 56f 22 0 c 0 a0 0 1 $T0 $ebp 108 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 16a03 97 e 0 c 4 a0 0 1 $T0 $ebp 108 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 164 - ^ =
+STACK WIN 4 16a11 88 0 0 c 8 a0 0 1 $T0 $ebp 108 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 164 - ^ =
+STACK WIN 4 16f5e 153 10 0 8 0 d0 0 1 $T0 $ebp 112 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 16f82 11b 0 0 8 4 d0 0 1 $T0 $ebp 112 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 212 - ^ =
+STACK WIN 4 16f89 113 0 0 8 8 d0 0 1 $T0 $ebp 112 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 212 - ^ =
+STACK WIN 4 16f92 109 0 0 8 c d0 0 1 $T0 $ebp 112 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 212 - ^ =
+STACK WIN 4 170b1 1ea 1b 0 8 0 38 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 170cc 1c8 0 0 8 4 38 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 17154 111 0 0 8 8 38 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 64 - ^ =
+STACK WIN 4 17155 10f 0 0 8 c 38 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 64 - ^ =
+STACK WIN 4 1729b e4 15 0 4 0 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 172a2 db e 0 4 4 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 172b0 ca 0 0 4 8 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1737f f 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1738e 100 19 0 4 0 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1739a f2 d 0 4 4 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 28 - ^ =
+STACK WIN 4 173a7 e4 0 0 4 8 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 28 - ^ =
+STACK WIN 4 1748e 46 3 0 4 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 174d4 92 6 0 4 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 17566 b42 14 0 8 0 6c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 17571 b35 9 0 8 4 6c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1757a b2b 0 0 8 8 6c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 175e3 abe 0 0 8 c 6c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 120 - ^ =
+STACK WIN 4 180a8 211 13 0 4 0 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 180af 208 c 0 4 4 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 180bb 1fb 0 0 4 8 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 182b9 28b 1f 0 4 0 98 0 1 $T0 $ebp 116 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 182c5 27a 13 0 4 4 98 0 1 $T0 $ebp 116 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 156 - ^ =
+STACK WIN 4 182c6 278 12 0 4 8 98 0 1 $T0 $ebp 116 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 156 - ^ =
+STACK WIN 4 182d8 263 0 0 4 c 98 0 1 $T0 $ebp 116 + = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 156 - ^ =
+STACK WIN 4 18544 341 d 0 8 0 30 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 18589 2f7 0 0 8 4 30 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 52 - ^ =
+STACK WIN 4 185f0 28f 0 0 8 8 30 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 52 - ^ =
+STACK WIN 4 185f1 28d 0 0 8 c 30 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 52 - ^ =
+STACK WIN 4 18885 4e4 18 0 14 0 54 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 18893 4d4 a 0 14 4 54 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 88 - ^ =
+STACK WIN 4 18894 4d2 9 0 14 8 54 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 88 - ^ =
+STACK WIN 4 1889d 4c8 0 0 14 c 54 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 88 - ^ =
+STACK WIN 4 18d69 14c 6 0 0 0 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 18eb5 116 5 0 10 0 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 18ed6 59 0 0 10 4 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 18fcb 1b 0 0 c 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 18fe6 1b 0 0 c 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 19001 1b 0 0 c 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1901c a3 f 0 18 c 94 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 190b6 8 0 0 18 c 94 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 190bf a3 f 0 1c c 94 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 19159 8 0 0 1c c 94 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 19162 387 12 0 8 0 24 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 19172 350 2 0 8 4 24 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 40 - ^ =
+STACK WIN 4 19173 34e 1 0 8 8 24 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 40 - ^ =
+STACK WIN 4 19174 34c 0 0 8 c 24 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 40 - ^ =
+STACK WIN 4 194e9 13e 7 0 8 0 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 194f0 135 0 0 8 4 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 19627 b1 6 0 8 0 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 196d8 64 7 0 8 0 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 196df 5b 0 0 8 4 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1973c 57 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 19793 8f 0 0 c 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 19822 14 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 19836 14 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1984a 87 0 0 c 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 198d1 e3 0 0 c 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 199b4 1bd 9 0 c 0 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 199bb 1b4 2 0 c 4 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 36 - ^ =
+STACK WIN 4 199bc 1b2 1 0 c 8 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 36 - ^ =
+STACK WIN 4 199bd 1b0 0 0 c c 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 36 - ^ =
+STACK WIN 4 19b71 71 b 0 c 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 19b76 6b 6 0 c 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 19b7b 65 1 0 c 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 19b7c 63 0 0 c c 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 19be2 b3 e 0 10 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 19be6 1a a 0 10 4 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 4 - ^ =
+STACK WIN 4 19be7 2e 9 0 10 8 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 4 - ^ =
+STACK WIN 4 19bf0 e 0 0 10 c 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 4 - ^ =
+STACK WIN 4 19c95 46 5 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 19c9a 40 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 19cdb a 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 19ce5 6 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 19ceb 51 6 0 10 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 19d3c 15 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 19d51 13 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 19d64 15 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 19d79 13 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 19d8c 15 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 19da1 13 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 19db4 18 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 19dcc 16 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 19de2 18 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 19dfa 16 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 19e10 18 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 19e28 16 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 19e3e 18 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 19e56 16 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 19e6c 15 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 19e81 13 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 19e94 15 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 19ea9 13 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 19ebc 15 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 19ed1 13 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 19ee4 53 6 0 8 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 19f37 e 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 19f45 44 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 19f89 1de 1a 0 8 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 19f9a 1c6 9 0 8 4 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 20 - ^ =
+STACK WIN 4 19f9b 1c2 8 0 8 8 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 20 - ^ =
+STACK WIN 4 19fa3 1b9 0 0 8 c 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 20 - ^ =
+STACK WIN 4 1a167 78 c 0 8 c 1c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1a1d5 9 0 0 8 c 1c 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 1a1df 5 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1a1e4 1f7 8 0 14 0 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1a1eb 1ee 1 0 14 4 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 28 - ^ =
+STACK WIN 4 1a1ec 1ec 0 0 14 8 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 28 - ^ =
+STACK WIN 4 1a246 174 0 0 14 c 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 28 - ^ =
+STACK WIN 4 1a3db 29 3 0 c 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1a404 1b 0 0 10 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1a41f 2a 3 0 c 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1a449 1b 0 0 10 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1a464 9 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1a46d 54 6 0 8 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1a4c1 2b 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1a4ec 4f 6 0 8 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1a53b 29 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1a564 4f 6 0 8 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1a5b3 29 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1a5dc 4f 6 0 8 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1a62b 29 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1a654 54 6 0 8 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1a6a8 2b 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1a6d3 4f 6 0 8 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1a722 29 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1a74b 4f 6 0 8 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1a79a 29 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1a7c3 54 6 0 8 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1a817 2b 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1a842 54 6 0 8 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1a896 2b 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1a8c1 54 6 0 8 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1a915 2b 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1a940 4f 6 0 8 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1a98f 29 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1a9b8 d 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1a9c5 8 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1a9cd 1f 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1a9ec 1a 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1aa06 1f 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1aa25 1c 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1aa41 12 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1aa53 1b 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1aa6e 13b 1d 0 18 8 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1aa83 126 8 0 18 c 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 12 - ^ =
+STACK WIN 4 1aba9 3b 6 0 18 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1abe4 13d 1d 0 18 8 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1abf9 128 8 0 18 c 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 12 - ^ =
+STACK WIN 4 1ad21 3b 6 0 18 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1ad5c 1a 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1ad76 3a2 1d 0 20 8 14 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1ad87 391 c 0 20 c 14 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 24 - ^ =
+STACK WIN 4 1b118 43 6 0 24 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1b15b 1b8 1d 0 1c 8 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1b170 1a3 8 0 1c c 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 12 - ^ =
+STACK WIN 4 1b313 40 6 0 20 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1b353 6 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1b359 29 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1b382 419 6 0 0 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1b3a4 3f5 0 0 0 4 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 20 - ^ =
+STACK WIN 4 1b3a5 3ed 0 0 0 8 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 20 - ^ =
+STACK WIN 4 1b79b 190 1 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1b79c 18e 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1b92b 73 4 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1b92c 71 3 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 1b92d 6f 2 0 4 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 8 - ^ = $ebx $T0 4 - ^ =
+STACK WIN 4 1b92e 6d 1 0 4 c 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 8 - ^ = $ebx $T0 4 - ^ =
+STACK WIN 4 1b92f 6b 0 0 4 10 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 8 - ^ = $ebx $T0 4 - ^ =
+STACK WIN 4 1b99e 33 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1b9a5 16 0 0 0 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 1b9a6 14 0 0 0 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 1b9d1 40 1 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1b9d2 3e 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1ba11 1c8 11 0 4 0 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1ba18 1bf a 0 4 4 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 28 - ^ =
+STACK WIN 4 1ba1c 1ba 6 0 4 8 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 28 - ^ =
+STACK WIN 4 1ba22 1b3 0 0 4 c 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 28 - ^ =
+STACK WIN 4 1bbd9 33 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1bbe0 16 0 0 0 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 1bbe1 14 0 0 0 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 1bc0c 89 1 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1bc0d 87 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1bc95 2c4 c 0 4 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1bc9c 2bb 5 0 4 4 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 20 - ^ =
+STACK WIN 4 1bc9d 2b9 4 0 4 8 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 20 - ^ =
+STACK WIN 4 1bca1 2b4 0 0 4 c 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 20 - ^ =
+STACK WIN 4 1bf59 395 1b 0 4 0 48 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1bf6a 37d a 0 4 4 48 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 76 - ^ =
+STACK WIN 4 1bf6d 377 7 0 4 8 48 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 76 - ^ =
+STACK WIN 4 1bf74 36f 0 0 4 c 48 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 76 - ^ =
+STACK WIN 4 1c2ee 29 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1c317 16 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1c32d 26 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1c353 26 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1c379 26 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1c39f 3 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1c3a2 fe 9 0 4 0 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1c3a9 e9 2 0 4 4 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 28 - ^ =
+STACK WIN 4 1c3aa e7 1 0 4 8 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 28 - ^ =
+STACK WIN 4 1c3ab e5 0 0 4 c 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 28 - ^ =
+STACK WIN 4 1c4a0 9 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1c4a9 fe 9 0 4 0 1c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1c4b0 e9 2 0 4 4 1c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 32 - ^ =
+STACK WIN 4 1c4b1 e7 1 0 4 8 1c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 32 - ^ =
+STACK WIN 4 1c4b2 e5 0 0 4 c 1c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 32 - ^ =
+STACK WIN 4 1c5a7 9 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1c5b0 355 9 0 4 0 24 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1c5b7 34c 2 0 4 4 24 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 40 - ^ =
+STACK WIN 4 1c5b8 348 1 0 4 8 24 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 40 - ^ =
+STACK WIN 4 1c5b9 346 0 0 4 c 24 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 40 - ^ =
+STACK WIN 4 1c905 9 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1c90e 20 6 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1c912 1b 2 0 0 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1c917 15 0 0 0 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1c92e 36 6 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1c934 2f 0 0 0 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 1c964 79 8 0 4 0 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1c969 72 3 0 4 4 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 8 - ^ =
+STACK WIN 4 1c96a 70 2 0 4 8 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 8 - ^ =
+STACK WIN 4 1c9dd 3e6 11 0 10 0 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1c9e2 3df c 0 10 4 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 8 - ^ =
+STACK WIN 4 1c9e9 3d7 5 0 10 8 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 8 - ^ =
+STACK WIN 4 1c9ea 3d5 4 0 10 c 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 8 - ^ =
+STACK WIN 4 1cdc3 45d 1d 0 18 8 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1cdd7 449 9 0 18 c 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 36 - ^ =
+STACK WIN 4 1d220 1af a 0 18 0 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1d22a 1a3 0 0 18 4 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 36 - ^ =
+STACK WIN 4 1d270 15c 0 0 18 8 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 36 - ^ =
+STACK WIN 4 1d2a3 128 0 0 18 c 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 36 - ^ =
+STACK WIN 4 1d3cf 1e 3 0 14 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1d3ed 1d 0 0 10 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1d40a 1e 3 0 14 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1d428 26 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1d496 60 6 0 c 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1d49c 56 0 0 c 4 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 4 - ^ =
+STACK WIN 4 1d4a5 45 0 0 c 8 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 4 - ^ =
+STACK WIN 4 1d4a6 43 0 0 c c 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 4 - ^ =
+STACK WIN 4 1d4f6 14 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1d50a 77 11 0 0 0 c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1d51b 5f 0 0 0 4 c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1d581 1e 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1d59f 32 1 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1d5a0 30 0 0 0 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1d5d1 1b 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1d5ec 96 12 0 4 0 7c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1d5fd 7c 1 0 4 4 7c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1d5fe 78 0 0 4 8 7c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1d682 72 11 0 8 0 7c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1d693 5a 0 0 8 4 7c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1d6cf 13 0 0 8 8 7c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1d6f4 1d0 13 0 4 0 7c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1d705 1b6 2 0 4 4 7c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 128 - ^ =
+STACK WIN 4 1d706 1b2 1 0 4 8 7c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 128 - ^ =
+STACK WIN 4 1d707 1b0 0 0 4 c 7c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 128 - ^ =
+STACK WIN 4 1d8c4 bf 12 0 4 0 7c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1d8d5 a5 1 0 4 4 7c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1d8d6 a1 0 0 4 8 7c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1d983 2c 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1d9af 65 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1da14 3c 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1da50 1e3 4 0 c 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1da51 1e1 3 0 c 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 1da52 1df 2 0 c 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 8 - ^ = $ebx $T0 4 - ^ =
+STACK WIN 4 1da53 1dd 1 0 c c 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 8 - ^ = $ebx $T0 4 - ^ =
+STACK WIN 4 1da54 1db 0 0 c 10 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 8 - ^ = $ebx $T0 4 - ^ =
+STACK WIN 4 1dc33 12 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1dc45 18 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1dc5d 40 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1dc9d 78 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1dd15 1490 4 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1dd16 83f 3 0 0 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1dd17 83d 2 0 0 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 1f1a5 1680 5 0 c 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1f1a9 15f8 1 0 c 4 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1f1aa 15f6 0 0 c 8 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 1f1db 86c 0 0 c c 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 12 - ^ =
+STACK WIN 4 20825 be 9 0 c 0 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 2082e a9 0 0 c 4 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 8 - ^ =
+STACK WIN 4 20840 96 0 0 c 8 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 8 - ^ =
+STACK WIN 4 20930 82 6 0 c 0 14 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 209b2 6e 4 0 8 0 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 20a20 5 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 20a25 22b 8 0 14 0 14 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 20a2c 222 1 0 14 4 14 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 20a2d 220 0 0 14 8 14 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 20a8b 1c1 0 0 14 c 14 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 32 - ^ =
+STACK WIN 4 20c50 29 3 0 c 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 20c79 1b 0 0 10 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 20c94 2a 3 0 c 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 20cbe 1b 0 0 10 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 20cd9 1f 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 20cf8 1f 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 20d17 2d 9 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 20d20 23 0 0 0 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 20d44 94 6 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 20d45 92 5 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 20d4a 8c 0 0 4 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 20dd8 cd c 0 4 c 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 20e9b 9 0 0 4 c 20 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 20ea5 2c 1 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 20ea6 2a 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 20ed1 2a 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 20efb 22 1 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 20efc 20 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 20f1d d 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 20f64 11 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 20f75 15 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 20f8a 5 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 20f8f 5 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 20f94 11 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 20fa5 15 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 20fba 50 c 0 0 c 1c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 20fd7 1c 0 0 0 c 1c 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 2100a 60 9 0 0 0 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 21013 57 0 0 0 4 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 28 - ^ =
+STACK WIN 4 2106a d 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 21077 170 5 0 8 0 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 2107c 169 0 0 8 4 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 210e1 103 0 0 8 8 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 12 - ^ =
+STACK WIN 4 21125 be 0 0 8 c 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 12 - ^ =
+STACK WIN 4 211e7 182 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 21369 b6 7 0 c 0 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 21370 ad 0 0 c 4 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 28 - ^ =
+STACK WIN 4 2141f 2f 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 2147c 47 10 0 4 0 c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 214c3 1b2 2a 0 18 8 34 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 214e0 195 d 0 18 c 34 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 56 - ^ =
+STACK WIN 4 21675 34 5 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 2167a 2e 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 216a9 34 5 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 216ae 2e 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 216dd 34 5 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 216e2 2e 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 21711 a2 c 0 10 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 21718 99 5 0 10 4 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 4 - ^ =
+STACK WIN 4 2171d 93 0 0 10 8 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 4 - ^ =
+STACK WIN 4 2172b 84 0 0 10 c 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 4 - ^ =
+STACK WIN 4 217b3 6 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 217b9 6 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 217bf 6 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 217c5 6 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 217cb c 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 217d7 c 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 217e3 c 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 217ef 349 c 0 0 c 3c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 21a99 d 0 0 0 c 3c 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 21b38 1f5 14 0 24 0 c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 21b47 1e4 5 0 24 4 c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 16 - ^ =
+STACK WIN 4 21b48 1e2 4 0 24 8 c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 16 - ^ =
+STACK WIN 4 21b49 1e0 3 0 24 c c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 16 - ^ =
+STACK WIN 4 21d2d 1ae 5 0 0 0 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 21d32 15f 0 0 0 4 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 21d62 12e 0 0 0 8 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 12 - ^ =
+STACK WIN 4 21edb 4f c 0 0 c 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 21f21 8 0 0 0 c 18 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 21f2a 38 c 0 0 c 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 21f59 8 0 0 0 c 18 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 21f62 41 c 0 4 c 1c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 21f9a 8 0 0 4 c 1c 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 21fa3 35 a 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 21fa8 2f 5 0 8 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 21fad 27 0 0 8 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 21fd8 d3 7 0 c 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 21fdf ca 0 0 c 4 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 20 - ^ =
+STACK WIN 4 22020 88 0 0 c 8 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 20 - ^ =
+STACK WIN 4 22068 33 0 0 c c 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 20 - ^ =
+STACK WIN 4 220ab 50 4 0 8 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 220af 4a 0 0 8 4 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 220fb f0 e 0 10 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 22102 e7 7 0 10 4 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 20 - ^ =
+STACK WIN 4 22108 e0 1 0 10 8 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 20 - ^ =
+STACK WIN 4 22109 de 0 0 10 c 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 20 - ^ =
+STACK WIN 4 221eb 5c 4 0 c 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 221ef 56 0 0 c 4 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 22247 db 8 0 c 0 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 2224c d2 3 0 c 4 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 8 - ^ =
+STACK WIN 4 2224d d0 2 0 c 8 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 8 - ^ =
+STACK WIN 4 22277 a5 0 0 c c 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 8 - ^ =
+STACK WIN 4 22322 28 3 0 10 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 2234a 25 3 0 10 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 2236f 18 0 0 10 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 22387 f6 c 0 14 0 c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 2238e eb 5 0 14 4 c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 16 - ^ =
+STACK WIN 4 22393 e5 0 0 14 8 c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 16 - ^ =
+STACK WIN 4 2247d 33 3 0 14 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 22498 16 0 0 14 4 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 224b0 1d 4 0 14 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 224b4 17 0 0 14 4 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 224cd 224 17 0 1c 8 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 224e2 20f 2 0 1c c 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 20 - ^ =
+STACK WIN 4 226f1 3e 6 0 1c 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 2272f 294 8 0 14 0 38 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 22736 28b 1 0 14 4 38 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 60 - ^ =
+STACK WIN 4 22737 289 0 0 14 8 38 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 60 - ^ =
+STACK WIN 4 22793 1f9 0 0 14 c 38 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 60 - ^ =
+STACK WIN 4 229c3 29 3 0 c 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 229ec 1b 0 0 10 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 22a07 2a 3 0 c 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 22a31 1b 0 0 10 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 22a7b 81 8 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 22a83 70 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 22a92 60 0 0 4 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 8 - ^ =
+STACK WIN 4 22a93 5e 0 0 4 c 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 8 - ^ =
+STACK WIN 4 22afc 93 7 0 c 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 22b00 8d 3 0 c 4 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 4 - ^ =
+STACK WIN 4 22b01 8b 2 0 c 8 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 4 - ^ =
+STACK WIN 4 22b40 4b 0 0 c c 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 4 - ^ =
+STACK WIN 4 22b8f a2 6 0 8 0 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 22b94 9b 1 0 8 4 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 22b95 99 0 0 8 8 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 22c31 83 c 0 4 c 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 22cab 8 0 0 4 c 20 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 22cb4 d8 c 0 10 c 1c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 22d83 8 0 0 10 c 1c 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 22d8c e6 c 0 c c 20 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 22e69 8 0 0 c c 20 0 1 $T0 $ebp = $T2 $esp = $T1 .raSearchStart = $eip $T1 ^ = $ebp $T0 = $esp $T1 4 + = $L $T0 .cbSavedRegs - = $P $T1 4 + .cbParams + =
+STACK WIN 4 22e72 8 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 22e7a 117 8 0 8 0 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 22e81 10e 1 0 8 4 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 28 - ^ =
+STACK WIN 4 22e82 10c 0 0 8 8 18 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 28 - ^ =
+STACK WIN 4 22f91 27 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 23021 ec 7 0 10 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 23028 e3 0 0 10 4 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 20 - ^ =
+STACK WIN 4 23088 82 0 0 10 8 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 20 - ^ =
+STACK WIN 4 2310d 17 0 0 c 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 23124 95 a 0 0 0 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 2312a 7d 4 0 0 4 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 12 - ^ =
+STACK WIN 4 2312b 7b 3 0 0 8 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 12 - ^ =
+STACK WIN 4 2312e 77 0 0 0 c 8 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 12 - ^ =
+STACK WIN 4 231b9 1a 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 231d3 1a 0 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 231ed 389 16 0 18 8 2c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 23201 375 2 0 18 c 2c 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 48 - ^ =
+STACK WIN 4 23576 40 6 0 20 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 235b6 f8 7 0 10 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 235bd ef 0 0 10 4 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 20 - ^ =
+STACK WIN 4 2361d 8e 0 0 10 8 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 20 - ^ =
+STACK WIN 4 236ae 27 3 0 c 0 0 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 236d5 4d 1 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 236d6 48 0 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 23722 5d 4 0 0 0 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 2373e 3f 0 0 0 4 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 8 - ^ =
+STACK WIN 4 2373f 3d 0 0 0 8 4 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 8 - ^ =
+STACK WIN 4 2377f 24c f 0 8 0 14 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 23789 95 5 0 8 4 14 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 24 - ^ =
+STACK WIN 4 2378e 8f 0 0 8 8 14 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 24 - ^ =
+STACK WIN 4 237b1 6b 0 0 8 c 14 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 24 - ^ =
+STACK WIN 4 239cb 50 6 0 4 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 239cc 4e 5 0 4 4 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebx $T0 4 - ^ =
+STACK WIN 4 239d1 48 0 0 4 8 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 8 - ^ = $ebx $T0 4 - ^ =
+STACK WIN 4 239dc 3c 0 0 4 c 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 8 - ^ = $ebx $T0 4 - ^ =
+STACK WIN 4 239dd 3a 0 0 4 10 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + = $ebp $T0 8 - ^ = $ebx $T0 4 - ^ =
+STACK WIN 4 23a1b ba 7 0 c 0 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + =
+STACK WIN 4 23a22 b1 0 0 c 4 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 20 - ^ =
+STACK WIN 4 23a5f 73 0 0 c 8 10 0 1 $T0 $ebp = $eip $T0 4 + ^ = $ebp $T0 ^ = $esp $T0 8 + = $L $T0 .cbSavedRegs - = $P $T0 8 + .cbParams + = $ebx $T0 20 - ^ =
+STACK WIN 4 23ad5 13 0 0 8 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 4 240b9 14 0 0 0 0 0 0 1 $T2 $esp .cbLocals + .cbSavedRegs + = $T0 .raSearchStart = $eip $T0 ^ = $esp $T0 4 + =
+STACK WIN 0 1000 13 0 0 4 0 0 0 0 0
+STACK WIN 0 1020 1b 0 0 10 0 0 0 0 0
+STACK WIN 0 1040 1b 0 0 10 0 0 0 0 0
+STACK WIN 0 1060 19 8 0 4 0 0 0 0 0
+STACK WIN 0 1080 b 0 0 0 0 0 0 0 0
+STACK WIN 0 1090 24 3 0 4 0 0 0 0 0
+STACK WIN 0 10c0 f 0 0 8 0 0 0 0 0
+STACK WIN 0 10d0 17 0 0 4 0 0 0 0 0
+STACK WIN 0 10f0 27 9 0 10 0 0 0 0 0
+STACK WIN 0 1120 27 9 0 10 0 0 0 0 0
+STACK WIN 0 1150 d 0 0 8 0 0 0 0 0
+STACK WIN 0 1160 13 0 0 4 0 0 0 0 0
+STACK WIN 0 1180 21 d 0 10 0 0 0 0 0
+STACK WIN 0 11b0 21 d 0 10 0 0 0 0 0
+STACK WIN 0 11e0 7 0 0 0 0 0 0 0 0
+STACK WIN 0 11f0 6b 28 0 4 8 10 0 0 0
+STACK WIN 0 1260 32 3 0 0 0 0 0 0 0
+STACK WIN 0 12a0 e 0 0 0 0 0 0 0 0
+STACK WIN 0 12b0 47 3 0 4 0 0 0 0 0
+STACK WIN 0 1300 19 8 0 4 0 0 0 0 0
+STACK WIN 0 1320 32 3 0 0 0 0 0 0 0
+STACK WIN 0 1360 47 3 0 4 0 0 0 0 0
+STACK WIN 0 13b0 19 8 0 4 0 0 0 0 0
+STACK WIN 0 13d0 32 3 0 0 0 0 0 0 0
+STACK WIN 0 1410 47 3 0 4 0 0 0 0 0
+STACK WIN 0 1460 19 8 0 4 0 0 0 0 0
+STACK WIN 0 1480 71 29 0 4 c 10 0 0 0
+STACK WIN 0 1500 1b 0 0 8 0 0 0 0 0
+STACK WIN 0 1520 35 4 0 0 0 0 0 0 0
+STACK WIN 0 1560 20b 2d 0 14 14 14 0 0 1
+STACK WIN 0 19f0 31 0 0 0 0 0 0 0 0
+STACK WIN 0 1a30 51 d 0 4 c 0 0 0 0
+STACK WIN 0 1a90 c7 7 0 4 10 8 0 0 1
+STACK WIN 0 1b60 36 0 0 0 0 0 0 0 0
+STACK WIN 0 1ba0 3 0 0 0 0 0 0 0 0
+STACK WIN 0 1db0 81 2 0 8 0 0 0 0 0
+STACK WIN 0 1e40 1d 7 0 0 0 0 0 0 0
+STACK WIN 0 1e60 a2 3a 0 4 10 c4 0 0 0
+STACK WIN 0 1f10 142 c 0 c 0 38 0 0 1
+STACK WIN 0 2060 138 38 0 0 8 244 0 0 0
+STACK WIN 0 21a0 3b 7 0 4 0 0 0 0 0
+STACK WIN 0 21e0 25 5 0 4 0 0 0 0 0
+STACK WIN 0 2210 26 3 0 0 0 0 0 0 0
+STACK WIN 0 2240 e 0 0 0 0 0 0 0 0
+STACK WIN 0 2250 4 0 0 0 0 0 0 0 0
+STACK WIN 0 2260 11 0 0 0 0 0 0 0 0
+STACK WIN 0 2280 27 3 0 0 0 0 0 0 0
+STACK WIN 0 22b0 b 0 0 0 0 0 0 0 0
+STACK WIN 0 22c0 24 3 0 4 0 0 0 0 0
+STACK WIN 0 22f0 e 0 0 0 0 0 0 0 0
+STACK WIN 0 2300 c 0 0 0 0 0 0 0 0
+STACK WIN 0 2310 26 0 0 0 0 0 0 0 0
+STACK WIN 0 2340 1d 1 0 0 0 0 0 0 0
+STACK WIN 0 2360 1d 1 0 0 0 0 0 0 0
+STACK WIN 0 2380 13 0 0 0 0 0 0 0 0
+STACK WIN 0 23a0 23 0 0 0 0 0 0 0 0
+STACK WIN 0 23d0 56 5 0 0 8 c 0 0 0
+STACK WIN 0 2430 47 c 0 0 c 8 0 0 0
+STACK WIN 0 24f0 23 1 0 0 0 4 0 0 0
+STACK WIN 0 2520 3f b 0 8 0 0 0 0 0
+STACK WIN 0 2560 20 0 0 0 0 0 0 0 0
+STACK WIN 0 2580 20 0 0 0 0 0 0 0 0
+STACK WIN 0 25a0 1d 0 0 0 0 0 0 0 0
+STACK WIN 0 25c0 da 11 0 c 0 0 0 0 1
+STACK WIN 0 26a0 27 8 0 4 0 0 0 0 0
+STACK WIN 0 26d0 4a d 0 8 0 0 0 0 0
+STACK WIN 0 2720 e 0 0 0 0 0 0 0 0
+STACK WIN 0 2730 5 2 0 4 0 0 0 0 0
+STACK WIN 0 2740 5 2 0 4 0 0 0 0 0
+STACK WIN 0 2750 3 2 0 0 0 0 0 0 0
+STACK WIN 0 2760 b 0 0 0 0 0 0 0 0
+STACK WIN 0 2770 ef 11 0 c 0 0 0 0 1
+STACK WIN 0 2860 2b 8 0 4 0 0 0 0 0
+STACK WIN 0 2890 4f d 0 8 0 0 0 0 0
+STACK WIN 0 28e0 e 0 0 0 0 0 0 0 0
+STACK WIN 0 28f0 5 2 0 4 0 0 0 0 0
+STACK WIN 0 2900 3 2 0 0 0 0 0 0 0
+STACK WIN 0 2910 13 0 0 0 0 0 0 0 0
+STACK WIN 0 2930 86 a 0 10 10 4 0 0 1
+STACK WIN 0 29c0 23 0 0 0 0 0 0 0 0
+STACK WIN 0 29f0 1 0 0 0 0 0 0 0 0
+STACK WIN 0 2a00 26 0 0 0 0 0 0 0 0
+STACK WIN 0 2a30 23 0 0 0 0 0 0 0 0
+STACK WIN 0 2a60 76 23 0 0 4 50 0 0 0
+STACK WIN 0 2ae0 3 0 0 4 0 0 0 0 0
+STACK WIN 0 2af0 1 0 0 0 0 0 0 0 0
+STACK WIN 0 2b00 21 0 0 0 0 0 0 0 0
+STACK WIN 0 2b30 32 6 0 4 8 0 0 0 0
+STACK WIN 0 2b70 2f 6 0 0 8 0 0 0 0
+STACK WIN 0 2ba0 20 0 0 0 0 0 0 0 0
+STACK WIN 0 2bc0 20 0 0 0 0 0 0 0 0
+STACK WIN 0 2be0 1d 0 0 0 0 0 0 0 0
+STACK WIN 0 2c00 c1 5 0 8 0 0 0 0 1
+STACK WIN 0 2cd0 83 8 0 8 0 0 0 0 1
+STACK WIN 0 2d60 1f 0 0 4 0 0 0 0 0
+STACK WIN 0 2d80 bc b 0 8 0 0 0 0 1
+STACK WIN 0 2e40 e 0 0 0 0 0 0 0 0
+STACK WIN 0 2e50 5 2 0 4 0 0 0 0 0
+STACK WIN 0 2e60 e 0 0 8 0 0 0 0 0
+STACK WIN 0 2e70 da 4 0 8 0 0 0 0 1
+STACK WIN 0 2f50 97 8 0 8 0 0 0 0 1
+STACK WIN 0 2ff0 4 0 0 0 0 0 0 0 0
+STACK WIN 0 3000 23 0 0 4 0 0 0 0 0
+STACK WIN 0 3030 c7 e 0 8 0 0 0 0 1
+STACK WIN 0 3100 e 0 0 0 0 0 0 0 0
+STACK WIN 0 3110 5 2 0 4 0 0 0 0 0
+STACK WIN 0 3120 e 0 0 8 0 0 0 0 0
+STACK WIN 0 3130 6 0 0 0 0 0 0 0 0
+STACK WIN 0 3140 208 6 0 8 10 8 0 0 1
+STACK WIN 0 33d0 1 0 0 0 0 0 0 0 0
+STACK WIN 0 33e0 8 0 0 0 0 0 0 0 0
+STACK WIN 0 33f0 56 3 0 0 0 10 0 0 0
+STACK WIN 0 3450 32 0 0 4 0 0 0 0 0
+STACK WIN 0 3490 28 0 0 0 0 0 0 0 0
+STACK WIN 0 34c0 19 0 0 0 0 0 0 0 0
+STACK WIN 0 34e0 21 0 0 0 0 0 0 0 0
+STACK WIN 0 3510 19 8 0 4 0 0 0 0 0
+STACK WIN 0 3530 7 0 0 0 0 0 0 0 0
+STACK WIN 0 3540 6 0 0 0 0 0 0 0 0
+STACK WIN 0 36d0 39 8 0 4 0 0 0 0 0
+STACK WIN 0 3710 6 0 0 0 0 0 0 0 0
+STACK WIN 0 38a0 3a 8 0 4 0 0 0 0 0
+STACK WIN 0 38e0 6 0 0 0 0 0 0 0 0
+STACK WIN 0 38f0 32 0 0 4 0 0 0 0 0
+STACK WIN 0 3930 19 0 0 0 0 0 0 0 0
+STACK WIN 0 3950 56 7 0 4 0 c 0 0 0
+STACK WIN 0 39b0 4 0 0 0 0 0 0 0 0
+STACK WIN 0 39c0 59 7 0 4 0 c 0 0 0
+STACK WIN 0 3a20 6 0 0 0 0 0 0 0 0
+STACK WIN 0 3a30 21 d 0 10 0 0 0 0 0
+STACK WIN 0 3a60 27 9 0 10 0 0 0 0 0
+STACK WIN 0 3a90 24 f 0 0 0 0 0 0 0
+STACK WIN 0 3ac0 1 0 0 0 0 0 0 0 0
+STACK WIN 0 3ad0 15 0 0 0 0 0 0 0 0
+STACK WIN 0 3af0 21 d 0 10 0 0 0 0 0
+STACK WIN 0 3b20 27 9 0 10 0 0 0 0 0
+STACK WIN 0 3b50 22 d 0 0 0 0 0 0 0
+STACK WIN 0 3b80 10 0 0 0 0 0 0 0 0
+STACK WIN 0 3b90 25 11 0 0 0 0 0 0 0
+STACK WIN 0 3bc0 4f a 0 0 0 10 0 0 0
+STACK WIN 0 3c10 54 7 0 8 0 c 0 0 0
+STACK WIN 0 3c70 57 7 0 8 0 c 0 0 0
+STACK WIN 0 3cd0 19 8 0 4 0 0 0 0 0
+STACK WIN 0 3cf0 7 1 0 0 0 4 0 0 0
+STACK WIN 0 3d00 21 d 0 14 0 0 0 0 0
+STACK WIN 0 3d30 7 1 0 0 0 4 0 0 0
+STACK WIN 0 3d40 27 9 0 14 0 0 0 0 0
+STACK WIN 0 3d70 3 0 0 0 0 0 0 0 0
+STACK WIN 0 3d80 1 0 0 0 0 0 0 0 0
+STACK WIN 0 3d90 7 1 0 0 0 4 0 0 0
+STACK WIN 0 3da0 15 0 0 4 0 0 0 0 0
+STACK WIN 0 3dc0 1 0 0 4 0 0 0 0 0
+STACK WIN 0 3dd0 15 0 0 8 0 0 0 0 0
+STACK WIN 0 3df0 21 d 0 14 0 0 0 0 0
+STACK WIN 0 3e20 27 9 0 14 0 0 0 0 0
+STACK WIN 0 3e50 22 d 0 0 0 0 0 0 0
+STACK WIN 0 3e80 10 0 0 0 0 0 0 0 0
+STACK WIN 0 3e90 7 1 0 0 0 4 0 0 0
+STACK WIN 0 3ea0 25 11 0 c 0 0 0 0 0
+STACK WIN 0 3ed0 3 0 0 4 0 0 0 0 0
+STACK WIN 0 3ee0 15 0 0 0 0 0 0 0 0
+STACK WIN 0 3f00 22 d 0 8 0 0 0 0 0
+STACK WIN 0 3f30 13 0 0 0 0 0 0 0 0
+STACK WIN 0 3f50 1 0 0 0 0 0 0 0 0
+STACK WIN 0 3f60 15 0 0 8 0 0 0 0 0
+STACK WIN 0 3f80 22 d 0 0 0 0 0 0 0
+STACK WIN 0 3fb0 15 0 0 4 0 0 0 0 0
+STACK WIN 0 3fd0 15 0 0 4 0 0 0 0 0
+STACK WIN 0 3ff0 13 0 0 4 0 0 0 0 0
+STACK WIN 0 4010 ae e 0 4 0 54 0 0 0
+STACK WIN 0 40c0 ae e 0 4 0 4c 0 0 0
+STACK WIN 0 4170 40 7 0 4 0 0 0 0 0
+STACK WIN 0 4464 13 0 0 0 0 0 0 0 0
+STACK WIN 0 466c 16 0 0 0 0 0 0 0 0
+STACK WIN 0 46a0 9 0 0 0 0 0 0 0 0
+STACK WIN 0 46f2 a 0 0 0 0 0 0 0 0
+STACK WIN 0 5405 14 0 0 0 0 0 0 0 0
+STACK WIN 0 58bc a 0 0 0 0 0 0 0 0
+STACK WIN 0 6039 12 0 0 0 0 0 0 0 0
+STACK WIN 0 60e0 8b 0 0 4 0 0 0 0 0
+STACK WIN 0 71eb b 0 0 0 0 0 0 0 0
+STACK WIN 0 7a28 a 0 0 0 0 0 0 0 0
+STACK WIN 0 7b36 a 0 0 0 0 0 0 0 0
+STACK WIN 0 7cc5 9 0 0 0 0 0 0 0 0
+STACK WIN 0 7f28 4 0 0 0 0 0 0 0 0
+STACK WIN 0 8151 9 0 0 0 0 0 0 0 0
+STACK WIN 0 821f 9 0 0 0 0 0 0 0 0
+STACK WIN 0 8390 a 0 0 0 0 0 0 0 0
+STACK WIN 0 83ce 21 0 0 0 0 0 0 0 0
+STACK WIN 0 8477 9 0 0 0 0 0 0 0 0
+STACK WIN 0 8714 a 0 0 0 0 0 0 0 0
+STACK WIN 0 8747 a 0 0 0 0 0 0 0 0
+STACK WIN 0 8779 a 0 0 0 0 0 0 0 0
+STACK WIN 0 87b4 a 0 0 0 0 0 0 0 0
+STACK WIN 0 89d2 9 0 0 0 0 0 0 0 0
+STACK WIN 0 8a62 7c 0 0 0 0 0 0 0 0
+STACK WIN 0 8c49 4 0 0 0 0 0 0 0 0
+STACK WIN 0 8ce2 4 0 0 0 0 0 0 0 0
+STACK WIN 0 9694 9 0 0 0 0 0 0 0 0
+STACK WIN 0 9835 c 0 0 0 0 0 0 0 0
+STACK WIN 0 9841 c 0 0 0 0 0 0 0 0
+STACK WIN 0 9a66 4 0 0 0 0 0 0 0 0
+STACK WIN 0 9ab6 4 0 0 0 0 0 0 0 0
+STACK WIN 0 9ae0 4c 8 0 c 10 0 0 0 1
+STACK WIN 0 9c4a 6 0 0 0 0 0 0 0 0
+STACK WIN 0 9ca8 9 0 0 0 0 0 0 0 0
+STACK WIN 0 9ee5 9 0 0 0 0 0 0 0 0
+STACK WIN 0 9fd7 c 0 0 0 0 0 0 0 0
+STACK WIN 0 a04a 9 0 0 0 0 0 0 0 0
+STACK WIN 0 a163 c 0 0 0 0 0 0 0 0
+STACK WIN 0 a1b9 9 0 0 0 0 0 0 0 0
+STACK WIN 0 a1d0 88 0 0 8 0 0 0 0 0
+STACK WIN 0 a2c0 7a 0 0 c 0 0 0 0 0
+STACK WIN 0 c23c a 0 0 0 0 0 0 0 0
+STACK WIN 0 df29 14 0 0 0 0 0 0 0 0
+STACK WIN 0 dfed a 0 0 0 0 0 0 0 0
+STACK WIN 0 e257 c 0 0 0 0 0 0 0 0
+STACK WIN 0 e40d 15 0 0 0 0 0 0 0 0
+STACK WIN 0 e761 17 0 0 0 0 0 0 0 0
+STACK WIN 0 eaa4 c 0 0 0 0 0 0 0 0
+STACK WIN 0 eea0 9 0 0 0 0 0 0 0 0
+STACK WIN 0 f221 9 0 0 0 0 0 0 0 0
+STACK WIN 0 f370 c 0 0 0 0 0 0 0 0
+STACK WIN 0 f3fd c 0 0 0 0 0 0 0 0
+STACK WIN 0 1000a 11 0 0 0 0 0 0 0 0
+STACK WIN 0 1001b c 0 0 0 0 0 0 0 0
+STACK WIN 0 1004c 8 0 0 0 0 0 0 0 0
+STACK WIN 0 10558 90 3 0 c c 0 0 0 0
+STACK WIN 0 105e8 46 0 0 10 4 0 0 0 1
+STACK WIN 0 1064a 17 4 0 0 10 0 0 0 1
+STACK WIN 0 10661 19 0 0 0 0 0 0 0 0
+STACK WIN 0 10694 17 1 0 8 4 0 0 0 1
+STACK WIN 0 123b2 9 0 0 0 0 0 0 0 0
+STACK WIN 0 123f8 9 0 0 0 0 0 0 0 0
+STACK WIN 0 126bd a 0 0 0 0 0 0 0 0
+STACK WIN 0 128c8 e 0 0 0 0 0 0 0 0
+STACK WIN 0 129c5 f 0 0 0 0 0 0 0 0
+STACK WIN 0 12a8e 9 0 0 0 0 0 0 0 0
+STACK WIN 0 12b7f 2d 0 0 0 0 0 0 0 0
+STACK WIN 0 12ca3 e 0 0 0 0 0 0 0 0
+STACK WIN 0 12e47 f 0 0 0 0 0 0 0 0
+STACK WIN 0 14079 b 0 0 0 0 0 0 0 0
+STACK WIN 0 14221 84 3 0 8 c 0 0 0 0
+STACK WIN 0 142a5 23 0 0 0 0 0 0 0 0
+STACK WIN 0 142f0 3 0 0 0 0 0 0 0 0
+STACK WIN 0 14385 11 0 0 0 0 0 0 0 0
+STACK WIN 0 190b6 9 0 0 0 0 0 0 0 0
+STACK WIN 0 19159 9 0 0 0 0 0 0 0 0
+STACK WIN 0 1a1d5 a 0 0 0 0 0 0 0 0
+STACK WIN 0 20e9b a 0 0 0 0 0 0 0 0
+STACK WIN 0 20fd7 1c 0 0 0 0 0 0 0 0
+STACK WIN 0 21a99 e 0 0 0 0 0 0 0 0
+STACK WIN 0 21f21 9 0 0 0 0 0 0 0 0
+STACK WIN 0 21f59 9 0 0 0 0 0 0 0 0
+STACK WIN 0 21f9a 9 0 0 0 0 0 0 0 0
+STACK WIN 0 22cab 9 0 0 0 0 0 0 0 0
+STACK WIN 0 22d83 9 0 0 0 0 0 0 0 0
+STACK WIN 0 22e69 9 0 0 0 0 0 0 0 0
+STACK WIN 0 23b00 be 0 0 8 0 0 0 0 0