This commit is contained in:
CV-Souryu 2026-02-24 12:30:52 +08:00
parent aebc32c9c5
commit d6002f80ec
64 changed files with 5847 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 734 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 714 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 992 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 841 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1006 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 990 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 998 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 868 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 770 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 969 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 949 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 944 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 909 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 993 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 841 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1018 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 872 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1004 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 980 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 816 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 929 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 939 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 978 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 784 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 904 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 940 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 956 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1011 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 997 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

1
decodeOutput/CN/Map.json Normal file

File diff suppressed because one or more lines are too long

View File

View File

@ -0,0 +1,69 @@
[ProtoContract][MessagePackObject]
public record class PingPong:WSGProtoBase
{
}
[ProtoContract][MessagePackObject]
public record class ChangeGateNotify:WSGProtoBase
{
[ProtoMember(1)][Key(1)] public string Ip {get;init;}
[ProtoMember(2)][Key(2)] public int Port {get;init;}
}
[ProtoContract][MessagePackObject]
public record class RandomNotify:WSGProtoBase
{
[ProtoMember(1)][Key(1)] public string Random {get;init;}
}
[ProtoContract][MessagePackObject]
public record class AuthReq:WSGProtoBase
{
[ProtoMember(1)][Key(1)] public long AccountId {get;init;}
[ProtoMember(2)][Key(2)] public string Channel {get;init;}
[ProtoMember(3)][Key(3)] public string AuthString {get;init;}
[ProtoMember(4)][Key(4)] public string Token {get;init;}
[ProtoMember(5)][Key(5)] public bool FirstAuth {get;init;}
[ProtoMember(6)][Key(6)] public string Uid {get;init;}
[ProtoMember(7)][Key(7)] public string ChannelUid {get;init;}
[ProtoMember(8)][Key(8)] public string ProductId {get;init;}
[ProtoMember(9)][Key(9)] public string ProtocolVersion {get;init;}
[ProtoMember(10)][Key(10)] public string JsonVersion {get;init;}
[ProtoMember(11)][Key(11)] public string BattleVersion {get;init;}
[ProtoMember(12)][Key(12)] public string LoginOs {get;init;}
}
[ProtoContract][MessagePackObject]
public record class AuthResp:WSGProtoBase
{
[ProtoMember(1)][Key(1)] public int ErrorCode {get;init;}
[ProtoMember(2)][Key(2)] public long AccountId {get;init;}
[ProtoMember(3)][Key(3)] public int Time {get;init;}
}
[ProtoContract][MessagePackObject]
public record class InOtherLocalLoginNotify:WSGProtoBase
{
}
[ProtoContract][MessagePackObject]
public record class PatchUpdateNotify:WSGProtoBase
{
[ProtoMember(1)][Key(1)] public int Reason {get;init;}
}
[ProtoContract][MessagePackObject]
public record class ProtocolUpdateNotify:WSGProtoBase
{
}
[ProtoContract][MessagePackObject]
public record class SystemDataNotify:WSGProtoBase
{
[ProtoMember(1)][Key(1)] public string SystemData {get;init;}
}
[ProtoContract][MessagePackObject]
public record class RealNameAuthReq:WSGProtoBase
{
[ProtoMember(1)][Key(1)] public string Channel {get;init;}
[ProtoMember(2)][Key(2)] public string Token {get;init;}
[ProtoMember(3)][Key(3)] public string IdCard {get;init;}
[ProtoMember(4)][Key(4)] public string Name {get;init;}
}
[ProtoContract][MessagePackObject]
public record class RealNameAuthResp:WSGProtoBase
{
[ProtoMember(1)][Key(1)] public int ErrorCode {get;init;}
}

File diff suppressed because it is too large Load Diff