gitextract_gg8ucus8/ ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── Test.hpp ├── kapok/ │ ├── Common.hpp │ ├── DeSerializer.hpp │ ├── JsonUtil.hpp │ ├── Kapok.hpp │ ├── Serializer.hpp │ └── traits.hpp ├── main.cpp ├── rapidjson/ │ ├── allocators.h │ ├── document.h │ ├── encodedstream.h │ ├── encodings.h │ ├── error/ │ │ ├── en.h │ │ └── error.h │ ├── filereadstream.h │ ├── filestream.h │ ├── filewritestream.h │ ├── fwd.h │ ├── internal/ │ │ ├── biginteger.h │ │ ├── diyfp.h │ │ ├── dtoa.h │ │ ├── ieee754.h │ │ ├── itoa.h │ │ ├── meta.h │ │ ├── pow10.h │ │ ├── regex.h │ │ ├── stack.h │ │ ├── strfunc.h │ │ ├── strtod.h │ │ └── swap.h │ ├── istreamwrapper.h │ ├── memorybuffer.h │ ├── memorystream.h │ ├── msinttypes/ │ │ ├── inttypes.h │ │ └── stdint.h │ ├── ostreamwrapper.h │ ├── pointer.h │ ├── prettywriter.h │ ├── rapidjson.h │ ├── reader.h │ ├── schema.h │ ├── stream.h │ ├── stringbuffer.h │ └── writer.h ├── test/ │ ├── CMakeLists.txt │ ├── UnitTest.hpp │ ├── panic.cpp │ ├── primitive.cpp │ ├── stl.cpp │ └── user.cpp ├── test_kapok.hpp ├── test_performance.cpp ├── unit_test.hpp └── vcproject/ ├── vcproject/ │ └── vcproject.vcxproj └── vcproject.sln