gitextract_k5_9flv0/ ├── .github/ │ └── ISSUE_TEMPLATE/ │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── Extensions/ │ └── Extension1/ │ └── JonMon-Ext1/ │ ├── JonMon-Ext1.vcxproj │ ├── dllmain.cpp │ ├── dllmain.h │ ├── framework.h │ ├── pch.cpp │ └── pch.h ├── JonMon/ │ ├── JonMon.sln │ ├── JonMon.vcxproj │ ├── callbacks.cpp │ ├── callbacks.h │ ├── driver.cpp │ ├── driver.h │ ├── jtime.h │ ├── minifilter.cpp │ ├── minifilter.h │ ├── process.cpp │ ├── process.h │ ├── registry.cpp │ ├── registry.h │ └── shared.h ├── JonMon-Service/ │ ├── JonMon-Service.vcxproj │ ├── JonMonService.cpp │ ├── config.cpp │ ├── config.h │ ├── context.cpp │ ├── context.h │ ├── etwMain.cpp │ ├── etwMain.h │ ├── global.h │ ├── service.cpp │ └── service.h ├── JonMonConfig.json ├── JonMonProvider/ │ ├── jonmon.h │ ├── jonmon.man │ ├── jonmon.rc │ └── jonmon.res ├── LICENSE ├── Libs/ │ └── nlohmann/ │ ├── adl_serializer.hpp │ ├── byte_container_with_subtype.hpp │ ├── detail/ │ │ ├── abi_macros.hpp │ │ ├── conversions/ │ │ │ ├── from_json.hpp │ │ │ ├── to_chars.hpp │ │ │ └── to_json.hpp │ │ ├── exceptions.hpp │ │ ├── hash.hpp │ │ ├── input/ │ │ │ ├── binary_reader.hpp │ │ │ ├── input_adapters.hpp │ │ │ ├── json_sax.hpp │ │ │ ├── lexer.hpp │ │ │ ├── parser.hpp │ │ │ └── position_t.hpp │ │ ├── iterators/ │ │ │ ├── internal_iterator.hpp │ │ │ ├── iter_impl.hpp │ │ │ ├── iteration_proxy.hpp │ │ │ ├── iterator_traits.hpp │ │ │ ├── json_reverse_iterator.hpp │ │ │ └── primitive_iterator.hpp │ │ ├── json_custom_base_class.hpp │ │ ├── json_pointer.hpp │ │ ├── json_ref.hpp │ │ ├── macro_scope.hpp │ │ ├── macro_unscope.hpp │ │ ├── meta/ │ │ │ ├── call_std/ │ │ │ │ ├── begin.hpp │ │ │ │ └── end.hpp │ │ │ ├── cpp_future.hpp │ │ │ ├── detected.hpp │ │ │ ├── identity_tag.hpp │ │ │ ├── is_sax.hpp │ │ │ ├── std_fs.hpp │ │ │ ├── type_traits.hpp │ │ │ └── void_t.hpp │ │ ├── output/ │ │ │ ├── binary_writer.hpp │ │ │ ├── output_adapters.hpp │ │ │ └── serializer.hpp │ │ ├── string_concat.hpp │ │ ├── string_escape.hpp │ │ └── value_t.hpp │ ├── json.hpp │ ├── json_fwd.hpp │ ├── ordered_map.hpp │ └── thirdparty/ │ └── hedley/ │ ├── hedley.hpp │ └── hedley_undef.hpp ├── README.md └── deployment/ └── Azure/ └── README.md