├── .github ├── FUNDING.yml └── workflows │ ├── build.yml │ └── compile-metamod-addon.yaml ├── .gitignore ├── .gitmodules ├── AMBuildScript ├── AMBuilder ├── CFGs ├── cs2scrim │ └── cs2scrim.cfg ├── gotvcfg.cfg ├── pracc.cfg ├── scrim.cfg └── unpracc.cfg ├── CS2Fixes.sln ├── CS2Fixes.vcxproj ├── CS2Fixes.vcxproj.filters ├── LICENSE ├── PackageScript ├── README.md ├── configs ├── admins.cfg ├── admins.cfg.example ├── discordbots.cfg.example └── maplist.cfg.example ├── configure.py ├── docker-setup.sh ├── gamedata └── cs2fixes.games.txt ├── protobuf ├── base_gcmessages_csgo.proto ├── c_peer2peer_netmessages.proto ├── clientmessages.proto ├── connectionless_netmessages.proto ├── cs_gameevents.proto ├── cs_usercmd.proto ├── cstrike15_gcmessages.proto ├── cstrike15_usermessages.proto ├── demo.proto ├── econ_gcmessages.proto ├── engine_gcmessages.proto ├── fatdemo.proto ├── gameevents.proto ├── gcsdk_gcmessages.proto ├── gcsystemmsgs.proto ├── generated │ ├── base_gcmessages_csgo.pb.cc │ ├── base_gcmessages_csgo.pb.h │ ├── c_peer2peer_netmessages.pb.cc │ ├── c_peer2peer_netmessages.pb.h │ ├── clientmessages.pb.cc │ ├── clientmessages.pb.h │ ├── connectionless_netmessages.pb.cc │ ├── connectionless_netmessages.pb.h │ ├── cs_gameevents.pb.cc │ ├── cs_gameevents.pb.h │ ├── cs_usercmd.pb.cc │ ├── cs_usercmd.pb.h │ ├── cstrike15_gcmessages.pb.cc │ ├── cstrike15_gcmessages.pb.h │ ├── cstrike15_usermessages.pb.cc │ ├── cstrike15_usermessages.pb.h │ ├── demo.pb.cc │ ├── demo.pb.h │ ├── econ_gcmessages.pb.cc │ ├── econ_gcmessages.pb.h │ ├── engine_gcmessages.pb.cc │ ├── engine_gcmessages.pb.h │ ├── fatdemo.pb.cc │ ├── fatdemo.pb.h │ ├── gameevents.pb.cc │ ├── gameevents.pb.h │ ├── gcsdk_gcmessages.pb.cc │ ├── gcsdk_gcmessages.pb.h │ ├── gcsystemmsgs.pb.cc │ ├── gcsystemmsgs.pb.h │ ├── netmessages.pb.cc │ ├── netmessages.pb.h │ ├── network_connection.pb.cc │ ├── network_connection.pb.h │ ├── networkbasetypes.pb.cc │ ├── networkbasetypes.pb.h │ ├── networksystem_protomessages.pb.cc │ ├── networksystem_protomessages.pb.h │ ├── steamdatagram_messages_auth.pb.cc │ ├── steamdatagram_messages_auth.pb.h │ ├── steamdatagram_messages_sdr.pb.cc │ ├── steamdatagram_messages_sdr.pb.h │ ├── steammessages.pb.cc │ ├── steammessages.pb.h │ ├── steammessages_cloud.steamworkssdk.pb.cc │ ├── steammessages_cloud.steamworkssdk.pb.h │ ├── steammessages_gamenetworkingui.pb.cc │ ├── steammessages_gamenetworkingui.pb.h │ ├── steammessages_helprequest.steamworkssdk.pb.cc │ ├── steammessages_helprequest.steamworkssdk.pb.h │ ├── steammessages_oauth.steamworkssdk.pb.cc │ ├── steammessages_oauth.steamworkssdk.pb.h │ ├── steammessages_player.steamworkssdk.pb.cc │ ├── steammessages_player.steamworkssdk.pb.h │ ├── steammessages_publishedfile.steamworkssdk.pb.cc │ ├── steammessages_publishedfile.steamworkssdk.pb.h │ ├── steammessages_steamlearn.steamworkssdk.pb.cc │ ├── steammessages_steamlearn.steamworkssdk.pb.h │ ├── steammessages_unified_base.steamworkssdk.pb.cc │ ├── steammessages_unified_base.steamworkssdk.pb.h │ ├── steamnetworkingsockets_messages.pb.cc │ ├── steamnetworkingsockets_messages.pb.h │ ├── steamnetworkingsockets_messages_certs.pb.cc │ ├── steamnetworkingsockets_messages_certs.pb.h │ ├── steamnetworkingsockets_messages_udp.pb.cc │ ├── steamnetworkingsockets_messages_udp.pb.h │ ├── te.pb.cc │ ├── te.pb.h │ ├── uifontfile_format.pb.cc │ ├── uifontfile_format.pb.h │ ├── usercmd.pb.cc │ ├── usercmd.pb.h │ ├── usermessages.pb.cc │ ├── usermessages.pb.h │ ├── valveextensions.pb.cc │ └── valveextensions.pb.h ├── netmessages.proto ├── network_connection.proto ├── networkbasetypes.proto ├── networksystem_protomessages.proto ├── protoc │ ├── google │ │ └── protobuf │ │ │ └── descriptor.proto │ └── protoc ├── protocompile.sh ├── steamdatagram_messages_auth.proto ├── steamdatagram_messages_sdr.proto ├── steammessages.proto ├── steammessages_cloud.steamworkssdk.proto ├── steammessages_gamenetworkingui.proto ├── steammessages_helprequest.steamworkssdk.proto ├── steammessages_oauth.steamworkssdk.proto ├── steammessages_player.steamworkssdk.proto ├── steammessages_publishedfile.steamworkssdk.proto ├── steammessages_steamlearn.steamworkssdk.proto ├── steammessages_unified_base.steamworkssdk.proto ├── steamnetworkingsockets_messages.proto ├── steamnetworkingsockets_messages_certs.proto ├── steamnetworkingsockets_messages_udp.proto ├── te.proto ├── uifontfile_format.proto ├── usercmd.proto ├── usermessages.proto └── valveextensions.proto ├── src ├── addresses.cpp ├── addresses.h ├── adminsystem.cpp ├── adminsystem.h ├── cdetour.h ├── commands.cpp ├── commands.h ├── common.h ├── cs2_sdk │ ├── cschemasystem.h │ ├── entity │ │ ├── cbaseentity.h │ │ ├── cbasemodelentity.h │ │ ├── cbaseplayercontroller.h │ │ ├── cbaseplayerpawn.h │ │ ├── ccollisionproperty.h │ │ ├── ccsplayercontroller.h │ │ ├── ccsplayerpawn.h │ │ ├── ccsweaponbase.h │ │ ├── cgamerules.h │ │ ├── cparticlesystem.h │ │ ├── ctakedamageinfo.h │ │ ├── cteam.h │ │ ├── ctriggerpush.h │ │ ├── globaltypes.h │ │ ├── lights.h │ │ └── services.h │ ├── schema.cpp │ └── schema.h ├── cs2fixes.cpp ├── cs2fixes.h ├── ctimer.cpp ├── ctimer.h ├── cvars.cpp ├── detours.cpp ├── detours.h ├── entitylistener.cpp ├── entitylistener.h ├── eventlistener.h ├── events.cpp ├── gameconfig.cpp ├── gameconfig.h ├── gamesystem.cpp ├── gamesystem.h ├── mempatch.cpp ├── mempatch.h ├── patches.cpp ├── patches.h ├── playermanager.cpp ├── playermanager.h ├── recipientfilters.h └── utils │ ├── entity.cpp │ ├── entity.h │ ├── module.h │ ├── plat.h │ ├── plat_unix.cpp │ ├── plat_win.cpp │ ├── plat_win.h │ └── virtual.h └── vendor ├── funchook ├── LICENSE ├── README.md ├── include │ └── funchook.h └── lib │ ├── Debug │ ├── distorm.lib │ ├── distorm.pdb │ ├── funchook.lib │ ├── funchook.pdb │ ├── libdistorm.a │ └── libfunchook.a │ └── Release │ ├── distorm.lib │ ├── funchook.lib │ ├── libdistorm.a │ └── libfunchook.a ├── nlohmann ├── json.hpp └── json_fwd.hpp ├── protobuf-3.21.8 ├── .bazelignore ├── .github │ ├── ISSUE_TEMPLATE │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── mergeable.yml │ └── workflows │ │ ├── codespell.yml │ │ ├── objc_cocoapods.yml │ │ └── php-ext.yml ├── .gitignore ├── .gitmodules ├── .readthedocs.yml ├── BUILD.bazel ├── CHANGES.txt ├── CMakeLists.txt ├── CONTRIBUTING.md ├── CONTRIBUTORS.txt ├── LICENSE ├── Makefile.am ├── Protobuf-C++.podspec ├── Protobuf.podspec ├── README.md ├── SECURITY.md ├── WORKSPACE ├── appveyor.bat ├── appveyor.yml ├── autogen.sh ├── benchmarks │ ├── BUILD.bazel │ ├── Makefile.am │ ├── README.md │ ├── __init__.py │ ├── benchmarks.proto │ ├── cpp │ │ ├── BUILD.bazel │ │ └── cpp_benchmark.cc │ ├── datasets │ │ ├── BUILD.bazel │ │ ├── google_message1 │ │ │ ├── proto2 │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── benchmark_message1_proto2.proto │ │ │ │ └── dataset.google_message1_proto2.pb │ │ │ └── proto3 │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── benchmark_message1_proto3.proto │ │ │ │ └── dataset.google_message1_proto3.pb │ │ ├── google_message2 │ │ │ ├── BUILD.bazel │ │ │ ├── benchmark_message2.proto │ │ │ └── dataset.google_message2.pb │ │ ├── google_message3 │ │ │ ├── BUILD.bazel │ │ │ ├── benchmark_message3.proto │ │ │ ├── benchmark_message3_1.proto │ │ │ ├── benchmark_message3_2.proto │ │ │ ├── benchmark_message3_3.proto │ │ │ ├── benchmark_message3_4.proto │ │ │ ├── benchmark_message3_5.proto │ │ │ ├── benchmark_message3_6.proto │ │ │ ├── benchmark_message3_7.proto │ │ │ └── benchmark_message3_8.proto │ │ └── google_message4 │ │ │ ├── BUILD.bazel │ │ │ ├── benchmark_message4.proto │ │ │ ├── benchmark_message4_1.proto │ │ │ ├── benchmark_message4_2.proto │ │ │ └── benchmark_message4_3.proto │ ├── go │ │ └── go_benchmark_test.go │ ├── google_size.proto │ ├── java │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── com │ │ │ └── google │ │ │ └── protobuf │ │ │ └── ProtoCaliperBenchmark.java │ ├── js │ │ ├── benchmark_suite.js │ │ └── js_benchmark.js │ ├── php │ │ ├── PhpBenchmark.php │ │ └── autoload.php │ ├── protobuf.js │ │ ├── generate_pbjs_files.js │ │ └── protobufjs_benchmark.js │ ├── python │ │ ├── __init__.py │ │ ├── py_benchmark.py │ │ └── python_benchmark_messages.cc │ └── util │ │ ├── __init__.py │ │ ├── big_query_utils.py │ │ ├── data_proto2_to_proto3_util.h │ │ ├── gogo_data_scrubber.cc │ │ ├── proto3_data_stripper.cc │ │ ├── protoc-gen-gogoproto.cc │ │ ├── protoc-gen-proto2_to_proto3.cc │ │ ├── result_parser.py │ │ ├── result_uploader.py │ │ └── schema_proto2_to_proto3_util.h ├── build_defs │ ├── BUILD.bazel │ ├── cc_proto_blacklist_test.bzl │ ├── compiler_config_setting.bzl │ └── cpp_opts.bzl ├── build_files_updated_unittest.sh ├── cmake │ ├── CMakeLists.txt │ ├── README.md │ ├── conformance.cmake │ ├── examples.cmake │ ├── extract_includes.bat.in │ ├── install.cmake │ ├── libprotobuf-lite.cmake │ ├── libprotobuf.cmake │ ├── libprotoc.cmake │ ├── protobuf-config-version.cmake.in │ ├── protobuf-config.cmake.in │ ├── protobuf-lite.pc.cmake │ ├── protobuf-module.cmake.in │ ├── protobuf-options.cmake │ ├── protobuf.pc.cmake │ ├── protoc.cmake │ ├── tests.cmake │ └── version.rc.in ├── configure.ac ├── conformance │ ├── BUILD.bazel │ ├── ConformanceJava.java │ ├── ConformanceJavaLite.java │ ├── Makefile.am │ ├── README.md │ ├── autoload.php │ ├── binary_json_conformance_suite.cc │ ├── binary_json_conformance_suite.h │ ├── conformance.proto │ ├── conformance_cpp.cc │ ├── conformance_nodejs.js │ ├── conformance_objc.m │ ├── conformance_php.php │ ├── conformance_python.py │ ├── conformance_ruby.rb │ ├── conformance_test.cc │ ├── conformance_test.h │ ├── conformance_test_main.cc │ ├── conformance_test_runner.cc │ ├── conformance_test_runner.sh │ ├── defs.bzl │ ├── failure_list_cpp.txt │ ├── failure_list_csharp.txt │ ├── failure_list_java.txt │ ├── failure_list_java_lite.txt │ ├── failure_list_jruby.txt │ ├── failure_list_js.txt │ ├── failure_list_objc.txt │ ├── failure_list_php.txt │ ├── failure_list_php_c.txt │ ├── failure_list_python-post26.txt │ ├── failure_list_python.txt │ ├── failure_list_python_cpp.txt │ ├── failure_list_ruby.txt │ ├── text_format_conformance_suite.cc │ ├── text_format_conformance_suite.h │ ├── text_format_failure_list_cpp.txt │ ├── text_format_failure_list_csharp.txt │ ├── text_format_failure_list_java.txt │ ├── text_format_failure_list_java_lite.txt │ ├── text_format_failure_list_jruby.txt │ ├── text_format_failure_list_php.txt │ ├── text_format_failure_list_python.txt │ ├── text_format_failure_list_python_cpp.txt │ ├── text_format_failure_list_ruby.txt │ ├── third_party │ │ └── jsoncpp │ │ │ ├── json.h │ │ │ └── jsoncpp.cpp │ └── update_failure_list.py ├── csharp │ ├── .editorconfig │ ├── .gitignore │ ├── BUILD.bazel │ ├── CHANGES.txt │ ├── Google.Protobuf.Tools.nuspec │ ├── Google.Protobuf.Tools.targets │ ├── NuGet.Config │ ├── README.md │ ├── build_packages.bat │ ├── build_tools.sh │ ├── buildall.bat │ ├── buildall.sh │ ├── compatibility_tests │ │ └── v3.0.0 │ │ │ ├── protos │ │ │ ├── csharp │ │ │ │ └── protos │ │ │ │ │ └── unittest_issues.proto │ │ │ └── src │ │ │ │ └── google │ │ │ │ └── protobuf │ │ │ │ ├── map_unittest_proto3.proto │ │ │ │ ├── unittest_import_proto3.proto │ │ │ │ ├── unittest_import_public_proto3.proto │ │ │ │ ├── unittest_proto3.proto │ │ │ │ └── unittest_well_known_types.proto │ │ │ ├── src │ │ │ └── Google.Protobuf.Test │ │ │ │ ├── ByteStringTest.cs │ │ │ │ ├── CodedInputStreamExtensions.cs │ │ │ │ ├── CodedInputStreamTest.cs │ │ │ │ ├── CodedOutputStreamTest.cs │ │ │ │ ├── Collections │ │ │ │ ├── MapFieldTest.cs │ │ │ │ └── RepeatedFieldTest.cs │ │ │ │ ├── Compatibility │ │ │ │ ├── PropertyInfoExtensionsTest.cs │ │ │ │ └── TypeExtensionsTest.cs │ │ │ │ ├── DeprecatedMemberTest.cs │ │ │ │ ├── EqualityTester.cs │ │ │ │ ├── FieldCodecTest.cs │ │ │ │ ├── GeneratedMessageTest.cs │ │ │ │ ├── Google.Protobuf.Test.csproj │ │ │ │ ├── IssuesTest.cs │ │ │ │ ├── JsonParserTest.cs │ │ │ │ ├── JsonTokenizerTest.cs │ │ │ │ ├── Program.cs │ │ │ │ ├── Reflection │ │ │ │ ├── DescriptorsTest.cs │ │ │ │ ├── FieldAccessTest.cs │ │ │ │ └── TypeRegistryTest.cs │ │ │ │ ├── SampleEnum.cs │ │ │ │ ├── SampleMessages.cs │ │ │ │ ├── TestCornerCases.cs │ │ │ │ ├── TestProtos │ │ │ │ └── ForeignMessagePartial.cs │ │ │ │ └── WellKnownTypes │ │ │ │ ├── AnyTest.cs │ │ │ │ ├── DurationTest.cs │ │ │ │ ├── FieldMaskTest.cs │ │ │ │ ├── TimestampTest.cs │ │ │ │ └── WrappersTest.cs │ │ │ └── test.sh │ ├── generate_protos.sh │ ├── install_dotnet_sdk.ps1 │ ├── keys │ │ ├── Google.Protobuf.public.snk │ │ ├── Google.Protobuf.snk │ │ └── README.md │ ├── protos │ │ ├── README.md │ │ ├── map_unittest_proto3.proto │ │ ├── old_extensions1.proto │ │ ├── old_extensions2.proto │ │ ├── unittest.proto │ │ ├── unittest_custom_options_proto3.proto │ │ ├── unittest_import.proto │ │ ├── unittest_import_proto3.proto │ │ ├── unittest_import_public.proto │ │ ├── unittest_import_public_proto3.proto │ │ ├── unittest_issue6936_a.proto │ │ ├── unittest_issue6936_b.proto │ │ ├── unittest_issue6936_c.proto │ │ ├── unittest_issues.proto │ │ ├── unittest_proto3.proto │ │ └── unittest_selfreferential_options.proto │ └── src │ │ ├── AddressBook │ │ ├── AddPerson.cs │ │ ├── AddressBook.csproj │ │ ├── Addressbook.cs │ │ ├── ListPeople.cs │ │ ├── Program.cs │ │ └── SampleUsage.cs │ │ ├── Google.Protobuf.Benchmarks │ │ ├── BenchmarkDatasetConfig.cs │ │ ├── BenchmarkMessage1Proto3.cs │ │ ├── Benchmarks.cs │ │ ├── ByteStringBenchmark.cs │ │ ├── Google.Protobuf.Benchmarks.csproj │ │ ├── GoogleMessageBenchmark.cs │ │ ├── ParseMessagesBenchmark.cs │ │ ├── ParseRawPrimitivesBenchmark.cs │ │ ├── Program.cs │ │ ├── WrapperBenchmarkMessages.cs │ │ ├── WriteMessagesBenchmark.cs │ │ ├── WriteRawPrimitivesBenchmark.cs │ │ └── wrapper_benchmark_messages.proto │ │ ├── Google.Protobuf.Conformance │ │ ├── Conformance.cs │ │ ├── Google.Protobuf.Conformance.csproj │ │ └── Program.cs │ │ ├── Google.Protobuf.JsonDump │ │ ├── Google.Protobuf.JsonDump.csproj │ │ └── Program.cs │ │ ├── Google.Protobuf.Test.TestProtos │ │ ├── ForeignMessagePartial.cs │ │ ├── Google.Protobuf.Test.TestProtos.csproj │ │ ├── MapUnittestProto3.cs │ │ ├── OldExtensions1.cs │ │ ├── OldExtensions2.cs │ │ ├── TestMessagesProto2.cs │ │ ├── TestMessagesProto3.cs │ │ ├── Unittest.cs │ │ ├── UnittestCustomOptionsProto3.cs │ │ ├── UnittestImport.cs │ │ ├── UnittestImportProto3.cs │ │ ├── UnittestImportPublic.cs │ │ ├── UnittestImportPublicProto3.cs │ │ ├── UnittestIssue6936A.cs │ │ ├── UnittestIssue6936B.cs │ │ ├── UnittestIssue6936C.cs │ │ ├── UnittestIssues.cs │ │ ├── UnittestProto3.cs │ │ ├── UnittestProto3Optional.cs │ │ ├── UnittestSelfreferentialOptions.cs │ │ └── UnittestWellKnownTypes.cs │ │ ├── Google.Protobuf.Test │ │ ├── Buffers │ │ │ └── ArrayBufferWriter.cs │ │ ├── ByteStringTest.cs │ │ ├── CodedInputStreamExtensions.cs │ │ ├── CodedInputStreamTest.cs │ │ ├── CodedOutputStreamTest.cs │ │ ├── Collections │ │ │ ├── MapFieldTest.cs │ │ │ ├── ProtobufEqualityComparersTest.cs │ │ │ └── RepeatedFieldTest.cs │ │ ├── Compatibility │ │ │ ├── PropertyInfoExtensionsTest.cs │ │ │ ├── StreamExtensionsTest.cs │ │ │ └── TypeExtensionsTest.cs │ │ ├── DeprecatedMemberTest.cs │ │ ├── EqualityTester.cs │ │ ├── ExtensionSetTest.cs │ │ ├── FieldCodecTest.cs │ │ ├── FieldMaskTreeTest.cs │ │ ├── GeneratedMessageTest.Proto2.cs │ │ ├── GeneratedMessageTest.cs │ │ ├── Google.Protobuf.Test.csproj │ │ ├── IssuesTest.cs │ │ ├── JsonFormatterTest.cs │ │ ├── JsonParserTest.cs │ │ ├── JsonTokenizerTest.cs │ │ ├── LegacyGeneratedCodeTest.cs │ │ ├── MessageParsingHelpers.cs │ │ ├── Proto3OptionalTest.cs │ │ ├── ReadOnlySequenceFactory.cs │ │ ├── RefStructCompatibilityTest.cs │ │ ├── Reflection │ │ │ ├── CustomOptionsTest.cs │ │ │ ├── DescriptorDeclarationTest.cs │ │ │ ├── DescriptorsTest.cs │ │ │ ├── FieldAccessTest.cs │ │ │ └── TypeRegistryTest.cs │ │ ├── SampleEnum.cs │ │ ├── SampleMessages.cs │ │ ├── SampleNaNs.cs │ │ ├── TestCornerCases.cs │ │ ├── UnknownFieldSetTest.cs │ │ ├── WellKnownTypes │ │ │ ├── AnyTest.cs │ │ │ ├── DurationTest.cs │ │ │ ├── FieldMaskTest.cs │ │ │ ├── TimestampTest.cs │ │ │ └── WrappersTest.cs │ │ └── testprotos.pb │ │ ├── Google.Protobuf.sln │ │ └── Google.Protobuf │ │ ├── ByteArray.cs │ │ ├── ByteString.cs │ │ ├── ByteStringAsync.cs │ │ ├── CodedInputStream.cs │ │ ├── CodedOutputStream.ComputeSize.cs │ │ ├── CodedOutputStream.cs │ │ ├── Collections │ │ ├── Lists.cs │ │ ├── MapField.cs │ │ ├── ProtobufEqualityComparers.cs │ │ ├── ReadOnlyDictionary.cs │ │ └── RepeatedField.cs │ │ ├── Compatibility │ │ ├── DynamicallyAccessedMemberTypes.cs │ │ ├── DynamicallyAccessedMembersAttribute.cs │ │ ├── MethodInfoExtensions.cs │ │ ├── PropertyInfoExtensions.cs │ │ ├── RequiresUnreferencedCodeAttribute.cs │ │ ├── StreamExtensions.cs │ │ ├── TypeExtensions.cs │ │ └── UnconditionalSuppressMessageAttribute.cs │ │ ├── Extension.cs │ │ ├── ExtensionRegistry.cs │ │ ├── ExtensionSet.cs │ │ ├── ExtensionValue.cs │ │ ├── FieldCodec.cs │ │ ├── FieldMaskTree.cs │ │ ├── FrameworkPortability.cs │ │ ├── Google.Protobuf.csproj │ │ ├── IBufferMessage.cs │ │ ├── ICustomDiagnosticMessage.cs │ │ ├── IDeepCloneable.cs │ │ ├── IExtendableMessage.cs │ │ ├── IMessage.cs │ │ ├── InvalidJsonException.cs │ │ ├── InvalidProtocolBufferException.cs │ │ ├── JsonFormatter.cs │ │ ├── JsonParser.cs │ │ ├── JsonToken.cs │ │ ├── JsonTokenizer.cs │ │ ├── LimitedInputStream.cs │ │ ├── MessageExtensions.cs │ │ ├── MessageParser.cs │ │ ├── ObjectIntPair.cs │ │ ├── ParseContext.cs │ │ ├── ParserInternalState.cs │ │ ├── ParsingPrimitives.cs │ │ ├── ParsingPrimitivesMessages.cs │ │ ├── ParsingPrimitivesWrappers.cs │ │ ├── ProtoPreconditions.cs │ │ ├── Reflection │ │ ├── CustomOptions.cs │ │ ├── Descriptor.cs │ │ ├── DescriptorBase.cs │ │ ├── DescriptorDeclaration.cs │ │ ├── DescriptorPool.cs │ │ ├── DescriptorUtil.cs │ │ ├── DescriptorValidationException.cs │ │ ├── EnumDescriptor.cs │ │ ├── EnumValueDescriptor.cs │ │ ├── ExtensionAccessor.cs │ │ ├── ExtensionCollection.cs │ │ ├── FieldAccessorBase.cs │ │ ├── FieldDescriptor.cs │ │ ├── FieldType.cs │ │ ├── FileDescriptor.cs │ │ ├── GeneratedClrTypeInfo.cs │ │ ├── IDescriptor.cs │ │ ├── IFieldAccessor.cs │ │ ├── MapFieldAccessor.cs │ │ ├── MessageDescriptor.cs │ │ ├── MethodDescriptor.cs │ │ ├── OneofAccessor.cs │ │ ├── OneofDescriptor.cs │ │ ├── OriginalNameAttribute.cs │ │ ├── PackageDescriptor.cs │ │ ├── ReflectionUtil.cs │ │ ├── RepeatedFieldAccessor.cs │ │ ├── ServiceDescriptor.cs │ │ ├── SingleFieldAccessor.cs │ │ └── TypeRegistry.cs │ │ ├── SegmentedBufferHelper.cs │ │ ├── UnknownField.cs │ │ ├── UnknownFieldSet.cs │ │ ├── UnsafeByteOperations.cs │ │ ├── WellKnownTypes │ │ ├── Any.cs │ │ ├── AnyPartial.cs │ │ ├── Api.cs │ │ ├── Duration.cs │ │ ├── DurationPartial.cs │ │ ├── Empty.cs │ │ ├── FieldMask.cs │ │ ├── FieldMaskPartial.cs │ │ ├── SourceContext.cs │ │ ├── Struct.cs │ │ ├── TimeExtensions.cs │ │ ├── Timestamp.cs │ │ ├── TimestampPartial.cs │ │ ├── Type.cs │ │ ├── ValuePartial.cs │ │ ├── Wrappers.cs │ │ └── WrappersPartial.cs │ │ ├── WireFormat.cs │ │ ├── WriteBufferHelper.cs │ │ ├── WriteContext.cs │ │ ├── WriterInternalState.cs │ │ ├── WritingPrimitives.cs │ │ └── WritingPrimitivesMessages.cs ├── docs │ ├── csharp │ │ └── proto2.md │ ├── field_presence.md │ ├── implementing_proto3_presence.md │ ├── jvm_aot.md │ ├── options.md │ ├── performance.md │ └── third_party.md ├── editors │ ├── README.txt │ ├── proto.vim │ └── protobuf-mode.el ├── examples │ ├── .gitignore │ ├── AddPerson.java │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── ListPeople.java │ ├── README.md │ ├── WORKSPACE │ ├── add_person.cc │ ├── add_person.dart │ ├── add_person.py │ ├── addressbook.proto │ ├── go │ │ ├── cmd │ │ │ ├── add_person │ │ │ │ ├── add_person.go │ │ │ │ └── add_person_test.go │ │ │ └── list_people │ │ │ │ ├── list_people.go │ │ │ │ └── list_people_test.go │ │ ├── go.mod │ │ └── go.sum │ ├── list_people.cc │ ├── list_people.dart │ ├── list_people.py │ └── pubspec.yaml ├── fix_permissions.sh ├── generate_changelog.py ├── generate_descriptor_proto.sh ├── global.json ├── java │ ├── BUILD.bazel │ ├── README.md │ ├── bom │ │ └── pom.xml │ ├── core │ │ ├── BUILD.bazel │ │ ├── generate-sources-build.xml │ │ ├── generate-test-sources-build.xml │ │ ├── pom.xml │ │ ├── pom_template.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── google │ │ │ │ └── protobuf │ │ │ │ ├── AbstractMessage.java │ │ │ │ ├── AbstractMessageLite.java │ │ │ │ ├── AbstractParser.java │ │ │ │ ├── AbstractProtobufList.java │ │ │ │ ├── AllocatedBuffer.java │ │ │ │ ├── Android.java │ │ │ │ ├── ArrayDecoders.java │ │ │ │ ├── BinaryReader.java │ │ │ │ ├── BinaryWriter.java │ │ │ │ ├── BlockingRpcChannel.java │ │ │ │ ├── BlockingService.java │ │ │ │ ├── BooleanArrayList.java │ │ │ │ ├── BufferAllocator.java │ │ │ │ ├── ByteBufferWriter.java │ │ │ │ ├── ByteOutput.java │ │ │ │ ├── ByteString.java │ │ │ │ ├── CanIgnoreReturnValue.java │ │ │ │ ├── CheckReturnValue.java │ │ │ │ ├── CodedInputStream.java │ │ │ │ ├── CodedInputStreamReader.java │ │ │ │ ├── CodedOutputStream.java │ │ │ │ ├── CodedOutputStreamWriter.java │ │ │ │ ├── CompileTimeConstant.java │ │ │ │ ├── DescriptorMessageInfoFactory.java │ │ │ │ ├── Descriptors.java │ │ │ │ ├── DiscardUnknownFieldsParser.java │ │ │ │ ├── DoubleArrayList.java │ │ │ │ ├── DynamicMessage.java │ │ │ │ ├── ExperimentalApi.java │ │ │ │ ├── Extension.java │ │ │ │ ├── ExtensionLite.java │ │ │ │ ├── ExtensionRegistry.java │ │ │ │ ├── ExtensionRegistryFactory.java │ │ │ │ ├── ExtensionRegistryLite.java │ │ │ │ ├── ExtensionSchema.java │ │ │ │ ├── ExtensionSchemaFull.java │ │ │ │ ├── ExtensionSchemaLite.java │ │ │ │ ├── ExtensionSchemas.java │ │ │ │ ├── FieldInfo.java │ │ │ │ ├── FieldSet.java │ │ │ │ ├── FieldType.java │ │ │ │ ├── FloatArrayList.java │ │ │ │ ├── GeneratedMessage.java │ │ │ │ ├── GeneratedMessageInfoFactory.java │ │ │ │ ├── GeneratedMessageLite.java │ │ │ │ ├── GeneratedMessageV3.java │ │ │ │ ├── InlineMe.java │ │ │ │ ├── IntArrayList.java │ │ │ │ ├── Internal.java │ │ │ │ ├── InvalidProtocolBufferException.java │ │ │ │ ├── IterableByteBufferInputStream.java │ │ │ │ ├── JavaType.java │ │ │ │ ├── LazyField.java │ │ │ │ ├── LazyFieldLite.java │ │ │ │ ├── LazyStringArrayList.java │ │ │ │ ├── LazyStringList.java │ │ │ │ ├── ListFieldSchema.java │ │ │ │ ├── LongArrayList.java │ │ │ │ ├── ManifestSchemaFactory.java │ │ │ │ ├── MapEntry.java │ │ │ │ ├── MapEntryLite.java │ │ │ │ ├── MapField.java │ │ │ │ ├── MapFieldLite.java │ │ │ │ ├── MapFieldSchema.java │ │ │ │ ├── MapFieldSchemaFull.java │ │ │ │ ├── MapFieldSchemaLite.java │ │ │ │ ├── MapFieldSchemas.java │ │ │ │ ├── Message.java │ │ │ │ ├── MessageInfo.java │ │ │ │ ├── MessageInfoFactory.java │ │ │ │ ├── MessageLite.java │ │ │ │ ├── MessageLiteOrBuilder.java │ │ │ │ ├── MessageLiteToString.java │ │ │ │ ├── MessageOrBuilder.java │ │ │ │ ├── MessageReflection.java │ │ │ │ ├── MessageSchema.java │ │ │ │ ├── MessageSetSchema.java │ │ │ │ ├── MutabilityOracle.java │ │ │ │ ├── NewInstanceSchema.java │ │ │ │ ├── NewInstanceSchemaFull.java │ │ │ │ ├── NewInstanceSchemaLite.java │ │ │ │ ├── NewInstanceSchemas.java │ │ │ │ ├── NioByteString.java │ │ │ │ ├── OneofInfo.java │ │ │ │ ├── Parser.java │ │ │ │ ├── PrimitiveNonBoxingCollection.java │ │ │ │ ├── ProtoSyntax.java │ │ │ │ ├── Protobuf.java │ │ │ │ ├── ProtobufArrayList.java │ │ │ │ ├── ProtobufLists.java │ │ │ │ ├── ProtocolMessageEnum.java │ │ │ │ ├── ProtocolStringList.java │ │ │ │ ├── RawMessageInfo.java │ │ │ │ ├── Reader.java │ │ │ │ ├── RepeatedFieldBuilder.java │ │ │ │ ├── RepeatedFieldBuilderV3.java │ │ │ │ ├── RopeByteString.java │ │ │ │ ├── RpcCallback.java │ │ │ │ ├── RpcChannel.java │ │ │ │ ├── RpcController.java │ │ │ │ ├── RpcUtil.java │ │ │ │ ├── Schema.java │ │ │ │ ├── SchemaFactory.java │ │ │ │ ├── SchemaUtil.java │ │ │ │ ├── Service.java │ │ │ │ ├── ServiceException.java │ │ │ │ ├── SingleFieldBuilder.java │ │ │ │ ├── SingleFieldBuilderV3.java │ │ │ │ ├── SmallSortedMap.java │ │ │ │ ├── StructuralMessageInfo.java │ │ │ │ ├── TextFormat.java │ │ │ │ ├── TextFormatEscaper.java │ │ │ │ ├── TextFormatParseInfoTree.java │ │ │ │ ├── TextFormatParseLocation.java │ │ │ │ ├── TypeRegistry.java │ │ │ │ ├── UninitializedMessageException.java │ │ │ │ ├── UnknownFieldSchema.java │ │ │ │ ├── UnknownFieldSet.java │ │ │ │ ├── UnknownFieldSetLite.java │ │ │ │ ├── UnknownFieldSetLiteSchema.java │ │ │ │ ├── UnknownFieldSetSchema.java │ │ │ │ ├── UnmodifiableLazyStringList.java │ │ │ │ ├── UnsafeByteOperations.java │ │ │ │ ├── UnsafeUtil.java │ │ │ │ ├── Utf8.java │ │ │ │ ├── WireFormat.java │ │ │ │ └── Writer.java │ │ │ └── test │ │ │ ├── java │ │ │ └── com │ │ │ │ └── google │ │ │ │ └── protobuf │ │ │ │ ├── AbstractMessageTest.java │ │ │ │ ├── AbstractProto2LiteSchemaTest.java │ │ │ │ ├── AbstractProto2SchemaTest.java │ │ │ │ ├── AbstractProto3LiteSchemaTest.java │ │ │ │ ├── AbstractProto3SchemaTest.java │ │ │ │ ├── AbstractSchemaTest.java │ │ │ │ ├── AnyTest.java │ │ │ │ ├── ArrayDecodersTest.java │ │ │ │ ├── BinaryProtocolTest.java │ │ │ │ ├── BooleanArrayListTest.java │ │ │ │ ├── BoundedByteStringTest.java │ │ │ │ ├── ByteBufferWriterTest.java │ │ │ │ ├── ByteStringTest.java │ │ │ │ ├── CachedFieldSizeTest.java │ │ │ │ ├── CheckUtf8Test.java │ │ │ │ ├── CodedAdapterTest.java │ │ │ │ ├── CodedInputStreamTest.java │ │ │ │ ├── CodedOutputStreamTest.java │ │ │ │ ├── DecodeUtf8Test.java │ │ │ │ ├── DeprecatedFieldTest.java │ │ │ │ ├── DescriptorsTest.java │ │ │ │ ├── DiscardUnknownFieldsTest.java │ │ │ │ ├── DoubleArrayListTest.java │ │ │ │ ├── DynamicMessageTest.java │ │ │ │ ├── EnumTest.java │ │ │ │ ├── ExperimentalMessageFactory.java │ │ │ │ ├── ExperimentalSerializationUtil.java │ │ │ │ ├── ExperimentalTestDataProvider.java │ │ │ │ ├── ExtensionRegistryFactoryTest.java │ │ │ │ ├── FieldPresenceTest.java │ │ │ │ ├── FloatArrayListTest.java │ │ │ │ ├── GeneratedMessageTest.java │ │ │ │ ├── IntArrayListTest.java │ │ │ │ ├── InvalidProtocolBufferExceptionTest.java │ │ │ │ ├── IsValidUtf8Test.java │ │ │ │ ├── IsValidUtf8TestUtil.java │ │ │ │ ├── LazyFieldLiteTest.java │ │ │ │ ├── LazyFieldTest.java │ │ │ │ ├── LazyMessageLiteTest.java │ │ │ │ ├── LazyStringArrayListTest.java │ │ │ │ ├── LazyStringEndToEndTest.java │ │ │ │ ├── LiteEqualsAndHashTest.java │ │ │ │ ├── LiteralByteStringTest.java │ │ │ │ ├── LongArrayListTest.java │ │ │ │ ├── MapForProto2LiteTest.java │ │ │ │ ├── MapForProto2Test.java │ │ │ │ ├── MapLiteTest.java │ │ │ │ ├── MapTest.java │ │ │ │ ├── MessageTest.java │ │ │ │ ├── NestedBuildersTest.java │ │ │ │ ├── NioByteStringTest.java │ │ │ │ ├── PackedFieldTest.java │ │ │ │ ├── ParseExceptionsTest.java │ │ │ │ ├── ParserLiteTest.java │ │ │ │ ├── ParserTest.java │ │ │ │ ├── Proto2ExtensionLookupSchemaTest.java │ │ │ │ ├── Proto2LiteSchemaTest.java │ │ │ │ ├── Proto2MessageFactory.java │ │ │ │ ├── Proto2MessageLiteFactory.java │ │ │ │ ├── Proto2SchemaTest.java │ │ │ │ ├── Proto2UnknownEnumValueTest.java │ │ │ │ ├── Proto3LiteSchemaTest.java │ │ │ │ ├── Proto3MessageFactory.java │ │ │ │ ├── Proto3MessageLiteFactory.java │ │ │ │ ├── Proto3SchemaTest.java │ │ │ │ ├── ProtobufArrayListTest.java │ │ │ │ ├── RepeatedFieldBuilderV3Test.java │ │ │ │ ├── RopeByteStringSubstringTest.java │ │ │ │ ├── RopeByteStringTest.java │ │ │ │ ├── ServiceTest.java │ │ │ │ ├── SingleFieldBuilderV3Test.java │ │ │ │ ├── SmallSortedMapTest.java │ │ │ │ ├── TestBadIdentifiers.java │ │ │ │ ├── TestBadIdentifiersLite.java │ │ │ │ ├── TestSchemas.java │ │ │ │ ├── TestSchemasLite.java │ │ │ │ ├── TestUtil.java │ │ │ │ ├── TestUtilLite.java │ │ │ │ ├── TextFormatParseInfoTreeTest.java │ │ │ │ ├── TextFormatParseLocationTest.java │ │ │ │ ├── TextFormatTest.java │ │ │ │ ├── TypeRegistryTest.java │ │ │ │ ├── UnknownEnumValueTest.java │ │ │ │ ├── UnknownFieldSetPerformanceTest.java │ │ │ │ ├── UnknownFieldSetTest.java │ │ │ │ ├── UnmodifiableLazyStringListTest.java │ │ │ │ ├── Utf8Test.java │ │ │ │ ├── WellKnownTypesTest.java │ │ │ │ ├── WireFormatLiteTest.java │ │ │ │ ├── WireFormatTest.java │ │ │ │ ├── WrappersLiteOfMethodTest.java │ │ │ │ └── WrappersOfMethodTest.java │ │ │ └── proto │ │ │ └── com │ │ │ └── google │ │ │ └── protobuf │ │ │ ├── any_test.proto │ │ │ ├── cached_field_size_test.proto │ │ │ ├── deprecated_file.proto │ │ │ ├── dynamic_message_test.proto │ │ │ ├── field_presence_test.proto │ │ │ ├── lazy_fields_lite.proto │ │ │ ├── lite_equals_and_hash.proto │ │ │ ├── map_for_proto2_lite_test.proto │ │ │ ├── map_for_proto2_test.proto │ │ │ ├── map_initialization_order_test.proto │ │ │ ├── map_lite_test.proto │ │ │ ├── map_test.proto │ │ │ ├── multiple_files_test.proto │ │ │ ├── nested_builders_test.proto │ │ │ ├── nested_extension.proto │ │ │ ├── nested_extension_lite.proto │ │ │ ├── non_nested_extension.proto │ │ │ ├── non_nested_extension_lite.proto │ │ │ ├── outer_class_name_test.proto │ │ │ ├── outer_class_name_test2.proto │ │ │ ├── outer_class_name_test3.proto │ │ │ ├── packed_field_test.proto │ │ │ ├── proto2_message.proto │ │ │ ├── proto2_message_lite.proto │ │ │ ├── proto2_unknown_enum_values.proto │ │ │ ├── proto3_message.proto │ │ │ ├── proto3_message_lite.proto │ │ │ ├── test_bad_identifiers.proto │ │ │ ├── test_check_utf8.proto │ │ │ ├── test_check_utf8_size.proto │ │ │ ├── test_custom_options.proto │ │ │ └── wrappers_test.proto │ ├── internal │ │ ├── BUILD.bazel │ │ └── testing.bzl │ ├── kotlin-lite │ │ ├── BUILD.bazel │ │ ├── generate-sources-build.xml │ │ ├── generate-test-sources-build.xml │ │ ├── lite.awk │ │ ├── pom.xml │ │ ├── pom_template.xml │ │ ├── process-lite-sources-build.xml │ │ └── src │ │ │ ├── main │ │ │ └── kotlin │ │ │ │ └── com │ │ │ │ └── google │ │ │ │ └── protobuf │ │ │ │ └── ExtendableMessageLiteExtensions.kt │ │ │ └── test │ │ │ └── kotlin │ │ │ └── com │ │ │ └── google │ │ │ └── protobuf │ │ │ ├── ExtendableMessageLiteExtensionsTest.kt │ │ │ └── Proto2LiteTest.kt │ ├── kotlin │ │ ├── BUILD.bazel │ │ ├── generate-sources-build.xml │ │ ├── generate-test-sources-build.xml │ │ ├── pom.xml │ │ ├── pom_template.xml │ │ └── src │ │ │ ├── main │ │ │ └── kotlin │ │ │ │ └── com │ │ │ │ └── google │ │ │ │ └── protobuf │ │ │ │ ├── Anies.kt │ │ │ │ ├── ByteStrings.kt │ │ │ │ ├── DslList.kt │ │ │ │ ├── DslMap.kt │ │ │ │ ├── DslProxy.kt │ │ │ │ ├── ExtendableMessageExtensions.kt │ │ │ │ ├── ExtensionList.kt │ │ │ │ ├── OnlyForUseByGeneratedProtoCode.kt │ │ │ │ ├── ProtoDslMarker.kt │ │ │ │ └── UnmodifiableCollections.kt │ │ │ └── test │ │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── google │ │ │ │ └── protobuf │ │ │ │ ├── AniesTest.kt │ │ │ │ ├── ByteStringsTest.kt │ │ │ │ ├── DslListTest.kt │ │ │ │ ├── DslMapTest.kt │ │ │ │ ├── ExtendableMessageExtensionsTest.kt │ │ │ │ ├── ExtensionListTest.kt │ │ │ │ ├── Proto2Test.kt │ │ │ │ └── Proto3Test.kt │ │ │ └── proto │ │ │ └── com │ │ │ └── google │ │ │ └── protobuf │ │ │ ├── evil_names_proto2.proto │ │ │ ├── evil_names_proto3.proto │ │ │ ├── example_extensible_message.proto │ │ │ └── multiple_files_proto3.proto │ ├── lite.md │ ├── lite │ │ ├── BUILD.bazel │ │ ├── generate-sources-build.xml │ │ ├── generate-test-sources-build.xml │ │ ├── lite.awk │ │ ├── pom.xml │ │ ├── pom_template.xml │ │ ├── process-lite-sources-build.xml │ │ ├── proguard.pgcfg │ │ └── src │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── google │ │ │ └── protobuf │ │ │ └── LiteTest.java │ ├── pom.xml │ └── util │ │ ├── BUILD.bazel │ │ ├── pom.xml │ │ ├── pom_template.xml │ │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── google │ │ │ └── protobuf │ │ │ └── util │ │ │ ├── Durations.java │ │ │ ├── FieldMaskTree.java │ │ │ ├── FieldMaskUtil.java │ │ │ ├── JsonFormat.java │ │ │ ├── Structs.java │ │ │ ├── Timestamps.java │ │ │ └── Values.java │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── google │ │ │ └── protobuf │ │ │ └── util │ │ │ ├── DurationsTest.java │ │ │ ├── FieldMaskTreeTest.java │ │ │ ├── FieldMaskUtilTest.java │ │ │ ├── JsonFormatTest.java │ │ │ ├── StructsTest.java │ │ │ ├── TimestampsTest.java │ │ │ └── ValuesTest.java │ │ └── proto │ │ └── com │ │ └── google │ │ └── protobuf │ │ └── util │ │ └── json_test.proto ├── kokoro │ ├── README.md │ ├── caplog.sh │ ├── docs │ │ ├── common.cfg │ │ ├── publish-python.sh │ │ ├── python.cfg │ │ └── trampoline.sh │ ├── linux │ │ ├── 32-bit │ │ │ ├── Dockerfile │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── aarch64 │ │ │ ├── cpp_crosscompile_and_run_tests_with_qemu_aarch64.sh │ │ │ ├── dockcross_helpers │ │ │ │ ├── run_dockcross_linux_aarch64.sh │ │ │ │ └── run_dockcross_manylinux2014_aarch64.sh │ │ │ ├── php_build_and_run_tests_with_qemu_aarch64.sh │ │ │ ├── protoc_crosscompile_aarch64.sh │ │ │ ├── python_crosscompile_aarch64.sh │ │ │ ├── python_run_tests_with_qemu_aarch64.sh │ │ │ ├── qemu_helpers │ │ │ │ └── prepare_qemu.sh │ │ │ ├── ruby_build_and_run_tests_with_qemu_aarch64.sh │ │ │ ├── test_cpp_aarch64.sh │ │ │ ├── test_csharp_aarch64.sh │ │ │ ├── test_java_aarch64.sh │ │ │ ├── test_php_aarch64.sh │ │ │ ├── test_python_aarch64.sh │ │ │ ├── test_ruby_aarch64.sh │ │ │ └── testimage_protobuf_php_arm64v8 │ │ │ │ └── Dockerfile │ │ ├── bazel │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── bazel_distcheck │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── benchmark │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── run.sh │ │ ├── build_and_run_docker.sh │ │ ├── cpp_aarch64 │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── cpp_distcheck │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── cpp_tcmalloc │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── csharp │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── csharp_aarch64 │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── dist_install │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── dockerfile │ │ │ ├── push_testing_images.sh │ │ │ └── test │ │ │ │ ├── cpp_tcmalloc │ │ │ │ └── Dockerfile │ │ │ │ ├── csharp │ │ │ │ └── Dockerfile │ │ │ │ ├── java_stretch │ │ │ │ └── Dockerfile │ │ │ │ ├── php │ │ │ │ └── Dockerfile │ │ │ │ ├── php80 │ │ │ │ └── Dockerfile │ │ │ │ ├── php_32bit │ │ │ │ └── Dockerfile │ │ │ │ ├── python310 │ │ │ │ └── Dockerfile │ │ │ │ ├── python37 │ │ │ │ └── Dockerfile │ │ │ │ ├── python38 │ │ │ │ └── Dockerfile │ │ │ │ ├── python39 │ │ │ │ └── Dockerfile │ │ │ │ └── ruby │ │ │ │ └── Dockerfile │ │ ├── java_aarch64 │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── java_jdk11 │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── java_jdk17 │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── java_linkage_monitor │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── jruby92 │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── jruby93 │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── make_test_output.py │ │ ├── php_aarch64 │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── php_all │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── pull_request_in_docker.sh │ │ ├── python310 │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── python310_cpp │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── python37 │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── python37_cpp │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── python38 │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── python38_cpp │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── python39 │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── python39_cpp │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── python_aarch64 │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── ruby25 │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── ruby26 │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── ruby27 │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── ruby30 │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── ruby31 │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ └── ruby_aarch64 │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ ├── macos-next │ │ ├── README.md │ │ └── cpp │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ ├── macos │ │ ├── cpp │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── cpp_distcheck │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── objectivec_ios_debug │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── objectivec_ios_release │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── objectivec_osx │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── php7.0_mac │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── php7.3_mac │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── prepare_build_macos_rc │ │ ├── python │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── python_cpp │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── ruby25 │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── ruby26 │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── ruby27 │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ ├── ruby30 │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ │ └── ruby31 │ │ │ ├── build.sh │ │ │ ├── continuous.cfg │ │ │ └── presubmit.cfg │ ├── release │ │ ├── collect_all_artifacts.cfg │ │ ├── collect_all_artifacts.sh │ │ ├── csharp │ │ │ └── windows │ │ │ │ ├── build_nuget.bat │ │ │ │ ├── continuous.cfg │ │ │ │ ├── presubmit.cfg │ │ │ │ └── release.cfg │ │ ├── protoc │ │ │ ├── linux │ │ │ │ ├── build.sh │ │ │ │ └── release.cfg │ │ │ ├── macos │ │ │ │ ├── build.sh │ │ │ │ └── release.cfg │ │ │ └── windows │ │ │ │ ├── build.bat │ │ │ │ └── release.cfg │ │ ├── python │ │ │ ├── linux │ │ │ │ ├── build_artifacts.sh │ │ │ │ ├── config.sh │ │ │ │ ├── continuous.cfg │ │ │ │ ├── presubmit.cfg │ │ │ │ └── release.cfg │ │ │ ├── macos │ │ │ │ ├── build_artifacts.sh │ │ │ │ ├── config.sh │ │ │ │ ├── continuous.cfg │ │ │ │ ├── presubmit.cfg │ │ │ │ └── release.cfg │ │ │ └── windows │ │ │ │ ├── build_artifacts.bat │ │ │ │ ├── build_single_artifact.bat │ │ │ │ ├── continuous.cfg │ │ │ │ ├── install_python_interpreters.ps1 │ │ │ │ ├── presubmit.cfg │ │ │ │ └── release.cfg │ │ └── ruby │ │ │ ├── linux │ │ │ ├── build_artifacts.sh │ │ │ ├── continuous.cfg │ │ │ ├── prepare_build.sh │ │ │ ├── presubmit.cfg │ │ │ ├── release.cfg │ │ │ └── ruby │ │ │ │ ├── ruby_build.sh │ │ │ │ └── ruby_build_environment.sh │ │ │ └── macos │ │ │ ├── build_artifacts.sh │ │ │ ├── continuous.cfg │ │ │ ├── presubmit.cfg │ │ │ ├── release.cfg │ │ │ └── ruby │ │ │ ├── ruby_build.sh │ │ │ └── ruby_build_environment.sh │ └── windows │ │ └── csharp │ │ ├── build.bat │ │ ├── continuous.cfg │ │ └── presubmit.cfg ├── m4 │ ├── ac_system_extensions.m4 │ ├── acx_check_suncc.m4 │ ├── ax_cxx_compile_stdcxx.m4 │ ├── ax_prog_cc_for_build.m4 │ ├── ax_prog_cxx_for_build.m4 │ ├── ax_pthread.m4 │ └── stl_hash.m4 ├── maven_install.json ├── objectivec │ ├── .clang-format │ ├── .gitignore │ ├── BUILD.bazel │ ├── DevTools │ │ ├── check_version_stamps.sh │ │ ├── compile_testing_protos.sh │ │ ├── full_mac_build.sh │ │ ├── pddm.py │ │ └── pddm_tests.py │ ├── GPBAny.pbobjc.h │ ├── GPBAny.pbobjc.m │ ├── GPBApi.pbobjc.h │ ├── GPBApi.pbobjc.m │ ├── GPBArray.h │ ├── GPBArray.m │ ├── GPBArray_PackagePrivate.h │ ├── GPBBootstrap.h │ ├── GPBCodedInputStream.h │ ├── GPBCodedInputStream.m │ ├── GPBCodedInputStream_PackagePrivate.h │ ├── GPBCodedOutputStream.h │ ├── GPBCodedOutputStream.m │ ├── GPBCodedOutputStream_PackagePrivate.h │ ├── GPBDescriptor.h │ ├── GPBDescriptor.m │ ├── GPBDescriptor_PackagePrivate.h │ ├── GPBDictionary.h │ ├── GPBDictionary.m │ ├── GPBDictionary_PackagePrivate.h │ ├── GPBDuration.pbobjc.h │ ├── GPBDuration.pbobjc.m │ ├── GPBEmpty.pbobjc.h │ ├── GPBEmpty.pbobjc.m │ ├── GPBExtensionInternals.h │ ├── GPBExtensionInternals.m │ ├── GPBExtensionRegistry.h │ ├── GPBExtensionRegistry.m │ ├── GPBFieldMask.pbobjc.h │ ├── GPBFieldMask.pbobjc.m │ ├── GPBMessage.h │ ├── GPBMessage.m │ ├── GPBMessage_PackagePrivate.h │ ├── GPBProtocolBuffers.h │ ├── GPBProtocolBuffers.m │ ├── GPBProtocolBuffers_RuntimeSupport.h │ ├── GPBRootObject.h │ ├── GPBRootObject.m │ ├── GPBRootObject_PackagePrivate.h │ ├── GPBRuntimeTypes.h │ ├── GPBSourceContext.pbobjc.h │ ├── GPBSourceContext.pbobjc.m │ ├── GPBStruct.pbobjc.h │ ├── GPBStruct.pbobjc.m │ ├── GPBTimestamp.pbobjc.h │ ├── GPBTimestamp.pbobjc.m │ ├── GPBType.pbobjc.h │ ├── GPBType.pbobjc.m │ ├── GPBUnknownField.h │ ├── GPBUnknownField.m │ ├── GPBUnknownFieldSet.h │ ├── GPBUnknownFieldSet.m │ ├── GPBUnknownFieldSet_PackagePrivate.h │ ├── GPBUnknownField_PackagePrivate.h │ ├── GPBUtilities.h │ ├── GPBUtilities.m │ ├── GPBUtilities_PackagePrivate.h │ ├── GPBWellKnownTypes.h │ ├── GPBWellKnownTypes.m │ ├── GPBWireFormat.h │ ├── GPBWireFormat.m │ ├── GPBWrappers.pbobjc.h │ ├── GPBWrappers.pbobjc.m │ ├── ProtocolBuffers_OSX.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── PerformanceTests.xcscheme │ │ │ └── ProtocolBuffers.xcscheme │ ├── ProtocolBuffers_iOS.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── PerformanceTests.xcscheme │ │ │ └── ProtocolBuffers.xcscheme │ ├── ProtocolBuffers_tvOS.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── PerformanceTests.xcscheme │ │ │ └── ProtocolBuffers.xcscheme │ ├── README.md │ ├── Tests │ │ ├── GPBARCUnittestProtos.m │ │ ├── GPBArrayTests.m │ │ ├── GPBCodedInputStreamTests.m │ │ ├── GPBCodedOuputStreamTests.m │ │ ├── GPBCompileTest01.m │ │ ├── GPBCompileTest02.m │ │ ├── GPBCompileTest03.m │ │ ├── GPBCompileTest04.m │ │ ├── GPBCompileTest05.m │ │ ├── GPBCompileTest06.m │ │ ├── GPBCompileTest07.m │ │ ├── GPBCompileTest08.m │ │ ├── GPBCompileTest09.m │ │ ├── GPBCompileTest10.m │ │ ├── GPBCompileTest11.m │ │ ├── GPBCompileTest12.m │ │ ├── GPBCompileTest13.m │ │ ├── GPBCompileTest14.m │ │ ├── GPBCompileTest15.m │ │ ├── GPBCompileTest16.m │ │ ├── GPBCompileTest17.m │ │ ├── GPBCompileTest18.m │ │ ├── GPBCompileTest19.m │ │ ├── GPBCompileTest20.m │ │ ├── GPBCompileTest21.m │ │ ├── GPBCompileTest22.m │ │ ├── GPBCompileTest23.m │ │ ├── GPBCompileTest24.m │ │ ├── GPBCompileTest25.m │ │ ├── GPBConcurrencyTests.m │ │ ├── GPBDescriptorTests.m │ │ ├── GPBDictionaryTests+Bool.m │ │ ├── GPBDictionaryTests+Int32.m │ │ ├── GPBDictionaryTests+Int64.m │ │ ├── GPBDictionaryTests+String.m │ │ ├── GPBDictionaryTests+UInt32.m │ │ ├── GPBDictionaryTests+UInt64.m │ │ ├── GPBDictionaryTests.m │ │ ├── GPBDictionaryTests.pddm │ │ ├── GPBExtensionRegistryTest.m │ │ ├── GPBMessageTests+ClassNames.m │ │ ├── GPBMessageTests+Merge.m │ │ ├── GPBMessageTests+Runtime.m │ │ ├── GPBMessageTests+Serialization.m │ │ ├── GPBMessageTests.m │ │ ├── GPBObjectiveCPlusPlusTest.mm │ │ ├── GPBPerfTests.m │ │ ├── GPBSwiftTests.swift │ │ ├── GPBTestUtilities.h │ │ ├── GPBTestUtilities.m │ │ ├── GPBUnittestProtos.m │ │ ├── GPBUnittestProtos2.m │ │ ├── GPBUnknownFieldSetTest.m │ │ ├── GPBUtilitiesTests.m │ │ ├── GPBWellKnownTypesTest.m │ │ ├── GPBWireFormatTests.m │ │ ├── UnitTests-Bridging-Header.h │ │ ├── UnitTests-Info.plist │ │ ├── golden_message │ │ ├── golden_packed_fields_message │ │ ├── text_format_extensions_unittest_data.txt │ │ ├── text_format_map_unittest_data.txt │ │ ├── text_format_unittest_data.txt │ │ ├── unittest_cycle.proto │ │ ├── unittest_deprecated.proto │ │ ├── unittest_deprecated_file.proto │ │ ├── unittest_extension_chain_a.proto │ │ ├── unittest_extension_chain_b.proto │ │ ├── unittest_extension_chain_c.proto │ │ ├── unittest_extension_chain_d.proto │ │ ├── unittest_extension_chain_e.proto │ │ ├── unittest_extension_chain_f.proto │ │ ├── unittest_extension_chain_g.proto │ │ ├── unittest_objc.proto │ │ ├── unittest_objc_options.proto │ │ ├── unittest_objc_startup.proto │ │ ├── unittest_runtime_proto2.proto │ │ └── unittest_runtime_proto3.proto │ ├── generate_well_known_types.sh │ └── google │ │ └── protobuf │ │ ├── Any.pbobjc.h │ │ ├── Api.pbobjc.h │ │ ├── Duration.pbobjc.h │ │ ├── Empty.pbobjc.h │ │ ├── FieldMask.pbobjc.h │ │ ├── SourceContext.pbobjc.h │ │ ├── Struct.pbobjc.h │ │ ├── Timestamp.pbobjc.h │ │ ├── Type.pbobjc.h │ │ └── Wrappers.pbobjc.h ├── php │ ├── BUILD.bazel │ ├── README.md │ ├── REFCOUNTING.md │ ├── composer.json │ ├── composer.json.dist │ ├── ext │ │ └── google │ │ │ └── protobuf │ │ │ ├── arena.c │ │ │ ├── arena.h │ │ │ ├── array.c │ │ │ ├── array.h │ │ │ ├── config.m4 │ │ │ ├── convert.c │ │ │ ├── convert.h │ │ │ ├── def.c │ │ │ ├── def.h │ │ │ ├── map.c │ │ │ ├── map.h │ │ │ ├── message.c │ │ │ ├── message.h │ │ │ ├── names.c │ │ │ ├── names.h │ │ │ ├── package.xml │ │ │ ├── php-upb.c │ │ │ ├── php-upb.h │ │ │ ├── php_protobuf.h │ │ │ ├── protobuf.c │ │ │ ├── protobuf.h │ │ │ ├── tests │ │ │ └── unnecessary_zval.phpt │ │ │ └── wkt.inc │ ├── generate_descriptor_protos.sh │ ├── generate_test_protos.sh │ ├── release.sh │ ├── src │ │ ├── GPBMetadata │ │ │ └── Google │ │ │ │ └── Protobuf │ │ │ │ ├── Any.php │ │ │ │ ├── Api.php │ │ │ │ ├── Duration.php │ │ │ │ ├── FieldMask.php │ │ │ │ ├── GPBEmpty.php │ │ │ │ ├── Internal │ │ │ │ └── Descriptor.php │ │ │ │ ├── SourceContext.php │ │ │ │ ├── Struct.php │ │ │ │ ├── Timestamp.php │ │ │ │ ├── Type.php │ │ │ │ └── Wrappers.php │ │ ├── Google │ │ │ └── Protobuf │ │ │ │ ├── Any.php │ │ │ │ ├── Api.php │ │ │ │ ├── BoolValue.php │ │ │ │ ├── BytesValue.php │ │ │ │ ├── Descriptor.php │ │ │ │ ├── DescriptorPool.php │ │ │ │ ├── DoubleValue.php │ │ │ │ ├── Duration.php │ │ │ │ ├── Enum.php │ │ │ │ ├── EnumDescriptor.php │ │ │ │ ├── EnumValue.php │ │ │ │ ├── EnumValueDescriptor.php │ │ │ │ ├── Field.php │ │ │ │ ├── Field │ │ │ │ ├── Cardinality.php │ │ │ │ └── Kind.php │ │ │ │ ├── FieldDescriptor.php │ │ │ │ ├── FieldMask.php │ │ │ │ ├── Field_Cardinality.php │ │ │ │ ├── Field_Kind.php │ │ │ │ ├── FloatValue.php │ │ │ │ ├── GPBEmpty.php │ │ │ │ ├── Int32Value.php │ │ │ │ ├── Int64Value.php │ │ │ │ ├── Internal │ │ │ │ ├── AnyBase.php │ │ │ │ ├── CodedInputStream.php │ │ │ │ ├── CodedOutputStream.php │ │ │ │ ├── Descriptor.php │ │ │ │ ├── DescriptorPool.php │ │ │ │ ├── DescriptorProto.php │ │ │ │ ├── DescriptorProto │ │ │ │ │ ├── ExtensionRange.php │ │ │ │ │ └── ReservedRange.php │ │ │ │ ├── DescriptorProto_ExtensionRange.php │ │ │ │ ├── DescriptorProto_ReservedRange.php │ │ │ │ ├── EnumBuilderContext.php │ │ │ │ ├── EnumDescriptor.php │ │ │ │ ├── EnumDescriptorProto.php │ │ │ │ ├── EnumDescriptorProto │ │ │ │ │ └── EnumReservedRange.php │ │ │ │ ├── EnumDescriptorProto_EnumReservedRange.php │ │ │ │ ├── EnumOptions.php │ │ │ │ ├── EnumValueDescriptorProto.php │ │ │ │ ├── EnumValueOptions.php │ │ │ │ ├── ExtensionRangeOptions.php │ │ │ │ ├── FieldDescriptor.php │ │ │ │ ├── FieldDescriptorProto.php │ │ │ │ ├── FieldDescriptorProto │ │ │ │ │ ├── Label.php │ │ │ │ │ └── Type.php │ │ │ │ ├── FieldDescriptorProto_Label.php │ │ │ │ ├── FieldDescriptorProto_Type.php │ │ │ │ ├── FieldOptions.php │ │ │ │ ├── FieldOptions │ │ │ │ │ ├── CType.php │ │ │ │ │ └── JSType.php │ │ │ │ ├── FieldOptions_CType.php │ │ │ │ ├── FieldOptions_JSType.php │ │ │ │ ├── FileDescriptor.php │ │ │ │ ├── FileDescriptorProto.php │ │ │ │ ├── FileDescriptorSet.php │ │ │ │ ├── FileOptions.php │ │ │ │ ├── FileOptions │ │ │ │ │ └── OptimizeMode.php │ │ │ │ ├── FileOptions_OptimizeMode.php │ │ │ │ ├── GPBDecodeException.php │ │ │ │ ├── GPBJsonWire.php │ │ │ │ ├── GPBLabel.php │ │ │ │ ├── GPBType.php │ │ │ │ ├── GPBUtil.php │ │ │ │ ├── GPBWire.php │ │ │ │ ├── GPBWireType.php │ │ │ │ ├── GeneratedCodeInfo.php │ │ │ │ ├── GeneratedCodeInfo │ │ │ │ │ └── Annotation.php │ │ │ │ ├── GeneratedCodeInfo_Annotation.php │ │ │ │ ├── GetPublicDescriptorTrait.php │ │ │ │ ├── HasPublicDescriptorTrait.php │ │ │ │ ├── MapEntry.php │ │ │ │ ├── MapField.php │ │ │ │ ├── MapFieldIter.php │ │ │ │ ├── Message.php │ │ │ │ ├── MessageBuilderContext.php │ │ │ │ ├── MessageOptions.php │ │ │ │ ├── MethodDescriptorProto.php │ │ │ │ ├── MethodOptions.php │ │ │ │ ├── MethodOptions │ │ │ │ │ └── IdempotencyLevel.php │ │ │ │ ├── MethodOptions_IdempotencyLevel.php │ │ │ │ ├── OneofDescriptor.php │ │ │ │ ├── OneofDescriptorProto.php │ │ │ │ ├── OneofField.php │ │ │ │ ├── OneofOptions.php │ │ │ │ ├── RawInputStream.php │ │ │ │ ├── RepeatedField.php │ │ │ │ ├── RepeatedFieldIter.php │ │ │ │ ├── ServiceDescriptorProto.php │ │ │ │ ├── ServiceOptions.php │ │ │ │ ├── SourceCodeInfo.php │ │ │ │ ├── SourceCodeInfo │ │ │ │ │ └── Location.php │ │ │ │ ├── SourceCodeInfo_Location.php │ │ │ │ ├── TimestampBase.php │ │ │ │ ├── UninterpretedOption.php │ │ │ │ ├── UninterpretedOption │ │ │ │ │ └── NamePart.php │ │ │ │ └── UninterpretedOption_NamePart.php │ │ │ │ ├── ListValue.php │ │ │ │ ├── Method.php │ │ │ │ ├── Mixin.php │ │ │ │ ├── NullValue.php │ │ │ │ ├── OneofDescriptor.php │ │ │ │ ├── Option.php │ │ │ │ ├── SourceContext.php │ │ │ │ ├── StringValue.php │ │ │ │ ├── Struct.php │ │ │ │ ├── Syntax.php │ │ │ │ ├── Timestamp.php │ │ │ │ ├── Type.php │ │ │ │ ├── UInt32Value.php │ │ │ │ ├── UInt64Value.php │ │ │ │ └── Value.php │ │ └── phpdoc.dist.xml │ └── tests │ │ ├── ArrayTest.php │ │ ├── DescriptorsTest.php │ │ ├── EncodeDecodeTest.php │ │ ├── GeneratedClassTest.php │ │ ├── GeneratedPhpdocTest.php │ │ ├── GeneratedServiceTest.php │ │ ├── MapFieldTest.php │ │ ├── PhpImplementationTest.php │ │ ├── PreviouslyGeneratedClassTest.php │ │ ├── WellKnownTest.php │ │ ├── WrapperTypeSettersTest.php │ │ ├── compatibility_test.sh │ │ ├── compile_extension.sh │ │ ├── force_c_ext.php │ │ ├── gdb_test.sh │ │ ├── generated_previous │ │ ├── GPBMetadata │ │ │ └── ProtoPrevious │ │ │ │ └── TestPreviouslyUnreservedMessage.php │ │ └── Previous │ │ │ └── readonly.php │ │ ├── memory_leak_test.php │ │ ├── memory_leak_test.sh │ │ ├── multirequest.php │ │ ├── multirequest.sh │ │ ├── proto │ │ ├── empty │ │ │ └── echo.proto │ │ ├── test.proto │ │ ├── test_descriptors.proto │ │ ├── test_empty_php_namespace.proto │ │ ├── test_import_descriptor_proto.proto │ │ ├── test_include.proto │ │ ├── test_no_namespace.proto │ │ ├── test_php_namespace.proto │ │ ├── test_prefix.proto │ │ ├── test_reserved_enum_lower.proto │ │ ├── test_reserved_enum_upper.proto │ │ ├── test_reserved_enum_value_lower.proto │ │ ├── test_reserved_enum_value_upper.proto │ │ ├── test_reserved_message_lower.proto │ │ ├── test_reserved_message_upper.proto │ │ ├── test_service.proto │ │ ├── test_service_namespace.proto │ │ └── test_wrapper_type_setters.proto │ │ ├── proto_previous │ │ └── test_previously_unreserved_message.proto │ │ ├── test_base.php │ │ ├── test_util.php │ │ └── valgrind.supp ├── pkg │ ├── BUILD.bazel │ ├── README.md │ ├── build_systems.bzl │ └── cc_dist_library.bzl ├── post_process_dist.sh ├── protobuf-lite.pc.in ├── protobuf.bzl ├── protobuf.pc.in ├── protobuf_deps.bzl ├── protobuf_release.bzl ├── protobuf_version.bzl ├── protoc-artifacts │ ├── Dockerfile │ ├── README.md │ ├── build-protoc.sh │ ├── build-zip.sh │ ├── pom.xml │ └── scl-enable-devtoolset.sh ├── python │ ├── MANIFEST.in │ ├── README.md │ ├── docs │ │ ├── conf.py │ │ ├── environment.yml │ │ ├── generate_docs.py │ │ ├── google │ │ │ ├── protobuf.rst │ │ │ └── protobuf │ │ │ │ ├── any_pb2.rst │ │ │ │ ├── descriptor.rst │ │ │ │ ├── descriptor_database.rst │ │ │ │ ├── descriptor_pb2.rst │ │ │ │ ├── descriptor_pool.rst │ │ │ │ ├── duration_pb2.rst │ │ │ │ ├── empty_pb2.rst │ │ │ │ ├── field_mask_pb2.rst │ │ │ │ ├── internal │ │ │ │ └── containers.rst │ │ │ │ ├── json_format.rst │ │ │ │ ├── message.rst │ │ │ │ ├── message_factory.rst │ │ │ │ ├── proto_builder.rst │ │ │ │ ├── reflection.rst │ │ │ │ ├── service.rst │ │ │ │ ├── service_reflection.rst │ │ │ │ ├── struct_pb2.rst │ │ │ │ ├── symbol_database.rst │ │ │ │ ├── text_encoding.rst │ │ │ │ ├── text_format.rst │ │ │ │ ├── timestamp_pb2.rst │ │ │ │ ├── type_pb2.rst │ │ │ │ └── wrappers_pb2.rst │ │ ├── index.rst │ │ ├── make.bat │ │ └── requirements.txt │ ├── google │ │ ├── __init__.py │ │ └── protobuf │ │ │ ├── __init__.py │ │ │ ├── compiler │ │ │ └── __init__.py │ │ │ ├── descriptor.py │ │ │ ├── descriptor_database.py │ │ │ ├── descriptor_pool.py │ │ │ ├── internal │ │ │ ├── __init__.py │ │ │ ├── _parameterized.py │ │ │ ├── any_test.proto │ │ │ ├── api_implementation.cc │ │ │ ├── api_implementation.py │ │ │ ├── builder.py │ │ │ ├── containers.py │ │ │ ├── decoder.py │ │ │ ├── descriptor_database_test.py │ │ │ ├── descriptor_pool_test.py │ │ │ ├── descriptor_pool_test1.proto │ │ │ ├── descriptor_pool_test2.proto │ │ │ ├── descriptor_test.py │ │ │ ├── encoder.py │ │ │ ├── enum_type_wrapper.py │ │ │ ├── extension_dict.py │ │ │ ├── factory_test1.proto │ │ │ ├── factory_test2.proto │ │ │ ├── file_options_test.proto │ │ │ ├── generator_test.py │ │ │ ├── import_test.py │ │ │ ├── import_test_package │ │ │ │ ├── __init__.py │ │ │ │ ├── import_public.proto │ │ │ │ ├── import_public_nested.proto │ │ │ │ ├── inner.proto │ │ │ │ └── outer.proto │ │ │ ├── json_format_test.py │ │ │ ├── keywords_test.py │ │ │ ├── message_factory_test.py │ │ │ ├── message_listener.py │ │ │ ├── message_set_extensions.proto │ │ │ ├── message_test.py │ │ │ ├── missing_enum_values.proto │ │ │ ├── more_extensions.proto │ │ │ ├── more_extensions_dynamic.proto │ │ │ ├── more_messages.proto │ │ │ ├── no_package.proto │ │ │ ├── packed_field_test.proto │ │ │ ├── proto_builder_test.py │ │ │ ├── python_message.py │ │ │ ├── python_protobuf.cc │ │ │ ├── reflection_test.py │ │ │ ├── service_reflection_test.py │ │ │ ├── symbol_database_test.py │ │ │ ├── test_bad_identifiers.proto │ │ │ ├── test_proto3_optional.proto │ │ │ ├── test_util.py │ │ │ ├── testing_refleaks.py │ │ │ ├── text_encoding_test.py │ │ │ ├── text_format_test.py │ │ │ ├── type_checkers.py │ │ │ ├── unknown_fields_test.py │ │ │ ├── well_known_types.py │ │ │ ├── well_known_types_test.py │ │ │ ├── wire_format.py │ │ │ └── wire_format_test.py │ │ │ ├── json_format.py │ │ │ ├── message.py │ │ │ ├── message_factory.py │ │ │ ├── proto_api.h │ │ │ ├── proto_builder.py │ │ │ ├── pyext │ │ │ ├── README │ │ │ ├── __init__.py │ │ │ ├── cpp_message.py │ │ │ ├── descriptor.cc │ │ │ ├── descriptor.h │ │ │ ├── descriptor_containers.cc │ │ │ ├── descriptor_containers.h │ │ │ ├── descriptor_database.cc │ │ │ ├── descriptor_database.h │ │ │ ├── descriptor_pool.cc │ │ │ ├── descriptor_pool.h │ │ │ ├── extension_dict.cc │ │ │ ├── extension_dict.h │ │ │ ├── field.cc │ │ │ ├── field.h │ │ │ ├── map_container.cc │ │ │ ├── map_container.h │ │ │ ├── message.cc │ │ │ ├── message.h │ │ │ ├── message_factory.cc │ │ │ ├── message_factory.h │ │ │ ├── message_module.cc │ │ │ ├── proto2_api_test.proto │ │ │ ├── python.proto │ │ │ ├── repeated_composite_container.cc │ │ │ ├── repeated_composite_container.h │ │ │ ├── repeated_scalar_container.cc │ │ │ ├── repeated_scalar_container.h │ │ │ ├── safe_numerics.h │ │ │ ├── scoped_pyobject_ptr.h │ │ │ ├── unknown_field_set.cc │ │ │ ├── unknown_field_set.h │ │ │ ├── unknown_fields.cc │ │ │ └── unknown_fields.h │ │ │ ├── python_protobuf.h │ │ │ ├── reflection.py │ │ │ ├── service.py │ │ │ ├── service_reflection.py │ │ │ ├── symbol_database.py │ │ │ ├── text_encoding.py │ │ │ ├── text_format.py │ │ │ ├── unknown_fields.py │ │ │ └── util │ │ │ └── __init__.py │ ├── mox.py │ ├── protobuf_distutils │ │ ├── README.md │ │ ├── protobuf_distutils │ │ │ ├── __init__.py │ │ │ └── generate_py_protobufs.py │ │ └── setup.py │ ├── release.sh │ ├── setup.cfg │ ├── setup.py │ ├── stubout.py │ └── tox.ini ├── ruby │ ├── .gitignore │ ├── BUILD.bazel │ ├── Gemfile │ ├── README.md │ ├── Rakefile │ ├── compatibility_tests │ │ └── v3.0.0 │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── test.sh │ │ │ └── tests │ │ │ ├── basic.rb │ │ │ ├── generated_code.proto │ │ │ ├── generated_code_test.rb │ │ │ ├── repeated_field_test.rb │ │ │ ├── stress.rb │ │ │ └── test_import.proto │ ├── ext │ │ └── google │ │ │ └── protobuf_c │ │ │ ├── convert.c │ │ │ ├── convert.h │ │ │ ├── defs.c │ │ │ ├── defs.h │ │ │ ├── extconf.rb │ │ │ ├── map.c │ │ │ ├── map.h │ │ │ ├── message.c │ │ │ ├── message.h │ │ │ ├── protobuf.c │ │ │ ├── protobuf.h │ │ │ ├── repeated_field.c │ │ │ ├── repeated_field.h │ │ │ ├── ruby-upb.c │ │ │ ├── ruby-upb.h │ │ │ └── wrap_memcpy.c │ ├── google-protobuf.gemspec │ ├── lib │ │ └── google │ │ │ ├── protobuf.rb │ │ │ └── protobuf │ │ │ ├── descriptor_dsl.rb │ │ │ ├── message_exts.rb │ │ │ ├── repeated_field.rb │ │ │ └── well_known_types.rb │ ├── pom.xml │ ├── src │ │ └── main │ │ │ ├── java │ │ │ ├── com │ │ │ │ └── google │ │ │ │ │ └── protobuf │ │ │ │ │ └── jruby │ │ │ │ │ ├── RubyDescriptor.java │ │ │ │ │ ├── RubyDescriptorPool.java │ │ │ │ │ ├── RubyEnum.java │ │ │ │ │ ├── RubyEnumDescriptor.java │ │ │ │ │ ├── RubyFieldDescriptor.java │ │ │ │ │ ├── RubyFileDescriptor.java │ │ │ │ │ ├── RubyMap.java │ │ │ │ │ ├── RubyMessage.java │ │ │ │ │ ├── RubyOneofDescriptor.java │ │ │ │ │ ├── RubyProtobuf.java │ │ │ │ │ ├── RubyRepeatedField.java │ │ │ │ │ ├── SentinelOuterClass.java │ │ │ │ │ └── Utils.java │ │ │ └── google │ │ │ │ └── ProtobufJavaService.java │ │ │ └── sentinel.proto │ ├── tests │ │ ├── basic.rb │ │ ├── basic_proto2.rb │ │ ├── basic_test.proto │ │ ├── basic_test_proto2.proto │ │ ├── common_tests.rb │ │ ├── encode_decode_test.rb │ │ ├── gc_test.rb │ │ ├── generated_code.proto │ │ ├── generated_code_proto2.proto │ │ ├── generated_code_proto2_test.rb │ │ ├── generated_code_test.rb │ │ ├── multi_level_nesting_test.proto │ │ ├── multi_level_nesting_test.rb │ │ ├── repeated_field_test.rb │ │ ├── stress.rb │ │ ├── test_import.proto │ │ ├── test_import_proto2.proto │ │ ├── test_ruby_package.proto │ │ ├── test_ruby_package_proto2.proto │ │ ├── type_errors.rb │ │ └── well_known_types_test.rb │ └── travis-test.sh ├── src │ ├── Makefile.am │ ├── README.md │ ├── google │ │ └── protobuf │ │ │ ├── any.cc │ │ │ ├── any.h │ │ │ ├── any.pb.cc │ │ │ ├── any.pb.h │ │ │ ├── any.proto │ │ │ ├── any_lite.cc │ │ │ ├── any_test.cc │ │ │ ├── any_test.proto │ │ │ ├── api.pb.cc │ │ │ ├── api.pb.h │ │ │ ├── api.proto │ │ │ ├── arena.cc │ │ │ ├── arena.h │ │ │ ├── arena_impl.h │ │ │ ├── arena_test_util.cc │ │ │ ├── arena_test_util.h │ │ │ ├── arena_unittest.cc │ │ │ ├── arenastring.cc │ │ │ ├── arenastring.h │ │ │ ├── arenastring_unittest.cc │ │ │ ├── arenaz_sampler.cc │ │ │ ├── arenaz_sampler.h │ │ │ ├── arenaz_sampler_test.cc │ │ │ ├── compiler │ │ │ ├── annotation_test_util.cc │ │ │ ├── annotation_test_util.h │ │ │ ├── code_generator.cc │ │ │ ├── code_generator.h │ │ │ ├── command_line_interface.cc │ │ │ ├── command_line_interface.h │ │ │ ├── command_line_interface_unittest.cc │ │ │ ├── cpp │ │ │ │ ├── bootstrap_unittest.cc │ │ │ │ ├── cpp_generator.h │ │ │ │ ├── enum.cc │ │ │ │ ├── enum.h │ │ │ │ ├── enum_field.cc │ │ │ │ ├── enum_field.h │ │ │ │ ├── extension.cc │ │ │ │ ├── extension.h │ │ │ │ ├── field.cc │ │ │ │ ├── field.h │ │ │ │ ├── file.cc │ │ │ │ ├── file.h │ │ │ │ ├── generator.cc │ │ │ │ ├── generator.h │ │ │ │ ├── helpers.cc │ │ │ │ ├── helpers.h │ │ │ │ ├── map_field.cc │ │ │ │ ├── map_field.h │ │ │ │ ├── message.cc │ │ │ │ ├── message.h │ │ │ │ ├── message_field.cc │ │ │ │ ├── message_field.h │ │ │ │ ├── message_layout_helper.h │ │ │ │ ├── message_size_unittest.cc │ │ │ │ ├── metadata_test.cc │ │ │ │ ├── move_unittest.cc │ │ │ │ ├── names.h │ │ │ │ ├── options.h │ │ │ │ ├── padding_optimizer.cc │ │ │ │ ├── padding_optimizer.h │ │ │ │ ├── parse_function_generator.cc │ │ │ │ ├── parse_function_generator.h │ │ │ │ ├── plugin_unittest.cc │ │ │ │ ├── primitive_field.cc │ │ │ │ ├── primitive_field.h │ │ │ │ ├── service.cc │ │ │ │ ├── service.h │ │ │ │ ├── string_field.cc │ │ │ │ ├── string_field.h │ │ │ │ ├── test_bad_identifiers.proto │ │ │ │ ├── test_large_enum_value.proto │ │ │ │ ├── unittest.cc │ │ │ │ ├── unittest.h │ │ │ │ └── unittest.inc │ │ │ ├── csharp │ │ │ │ ├── csharp_bootstrap_unittest.cc │ │ │ │ ├── csharp_doc_comment.cc │ │ │ │ ├── csharp_doc_comment.h │ │ │ │ ├── csharp_enum.cc │ │ │ │ ├── csharp_enum.h │ │ │ │ ├── csharp_enum_field.cc │ │ │ │ ├── csharp_enum_field.h │ │ │ │ ├── csharp_field_base.cc │ │ │ │ ├── csharp_field_base.h │ │ │ │ ├── csharp_generator.cc │ │ │ │ ├── csharp_generator.h │ │ │ │ ├── csharp_generator_unittest.cc │ │ │ │ ├── csharp_helpers.cc │ │ │ │ ├── csharp_helpers.h │ │ │ │ ├── csharp_map_field.cc │ │ │ │ ├── csharp_map_field.h │ │ │ │ ├── csharp_message.cc │ │ │ │ ├── csharp_message.h │ │ │ │ ├── csharp_message_field.cc │ │ │ │ ├── csharp_message_field.h │ │ │ │ ├── csharp_names.h │ │ │ │ ├── csharp_options.h │ │ │ │ ├── csharp_primitive_field.cc │ │ │ │ ├── csharp_primitive_field.h │ │ │ │ ├── csharp_reflection_class.cc │ │ │ │ ├── csharp_reflection_class.h │ │ │ │ ├── csharp_repeated_enum_field.cc │ │ │ │ ├── csharp_repeated_enum_field.h │ │ │ │ ├── csharp_repeated_message_field.cc │ │ │ │ ├── csharp_repeated_message_field.h │ │ │ │ ├── csharp_repeated_primitive_field.cc │ │ │ │ ├── csharp_repeated_primitive_field.h │ │ │ │ ├── csharp_source_generator_base.cc │ │ │ │ ├── csharp_source_generator_base.h │ │ │ │ ├── csharp_wrapper_field.cc │ │ │ │ └── csharp_wrapper_field.h │ │ │ ├── importer.cc │ │ │ ├── importer.h │ │ │ ├── importer_unittest.cc │ │ │ ├── java │ │ │ │ ├── context.cc │ │ │ │ ├── context.h │ │ │ │ ├── doc_comment.cc │ │ │ │ ├── doc_comment.h │ │ │ │ ├── doc_comment_unittest.cc │ │ │ │ ├── enum.cc │ │ │ │ ├── enum.h │ │ │ │ ├── enum_field.cc │ │ │ │ ├── enum_field.h │ │ │ │ ├── enum_field_lite.cc │ │ │ │ ├── enum_field_lite.h │ │ │ │ ├── enum_lite.cc │ │ │ │ ├── enum_lite.h │ │ │ │ ├── extension.cc │ │ │ │ ├── extension.h │ │ │ │ ├── extension_lite.cc │ │ │ │ ├── extension_lite.h │ │ │ │ ├── field.cc │ │ │ │ ├── field.h │ │ │ │ ├── file.cc │ │ │ │ ├── file.h │ │ │ │ ├── generator.cc │ │ │ │ ├── generator.h │ │ │ │ ├── generator_factory.cc │ │ │ │ ├── generator_factory.h │ │ │ │ ├── helpers.cc │ │ │ │ ├── helpers.h │ │ │ │ ├── java_generator.h │ │ │ │ ├── kotlin_generator.cc │ │ │ │ ├── kotlin_generator.h │ │ │ │ ├── map_field.cc │ │ │ │ ├── map_field.h │ │ │ │ ├── map_field_lite.cc │ │ │ │ ├── map_field_lite.h │ │ │ │ ├── message.cc │ │ │ │ ├── message.h │ │ │ │ ├── message_builder.cc │ │ │ │ ├── message_builder.h │ │ │ │ ├── message_builder_lite.cc │ │ │ │ ├── message_builder_lite.h │ │ │ │ ├── message_field.cc │ │ │ │ ├── message_field.h │ │ │ │ ├── message_field_lite.cc │ │ │ │ ├── message_field_lite.h │ │ │ │ ├── message_lite.cc │ │ │ │ ├── message_lite.h │ │ │ │ ├── name_resolver.cc │ │ │ │ ├── name_resolver.h │ │ │ │ ├── names.h │ │ │ │ ├── options.h │ │ │ │ ├── plugin_unittest.cc │ │ │ │ ├── primitive_field.cc │ │ │ │ ├── primitive_field.h │ │ │ │ ├── primitive_field_lite.cc │ │ │ │ ├── primitive_field_lite.h │ │ │ │ ├── service.cc │ │ │ │ ├── service.h │ │ │ │ ├── shared_code_generator.cc │ │ │ │ ├── shared_code_generator.h │ │ │ │ ├── string_field.cc │ │ │ │ ├── string_field.h │ │ │ │ ├── string_field_lite.cc │ │ │ │ └── string_field_lite.h │ │ │ ├── main.cc │ │ │ ├── mock_code_generator.cc │ │ │ ├── mock_code_generator.h │ │ │ ├── objectivec │ │ │ │ ├── method_dump.sh │ │ │ │ ├── objectivec_enum.cc │ │ │ │ ├── objectivec_enum.h │ │ │ │ ├── objectivec_enum_field.cc │ │ │ │ ├── objectivec_enum_field.h │ │ │ │ ├── objectivec_extension.cc │ │ │ │ ├── objectivec_extension.h │ │ │ │ ├── objectivec_field.cc │ │ │ │ ├── objectivec_field.h │ │ │ │ ├── objectivec_file.cc │ │ │ │ ├── objectivec_file.h │ │ │ │ ├── objectivec_generator.cc │ │ │ │ ├── objectivec_generator.h │ │ │ │ ├── objectivec_helpers.cc │ │ │ │ ├── objectivec_helpers.h │ │ │ │ ├── objectivec_helpers_unittest.cc │ │ │ │ ├── objectivec_map_field.cc │ │ │ │ ├── objectivec_map_field.h │ │ │ │ ├── objectivec_message.cc │ │ │ │ ├── objectivec_message.h │ │ │ │ ├── objectivec_message_field.cc │ │ │ │ ├── objectivec_message_field.h │ │ │ │ ├── objectivec_nsobject_methods.h │ │ │ │ ├── objectivec_oneof.cc │ │ │ │ ├── objectivec_oneof.h │ │ │ │ ├── objectivec_primitive_field.cc │ │ │ │ └── objectivec_primitive_field.h │ │ │ ├── package_info.h │ │ │ ├── parser.cc │ │ │ ├── parser.h │ │ │ ├── parser_unittest.cc │ │ │ ├── php │ │ │ │ ├── php_generator.cc │ │ │ │ └── php_generator.h │ │ │ ├── plugin.cc │ │ │ ├── plugin.h │ │ │ ├── plugin.pb.cc │ │ │ ├── plugin.pb.h │ │ │ ├── plugin.proto │ │ │ ├── python │ │ │ │ ├── generator.cc │ │ │ │ ├── generator.h │ │ │ │ ├── helpers.cc │ │ │ │ ├── helpers.h │ │ │ │ ├── plugin_unittest.cc │ │ │ │ ├── pyi_generator.cc │ │ │ │ ├── pyi_generator.h │ │ │ │ └── python_generator.h │ │ │ ├── ruby │ │ │ │ ├── ruby_generated_code.proto │ │ │ │ ├── ruby_generated_code_pb.rb │ │ │ │ ├── ruby_generated_code_proto2.proto │ │ │ │ ├── ruby_generated_code_proto2_import.proto │ │ │ │ ├── ruby_generated_code_proto2_pb.rb │ │ │ │ ├── ruby_generated_pkg_explicit.proto │ │ │ │ ├── ruby_generated_pkg_explicit_legacy.proto │ │ │ │ ├── ruby_generated_pkg_explicit_legacy_pb.rb │ │ │ │ ├── ruby_generated_pkg_explicit_pb.rb │ │ │ │ ├── ruby_generated_pkg_implicit.proto │ │ │ │ ├── ruby_generated_pkg_implicit_pb.rb │ │ │ │ ├── ruby_generator.cc │ │ │ │ ├── ruby_generator.h │ │ │ │ └── ruby_generator_unittest.cc │ │ │ ├── scc.h │ │ │ ├── subprocess.cc │ │ │ ├── subprocess.h │ │ │ ├── test_plugin.cc │ │ │ ├── zip_output_unittest.sh │ │ │ ├── zip_writer.cc │ │ │ └── zip_writer.h │ │ │ ├── descriptor.cc │ │ │ ├── descriptor.h │ │ │ ├── descriptor.pb.cc │ │ │ ├── descriptor.pb.h │ │ │ ├── descriptor.proto │ │ │ ├── descriptor_database.cc │ │ │ ├── descriptor_database.h │ │ │ ├── descriptor_database_unittest.cc │ │ │ ├── descriptor_unittest.cc │ │ │ ├── drop_unknown_fields_test.cc │ │ │ ├── duration.pb.cc │ │ │ ├── duration.pb.h │ │ │ ├── duration.proto │ │ │ ├── dynamic_message.cc │ │ │ ├── dynamic_message.h │ │ │ ├── dynamic_message_unittest.cc │ │ │ ├── empty.pb.cc │ │ │ ├── empty.pb.h │ │ │ ├── empty.proto │ │ │ ├── endian.h │ │ │ ├── explicitly_constructed.h │ │ │ ├── extension_set.cc │ │ │ ├── extension_set.h │ │ │ ├── extension_set_heavy.cc │ │ │ ├── extension_set_inl.h │ │ │ ├── extension_set_unittest.cc │ │ │ ├── field_access_listener.h │ │ │ ├── field_mask.pb.cc │ │ │ ├── field_mask.pb.h │ │ │ ├── field_mask.proto │ │ │ ├── generated_enum_reflection.h │ │ │ ├── generated_enum_util.cc │ │ │ ├── generated_enum_util.h │ │ │ ├── generated_message_bases.cc │ │ │ ├── generated_message_bases.h │ │ │ ├── generated_message_reflection.cc │ │ │ ├── generated_message_reflection.h │ │ │ ├── generated_message_reflection_unittest.cc │ │ │ ├── generated_message_tctable_decl.h │ │ │ ├── generated_message_tctable_full.cc │ │ │ ├── generated_message_tctable_impl.h │ │ │ ├── generated_message_tctable_lite.cc │ │ │ ├── generated_message_tctable_lite_test.cc │ │ │ ├── generated_message_util.cc │ │ │ ├── generated_message_util.h │ │ │ ├── has_bits.h │ │ │ ├── implicit_weak_message.cc │ │ │ ├── implicit_weak_message.h │ │ │ ├── inlined_string_field.cc │ │ │ ├── inlined_string_field.h │ │ │ ├── inlined_string_field_unittest.cc │ │ │ ├── io │ │ │ ├── coded_stream.cc │ │ │ ├── coded_stream.h │ │ │ ├── coded_stream_unittest.cc │ │ │ ├── gzip_stream.cc │ │ │ ├── gzip_stream.h │ │ │ ├── gzip_stream_unittest.sh │ │ │ ├── io_win32.cc │ │ │ ├── io_win32.h │ │ │ ├── io_win32_unittest.cc │ │ │ ├── package_info.h │ │ │ ├── printer.cc │ │ │ ├── printer.h │ │ │ ├── printer_unittest.cc │ │ │ ├── strtod.cc │ │ │ ├── strtod.h │ │ │ ├── tokenizer.cc │ │ │ ├── tokenizer.h │ │ │ ├── tokenizer_unittest.cc │ │ │ ├── zero_copy_stream.cc │ │ │ ├── zero_copy_stream.h │ │ │ ├── zero_copy_stream_impl.cc │ │ │ ├── zero_copy_stream_impl.h │ │ │ ├── zero_copy_stream_impl_lite.cc │ │ │ ├── zero_copy_stream_impl_lite.h │ │ │ └── zero_copy_stream_unittest.cc │ │ │ ├── lite_arena_unittest.cc │ │ │ ├── lite_unittest.cc │ │ │ ├── map.cc │ │ │ ├── map.h │ │ │ ├── map_entry.h │ │ │ ├── map_entry_lite.h │ │ │ ├── map_field.cc │ │ │ ├── map_field.h │ │ │ ├── map_field_inl.h │ │ │ ├── map_field_lite.h │ │ │ ├── map_field_test.cc │ │ │ ├── map_lite_test_util.cc │ │ │ ├── map_lite_test_util.h │ │ │ ├── map_lite_unittest.proto │ │ │ ├── map_proto2_unittest.proto │ │ │ ├── map_test.cc │ │ │ ├── map_test.inc │ │ │ ├── map_test_util.h │ │ │ ├── map_test_util.inc │ │ │ ├── map_test_util_impl.h │ │ │ ├── map_type_handler.h │ │ │ ├── map_unittest.proto │ │ │ ├── message.cc │ │ │ ├── message.h │ │ │ ├── message_lite.cc │ │ │ ├── message_lite.h │ │ │ ├── message_unittest.cc │ │ │ ├── message_unittest.inc │ │ │ ├── metadata.h │ │ │ ├── metadata_lite.h │ │ │ ├── no_field_presence_test.cc │ │ │ ├── package_info.h │ │ │ ├── parse_context.cc │ │ │ ├── parse_context.h │ │ │ ├── port.h │ │ │ ├── port_def.inc │ │ │ ├── port_undef.inc │ │ │ ├── preserve_unknown_enum_test.cc │ │ │ ├── proto3_arena_lite_unittest.cc │ │ │ ├── proto3_arena_unittest.cc │ │ │ ├── proto3_lite_unittest.cc │ │ │ ├── proto3_lite_unittest.inc │ │ │ ├── reflection.h │ │ │ ├── reflection_internal.h │ │ │ ├── reflection_ops.cc │ │ │ ├── reflection_ops.h │ │ │ ├── reflection_ops_unittest.cc │ │ │ ├── reflection_tester.cc │ │ │ ├── reflection_tester.h │ │ │ ├── repeated_field.cc │ │ │ ├── repeated_field.h │ │ │ ├── repeated_field_reflection_unittest.cc │ │ │ ├── repeated_field_unittest.cc │ │ │ ├── repeated_ptr_field.cc │ │ │ ├── repeated_ptr_field.h │ │ │ ├── service.cc │ │ │ ├── service.h │ │ │ ├── source_context.pb.cc │ │ │ ├── source_context.pb.h │ │ │ ├── source_context.proto │ │ │ ├── string_member_robber.h │ │ │ ├── struct.pb.cc │ │ │ ├── struct.pb.h │ │ │ ├── struct.proto │ │ │ ├── stubs │ │ │ ├── bytestream.cc │ │ │ ├── bytestream.h │ │ │ ├── bytestream_unittest.cc │ │ │ ├── callback.h │ │ │ ├── casts.h │ │ │ ├── common.cc │ │ │ ├── common.h │ │ │ ├── common_unittest.cc │ │ │ ├── hash.h │ │ │ ├── int128.cc │ │ │ ├── int128.h │ │ │ ├── int128_unittest.cc │ │ │ ├── logging.h │ │ │ ├── macros.h │ │ │ ├── map_util.h │ │ │ ├── mathutil.h │ │ │ ├── mutex.h │ │ │ ├── once.h │ │ │ ├── platform_macros.h │ │ │ ├── port.h │ │ │ ├── status.cc │ │ │ ├── status.h │ │ │ ├── status_macros.h │ │ │ ├── status_test.cc │ │ │ ├── statusor.cc │ │ │ ├── statusor.h │ │ │ ├── statusor_test.cc │ │ │ ├── stl_util.h │ │ │ ├── stringpiece.cc │ │ │ ├── stringpiece.h │ │ │ ├── stringpiece_unittest.cc │ │ │ ├── stringprintf.cc │ │ │ ├── stringprintf.h │ │ │ ├── stringprintf_unittest.cc │ │ │ ├── structurally_valid.cc │ │ │ ├── structurally_valid_unittest.cc │ │ │ ├── strutil.cc │ │ │ ├── strutil.h │ │ │ ├── strutil_unittest.cc │ │ │ ├── substitute.cc │ │ │ ├── substitute.h │ │ │ ├── template_util.h │ │ │ ├── template_util_unittest.cc │ │ │ ├── time.cc │ │ │ ├── time.h │ │ │ └── time_test.cc │ │ │ ├── test_messages_proto2.proto │ │ │ ├── test_messages_proto3.proto │ │ │ ├── test_util.cc │ │ │ ├── test_util.h │ │ │ ├── test_util.inc │ │ │ ├── test_util2.h │ │ │ ├── test_util_lite.cc │ │ │ ├── test_util_lite.h │ │ │ ├── testdata │ │ │ ├── bad_utf8_string │ │ │ ├── golden_message │ │ │ ├── golden_message_maps │ │ │ ├── golden_message_oneof_implemented │ │ │ ├── golden_message_proto3 │ │ │ ├── golden_packed_fields_message │ │ │ ├── map_test_data.txt │ │ │ ├── text_format_unittest_data.txt │ │ │ ├── text_format_unittest_data_oneof_implemented.txt │ │ │ ├── text_format_unittest_data_pointy.txt │ │ │ ├── text_format_unittest_data_pointy_oneof.txt │ │ │ ├── text_format_unittest_extensions_data.txt │ │ │ └── text_format_unittest_extensions_data_pointy.txt │ │ │ ├── testing │ │ │ ├── file.cc │ │ │ ├── file.h │ │ │ ├── googletest.cc │ │ │ ├── googletest.h │ │ │ ├── zcgunzip.cc │ │ │ └── zcgzip.cc │ │ │ ├── text_format.cc │ │ │ ├── text_format.h │ │ │ ├── text_format_unittest.cc │ │ │ ├── timestamp.pb.cc │ │ │ ├── timestamp.pb.h │ │ │ ├── timestamp.proto │ │ │ ├── type.pb.cc │ │ │ ├── type.pb.h │ │ │ ├── type.proto │ │ │ ├── unittest.proto │ │ │ ├── unittest_arena.proto │ │ │ ├── unittest_custom_options.proto │ │ │ ├── unittest_drop_unknown_fields.proto │ │ │ ├── unittest_embed_optimize_for.proto │ │ │ ├── unittest_empty.proto │ │ │ ├── unittest_enormous_descriptor.proto │ │ │ ├── unittest_import.proto │ │ │ ├── unittest_import_lite.proto │ │ │ ├── unittest_import_public.proto │ │ │ ├── unittest_import_public_lite.proto │ │ │ ├── unittest_lazy_dependencies.proto │ │ │ ├── unittest_lazy_dependencies_custom_option.proto │ │ │ ├── unittest_lazy_dependencies_enum.proto │ │ │ ├── unittest_lite.proto │ │ │ ├── unittest_lite_imports_nonlite.proto │ │ │ ├── unittest_mset.proto │ │ │ ├── unittest_mset_wire_format.proto │ │ │ ├── unittest_no_field_presence.proto │ │ │ ├── unittest_no_generic_services.proto │ │ │ ├── unittest_optimize_for.proto │ │ │ ├── unittest_preserve_unknown_enum.proto │ │ │ ├── unittest_preserve_unknown_enum2.proto │ │ │ ├── unittest_proto3.proto │ │ │ ├── unittest_proto3_arena.proto │ │ │ ├── unittest_proto3_arena_lite.proto │ │ │ ├── unittest_proto3_lite.proto │ │ │ ├── unittest_proto3_optional.proto │ │ │ ├── unittest_well_known_types.proto │ │ │ ├── unknown_field_set.cc │ │ │ ├── unknown_field_set.h │ │ │ ├── unknown_field_set_unittest.cc │ │ │ ├── util │ │ │ ├── delimited_message_util.cc │ │ │ ├── delimited_message_util.h │ │ │ ├── delimited_message_util_test.cc │ │ │ ├── field_comparator.cc │ │ │ ├── field_comparator.h │ │ │ ├── field_comparator_test.cc │ │ │ ├── field_mask_util.cc │ │ │ ├── field_mask_util.h │ │ │ ├── field_mask_util_test.cc │ │ │ ├── internal │ │ │ │ ├── constants.h │ │ │ │ ├── datapiece.cc │ │ │ │ ├── datapiece.h │ │ │ │ ├── default_value_objectwriter.cc │ │ │ │ ├── default_value_objectwriter.h │ │ │ │ ├── default_value_objectwriter_test.cc │ │ │ │ ├── error_listener.cc │ │ │ │ ├── error_listener.h │ │ │ │ ├── expecting_objectwriter.h │ │ │ │ ├── field_mask_utility.cc │ │ │ │ ├── field_mask_utility.h │ │ │ │ ├── json_escaping.cc │ │ │ │ ├── json_escaping.h │ │ │ │ ├── json_objectwriter.cc │ │ │ │ ├── json_objectwriter.h │ │ │ │ ├── json_objectwriter_test.cc │ │ │ │ ├── json_stream_parser.cc │ │ │ │ ├── json_stream_parser.h │ │ │ │ ├── json_stream_parser_test.cc │ │ │ │ ├── location_tracker.h │ │ │ │ ├── mock_error_listener.h │ │ │ │ ├── object_location_tracker.h │ │ │ │ ├── object_source.h │ │ │ │ ├── object_writer.cc │ │ │ │ ├── object_writer.h │ │ │ │ ├── proto_writer.cc │ │ │ │ ├── proto_writer.h │ │ │ │ ├── protostream_objectsource.cc │ │ │ │ ├── protostream_objectsource.h │ │ │ │ ├── protostream_objectsource_test.cc │ │ │ │ ├── protostream_objectwriter.cc │ │ │ │ ├── protostream_objectwriter.h │ │ │ │ ├── protostream_objectwriter_test.cc │ │ │ │ ├── structured_objectwriter.h │ │ │ │ ├── testdata │ │ │ │ │ ├── anys.proto │ │ │ │ │ ├── books.proto │ │ │ │ │ ├── default_value.proto │ │ │ │ │ ├── default_value_test.proto │ │ │ │ │ ├── field_mask.proto │ │ │ │ │ ├── maps.proto │ │ │ │ │ ├── oneofs.proto │ │ │ │ │ ├── proto3.proto │ │ │ │ │ ├── struct.proto │ │ │ │ │ ├── timestamp_duration.proto │ │ │ │ │ └── wrappers.proto │ │ │ │ ├── type_info.cc │ │ │ │ ├── type_info.h │ │ │ │ ├── type_info_test_helper.cc │ │ │ │ ├── type_info_test_helper.h │ │ │ │ ├── utility.cc │ │ │ │ └── utility.h │ │ │ ├── json_format.proto │ │ │ ├── json_format_proto3.proto │ │ │ ├── json_util.cc │ │ │ ├── json_util.h │ │ │ ├── json_util_test.cc │ │ │ ├── message_differencer.cc │ │ │ ├── message_differencer.h │ │ │ ├── message_differencer_unittest.cc │ │ │ ├── message_differencer_unittest.proto │ │ │ ├── package_info.h │ │ │ ├── time_util.cc │ │ │ ├── time_util.h │ │ │ ├── time_util_test.cc │ │ │ ├── type_resolver.h │ │ │ ├── type_resolver_util.cc │ │ │ ├── type_resolver_util.h │ │ │ └── type_resolver_util_test.cc │ │ │ ├── well_known_types_unittest.cc │ │ │ ├── wire_format.cc │ │ │ ├── wire_format.h │ │ │ ├── wire_format_lite.cc │ │ │ ├── wire_format_lite.h │ │ │ ├── wire_format_unittest.cc │ │ │ ├── wire_format_unittest.inc │ │ │ ├── wrappers.pb.cc │ │ │ ├── wrappers.pb.h │ │ │ └── wrappers.proto │ ├── libprotobuf-lite.map │ ├── libprotobuf.map │ └── libprotoc.map ├── tests.sh ├── third_party │ ├── BUILD.bazel │ ├── benchmark │ │ ├── .clang-format │ │ ├── .gitignore │ │ ├── .travis-libcxx-setup.sh │ │ ├── .travis.yml │ │ ├── .ycm_extra_conf.py │ │ ├── AUTHORS │ │ ├── CMakeLists.txt │ │ ├── CONTRIBUTING.md │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── appveyor.yml │ │ ├── cmake │ │ │ ├── AddCXXCompilerFlag.cmake │ │ │ ├── CXXFeatureCheck.cmake │ │ │ ├── Config.cmake.in │ │ │ ├── GetGitVersion.cmake │ │ │ ├── gnu_posix_regex.cpp │ │ │ ├── posix_regex.cpp │ │ │ ├── std_regex.cpp │ │ │ ├── steady_clock.cpp │ │ │ └── thread_safety_attributes.cpp │ │ ├── docs │ │ │ └── tools.md │ │ ├── include │ │ │ └── benchmark │ │ │ │ ├── benchmark.h │ │ │ │ ├── benchmark_api.h │ │ │ │ └── reporter.h │ │ ├── mingw.py │ │ ├── src │ │ │ ├── CMakeLists.txt │ │ │ ├── arraysize.h │ │ │ ├── benchmark.cc │ │ │ ├── benchmark_api_internal.h │ │ │ ├── benchmark_register.cc │ │ │ ├── check.h │ │ │ ├── colorprint.cc │ │ │ ├── colorprint.h │ │ │ ├── commandlineflags.cc │ │ │ ├── commandlineflags.h │ │ │ ├── complexity.cc │ │ │ ├── complexity.h │ │ │ ├── console_reporter.cc │ │ │ ├── counter.cc │ │ │ ├── counter.h │ │ │ ├── csv_reporter.cc │ │ │ ├── cycleclock.h │ │ │ ├── internal_macros.h │ │ │ ├── json_reporter.cc │ │ │ ├── log.h │ │ │ ├── mutex.h │ │ │ ├── re.h │ │ │ ├── reporter.cc │ │ │ ├── sleep.cc │ │ │ ├── sleep.h │ │ │ ├── stat.h │ │ │ ├── string_util.cc │ │ │ ├── string_util.h │ │ │ ├── sysinfo.cc │ │ │ ├── sysinfo.h │ │ │ ├── timers.cc │ │ │ └── timers.h │ │ ├── test │ │ │ ├── CMakeLists.txt │ │ │ ├── basic_test.cc │ │ │ ├── benchmark_test.cc │ │ │ ├── complexity_test.cc │ │ │ ├── cxx03_test.cc │ │ │ ├── diagnostics_test.cc │ │ │ ├── donotoptimize_test.cc │ │ │ ├── filter_test.cc │ │ │ ├── fixture_test.cc │ │ │ ├── map_test.cc │ │ │ ├── multiple_ranges_test.cc │ │ │ ├── options_test.cc │ │ │ ├── output_test.h │ │ │ ├── output_test_helper.cc │ │ │ ├── register_benchmark_test.cc │ │ │ ├── reporter_output_test.cc │ │ │ ├── skip_with_error_test.cc │ │ │ ├── user_counters_tabular_test.cc │ │ │ └── user_counters_test.cc │ │ └── tools │ │ │ ├── compare_bench.py │ │ │ └── gbench │ │ │ ├── Inputs │ │ │ ├── test1_run1.json │ │ │ └── test1_run2.json │ │ │ ├── __init__.py │ │ │ ├── report.py │ │ │ └── util.py │ ├── googletest │ │ ├── .clang-format │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── WORKSPACE │ │ ├── appveyor.yml │ │ ├── ci │ │ │ ├── build-linux-autotools.sh │ │ │ ├── build-linux-bazel.sh │ │ │ ├── build-platformio.sh │ │ │ ├── env-linux.sh │ │ │ ├── env-osx.sh │ │ │ ├── get-nprocessors.sh │ │ │ ├── install-linux.sh │ │ │ ├── install-osx.sh │ │ │ ├── install-platformio.sh │ │ │ ├── log-config.sh │ │ │ └── travis.sh │ │ ├── configure.ac │ │ ├── googlemock │ │ │ ├── CMakeLists.txt │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── Makefile.am │ │ │ ├── README.md │ │ │ ├── cmake │ │ │ │ ├── gmock.pc.in │ │ │ │ └── gmock_main.pc.in │ │ │ ├── configure.ac │ │ │ ├── docs │ │ │ │ ├── CheatSheet.md │ │ │ │ ├── CookBook.md │ │ │ │ ├── DesignDoc.md │ │ │ │ ├── Documentation.md │ │ │ │ ├── ForDummies.md │ │ │ │ ├── FrequentlyAskedQuestions.md │ │ │ │ └── KnownIssues.md │ │ │ ├── include │ │ │ │ └── gmock │ │ │ │ │ ├── gmock-actions.h │ │ │ │ │ ├── gmock-cardinalities.h │ │ │ │ │ ├── gmock-function-mocker.h │ │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ │ ├── gmock-generated-actions.h.pump │ │ │ │ │ ├── gmock-generated-function-mockers.h │ │ │ │ │ ├── gmock-generated-function-mockers.h.pump │ │ │ │ │ ├── gmock-generated-matchers.h │ │ │ │ │ ├── gmock-generated-matchers.h.pump │ │ │ │ │ ├── gmock-matchers.h │ │ │ │ │ ├── gmock-more-actions.h │ │ │ │ │ ├── gmock-more-matchers.h │ │ │ │ │ ├── gmock-nice-strict.h │ │ │ │ │ ├── gmock-spec-builders.h │ │ │ │ │ ├── gmock.h │ │ │ │ │ └── internal │ │ │ │ │ ├── custom │ │ │ │ │ ├── README.md │ │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ │ ├── gmock-generated-actions.h.pump │ │ │ │ │ ├── gmock-matchers.h │ │ │ │ │ └── gmock-port.h │ │ │ │ │ ├── gmock-internal-utils.h │ │ │ │ │ ├── gmock-port.h │ │ │ │ │ └── gmock-pp.h │ │ │ ├── msvc │ │ │ │ ├── 2005 │ │ │ │ │ ├── gmock.sln │ │ │ │ │ ├── gmock.vcproj │ │ │ │ │ ├── gmock_config.vsprops │ │ │ │ │ ├── gmock_main.vcproj │ │ │ │ │ └── gmock_test.vcproj │ │ │ │ ├── 2010 │ │ │ │ │ ├── gmock.sln │ │ │ │ │ ├── gmock.vcxproj │ │ │ │ │ ├── gmock_config.props │ │ │ │ │ ├── gmock_main.vcxproj │ │ │ │ │ └── gmock_test.vcxproj │ │ │ │ └── 2015 │ │ │ │ │ ├── gmock.sln │ │ │ │ │ ├── gmock.vcxproj │ │ │ │ │ ├── gmock_config.props │ │ │ │ │ ├── gmock_main.vcxproj │ │ │ │ │ └── gmock_test.vcxproj │ │ │ ├── scripts │ │ │ │ ├── fuse_gmock_files.py │ │ │ │ ├── generator │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README │ │ │ │ │ ├── README.cppclean │ │ │ │ │ ├── cpp │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── ast.py │ │ │ │ │ │ ├── gmock_class.py │ │ │ │ │ │ ├── gmock_class_test.py │ │ │ │ │ │ ├── keywords.py │ │ │ │ │ │ ├── tokenize.py │ │ │ │ │ │ └── utils.py │ │ │ │ │ └── gmock_gen.py │ │ │ │ ├── gmock-config.in │ │ │ │ ├── gmock_doctor.py │ │ │ │ ├── upload.py │ │ │ │ └── upload_gmock.py │ │ │ ├── src │ │ │ │ ├── gmock-all.cc │ │ │ │ ├── gmock-cardinalities.cc │ │ │ │ ├── gmock-internal-utils.cc │ │ │ │ ├── gmock-matchers.cc │ │ │ │ ├── gmock-spec-builders.cc │ │ │ │ ├── gmock.cc │ │ │ │ └── gmock_main.cc │ │ │ └── test │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── gmock-actions_test.cc │ │ │ │ ├── gmock-cardinalities_test.cc │ │ │ │ ├── gmock-function-mocker_nc.cc │ │ │ │ ├── gmock-function-mocker_nc_test.py │ │ │ │ ├── gmock-function-mocker_test.cc │ │ │ │ ├── gmock-generated-actions_test.cc │ │ │ │ ├── gmock-generated-function-mockers_test.cc │ │ │ │ ├── gmock-generated-matchers_test.cc │ │ │ │ ├── gmock-internal-utils_test.cc │ │ │ │ ├── gmock-matchers_test.cc │ │ │ │ ├── gmock-more-actions_test.cc │ │ │ │ ├── gmock-nice-strict_test.cc │ │ │ │ ├── gmock-port_test.cc │ │ │ │ ├── gmock-pp-string_test.cc │ │ │ │ ├── gmock-pp_test.cc │ │ │ │ ├── gmock-spec-builders_test.cc │ │ │ │ ├── gmock_all_test.cc │ │ │ │ ├── gmock_ex_test.cc │ │ │ │ ├── gmock_leak_test.py │ │ │ │ ├── gmock_leak_test_.cc │ │ │ │ ├── gmock_link2_test.cc │ │ │ │ ├── gmock_link_test.cc │ │ │ │ ├── gmock_link_test.h │ │ │ │ ├── gmock_output_test.py │ │ │ │ ├── gmock_output_test_.cc │ │ │ │ ├── gmock_output_test_golden.txt │ │ │ │ ├── gmock_stress_test.cc │ │ │ │ ├── gmock_test.cc │ │ │ │ └── gmock_test_utils.py │ │ ├── googletest │ │ │ ├── CMakeLists.txt │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── Makefile.am │ │ │ ├── README.md │ │ │ ├── cmake │ │ │ │ ├── Config.cmake.in │ │ │ │ ├── gtest.pc.in │ │ │ │ ├── gtest_main.pc.in │ │ │ │ └── internal_utils.cmake │ │ │ ├── codegear │ │ │ │ ├── gtest.cbproj │ │ │ │ ├── gtest.groupproj │ │ │ │ ├── gtest_all.cc │ │ │ │ ├── gtest_link.cc │ │ │ │ ├── gtest_main.cbproj │ │ │ │ └── gtest_unittest.cbproj │ │ │ ├── configure.ac │ │ │ ├── docs │ │ │ │ ├── Pkgconfig.md │ │ │ │ ├── PumpManual.md │ │ │ │ ├── XcodeGuide.md │ │ │ │ ├── advanced.md │ │ │ │ ├── faq.md │ │ │ │ ├── primer.md │ │ │ │ └── samples.md │ │ │ ├── include │ │ │ │ └── gtest │ │ │ │ │ ├── gtest-death-test.h │ │ │ │ │ ├── gtest-matchers.h │ │ │ │ │ ├── gtest-message.h │ │ │ │ │ ├── gtest-param-test.h │ │ │ │ │ ├── gtest-param-test.h.pump │ │ │ │ │ ├── gtest-printers.h │ │ │ │ │ ├── gtest-spi.h │ │ │ │ │ ├── gtest-test-part.h │ │ │ │ │ ├── gtest-typed-test.h │ │ │ │ │ ├── gtest.h │ │ │ │ │ ├── gtest_pred_impl.h │ │ │ │ │ ├── gtest_prod.h │ │ │ │ │ └── internal │ │ │ │ │ ├── custom │ │ │ │ │ ├── README.md │ │ │ │ │ ├── gtest-port.h │ │ │ │ │ ├── gtest-printers.h │ │ │ │ │ └── gtest.h │ │ │ │ │ ├── gtest-death-test-internal.h │ │ │ │ │ ├── gtest-filepath.h │ │ │ │ │ ├── gtest-internal.h │ │ │ │ │ ├── gtest-param-util-generated.h │ │ │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ │ │ ├── gtest-param-util.h │ │ │ │ │ ├── gtest-port-arch.h │ │ │ │ │ ├── gtest-port.h │ │ │ │ │ ├── gtest-string.h │ │ │ │ │ ├── gtest-type-util.h │ │ │ │ │ └── gtest-type-util.h.pump │ │ │ ├── m4 │ │ │ │ ├── acx_pthread.m4 │ │ │ │ └── gtest.m4 │ │ │ ├── msvc │ │ │ │ └── 2010 │ │ │ │ │ ├── gtest-md.sln │ │ │ │ │ ├── gtest-md.vcxproj │ │ │ │ │ ├── gtest-md.vcxproj.filters │ │ │ │ │ ├── gtest.sln │ │ │ │ │ ├── gtest.vcxproj │ │ │ │ │ ├── gtest.vcxproj.filters │ │ │ │ │ ├── gtest_main-md.vcxproj │ │ │ │ │ ├── gtest_main-md.vcxproj.filters │ │ │ │ │ ├── gtest_main.vcxproj │ │ │ │ │ ├── gtest_main.vcxproj.filters │ │ │ │ │ ├── gtest_prod_test-md.vcxproj │ │ │ │ │ ├── gtest_prod_test-md.vcxproj.filters │ │ │ │ │ ├── gtest_prod_test.vcxproj │ │ │ │ │ ├── gtest_prod_test.vcxproj.filters │ │ │ │ │ ├── gtest_unittest-md.vcxproj │ │ │ │ │ ├── gtest_unittest-md.vcxproj.filters │ │ │ │ │ ├── gtest_unittest.vcxproj │ │ │ │ │ └── gtest_unittest.vcxproj.filters │ │ │ ├── samples │ │ │ │ ├── prime_tables.h │ │ │ │ ├── sample1.cc │ │ │ │ ├── sample1.h │ │ │ │ ├── sample10_unittest.cc │ │ │ │ ├── sample1_unittest.cc │ │ │ │ ├── sample2.cc │ │ │ │ ├── sample2.h │ │ │ │ ├── sample2_unittest.cc │ │ │ │ ├── sample3-inl.h │ │ │ │ ├── sample3_unittest.cc │ │ │ │ ├── sample4.cc │ │ │ │ ├── sample4.h │ │ │ │ ├── sample4_unittest.cc │ │ │ │ ├── sample5_unittest.cc │ │ │ │ ├── sample6_unittest.cc │ │ │ │ ├── sample7_unittest.cc │ │ │ │ ├── sample8_unittest.cc │ │ │ │ └── sample9_unittest.cc │ │ │ ├── scripts │ │ │ │ ├── common.py │ │ │ │ ├── fuse_gtest_files.py │ │ │ │ ├── gen_gtest_pred_impl.py │ │ │ │ ├── gtest-config.in │ │ │ │ ├── pump.py │ │ │ │ ├── release_docs.py │ │ │ │ ├── upload.py │ │ │ │ └── upload_gtest.py │ │ │ ├── src │ │ │ │ ├── gtest-all.cc │ │ │ │ ├── gtest-death-test.cc │ │ │ │ ├── gtest-filepath.cc │ │ │ │ ├── gtest-internal-inl.h │ │ │ │ ├── gtest-matchers.cc │ │ │ │ ├── gtest-port.cc │ │ │ │ ├── gtest-printers.cc │ │ │ │ ├── gtest-test-part.cc │ │ │ │ ├── gtest-typed-test.cc │ │ │ │ ├── gtest.cc │ │ │ │ └── gtest_main.cc │ │ │ ├── test │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── googletest-break-on-failure-unittest.py │ │ │ │ ├── googletest-break-on-failure-unittest_.cc │ │ │ │ ├── googletest-catch-exceptions-test.py │ │ │ │ ├── googletest-catch-exceptions-test_.cc │ │ │ │ ├── googletest-color-test.py │ │ │ │ ├── googletest-color-test_.cc │ │ │ │ ├── googletest-death-test-test.cc │ │ │ │ ├── googletest-death-test_ex_test.cc │ │ │ │ ├── googletest-env-var-test.py │ │ │ │ ├── googletest-env-var-test_.cc │ │ │ │ ├── googletest-filepath-test.cc │ │ │ │ ├── googletest-filter-unittest.py │ │ │ │ ├── googletest-filter-unittest_.cc │ │ │ │ ├── googletest-json-outfiles-test.py │ │ │ │ ├── googletest-json-output-unittest.py │ │ │ │ ├── googletest-list-tests-unittest.py │ │ │ │ ├── googletest-list-tests-unittest_.cc │ │ │ │ ├── googletest-listener-test.cc │ │ │ │ ├── googletest-message-test.cc │ │ │ │ ├── googletest-options-test.cc │ │ │ │ ├── googletest-output-test-golden-lin.txt │ │ │ │ ├── googletest-output-test.py │ │ │ │ ├── googletest-output-test_.cc │ │ │ │ ├── googletest-param-test-invalid-name1-test.py │ │ │ │ ├── googletest-param-test-invalid-name1-test_.cc │ │ │ │ ├── googletest-param-test-invalid-name2-test.py │ │ │ │ ├── googletest-param-test-invalid-name2-test_.cc │ │ │ │ ├── googletest-param-test-test.cc │ │ │ │ ├── googletest-param-test-test.h │ │ │ │ ├── googletest-param-test2-test.cc │ │ │ │ ├── googletest-port-test.cc │ │ │ │ ├── googletest-printers-test.cc │ │ │ │ ├── googletest-shuffle-test.py │ │ │ │ ├── googletest-shuffle-test_.cc │ │ │ │ ├── googletest-test-part-test.cc │ │ │ │ ├── googletest-test2_test.cc │ │ │ │ ├── googletest-throw-on-failure-test.py │ │ │ │ ├── googletest-throw-on-failure-test_.cc │ │ │ │ ├── googletest-uninitialized-test.py │ │ │ │ ├── googletest-uninitialized-test_.cc │ │ │ │ ├── gtest-typed-test2_test.cc │ │ │ │ ├── gtest-typed-test_test.cc │ │ │ │ ├── gtest-typed-test_test.h │ │ │ │ ├── gtest-unittest-api_test.cc │ │ │ │ ├── gtest_all_test.cc │ │ │ │ ├── gtest_assert_by_exception_test.cc │ │ │ │ ├── gtest_environment_test.cc │ │ │ │ ├── gtest_help_test.py │ │ │ │ ├── gtest_help_test_.cc │ │ │ │ ├── gtest_json_test_utils.py │ │ │ │ ├── gtest_list_output_unittest.py │ │ │ │ ├── gtest_list_output_unittest_.cc │ │ │ │ ├── gtest_main_unittest.cc │ │ │ │ ├── gtest_no_test_unittest.cc │ │ │ │ ├── gtest_pred_impl_unittest.cc │ │ │ │ ├── gtest_premature_exit_test.cc │ │ │ │ ├── gtest_prod_test.cc │ │ │ │ ├── gtest_repeat_test.cc │ │ │ │ ├── gtest_skip_test.cc │ │ │ │ ├── gtest_sole_header_test.cc │ │ │ │ ├── gtest_stress_test.cc │ │ │ │ ├── gtest_test_macro_stack_footprint_test.cc │ │ │ │ ├── gtest_test_utils.py │ │ │ │ ├── gtest_testbridge_test.py │ │ │ │ ├── gtest_testbridge_test_.cc │ │ │ │ ├── gtest_throw_on_failure_ex_test.cc │ │ │ │ ├── gtest_unittest.cc │ │ │ │ ├── gtest_xml_outfile1_test_.cc │ │ │ │ ├── gtest_xml_outfile2_test_.cc │ │ │ │ ├── gtest_xml_outfiles_test.py │ │ │ │ ├── gtest_xml_output_unittest.py │ │ │ │ ├── gtest_xml_output_unittest_.cc │ │ │ │ ├── gtest_xml_test_utils.py │ │ │ │ ├── production.cc │ │ │ │ └── production.h │ │ │ └── xcode │ │ │ │ ├── Config │ │ │ │ ├── DebugProject.xcconfig │ │ │ │ ├── FrameworkTarget.xcconfig │ │ │ │ ├── General.xcconfig │ │ │ │ ├── ReleaseProject.xcconfig │ │ │ │ ├── StaticLibraryTarget.xcconfig │ │ │ │ └── TestTarget.xcconfig │ │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ │ ├── Samples │ │ │ │ └── FrameworkSample │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── WidgetFramework.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── runtests.sh │ │ │ │ │ ├── widget.cc │ │ │ │ │ ├── widget.h │ │ │ │ │ └── widget_test.cc │ │ │ │ ├── Scripts │ │ │ │ ├── runtests.sh │ │ │ │ └── versiongenerate.py │ │ │ │ └── gtest.xcodeproj │ │ │ │ └── project.pbxproj │ │ ├── library.json │ │ └── platformio.ini │ ├── utf8_range │ │ ├── BUILD.bazel │ │ ├── LICENSE │ │ ├── naive.c │ │ ├── range2-neon.c │ │ ├── range2-sse.c │ │ └── utf8_range.h │ └── zlib.BUILD ├── toolchain │ ├── BUILD.bazel │ ├── cc_toolchain_config.bzl │ └── toolchains.bazelrc ├── update_compatibility_version.py ├── update_file_lists.sh ├── update_version.py ├── util │ └── python │ │ └── BUILD.bazel └── version.json └── protobuf-lib ├── Debug ├── libprotobufd.a ├── libprotobufd.lib └── libprotobufd.pdb └── Release ├── libprotobuf.a └── libprotobuf.lib /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: marqdevx -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/compile-metamod-addon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/.github/workflows/compile-metamod-addon.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/.gitmodules -------------------------------------------------------------------------------- /AMBuildScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/AMBuildScript -------------------------------------------------------------------------------- /AMBuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/AMBuilder -------------------------------------------------------------------------------- /CFGs/cs2scrim/cs2scrim.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/CFGs/cs2scrim/cs2scrim.cfg -------------------------------------------------------------------------------- /CFGs/gotvcfg.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/CFGs/gotvcfg.cfg -------------------------------------------------------------------------------- /CFGs/pracc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/CFGs/pracc.cfg -------------------------------------------------------------------------------- /CFGs/scrim.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/CFGs/scrim.cfg -------------------------------------------------------------------------------- /CFGs/unpracc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/CFGs/unpracc.cfg -------------------------------------------------------------------------------- /CS2Fixes.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/CS2Fixes.sln -------------------------------------------------------------------------------- /CS2Fixes.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/CS2Fixes.vcxproj -------------------------------------------------------------------------------- /CS2Fixes.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/CS2Fixes.vcxproj.filters -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/LICENSE -------------------------------------------------------------------------------- /PackageScript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/PackageScript -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/README.md -------------------------------------------------------------------------------- /configs/admins.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/configs/admins.cfg -------------------------------------------------------------------------------- /configs/admins.cfg.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/configs/admins.cfg.example -------------------------------------------------------------------------------- /configs/discordbots.cfg.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/configs/discordbots.cfg.example -------------------------------------------------------------------------------- /configs/maplist.cfg.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/configs/maplist.cfg.example -------------------------------------------------------------------------------- /configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/configure.py -------------------------------------------------------------------------------- /docker-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/docker-setup.sh -------------------------------------------------------------------------------- /gamedata/cs2fixes.games.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/gamedata/cs2fixes.games.txt -------------------------------------------------------------------------------- /protobuf/base_gcmessages_csgo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/base_gcmessages_csgo.proto -------------------------------------------------------------------------------- /protobuf/c_peer2peer_netmessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/c_peer2peer_netmessages.proto -------------------------------------------------------------------------------- /protobuf/clientmessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/clientmessages.proto -------------------------------------------------------------------------------- /protobuf/connectionless_netmessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/connectionless_netmessages.proto -------------------------------------------------------------------------------- /protobuf/cs_gameevents.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/cs_gameevents.proto -------------------------------------------------------------------------------- /protobuf/cs_usercmd.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/cs_usercmd.proto -------------------------------------------------------------------------------- /protobuf/cstrike15_gcmessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/cstrike15_gcmessages.proto -------------------------------------------------------------------------------- /protobuf/cstrike15_usermessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/cstrike15_usermessages.proto -------------------------------------------------------------------------------- /protobuf/demo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/demo.proto -------------------------------------------------------------------------------- /protobuf/econ_gcmessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/econ_gcmessages.proto -------------------------------------------------------------------------------- /protobuf/engine_gcmessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/engine_gcmessages.proto -------------------------------------------------------------------------------- /protobuf/fatdemo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/fatdemo.proto -------------------------------------------------------------------------------- /protobuf/gameevents.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/gameevents.proto -------------------------------------------------------------------------------- /protobuf/gcsdk_gcmessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/gcsdk_gcmessages.proto -------------------------------------------------------------------------------- /protobuf/gcsystemmsgs.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/gcsystemmsgs.proto -------------------------------------------------------------------------------- /protobuf/generated/base_gcmessages_csgo.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/base_gcmessages_csgo.pb.cc -------------------------------------------------------------------------------- /protobuf/generated/base_gcmessages_csgo.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/base_gcmessages_csgo.pb.h -------------------------------------------------------------------------------- /protobuf/generated/c_peer2peer_netmessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/c_peer2peer_netmessages.pb.cc -------------------------------------------------------------------------------- /protobuf/generated/c_peer2peer_netmessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/c_peer2peer_netmessages.pb.h -------------------------------------------------------------------------------- /protobuf/generated/clientmessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/clientmessages.pb.cc -------------------------------------------------------------------------------- /protobuf/generated/clientmessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/clientmessages.pb.h -------------------------------------------------------------------------------- /protobuf/generated/connectionless_netmessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/connectionless_netmessages.pb.cc -------------------------------------------------------------------------------- /protobuf/generated/connectionless_netmessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/connectionless_netmessages.pb.h -------------------------------------------------------------------------------- /protobuf/generated/cs_gameevents.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/cs_gameevents.pb.cc -------------------------------------------------------------------------------- /protobuf/generated/cs_gameevents.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/cs_gameevents.pb.h -------------------------------------------------------------------------------- /protobuf/generated/cs_usercmd.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/cs_usercmd.pb.cc -------------------------------------------------------------------------------- /protobuf/generated/cs_usercmd.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/cs_usercmd.pb.h -------------------------------------------------------------------------------- /protobuf/generated/cstrike15_gcmessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/cstrike15_gcmessages.pb.cc -------------------------------------------------------------------------------- /protobuf/generated/cstrike15_gcmessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/cstrike15_gcmessages.pb.h -------------------------------------------------------------------------------- /protobuf/generated/cstrike15_usermessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/cstrike15_usermessages.pb.cc -------------------------------------------------------------------------------- /protobuf/generated/cstrike15_usermessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/cstrike15_usermessages.pb.h -------------------------------------------------------------------------------- /protobuf/generated/demo.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/demo.pb.cc -------------------------------------------------------------------------------- /protobuf/generated/demo.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/demo.pb.h -------------------------------------------------------------------------------- /protobuf/generated/econ_gcmessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/econ_gcmessages.pb.cc -------------------------------------------------------------------------------- /protobuf/generated/econ_gcmessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/econ_gcmessages.pb.h -------------------------------------------------------------------------------- /protobuf/generated/engine_gcmessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/engine_gcmessages.pb.cc -------------------------------------------------------------------------------- /protobuf/generated/engine_gcmessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/engine_gcmessages.pb.h -------------------------------------------------------------------------------- /protobuf/generated/fatdemo.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/fatdemo.pb.cc -------------------------------------------------------------------------------- /protobuf/generated/fatdemo.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/fatdemo.pb.h -------------------------------------------------------------------------------- /protobuf/generated/gameevents.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/gameevents.pb.cc -------------------------------------------------------------------------------- /protobuf/generated/gameevents.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/gameevents.pb.h -------------------------------------------------------------------------------- /protobuf/generated/gcsdk_gcmessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/gcsdk_gcmessages.pb.cc -------------------------------------------------------------------------------- /protobuf/generated/gcsdk_gcmessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/gcsdk_gcmessages.pb.h -------------------------------------------------------------------------------- /protobuf/generated/gcsystemmsgs.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/gcsystemmsgs.pb.cc -------------------------------------------------------------------------------- /protobuf/generated/gcsystemmsgs.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/gcsystemmsgs.pb.h -------------------------------------------------------------------------------- /protobuf/generated/netmessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/netmessages.pb.cc -------------------------------------------------------------------------------- /protobuf/generated/netmessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/netmessages.pb.h -------------------------------------------------------------------------------- /protobuf/generated/network_connection.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/network_connection.pb.cc -------------------------------------------------------------------------------- /protobuf/generated/network_connection.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/network_connection.pb.h -------------------------------------------------------------------------------- /protobuf/generated/networkbasetypes.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/networkbasetypes.pb.cc -------------------------------------------------------------------------------- /protobuf/generated/networkbasetypes.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/networkbasetypes.pb.h -------------------------------------------------------------------------------- /protobuf/generated/networksystem_protomessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/networksystem_protomessages.pb.cc -------------------------------------------------------------------------------- /protobuf/generated/networksystem_protomessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/networksystem_protomessages.pb.h -------------------------------------------------------------------------------- /protobuf/generated/steamdatagram_messages_auth.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/steamdatagram_messages_auth.pb.cc -------------------------------------------------------------------------------- /protobuf/generated/steamdatagram_messages_auth.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/steamdatagram_messages_auth.pb.h -------------------------------------------------------------------------------- /protobuf/generated/steamdatagram_messages_sdr.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/steamdatagram_messages_sdr.pb.cc -------------------------------------------------------------------------------- /protobuf/generated/steamdatagram_messages_sdr.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/steamdatagram_messages_sdr.pb.h -------------------------------------------------------------------------------- /protobuf/generated/steammessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/steammessages.pb.cc -------------------------------------------------------------------------------- /protobuf/generated/steammessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/steammessages.pb.h -------------------------------------------------------------------------------- /protobuf/generated/steammessages_cloud.steamworkssdk.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/steammessages_cloud.steamworkssdk.pb.cc -------------------------------------------------------------------------------- /protobuf/generated/steammessages_cloud.steamworkssdk.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/steammessages_cloud.steamworkssdk.pb.h -------------------------------------------------------------------------------- /protobuf/generated/steammessages_gamenetworkingui.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/steammessages_gamenetworkingui.pb.cc -------------------------------------------------------------------------------- /protobuf/generated/steammessages_gamenetworkingui.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/steammessages_gamenetworkingui.pb.h -------------------------------------------------------------------------------- /protobuf/generated/steammessages_oauth.steamworkssdk.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/steammessages_oauth.steamworkssdk.pb.cc -------------------------------------------------------------------------------- /protobuf/generated/steammessages_oauth.steamworkssdk.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/steammessages_oauth.steamworkssdk.pb.h -------------------------------------------------------------------------------- /protobuf/generated/steammessages_player.steamworkssdk.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/steammessages_player.steamworkssdk.pb.h -------------------------------------------------------------------------------- /protobuf/generated/steamnetworkingsockets_messages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/steamnetworkingsockets_messages.pb.cc -------------------------------------------------------------------------------- /protobuf/generated/steamnetworkingsockets_messages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/steamnetworkingsockets_messages.pb.h -------------------------------------------------------------------------------- /protobuf/generated/te.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/te.pb.cc -------------------------------------------------------------------------------- /protobuf/generated/te.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/te.pb.h -------------------------------------------------------------------------------- /protobuf/generated/uifontfile_format.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/uifontfile_format.pb.cc -------------------------------------------------------------------------------- /protobuf/generated/uifontfile_format.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/uifontfile_format.pb.h -------------------------------------------------------------------------------- /protobuf/generated/usercmd.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/usercmd.pb.cc -------------------------------------------------------------------------------- /protobuf/generated/usercmd.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/usercmd.pb.h -------------------------------------------------------------------------------- /protobuf/generated/usermessages.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/usermessages.pb.cc -------------------------------------------------------------------------------- /protobuf/generated/usermessages.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/usermessages.pb.h -------------------------------------------------------------------------------- /protobuf/generated/valveextensions.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/valveextensions.pb.cc -------------------------------------------------------------------------------- /protobuf/generated/valveextensions.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/generated/valveextensions.pb.h -------------------------------------------------------------------------------- /protobuf/netmessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/netmessages.proto -------------------------------------------------------------------------------- /protobuf/network_connection.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/network_connection.proto -------------------------------------------------------------------------------- /protobuf/networkbasetypes.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/networkbasetypes.proto -------------------------------------------------------------------------------- /protobuf/networksystem_protomessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/networksystem_protomessages.proto -------------------------------------------------------------------------------- /protobuf/protoc/google/protobuf/descriptor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/protoc/google/protobuf/descriptor.proto -------------------------------------------------------------------------------- /protobuf/protoc/protoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/protoc/protoc -------------------------------------------------------------------------------- /protobuf/protocompile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/protocompile.sh -------------------------------------------------------------------------------- /protobuf/steamdatagram_messages_auth.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/steamdatagram_messages_auth.proto -------------------------------------------------------------------------------- /protobuf/steamdatagram_messages_sdr.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/steamdatagram_messages_sdr.proto -------------------------------------------------------------------------------- /protobuf/steammessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/steammessages.proto -------------------------------------------------------------------------------- /protobuf/steammessages_cloud.steamworkssdk.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/steammessages_cloud.steamworkssdk.proto -------------------------------------------------------------------------------- /protobuf/steammessages_gamenetworkingui.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/steammessages_gamenetworkingui.proto -------------------------------------------------------------------------------- /protobuf/steammessages_helprequest.steamworkssdk.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/steammessages_helprequest.steamworkssdk.proto -------------------------------------------------------------------------------- /protobuf/steammessages_oauth.steamworkssdk.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/steammessages_oauth.steamworkssdk.proto -------------------------------------------------------------------------------- /protobuf/steammessages_player.steamworkssdk.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/steammessages_player.steamworkssdk.proto -------------------------------------------------------------------------------- /protobuf/steammessages_publishedfile.steamworkssdk.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/steammessages_publishedfile.steamworkssdk.proto -------------------------------------------------------------------------------- /protobuf/steammessages_steamlearn.steamworkssdk.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/steammessages_steamlearn.steamworkssdk.proto -------------------------------------------------------------------------------- /protobuf/steammessages_unified_base.steamworkssdk.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/steammessages_unified_base.steamworkssdk.proto -------------------------------------------------------------------------------- /protobuf/steamnetworkingsockets_messages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/steamnetworkingsockets_messages.proto -------------------------------------------------------------------------------- /protobuf/steamnetworkingsockets_messages_certs.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/steamnetworkingsockets_messages_certs.proto -------------------------------------------------------------------------------- /protobuf/steamnetworkingsockets_messages_udp.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/steamnetworkingsockets_messages_udp.proto -------------------------------------------------------------------------------- /protobuf/te.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/te.proto -------------------------------------------------------------------------------- /protobuf/uifontfile_format.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/uifontfile_format.proto -------------------------------------------------------------------------------- /protobuf/usercmd.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/usercmd.proto -------------------------------------------------------------------------------- /protobuf/usermessages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/usermessages.proto -------------------------------------------------------------------------------- /protobuf/valveextensions.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/protobuf/valveextensions.proto -------------------------------------------------------------------------------- /src/addresses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/addresses.cpp -------------------------------------------------------------------------------- /src/addresses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/addresses.h -------------------------------------------------------------------------------- /src/adminsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/adminsystem.cpp -------------------------------------------------------------------------------- /src/adminsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/adminsystem.h -------------------------------------------------------------------------------- /src/cdetour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/cdetour.h -------------------------------------------------------------------------------- /src/commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/commands.cpp -------------------------------------------------------------------------------- /src/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/commands.h -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/common.h -------------------------------------------------------------------------------- /src/cs2_sdk/cschemasystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/cs2_sdk/cschemasystem.h -------------------------------------------------------------------------------- /src/cs2_sdk/entity/cbaseentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/cs2_sdk/entity/cbaseentity.h -------------------------------------------------------------------------------- /src/cs2_sdk/entity/cbasemodelentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/cs2_sdk/entity/cbasemodelentity.h -------------------------------------------------------------------------------- /src/cs2_sdk/entity/cbaseplayercontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/cs2_sdk/entity/cbaseplayercontroller.h -------------------------------------------------------------------------------- /src/cs2_sdk/entity/cbaseplayerpawn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/cs2_sdk/entity/cbaseplayerpawn.h -------------------------------------------------------------------------------- /src/cs2_sdk/entity/ccollisionproperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/cs2_sdk/entity/ccollisionproperty.h -------------------------------------------------------------------------------- /src/cs2_sdk/entity/ccsplayercontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/cs2_sdk/entity/ccsplayercontroller.h -------------------------------------------------------------------------------- /src/cs2_sdk/entity/ccsplayerpawn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/cs2_sdk/entity/ccsplayerpawn.h -------------------------------------------------------------------------------- /src/cs2_sdk/entity/ccsweaponbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/cs2_sdk/entity/ccsweaponbase.h -------------------------------------------------------------------------------- /src/cs2_sdk/entity/cgamerules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/cs2_sdk/entity/cgamerules.h -------------------------------------------------------------------------------- /src/cs2_sdk/entity/cparticlesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/cs2_sdk/entity/cparticlesystem.h -------------------------------------------------------------------------------- /src/cs2_sdk/entity/ctakedamageinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/cs2_sdk/entity/ctakedamageinfo.h -------------------------------------------------------------------------------- /src/cs2_sdk/entity/cteam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/cs2_sdk/entity/cteam.h -------------------------------------------------------------------------------- /src/cs2_sdk/entity/ctriggerpush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/cs2_sdk/entity/ctriggerpush.h -------------------------------------------------------------------------------- /src/cs2_sdk/entity/globaltypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/cs2_sdk/entity/globaltypes.h -------------------------------------------------------------------------------- /src/cs2_sdk/entity/lights.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/cs2_sdk/entity/lights.h -------------------------------------------------------------------------------- /src/cs2_sdk/entity/services.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/cs2_sdk/entity/services.h -------------------------------------------------------------------------------- /src/cs2_sdk/schema.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/cs2_sdk/schema.cpp -------------------------------------------------------------------------------- /src/cs2_sdk/schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/cs2_sdk/schema.h -------------------------------------------------------------------------------- /src/cs2fixes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/cs2fixes.cpp -------------------------------------------------------------------------------- /src/cs2fixes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/cs2fixes.h -------------------------------------------------------------------------------- /src/ctimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/ctimer.cpp -------------------------------------------------------------------------------- /src/ctimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/ctimer.h -------------------------------------------------------------------------------- /src/cvars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/cvars.cpp -------------------------------------------------------------------------------- /src/detours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/detours.cpp -------------------------------------------------------------------------------- /src/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/detours.h -------------------------------------------------------------------------------- /src/entitylistener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/entitylistener.cpp -------------------------------------------------------------------------------- /src/entitylistener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/entitylistener.h -------------------------------------------------------------------------------- /src/eventlistener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/eventlistener.h -------------------------------------------------------------------------------- /src/events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/events.cpp -------------------------------------------------------------------------------- /src/gameconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/gameconfig.cpp -------------------------------------------------------------------------------- /src/gameconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/gameconfig.h -------------------------------------------------------------------------------- /src/gamesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/gamesystem.cpp -------------------------------------------------------------------------------- /src/gamesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/gamesystem.h -------------------------------------------------------------------------------- /src/mempatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/mempatch.cpp -------------------------------------------------------------------------------- /src/mempatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/mempatch.h -------------------------------------------------------------------------------- /src/patches.cpp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/patches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/patches.h -------------------------------------------------------------------------------- /src/playermanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/playermanager.cpp -------------------------------------------------------------------------------- /src/playermanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/playermanager.h -------------------------------------------------------------------------------- /src/recipientfilters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/recipientfilters.h -------------------------------------------------------------------------------- /src/utils/entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/utils/entity.cpp -------------------------------------------------------------------------------- /src/utils/entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/utils/entity.h -------------------------------------------------------------------------------- /src/utils/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/utils/module.h -------------------------------------------------------------------------------- /src/utils/plat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/utils/plat.h -------------------------------------------------------------------------------- /src/utils/plat_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/utils/plat_unix.cpp -------------------------------------------------------------------------------- /src/utils/plat_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/utils/plat_win.cpp -------------------------------------------------------------------------------- /src/utils/plat_win.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /src/utils/virtual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/src/utils/virtual.h -------------------------------------------------------------------------------- /vendor/funchook/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/funchook/LICENSE -------------------------------------------------------------------------------- /vendor/funchook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/funchook/README.md -------------------------------------------------------------------------------- /vendor/funchook/include/funchook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/funchook/include/funchook.h -------------------------------------------------------------------------------- /vendor/funchook/lib/Debug/distorm.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/funchook/lib/Debug/distorm.lib -------------------------------------------------------------------------------- /vendor/funchook/lib/Debug/distorm.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/funchook/lib/Debug/distorm.pdb -------------------------------------------------------------------------------- /vendor/funchook/lib/Debug/funchook.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/funchook/lib/Debug/funchook.lib -------------------------------------------------------------------------------- /vendor/funchook/lib/Debug/funchook.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/funchook/lib/Debug/funchook.pdb -------------------------------------------------------------------------------- /vendor/funchook/lib/Debug/libdistorm.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/funchook/lib/Debug/libdistorm.a -------------------------------------------------------------------------------- /vendor/funchook/lib/Debug/libfunchook.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/funchook/lib/Debug/libfunchook.a -------------------------------------------------------------------------------- /vendor/funchook/lib/Release/distorm.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/funchook/lib/Release/distorm.lib -------------------------------------------------------------------------------- /vendor/funchook/lib/Release/funchook.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/funchook/lib/Release/funchook.lib -------------------------------------------------------------------------------- /vendor/funchook/lib/Release/libdistorm.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/funchook/lib/Release/libdistorm.a -------------------------------------------------------------------------------- /vendor/funchook/lib/Release/libfunchook.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/funchook/lib/Release/libfunchook.a -------------------------------------------------------------------------------- /vendor/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/nlohmann/json.hpp -------------------------------------------------------------------------------- /vendor/nlohmann/json_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/nlohmann/json_fwd.hpp -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/.bazelignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/.bazelignore -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/.github/mergeable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/.github/mergeable.yml -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/.github/workflows/codespell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/.github/workflows/codespell.yml -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/.github/workflows/php-ext.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/.github/workflows/php-ext.yml -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/.gitignore -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/.gitmodules -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/.readthedocs.yml -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/BUILD.bazel -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/CHANGES.txt -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/LICENSE -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/Makefile.am -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/Protobuf-C++.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/Protobuf-C++.podspec -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/Protobuf.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/Protobuf.podspec -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/README.md -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/SECURITY.md -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/WORKSPACE -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/appveyor.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/appveyor.bat -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/appveyor.yml -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/autogen.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/benchmarks/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/benchmarks/BUILD.bazel -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/benchmarks/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/benchmarks/Makefile.am -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/benchmarks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/benchmarks/README.md -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/benchmarks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/benchmarks/benchmarks.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/benchmarks/benchmarks.proto -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/benchmarks/cpp/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/benchmarks/cpp/BUILD.bazel -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/benchmarks/cpp/cpp_benchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/benchmarks/cpp/cpp_benchmark.cc -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/benchmarks/datasets/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/benchmarks/datasets/BUILD.bazel -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/benchmarks/go/go_benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/benchmarks/go/go_benchmark_test.go -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/benchmarks/google_size.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/benchmarks/google_size.proto -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/benchmarks/java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/benchmarks/java/pom.xml -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/benchmarks/js/benchmark_suite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/benchmarks/js/benchmark_suite.js -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/benchmarks/js/js_benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/benchmarks/js/js_benchmark.js -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/benchmarks/php/PhpBenchmark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/benchmarks/php/PhpBenchmark.php -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/benchmarks/php/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/benchmarks/php/autoload.php -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/benchmarks/python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/benchmarks/python/py_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/benchmarks/python/py_benchmark.py -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/benchmarks/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/benchmarks/util/big_query_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/benchmarks/util/big_query_utils.py -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/benchmarks/util/result_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/benchmarks/util/result_parser.py -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/benchmarks/util/result_uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/benchmarks/util/result_uploader.py -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/build_defs/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/build_defs/BUILD.bazel -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/build_defs/cpp_opts.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/build_defs/cpp_opts.bzl -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/build_files_updated_unittest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/build_files_updated_unittest.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/cmake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/cmake/README.md -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/cmake/conformance.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/cmake/conformance.cmake -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/cmake/examples.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/cmake/examples.cmake -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/cmake/extract_includes.bat.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/cmake/extract_includes.bat.in -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/cmake/install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/cmake/install.cmake -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/cmake/libprotobuf-lite.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/cmake/libprotobuf-lite.cmake -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/cmake/libprotobuf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/cmake/libprotobuf.cmake -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/cmake/libprotoc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/cmake/libprotoc.cmake -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/cmake/protobuf-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/cmake/protobuf-config.cmake.in -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/cmake/protobuf-lite.pc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/cmake/protobuf-lite.pc.cmake -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/cmake/protobuf-module.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/cmake/protobuf-module.cmake.in -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/cmake/protobuf-options.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/cmake/protobuf-options.cmake -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/cmake/protobuf.pc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/cmake/protobuf.pc.cmake -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/cmake/protoc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/cmake/protoc.cmake -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/cmake/tests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/cmake/tests.cmake -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/cmake/version.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/cmake/version.rc.in -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/configure.ac -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/conformance/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/conformance/BUILD.bazel -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/conformance/ConformanceJava.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/conformance/ConformanceJava.java -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/conformance/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/conformance/Makefile.am -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/conformance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/conformance/README.md -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/conformance/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/conformance/autoload.php -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/conformance/conformance.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/conformance/conformance.proto -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/conformance/conformance_cpp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/conformance/conformance_cpp.cc -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/conformance/conformance_nodejs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/conformance/conformance_nodejs.js -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/conformance/conformance_objc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/conformance/conformance_objc.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/conformance/conformance_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/conformance/conformance_php.php -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/conformance/conformance_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/conformance/conformance_python.py -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/conformance/conformance_ruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/conformance/conformance_ruby.rb -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/conformance/conformance_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/conformance/conformance_test.cc -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/conformance/conformance_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/conformance/conformance_test.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/conformance/defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/conformance/defs.bzl -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/conformance/failure_list_cpp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/conformance/failure_list_cpp.txt -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/conformance/failure_list_csharp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/conformance/failure_list_csharp.txt -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/conformance/failure_list_java.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/conformance/failure_list_java.txt -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/conformance/failure_list_jruby.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/conformance/failure_list_jruby.txt -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/conformance/failure_list_js.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/conformance/failure_list_js.txt -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/conformance/failure_list_objc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/conformance/failure_list_objc.txt -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/conformance/failure_list_php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/conformance/failure_list_php.txt -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/conformance/failure_list_php_c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/conformance/failure_list_php_c.txt -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/conformance/failure_list_python.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/conformance/failure_list_ruby.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/conformance/failure_list_ruby.txt -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/conformance/update_failure_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/conformance/update_failure_list.py -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/csharp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/csharp/.editorconfig -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/csharp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/csharp/.gitignore -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/csharp/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/csharp/BUILD.bazel -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/csharp/CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/csharp/CHANGES.txt -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/csharp/Google.Protobuf.Tools.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/csharp/Google.Protobuf.Tools.nuspec -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/csharp/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/csharp/NuGet.Config -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/csharp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/csharp/README.md -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/csharp/build_packages.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/csharp/build_packages.bat -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/csharp/build_tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/csharp/build_tools.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/csharp/buildall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/csharp/buildall.bat -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/csharp/buildall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/csharp/buildall.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/csharp/generate_protos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/csharp/generate_protos.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/csharp/install_dotnet_sdk.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/csharp/install_dotnet_sdk.ps1 -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/csharp/keys/Google.Protobuf.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/csharp/keys/Google.Protobuf.snk -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/csharp/keys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/csharp/keys/README.md -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/csharp/protos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/csharp/protos/README.md -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/csharp/protos/old_extensions1.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/csharp/protos/old_extensions1.proto -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/csharp/protos/old_extensions2.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/csharp/protos/old_extensions2.proto -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/csharp/protos/unittest.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/csharp/protos/unittest.proto -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/csharp/protos/unittest_import.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/csharp/protos/unittest_import.proto -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/csharp/protos/unittest_issues.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/csharp/protos/unittest_issues.proto -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/csharp/protos/unittest_proto3.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/csharp/protos/unittest_proto3.proto -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/csharp/src/AddressBook/AddPerson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/csharp/src/AddressBook/AddPerson.cs -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/csharp/src/AddressBook/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/csharp/src/AddressBook/Program.cs -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/csharp/src/Google.Protobuf.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/csharp/src/Google.Protobuf.sln -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/docs/csharp/proto2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/docs/csharp/proto2.md -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/docs/field_presence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/docs/field_presence.md -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/docs/jvm_aot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/docs/jvm_aot.md -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/docs/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/docs/options.md -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/docs/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/docs/performance.md -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/docs/third_party.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/docs/third_party.md -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/editors/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/editors/README.txt -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/editors/proto.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/editors/proto.vim -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/editors/protobuf-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/editors/protobuf-mode.el -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/examples/.gitignore -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/examples/AddPerson.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/examples/AddPerson.java -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/examples/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/examples/BUILD.bazel -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/examples/CMakeLists.txt -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/examples/ListPeople.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/examples/ListPeople.java -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/examples/README.md -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/examples/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/examples/WORKSPACE -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/examples/add_person.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/examples/add_person.cc -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/examples/add_person.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/examples/add_person.dart -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/examples/add_person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/examples/add_person.py -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/examples/addressbook.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/examples/addressbook.proto -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/examples/go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/examples/go/go.mod -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/examples/go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/examples/go/go.sum -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/examples/list_people.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/examples/list_people.cc -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/examples/list_people.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/examples/list_people.dart -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/examples/list_people.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/examples/list_people.py -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/examples/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/examples/pubspec.yaml -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/fix_permissions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/fix_permissions.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/generate_changelog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/generate_changelog.py -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/generate_descriptor_proto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/generate_descriptor_proto.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/global.json -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/java/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/java/BUILD.bazel -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/java/README.md -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/java/bom/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/java/bom/pom.xml -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/java/core/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/java/core/BUILD.bazel -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/java/core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/java/core/pom.xml -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/java/core/pom_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/java/core/pom_template.xml -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/java/internal/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/java/internal/BUILD.bazel -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/java/internal/testing.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/java/internal/testing.bzl -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/java/kotlin-lite/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/java/kotlin-lite/BUILD.bazel -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/java/kotlin-lite/lite.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/java/kotlin-lite/lite.awk -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/java/kotlin-lite/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/java/kotlin-lite/pom.xml -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/java/kotlin-lite/pom_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/java/kotlin-lite/pom_template.xml -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/java/kotlin/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/java/kotlin/BUILD.bazel -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/java/kotlin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/java/kotlin/pom.xml -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/java/kotlin/pom_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/java/kotlin/pom_template.xml -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/java/lite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/java/lite.md -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/java/lite/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/java/lite/BUILD.bazel -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/java/lite/lite.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/java/lite/lite.awk -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/java/lite/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/java/lite/pom.xml -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/java/lite/pom_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/java/lite/pom_template.xml -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/java/lite/proguard.pgcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/java/lite/proguard.pgcfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/java/pom.xml -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/java/util/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/java/util/BUILD.bazel -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/java/util/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/java/util/pom.xml -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/java/util/pom_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/java/util/pom_template.xml -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/README.md -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/caplog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/caplog.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/docs/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/docs/common.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/docs/publish-python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/docs/publish-python.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/docs/python.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/docs/python.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/docs/trampoline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/docs/trampoline.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/32-bit/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/32-bit/Dockerfile -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/32-bit/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/32-bit/build.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/32-bit/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/32-bit/continuous.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/32-bit/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/32-bit/presubmit.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/bazel/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/bazel/build.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/bazel/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/bazel/continuous.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/bazel/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/bazel/presubmit.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/benchmark/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/benchmark/build.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/benchmark/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/benchmark/run.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/cpp_aarch64/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/cpp_aarch64/build.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/cpp_distcheck/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/cpp_distcheck/build.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/cpp_tcmalloc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/cpp_tcmalloc/build.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/csharp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/csharp/build.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/csharp/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/csharp/continuous.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/csharp/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/csharp/presubmit.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/dist_install/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/dist_install/build.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/java_aarch64/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/java_aarch64/build.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/java_jdk11/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/java_jdk11/build.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/java_jdk17/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/java_jdk17/build.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/jruby92/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/jruby92/build.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/jruby92/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/jruby92/continuous.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/jruby92/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/jruby92/presubmit.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/jruby93/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/jruby93/build.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/jruby93/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/jruby93/continuous.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/jruby93/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/jruby93/presubmit.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/make_test_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/make_test_output.py -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/php_aarch64/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/php_aarch64/build.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/php_all/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/php_all/build.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/php_all/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/php_all/continuous.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/php_all/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/php_all/presubmit.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/python310/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/python310/build.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/python310_cpp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/python310_cpp/build.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/python37/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/python37/build.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/python37/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/python37/presubmit.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/python37_cpp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/python37_cpp/build.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/python38/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/python38/build.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/python38/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/python38/presubmit.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/python38_cpp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/python38_cpp/build.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/python39/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/python39/build.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/python39/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/python39/presubmit.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/python39_cpp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/python39_cpp/build.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/ruby25/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/ruby25/build.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/ruby25/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/ruby25/continuous.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/ruby25/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/ruby25/presubmit.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/ruby26/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/ruby26/build.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/ruby26/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/ruby26/continuous.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/ruby26/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/ruby26/presubmit.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/ruby27/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/ruby27/build.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/ruby27/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/ruby27/continuous.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/ruby27/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/ruby27/presubmit.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/ruby30/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/ruby30/build.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/ruby30/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/ruby30/continuous.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/ruby30/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/ruby30/presubmit.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/ruby31/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/ruby31/build.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/ruby31/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/ruby31/continuous.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/ruby31/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/ruby31/presubmit.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/linux/ruby_aarch64/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/linux/ruby_aarch64/build.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/macos-next/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/macos-next/README.md -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/macos-next/cpp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/macos-next/cpp/build.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/macos-next/cpp/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/macos-next/cpp/presubmit.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/macos/cpp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/macos/cpp/build.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/macos/cpp/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/macos/cpp/continuous.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/macos/cpp/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/macos/cpp/presubmit.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/macos/cpp_distcheck/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/macos/cpp_distcheck/build.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/macos/php7.0_mac/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/macos/php7.0_mac/build.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/macos/php7.3_mac/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/macos/php7.3_mac/build.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/macos/prepare_build_macos_rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/macos/prepare_build_macos_rc -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/macos/python/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/macos/python/build.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/macos/python/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/macos/python/continuous.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/macos/python/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/macos/python/presubmit.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/macos/python_cpp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/macos/python_cpp/build.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/macos/ruby25/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/macos/ruby25/build.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/macos/ruby25/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/macos/ruby25/continuous.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/macos/ruby25/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/macos/ruby25/presubmit.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/macos/ruby26/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/macos/ruby26/build.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/macos/ruby26/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/macos/ruby26/continuous.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/macos/ruby26/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/macos/ruby26/presubmit.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/macos/ruby27/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/macos/ruby27/build.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/macos/ruby27/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/macos/ruby27/continuous.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/macos/ruby27/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/macos/ruby27/presubmit.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/macos/ruby30/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/macos/ruby30/build.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/macos/ruby30/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/macos/ruby30/continuous.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/macos/ruby30/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/macos/ruby30/presubmit.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/macos/ruby31/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/macos/ruby31/build.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/macos/ruby31/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/macos/ruby31/continuous.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/macos/ruby31/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/macos/ruby31/presubmit.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/windows/csharp/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/windows/csharp/build.bat -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/kokoro/windows/csharp/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/kokoro/windows/csharp/presubmit.cfg -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/m4/ac_system_extensions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/m4/ac_system_extensions.m4 -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/m4/acx_check_suncc.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/m4/acx_check_suncc.m4 -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/m4/ax_cxx_compile_stdcxx.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/m4/ax_cxx_compile_stdcxx.m4 -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/m4/ax_prog_cc_for_build.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/m4/ax_prog_cc_for_build.m4 -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/m4/ax_prog_cxx_for_build.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/m4/ax_prog_cxx_for_build.m4 -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/m4/ax_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/m4/ax_pthread.m4 -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/m4/stl_hash.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/m4/stl_hash.m4 -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/maven_install.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/maven_install.json -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/.clang-format -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/.gitignore -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/BUILD.bazel -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/DevTools/pddm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/DevTools/pddm.py -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/DevTools/pddm_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/DevTools/pddm_tests.py -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBAny.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBAny.pbobjc.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBAny.pbobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBAny.pbobjc.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBApi.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBApi.pbobjc.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBApi.pbobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBApi.pbobjc.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBArray.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBArray.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBArray.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBBootstrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBBootstrap.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBCodedInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBCodedInputStream.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBCodedInputStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBCodedInputStream.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBCodedOutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBCodedOutputStream.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBCodedOutputStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBCodedOutputStream.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBDescriptor.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBDescriptor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBDescriptor.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBDictionary.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBDictionary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBDictionary.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBDuration.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBDuration.pbobjc.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBDuration.pbobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBDuration.pbobjc.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBEmpty.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBEmpty.pbobjc.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBEmpty.pbobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBEmpty.pbobjc.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBExtensionInternals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBExtensionInternals.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBExtensionInternals.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBExtensionInternals.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBExtensionRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBExtensionRegistry.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBExtensionRegistry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBExtensionRegistry.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBFieldMask.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBFieldMask.pbobjc.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBFieldMask.pbobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBFieldMask.pbobjc.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBMessage.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBMessage.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBProtocolBuffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBProtocolBuffers.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBProtocolBuffers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBProtocolBuffers.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBRootObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBRootObject.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBRootObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBRootObject.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBRuntimeTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBRuntimeTypes.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBStruct.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBStruct.pbobjc.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBStruct.pbobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBStruct.pbobjc.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBTimestamp.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBTimestamp.pbobjc.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBTimestamp.pbobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBTimestamp.pbobjc.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBType.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBType.pbobjc.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBType.pbobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBType.pbobjc.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBUnknownField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBUnknownField.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBUnknownField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBUnknownField.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBUnknownFieldSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBUnknownFieldSet.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBUnknownFieldSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBUnknownFieldSet.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBUtilities.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBUtilities.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBWellKnownTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBWellKnownTypes.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBWellKnownTypes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBWellKnownTypes.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBWireFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBWireFormat.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBWireFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBWireFormat.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBWrappers.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBWrappers.pbobjc.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/GPBWrappers.pbobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/GPBWrappers.pbobjc.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/README.md -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/Tests/GPBArrayTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/Tests/GPBArrayTests.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest01.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest01.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest02.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest02.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest03.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest03.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest04.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest04.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest05.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest05.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest06.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest06.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest07.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest07.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest08.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest08.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest09.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest09.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest10.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest10.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest11.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest11.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest12.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest12.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest13.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest13.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest14.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest14.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest15.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest15.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest16.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest16.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest17.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest17.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest18.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest18.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest19.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest19.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest20.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest20.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest21.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest21.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest22.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest22.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest23.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest23.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest24.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest24.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest25.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/Tests/GPBCompileTest25.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/Tests/GPBMessageTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/Tests/GPBMessageTests.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/Tests/GPBPerfTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/Tests/GPBPerfTests.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/Tests/GPBTestUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/Tests/GPBTestUtilities.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/Tests/GPBTestUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/Tests/GPBTestUtilities.m -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/objectivec/Tests/golden_message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/objectivec/Tests/golden_message -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/BUILD.bazel -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/README.md -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/REFCOUNTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/REFCOUNTING.md -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/composer.json -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/composer.json.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/composer.json.dist -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/ext/google/protobuf/arena.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/ext/google/protobuf/arena.c -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/ext/google/protobuf/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/ext/google/protobuf/arena.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/ext/google/protobuf/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/ext/google/protobuf/array.c -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/ext/google/protobuf/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/ext/google/protobuf/array.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/ext/google/protobuf/config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/ext/google/protobuf/config.m4 -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/ext/google/protobuf/convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/ext/google/protobuf/convert.c -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/ext/google/protobuf/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/ext/google/protobuf/convert.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/ext/google/protobuf/def.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/ext/google/protobuf/def.c -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/ext/google/protobuf/def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/ext/google/protobuf/def.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/ext/google/protobuf/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/ext/google/protobuf/map.c -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/ext/google/protobuf/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/ext/google/protobuf/map.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/ext/google/protobuf/message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/ext/google/protobuf/message.c -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/ext/google/protobuf/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/ext/google/protobuf/message.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/ext/google/protobuf/names.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/ext/google/protobuf/names.c -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/ext/google/protobuf/names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/ext/google/protobuf/names.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/ext/google/protobuf/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/ext/google/protobuf/package.xml -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/ext/google/protobuf/php-upb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/ext/google/protobuf/php-upb.c -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/ext/google/protobuf/php-upb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/ext/google/protobuf/php-upb.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/ext/google/protobuf/protobuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/ext/google/protobuf/protobuf.c -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/ext/google/protobuf/protobuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/ext/google/protobuf/protobuf.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/ext/google/protobuf/wkt.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/ext/google/protobuf/wkt.inc -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/generate_descriptor_protos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/generate_descriptor_protos.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/generate_test_protos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/generate_test_protos.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/release.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/src/Google/Protobuf/Any.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/src/Google/Protobuf/Any.php -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/src/Google/Protobuf/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/src/Google/Protobuf/Api.php -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/src/Google/Protobuf/Enum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/src/Google/Protobuf/Enum.php -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/src/Google/Protobuf/Field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/src/Google/Protobuf/Field.php -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/src/Google/Protobuf/Method.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/src/Google/Protobuf/Method.php -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/src/Google/Protobuf/Mixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/src/Google/Protobuf/Mixin.php -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/src/Google/Protobuf/Option.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/src/Google/Protobuf/Option.php -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/src/Google/Protobuf/Struct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/src/Google/Protobuf/Struct.php -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/src/Google/Protobuf/Syntax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/src/Google/Protobuf/Syntax.php -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/src/Google/Protobuf/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/src/Google/Protobuf/Type.php -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/src/Google/Protobuf/Value.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/src/Google/Protobuf/Value.php -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/src/phpdoc.dist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/src/phpdoc.dist.xml -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/tests/ArrayTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/tests/ArrayTest.php -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/tests/DescriptorsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/tests/DescriptorsTest.php -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/tests/EncodeDecodeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/tests/EncodeDecodeTest.php -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/tests/GeneratedClassTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/tests/GeneratedClassTest.php -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/tests/GeneratedPhpdocTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/tests/GeneratedPhpdocTest.php -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/tests/GeneratedServiceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/tests/GeneratedServiceTest.php -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/tests/MapFieldTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/tests/MapFieldTest.php -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/tests/PhpImplementationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/tests/PhpImplementationTest.php -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/tests/WellKnownTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/tests/WellKnownTest.php -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/tests/compatibility_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/tests/compatibility_test.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/tests/compile_extension.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/tests/compile_extension.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/tests/force_c_ext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/tests/force_c_ext.php -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/tests/gdb_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/tests/gdb_test.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/tests/memory_leak_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/tests/memory_leak_test.php -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/tests/memory_leak_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/tests/memory_leak_test.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/tests/multirequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/tests/multirequest.php -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/tests/multirequest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/tests/multirequest.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/tests/proto/empty/echo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/tests/proto/empty/echo.proto -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/tests/proto/test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/tests/proto/test.proto -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/tests/proto/test_include.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/tests/proto/test_include.proto -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/tests/proto/test_prefix.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/tests/proto/test_prefix.proto -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/tests/proto/test_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/tests/proto/test_service.proto -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/tests/test_base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/tests/test_base.php -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/tests/test_util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/tests/test_util.php -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/php/tests/valgrind.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/php/tests/valgrind.supp -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/pkg/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/pkg/BUILD.bazel -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/pkg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/pkg/README.md -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/pkg/build_systems.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/pkg/build_systems.bzl -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/pkg/cc_dist_library.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/pkg/cc_dist_library.bzl -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/post_process_dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/post_process_dist.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/protobuf-lite.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/protobuf-lite.pc.in -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/protobuf.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/protobuf.bzl -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/protobuf.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/protobuf.pc.in -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/protobuf_deps.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/protobuf_deps.bzl -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/protobuf_release.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/protobuf_release.bzl -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/protobuf_version.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/protobuf_version.bzl -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/protoc-artifacts/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/protoc-artifacts/Dockerfile -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/protoc-artifacts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/protoc-artifacts/README.md -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/protoc-artifacts/build-protoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/protoc-artifacts/build-protoc.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/protoc-artifacts/build-zip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/protoc-artifacts/build-zip.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/protoc-artifacts/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/protoc-artifacts/pom.xml -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/python/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/python/MANIFEST.in -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/python/README.md -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/python/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/python/docs/conf.py -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/python/docs/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/python/docs/environment.yml -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/python/docs/generate_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/python/docs/generate_docs.py -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/python/docs/google/protobuf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/python/docs/google/protobuf.rst -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/python/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/python/docs/index.rst -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/python/docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/python/docs/make.bat -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/python/docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/python/docs/requirements.txt -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/python/google/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/python/google/__init__.py -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/python/google/protobuf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/python/google/protobuf/__init__.py -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/python/google/protobuf/compiler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/python/google/protobuf/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/python/google/protobuf/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/python/google/protobuf/message.py -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/python/google/protobuf/proto_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/python/google/protobuf/proto_api.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/python/google/protobuf/pyext/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/python/google/protobuf/pyext/README -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/python/google/protobuf/pyext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/python/google/protobuf/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/python/google/protobuf/service.py -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/python/google/protobuf/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/python/mox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/python/mox.py -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/python/protobuf_distutils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/python/protobuf_distutils/README.md -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/python/protobuf_distutils/protobuf_distutils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/python/protobuf_distutils/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/python/protobuf_distutils/setup.py -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/python/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/python/release.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/python/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/python/setup.py -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/python/stubout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/python/stubout.py -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/python/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/python/tox.ini -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/ruby/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/ruby/.gitignore -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/ruby/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/ruby/BUILD.bazel -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/ruby/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/ruby/Gemfile -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/ruby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/ruby/README.md -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/ruby/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/ruby/Rakefile -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/ruby/ext/google/protobuf_c/defs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/ruby/ext/google/protobuf_c/defs.c -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/ruby/ext/google/protobuf_c/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/ruby/ext/google/protobuf_c/defs.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/ruby/ext/google/protobuf_c/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/ruby/ext/google/protobuf_c/map.c -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/ruby/ext/google/protobuf_c/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/ruby/ext/google/protobuf_c/map.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/ruby/google-protobuf.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/ruby/google-protobuf.gemspec -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/ruby/lib/google/protobuf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/ruby/lib/google/protobuf.rb -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/ruby/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/ruby/pom.xml -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/ruby/src/main/sentinel.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/ruby/src/main/sentinel.proto -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/ruby/tests/basic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/ruby/tests/basic.rb -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/ruby/tests/basic_proto2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/ruby/tests/basic_proto2.rb -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/ruby/tests/basic_test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/ruby/tests/basic_test.proto -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/ruby/tests/basic_test_proto2.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/ruby/tests/basic_test_proto2.proto -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/ruby/tests/common_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/ruby/tests/common_tests.rb -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/ruby/tests/encode_decode_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/ruby/tests/encode_decode_test.rb -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/ruby/tests/gc_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/ruby/tests/gc_test.rb -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/ruby/tests/generated_code.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/ruby/tests/generated_code.proto -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/ruby/tests/stress.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/ruby/tests/stress.rb -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/ruby/tests/test_import.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/ruby/tests/test_import.proto -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/ruby/tests/type_errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/ruby/tests/type_errors.rb -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/ruby/travis-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/ruby/travis-test.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/Makefile.am -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/README.md -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/any.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/any.cc -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/any.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/any.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/any.pb.cc -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/any.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/any.pb.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/any.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/any.proto -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/any_lite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/any_lite.cc -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/any_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/any_test.cc -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/api.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/api.pb.cc -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/api.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/api.pb.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/api.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/api.proto -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/arena.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/arena.cc -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/arena.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/arena_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/arena_impl.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/descriptor.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/empty.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/empty.pb.cc -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/empty.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/empty.pb.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/empty.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/empty.proto -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/endian.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/has_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/has_bits.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/io/printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/io/printer.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/io/strtod.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/io/strtod.cc -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/io/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/io/strtod.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/map.cc -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/map.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/map_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/map_entry.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/map_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/map_field.cc -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/map_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/map_field.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/map_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/map_test.cc -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/map_test.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/map_test.inc -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/message.cc -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/message.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/metadata.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/port.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/port_def.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/port_def.inc -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/reflection.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/service.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/service.cc -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/service.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/struct.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/struct.pb.cc -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/struct.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/struct.pb.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/struct.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/struct.proto -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/stubs/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/stubs/hash.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/stubs/once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/stubs/once.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/stubs/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/stubs/port.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/stubs/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/stubs/time.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/test_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/test_util.cc -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/test_util.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/test_util2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/test_util2.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/type.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/type.pb.cc -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/type.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/type.pb.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/google/protobuf/type.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/google/protobuf/type.proto -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/libprotobuf-lite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/libprotobuf-lite.map -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/libprotobuf.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/libprotobuf.map -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/src/libprotoc.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/src/libprotoc.map -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/tests.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/third_party/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/third_party/BUILD.bazel -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/third_party/benchmark/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/third_party/benchmark/.gitignore -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/third_party/benchmark/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/third_party/benchmark/AUTHORS -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/third_party/benchmark/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/third_party/benchmark/LICENSE -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/third_party/benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/third_party/benchmark/README.md -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/third_party/benchmark/cmake/Config.cmake.in: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/@targets_export_name@.cmake") 2 | -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/third_party/benchmark/mingw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/third_party/benchmark/mingw.py -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/third_party/benchmark/src/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/third_party/benchmark/src/log.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/third_party/benchmark/src/re.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/third_party/benchmark/src/re.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/third_party/benchmark/src/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/third_party/benchmark/src/stat.h -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/third_party/googletest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/third_party/googletest/LICENSE -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/third_party/googletest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/third_party/googletest/README.md -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/third_party/googletest/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/third_party/googletest/WORKSPACE -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/third_party/googletest/googlemock/scripts/generator/cpp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/third_party/utf8_range/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/third_party/utf8_range/LICENSE -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/third_party/utf8_range/naive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/third_party/utf8_range/naive.c -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/third_party/zlib.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/third_party/zlib.BUILD -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/toolchain/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/toolchain/BUILD.bazel -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/toolchain/toolchains.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/toolchain/toolchains.bazelrc -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/update_compatibility_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/update_compatibility_version.py -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/update_file_lists.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/update_file_lists.sh -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/update_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/update_version.py -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/util/python/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/util/python/BUILD.bazel -------------------------------------------------------------------------------- /vendor/protobuf-3.21.8/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-3.21.8/version.json -------------------------------------------------------------------------------- /vendor/protobuf-lib/Debug/libprotobufd.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-lib/Debug/libprotobufd.a -------------------------------------------------------------------------------- /vendor/protobuf-lib/Debug/libprotobufd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-lib/Debug/libprotobufd.lib -------------------------------------------------------------------------------- /vendor/protobuf-lib/Debug/libprotobufd.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-lib/Debug/libprotobufd.pdb -------------------------------------------------------------------------------- /vendor/protobuf-lib/Release/libprotobuf.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-lib/Release/libprotobuf.a -------------------------------------------------------------------------------- /vendor/protobuf-lib/Release/libprotobuf.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marqdevx/mm-cs2-scrim/HEAD/vendor/protobuf-lib/Release/libprotobuf.lib --------------------------------------------------------------------------------