All Downloads are FREE. Search and download functionalities are using the official Maven repository.

skadistats.clarity.wire.common.proto.NetMessages Maven / Gradle / Ivy

Go to download

Clarity is an open source replay parser for Dota 2 and CSGO 1 and 2 written in Java. This JAR contains the protobuf classes for clarity.

There is a newer version: 5.3
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: netmessages.proto

package skadistats.clarity.wire.common.proto;

public final class NetMessages {
  private NetMessages() {}
  public static void registerAllExtensions(
      com.google.protobuf.ExtensionRegistry registry) {
  }
  /**
   * Protobuf enum {@code VoiceDataFormat_t}
   */
  public enum VoiceDataFormat_t
      implements com.google.protobuf.ProtocolMessageEnum {
    /**
     * VOICEDATA_FORMAT_STEAM = 0;
     */
    VOICEDATA_FORMAT_STEAM(0, 0),
    /**
     * VOICEDATA_FORMAT_ENGINE = 1;
     */
    VOICEDATA_FORMAT_ENGINE(1, 1),
    ;

    /**
     * VOICEDATA_FORMAT_STEAM = 0;
     */
    public static final int VOICEDATA_FORMAT_STEAM_VALUE = 0;
    /**
     * VOICEDATA_FORMAT_ENGINE = 1;
     */
    public static final int VOICEDATA_FORMAT_ENGINE_VALUE = 1;


    public final int getNumber() { return value; }

    public static VoiceDataFormat_t valueOf(int value) {
      switch (value) {
        case 0: return VOICEDATA_FORMAT_STEAM;
        case 1: return VOICEDATA_FORMAT_ENGINE;
        default: return null;
      }
    }

    public static com.google.protobuf.Internal.EnumLiteMap
        internalGetValueMap() {
      return internalValueMap;
    }
    private static com.google.protobuf.Internal.EnumLiteMap
        internalValueMap =
          new com.google.protobuf.Internal.EnumLiteMap() {
            public VoiceDataFormat_t findValueByNumber(int number) {
              return VoiceDataFormat_t.valueOf(number);
            }
          };

    public final com.google.protobuf.Descriptors.EnumValueDescriptor
        getValueDescriptor() {
      return getDescriptor().getValues().get(index);
    }
    public final com.google.protobuf.Descriptors.EnumDescriptor
        getDescriptorForType() {
      return getDescriptor();
    }
    public static final com.google.protobuf.Descriptors.EnumDescriptor
        getDescriptor() {
      return skadistats.clarity.wire.common.proto.NetMessages.getDescriptor().getEnumTypes().get(0);
    }

    private static final VoiceDataFormat_t[] VALUES = values();

    public static VoiceDataFormat_t valueOf(
        com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
      if (desc.getType() != getDescriptor()) {
        throw new java.lang.IllegalArgumentException(
          "EnumValueDescriptor is not for this type.");
      }
      return VALUES[desc.getIndex()];
    }

    private final int index;
    private final int value;

    private VoiceDataFormat_t(int index, int value) {
      this.index = index;
      this.value = value;
    }

    // @@protoc_insertion_point(enum_scope:VoiceDataFormat_t)
  }

  /**
   * Protobuf enum {@code RequestPause_t}
   */
  public enum RequestPause_t
      implements com.google.protobuf.ProtocolMessageEnum {
    /**
     * RP_PAUSE = 0;
     */
    RP_PAUSE(0, 0),
    /**
     * RP_UNPAUSE = 1;
     */
    RP_UNPAUSE(1, 1),
    /**
     * RP_TOGGLEPAUSE = 2;
     */
    RP_TOGGLEPAUSE(2, 2),
    ;

    /**
     * RP_PAUSE = 0;
     */
    public static final int RP_PAUSE_VALUE = 0;
    /**
     * RP_UNPAUSE = 1;
     */
    public static final int RP_UNPAUSE_VALUE = 1;
    /**
     * RP_TOGGLEPAUSE = 2;
     */
    public static final int RP_TOGGLEPAUSE_VALUE = 2;


    public final int getNumber() { return value; }

    public static RequestPause_t valueOf(int value) {
      switch (value) {
        case 0: return RP_PAUSE;
        case 1: return RP_UNPAUSE;
        case 2: return RP_TOGGLEPAUSE;
        default: return null;
      }
    }

    public static com.google.protobuf.Internal.EnumLiteMap
        internalGetValueMap() {
      return internalValueMap;
    }
    private static com.google.protobuf.Internal.EnumLiteMap
        internalValueMap =
          new com.google.protobuf.Internal.EnumLiteMap() {
            public RequestPause_t findValueByNumber(int number) {
              return RequestPause_t.valueOf(number);
            }
          };

    public final com.google.protobuf.Descriptors.EnumValueDescriptor
        getValueDescriptor() {
      return getDescriptor().getValues().get(index);
    }
    public final com.google.protobuf.Descriptors.EnumDescriptor
        getDescriptorForType() {
      return getDescriptor();
    }
    public static final com.google.protobuf.Descriptors.EnumDescriptor
        getDescriptor() {
      return skadistats.clarity.wire.common.proto.NetMessages.getDescriptor().getEnumTypes().get(1);
    }

    private static final RequestPause_t[] VALUES = values();

    public static RequestPause_t valueOf(
        com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
      if (desc.getType() != getDescriptor()) {
        throw new java.lang.IllegalArgumentException(
          "EnumValueDescriptor is not for this type.");
      }
      return VALUES[desc.getIndex()];
    }

    private final int index;
    private final int value;

    private RequestPause_t(int index, int value) {
      this.index = index;
      this.value = value;
    }

    // @@protoc_insertion_point(enum_scope:RequestPause_t)
  }

  public interface CCLCMsg_ClientInfoOrBuilder extends
      // @@protoc_insertion_point(interface_extends:CCLCMsg_ClientInfo)
      com.google.protobuf.MessageOrBuilder {

    /**
     * optional fixed32 send_table_crc = 1;
     */
    boolean hasSendTableCrc();
    /**
     * optional fixed32 send_table_crc = 1;
     */
    int getSendTableCrc();

    /**
     * optional uint32 server_count = 2;
     */
    boolean hasServerCount();
    /**
     * optional uint32 server_count = 2;
     */
    int getServerCount();

    /**
     * optional bool is_hltv = 3;
     */
    boolean hasIsHltv();
    /**
     * optional bool is_hltv = 3;
     */
    boolean getIsHltv();

    /**
     * optional bool is_replay = 4;
     */
    boolean hasIsReplay();
    /**
     * optional bool is_replay = 4;
     */
    boolean getIsReplay();

    /**
     * optional uint32 friends_id = 5;
     */
    boolean hasFriendsId();
    /**
     * optional uint32 friends_id = 5;
     */
    int getFriendsId();

    /**
     * optional string friends_name = 6;
     */
    boolean hasFriendsName();
    /**
     * optional string friends_name = 6;
     */
    java.lang.String getFriendsName();
    /**
     * optional string friends_name = 6;
     */
    com.google.protobuf.ByteString
        getFriendsNameBytes();
  }
  /**
   * Protobuf type {@code CCLCMsg_ClientInfo}
   */
  public static final class CCLCMsg_ClientInfo extends
      com.google.protobuf.GeneratedMessage implements
      // @@protoc_insertion_point(message_implements:CCLCMsg_ClientInfo)
      CCLCMsg_ClientInfoOrBuilder {
    // Use CCLCMsg_ClientInfo.newBuilder() to construct.
    private CCLCMsg_ClientInfo(com.google.protobuf.GeneratedMessage.Builder builder) {
      super(builder);
      this.unknownFields = builder.getUnknownFields();
    }
    private CCLCMsg_ClientInfo(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }

    private static final CCLCMsg_ClientInfo defaultInstance;
    public static CCLCMsg_ClientInfo getDefaultInstance() {
      return defaultInstance;
    }

    public CCLCMsg_ClientInfo getDefaultInstanceForType() {
      return defaultInstance;
    }

    private final com.google.protobuf.UnknownFieldSet unknownFields;
    @java.lang.Override
    public final com.google.protobuf.UnknownFieldSet
        getUnknownFields() {
      return this.unknownFields;
    }
    private CCLCMsg_ClientInfo(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      initFields();
      int mutable_bitField0_ = 0;
      com.google.protobuf.UnknownFieldSet.Builder unknownFields =
          com.google.protobuf.UnknownFieldSet.newBuilder();
      try {
        boolean done = false;
        while (!done) {
          int tag = input.readTag();
          switch (tag) {
            case 0:
              done = true;
              break;
            default: {
              if (!parseUnknownField(input, unknownFields,
                                     extensionRegistry, tag)) {
                done = true;
              }
              break;
            }
            case 13: {
              bitField0_ |= 0x00000001;
              sendTableCrc_ = input.readFixed32();
              break;
            }
            case 16: {
              bitField0_ |= 0x00000002;
              serverCount_ = input.readUInt32();
              break;
            }
            case 24: {
              bitField0_ |= 0x00000004;
              isHltv_ = input.readBool();
              break;
            }
            case 32: {
              bitField0_ |= 0x00000008;
              isReplay_ = input.readBool();
              break;
            }
            case 40: {
              bitField0_ |= 0x00000010;
              friendsId_ = input.readUInt32();
              break;
            }
            case 50: {
              com.google.protobuf.ByteString bs = input.readBytes();
              bitField0_ |= 0x00000020;
              friendsName_ = bs;
              break;
            }
          }
        }
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        throw e.setUnfinishedMessage(this);
      } catch (java.io.IOException e) {
        throw new com.google.protobuf.InvalidProtocolBufferException(
            e.getMessage()).setUnfinishedMessage(this);
      } finally {
        this.unknownFields = unknownFields.build();
        makeExtensionsImmutable();
      }
    }
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_ClientInfo_descriptor;
    }

    protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_ClientInfo_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientInfo.class, skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientInfo.Builder.class);
    }

    public static com.google.protobuf.Parser PARSER =
        new com.google.protobuf.AbstractParser() {
      public CCLCMsg_ClientInfo parsePartialFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return new CCLCMsg_ClientInfo(input, extensionRegistry);
      }
    };

    @java.lang.Override
    public com.google.protobuf.Parser getParserForType() {
      return PARSER;
    }

    private int bitField0_;
    public static final int SEND_TABLE_CRC_FIELD_NUMBER = 1;
    private int sendTableCrc_;
    /**
     * optional fixed32 send_table_crc = 1;
     */
    public boolean hasSendTableCrc() {
      return ((bitField0_ & 0x00000001) == 0x00000001);
    }
    /**
     * optional fixed32 send_table_crc = 1;
     */
    public int getSendTableCrc() {
      return sendTableCrc_;
    }

    public static final int SERVER_COUNT_FIELD_NUMBER = 2;
    private int serverCount_;
    /**
     * optional uint32 server_count = 2;
     */
    public boolean hasServerCount() {
      return ((bitField0_ & 0x00000002) == 0x00000002);
    }
    /**
     * optional uint32 server_count = 2;
     */
    public int getServerCount() {
      return serverCount_;
    }

    public static final int IS_HLTV_FIELD_NUMBER = 3;
    private boolean isHltv_;
    /**
     * optional bool is_hltv = 3;
     */
    public boolean hasIsHltv() {
      return ((bitField0_ & 0x00000004) == 0x00000004);
    }
    /**
     * optional bool is_hltv = 3;
     */
    public boolean getIsHltv() {
      return isHltv_;
    }

    public static final int IS_REPLAY_FIELD_NUMBER = 4;
    private boolean isReplay_;
    /**
     * optional bool is_replay = 4;
     */
    public boolean hasIsReplay() {
      return ((bitField0_ & 0x00000008) == 0x00000008);
    }
    /**
     * optional bool is_replay = 4;
     */
    public boolean getIsReplay() {
      return isReplay_;
    }

    public static final int FRIENDS_ID_FIELD_NUMBER = 5;
    private int friendsId_;
    /**
     * optional uint32 friends_id = 5;
     */
    public boolean hasFriendsId() {
      return ((bitField0_ & 0x00000010) == 0x00000010);
    }
    /**
     * optional uint32 friends_id = 5;
     */
    public int getFriendsId() {
      return friendsId_;
    }

    public static final int FRIENDS_NAME_FIELD_NUMBER = 6;
    private java.lang.Object friendsName_;
    /**
     * optional string friends_name = 6;
     */
    public boolean hasFriendsName() {
      return ((bitField0_ & 0x00000020) == 0x00000020);
    }
    /**
     * optional string friends_name = 6;
     */
    public java.lang.String getFriendsName() {
      java.lang.Object ref = friendsName_;
      if (ref instanceof java.lang.String) {
        return (java.lang.String) ref;
      } else {
        com.google.protobuf.ByteString bs = 
            (com.google.protobuf.ByteString) ref;
        java.lang.String s = bs.toStringUtf8();
        if (bs.isValidUtf8()) {
          friendsName_ = s;
        }
        return s;
      }
    }
    /**
     * optional string friends_name = 6;
     */
    public com.google.protobuf.ByteString
        getFriendsNameBytes() {
      java.lang.Object ref = friendsName_;
      if (ref instanceof java.lang.String) {
        com.google.protobuf.ByteString b = 
            com.google.protobuf.ByteString.copyFromUtf8(
                (java.lang.String) ref);
        friendsName_ = b;
        return b;
      } else {
        return (com.google.protobuf.ByteString) ref;
      }
    }

    private void initFields() {
      sendTableCrc_ = 0;
      serverCount_ = 0;
      isHltv_ = false;
      isReplay_ = false;
      friendsId_ = 0;
      friendsName_ = "";
    }
    private byte memoizedIsInitialized = -1;
    public final boolean isInitialized() {
      byte isInitialized = memoizedIsInitialized;
      if (isInitialized == 1) return true;
      if (isInitialized == 0) return false;

      memoizedIsInitialized = 1;
      return true;
    }

    public void writeTo(com.google.protobuf.CodedOutputStream output)
                        throws java.io.IOException {
      getSerializedSize();
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        output.writeFixed32(1, sendTableCrc_);
      }
      if (((bitField0_ & 0x00000002) == 0x00000002)) {
        output.writeUInt32(2, serverCount_);
      }
      if (((bitField0_ & 0x00000004) == 0x00000004)) {
        output.writeBool(3, isHltv_);
      }
      if (((bitField0_ & 0x00000008) == 0x00000008)) {
        output.writeBool(4, isReplay_);
      }
      if (((bitField0_ & 0x00000010) == 0x00000010)) {
        output.writeUInt32(5, friendsId_);
      }
      if (((bitField0_ & 0x00000020) == 0x00000020)) {
        output.writeBytes(6, getFriendsNameBytes());
      }
      getUnknownFields().writeTo(output);
    }

    private int memoizedSerializedSize = -1;
    public int getSerializedSize() {
      int size = memoizedSerializedSize;
      if (size != -1) return size;

      size = 0;
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        size += com.google.protobuf.CodedOutputStream
          .computeFixed32Size(1, sendTableCrc_);
      }
      if (((bitField0_ & 0x00000002) == 0x00000002)) {
        size += com.google.protobuf.CodedOutputStream
          .computeUInt32Size(2, serverCount_);
      }
      if (((bitField0_ & 0x00000004) == 0x00000004)) {
        size += com.google.protobuf.CodedOutputStream
          .computeBoolSize(3, isHltv_);
      }
      if (((bitField0_ & 0x00000008) == 0x00000008)) {
        size += com.google.protobuf.CodedOutputStream
          .computeBoolSize(4, isReplay_);
      }
      if (((bitField0_ & 0x00000010) == 0x00000010)) {
        size += com.google.protobuf.CodedOutputStream
          .computeUInt32Size(5, friendsId_);
      }
      if (((bitField0_ & 0x00000020) == 0x00000020)) {
        size += com.google.protobuf.CodedOutputStream
          .computeBytesSize(6, getFriendsNameBytes());
      }
      size += getUnknownFields().getSerializedSize();
      memoizedSerializedSize = size;
      return size;
    }

    private static final long serialVersionUID = 0L;
    @java.lang.Override
    protected java.lang.Object writeReplace()
        throws java.io.ObjectStreamException {
      return super.writeReplace();
    }

    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientInfo parseFrom(
        com.google.protobuf.ByteString data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientInfo parseFrom(
        com.google.protobuf.ByteString data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientInfo parseFrom(byte[] data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientInfo parseFrom(
        byte[] data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientInfo parseFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientInfo parseFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientInfo parseDelimitedFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientInfo parseDelimitedFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientInfo parseFrom(
        com.google.protobuf.CodedInputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientInfo parseFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }

    public static Builder newBuilder() { return Builder.create(); }
    public Builder newBuilderForType() { return newBuilder(); }
    public static Builder newBuilder(skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientInfo prototype) {
      return newBuilder().mergeFrom(prototype);
    }
    public Builder toBuilder() { return newBuilder(this); }

    @java.lang.Override
    protected Builder newBuilderForType(
        com.google.protobuf.GeneratedMessage.BuilderParent parent) {
      Builder builder = new Builder(parent);
      return builder;
    }
    /**
     * Protobuf type {@code CCLCMsg_ClientInfo}
     */
    public static final class Builder extends
        com.google.protobuf.GeneratedMessage.Builder implements
        // @@protoc_insertion_point(builder_implements:CCLCMsg_ClientInfo)
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientInfoOrBuilder {
      public static final com.google.protobuf.Descriptors.Descriptor
          getDescriptor() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_ClientInfo_descriptor;
      }

      protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
          internalGetFieldAccessorTable() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_ClientInfo_fieldAccessorTable
            .ensureFieldAccessorsInitialized(
                skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientInfo.class, skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientInfo.Builder.class);
      }

      // Construct using skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientInfo.newBuilder()
      private Builder() {
        maybeForceBuilderInitialization();
      }

      private Builder(
          com.google.protobuf.GeneratedMessage.BuilderParent parent) {
        super(parent);
        maybeForceBuilderInitialization();
      }
      private void maybeForceBuilderInitialization() {
        if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
        }
      }
      private static Builder create() {
        return new Builder();
      }

      public Builder clear() {
        super.clear();
        sendTableCrc_ = 0;
        bitField0_ = (bitField0_ & ~0x00000001);
        serverCount_ = 0;
        bitField0_ = (bitField0_ & ~0x00000002);
        isHltv_ = false;
        bitField0_ = (bitField0_ & ~0x00000004);
        isReplay_ = false;
        bitField0_ = (bitField0_ & ~0x00000008);
        friendsId_ = 0;
        bitField0_ = (bitField0_ & ~0x00000010);
        friendsName_ = "";
        bitField0_ = (bitField0_ & ~0x00000020);
        return this;
      }

      public Builder clone() {
        return create().mergeFrom(buildPartial());
      }

      public com.google.protobuf.Descriptors.Descriptor
          getDescriptorForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_ClientInfo_descriptor;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientInfo getDefaultInstanceForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientInfo.getDefaultInstance();
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientInfo build() {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientInfo result = buildPartial();
        if (!result.isInitialized()) {
          throw newUninitializedMessageException(result);
        }
        return result;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientInfo buildPartial() {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientInfo result = new skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientInfo(this);
        int from_bitField0_ = bitField0_;
        int to_bitField0_ = 0;
        if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
          to_bitField0_ |= 0x00000001;
        }
        result.sendTableCrc_ = sendTableCrc_;
        if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
          to_bitField0_ |= 0x00000002;
        }
        result.serverCount_ = serverCount_;
        if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
          to_bitField0_ |= 0x00000004;
        }
        result.isHltv_ = isHltv_;
        if (((from_bitField0_ & 0x00000008) == 0x00000008)) {
          to_bitField0_ |= 0x00000008;
        }
        result.isReplay_ = isReplay_;
        if (((from_bitField0_ & 0x00000010) == 0x00000010)) {
          to_bitField0_ |= 0x00000010;
        }
        result.friendsId_ = friendsId_;
        if (((from_bitField0_ & 0x00000020) == 0x00000020)) {
          to_bitField0_ |= 0x00000020;
        }
        result.friendsName_ = friendsName_;
        result.bitField0_ = to_bitField0_;
        onBuilt();
        return result;
      }

      public Builder mergeFrom(com.google.protobuf.Message other) {
        if (other instanceof skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientInfo) {
          return mergeFrom((skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientInfo)other);
        } else {
          super.mergeFrom(other);
          return this;
        }
      }

      public Builder mergeFrom(skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientInfo other) {
        if (other == skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientInfo.getDefaultInstance()) return this;
        if (other.hasSendTableCrc()) {
          setSendTableCrc(other.getSendTableCrc());
        }
        if (other.hasServerCount()) {
          setServerCount(other.getServerCount());
        }
        if (other.hasIsHltv()) {
          setIsHltv(other.getIsHltv());
        }
        if (other.hasIsReplay()) {
          setIsReplay(other.getIsReplay());
        }
        if (other.hasFriendsId()) {
          setFriendsId(other.getFriendsId());
        }
        if (other.hasFriendsName()) {
          bitField0_ |= 0x00000020;
          friendsName_ = other.friendsName_;
          onChanged();
        }
        this.mergeUnknownFields(other.getUnknownFields());
        return this;
      }

      public final boolean isInitialized() {
        return true;
      }

      public Builder mergeFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientInfo parsedMessage = null;
        try {
          parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
          parsedMessage = (skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientInfo) e.getUnfinishedMessage();
          throw e;
        } finally {
          if (parsedMessage != null) {
            mergeFrom(parsedMessage);
          }
        }
        return this;
      }
      private int bitField0_;

      private int sendTableCrc_ ;
      /**
       * optional fixed32 send_table_crc = 1;
       */
      public boolean hasSendTableCrc() {
        return ((bitField0_ & 0x00000001) == 0x00000001);
      }
      /**
       * optional fixed32 send_table_crc = 1;
       */
      public int getSendTableCrc() {
        return sendTableCrc_;
      }
      /**
       * optional fixed32 send_table_crc = 1;
       */
      public Builder setSendTableCrc(int value) {
        bitField0_ |= 0x00000001;
        sendTableCrc_ = value;
        onChanged();
        return this;
      }
      /**
       * optional fixed32 send_table_crc = 1;
       */
      public Builder clearSendTableCrc() {
        bitField0_ = (bitField0_ & ~0x00000001);
        sendTableCrc_ = 0;
        onChanged();
        return this;
      }

      private int serverCount_ ;
      /**
       * optional uint32 server_count = 2;
       */
      public boolean hasServerCount() {
        return ((bitField0_ & 0x00000002) == 0x00000002);
      }
      /**
       * optional uint32 server_count = 2;
       */
      public int getServerCount() {
        return serverCount_;
      }
      /**
       * optional uint32 server_count = 2;
       */
      public Builder setServerCount(int value) {
        bitField0_ |= 0x00000002;
        serverCount_ = value;
        onChanged();
        return this;
      }
      /**
       * optional uint32 server_count = 2;
       */
      public Builder clearServerCount() {
        bitField0_ = (bitField0_ & ~0x00000002);
        serverCount_ = 0;
        onChanged();
        return this;
      }

      private boolean isHltv_ ;
      /**
       * optional bool is_hltv = 3;
       */
      public boolean hasIsHltv() {
        return ((bitField0_ & 0x00000004) == 0x00000004);
      }
      /**
       * optional bool is_hltv = 3;
       */
      public boolean getIsHltv() {
        return isHltv_;
      }
      /**
       * optional bool is_hltv = 3;
       */
      public Builder setIsHltv(boolean value) {
        bitField0_ |= 0x00000004;
        isHltv_ = value;
        onChanged();
        return this;
      }
      /**
       * optional bool is_hltv = 3;
       */
      public Builder clearIsHltv() {
        bitField0_ = (bitField0_ & ~0x00000004);
        isHltv_ = false;
        onChanged();
        return this;
      }

      private boolean isReplay_ ;
      /**
       * optional bool is_replay = 4;
       */
      public boolean hasIsReplay() {
        return ((bitField0_ & 0x00000008) == 0x00000008);
      }
      /**
       * optional bool is_replay = 4;
       */
      public boolean getIsReplay() {
        return isReplay_;
      }
      /**
       * optional bool is_replay = 4;
       */
      public Builder setIsReplay(boolean value) {
        bitField0_ |= 0x00000008;
        isReplay_ = value;
        onChanged();
        return this;
      }
      /**
       * optional bool is_replay = 4;
       */
      public Builder clearIsReplay() {
        bitField0_ = (bitField0_ & ~0x00000008);
        isReplay_ = false;
        onChanged();
        return this;
      }

      private int friendsId_ ;
      /**
       * optional uint32 friends_id = 5;
       */
      public boolean hasFriendsId() {
        return ((bitField0_ & 0x00000010) == 0x00000010);
      }
      /**
       * optional uint32 friends_id = 5;
       */
      public int getFriendsId() {
        return friendsId_;
      }
      /**
       * optional uint32 friends_id = 5;
       */
      public Builder setFriendsId(int value) {
        bitField0_ |= 0x00000010;
        friendsId_ = value;
        onChanged();
        return this;
      }
      /**
       * optional uint32 friends_id = 5;
       */
      public Builder clearFriendsId() {
        bitField0_ = (bitField0_ & ~0x00000010);
        friendsId_ = 0;
        onChanged();
        return this;
      }

      private java.lang.Object friendsName_ = "";
      /**
       * optional string friends_name = 6;
       */
      public boolean hasFriendsName() {
        return ((bitField0_ & 0x00000020) == 0x00000020);
      }
      /**
       * optional string friends_name = 6;
       */
      public java.lang.String getFriendsName() {
        java.lang.Object ref = friendsName_;
        if (!(ref instanceof java.lang.String)) {
          com.google.protobuf.ByteString bs =
              (com.google.protobuf.ByteString) ref;
          java.lang.String s = bs.toStringUtf8();
          if (bs.isValidUtf8()) {
            friendsName_ = s;
          }
          return s;
        } else {
          return (java.lang.String) ref;
        }
      }
      /**
       * optional string friends_name = 6;
       */
      public com.google.protobuf.ByteString
          getFriendsNameBytes() {
        java.lang.Object ref = friendsName_;
        if (ref instanceof String) {
          com.google.protobuf.ByteString b = 
              com.google.protobuf.ByteString.copyFromUtf8(
                  (java.lang.String) ref);
          friendsName_ = b;
          return b;
        } else {
          return (com.google.protobuf.ByteString) ref;
        }
      }
      /**
       * optional string friends_name = 6;
       */
      public Builder setFriendsName(
          java.lang.String value) {
        if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00000020;
        friendsName_ = value;
        onChanged();
        return this;
      }
      /**
       * optional string friends_name = 6;
       */
      public Builder clearFriendsName() {
        bitField0_ = (bitField0_ & ~0x00000020);
        friendsName_ = getDefaultInstance().getFriendsName();
        onChanged();
        return this;
      }
      /**
       * optional string friends_name = 6;
       */
      public Builder setFriendsNameBytes(
          com.google.protobuf.ByteString value) {
        if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00000020;
        friendsName_ = value;
        onChanged();
        return this;
      }

      // @@protoc_insertion_point(builder_scope:CCLCMsg_ClientInfo)
    }

    static {
      defaultInstance = new CCLCMsg_ClientInfo(true);
      defaultInstance.initFields();
    }

    // @@protoc_insertion_point(class_scope:CCLCMsg_ClientInfo)
  }

  public interface CCLCMsg_MoveOrBuilder extends
      // @@protoc_insertion_point(interface_extends:CCLCMsg_Move)
      com.google.protobuf.MessageOrBuilder {

    /**
     * optional uint32 num_backup_commands = 1;
     */
    boolean hasNumBackupCommands();
    /**
     * optional uint32 num_backup_commands = 1;
     */
    int getNumBackupCommands();

    /**
     * optional uint32 num_new_commands = 2;
     */
    boolean hasNumNewCommands();
    /**
     * optional uint32 num_new_commands = 2;
     */
    int getNumNewCommands();

    /**
     * optional bytes data = 3;
     */
    boolean hasData();
    /**
     * optional bytes data = 3;
     */
    com.google.protobuf.ByteString getData();

    /**
     * optional uint32 command_number = 4;
     */
    boolean hasCommandNumber();
    /**
     * optional uint32 command_number = 4;
     */
    int getCommandNumber();

    /**
     * optional uint32 num_commands = 5;
     */
    boolean hasNumCommands();
    /**
     * optional uint32 num_commands = 5;
     */
    int getNumCommands();
  }
  /**
   * Protobuf type {@code CCLCMsg_Move}
   */
  public static final class CCLCMsg_Move extends
      com.google.protobuf.GeneratedMessage implements
      // @@protoc_insertion_point(message_implements:CCLCMsg_Move)
      CCLCMsg_MoveOrBuilder {
    // Use CCLCMsg_Move.newBuilder() to construct.
    private CCLCMsg_Move(com.google.protobuf.GeneratedMessage.Builder builder) {
      super(builder);
      this.unknownFields = builder.getUnknownFields();
    }
    private CCLCMsg_Move(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }

    private static final CCLCMsg_Move defaultInstance;
    public static CCLCMsg_Move getDefaultInstance() {
      return defaultInstance;
    }

    public CCLCMsg_Move getDefaultInstanceForType() {
      return defaultInstance;
    }

    private final com.google.protobuf.UnknownFieldSet unknownFields;
    @java.lang.Override
    public final com.google.protobuf.UnknownFieldSet
        getUnknownFields() {
      return this.unknownFields;
    }
    private CCLCMsg_Move(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      initFields();
      int mutable_bitField0_ = 0;
      com.google.protobuf.UnknownFieldSet.Builder unknownFields =
          com.google.protobuf.UnknownFieldSet.newBuilder();
      try {
        boolean done = false;
        while (!done) {
          int tag = input.readTag();
          switch (tag) {
            case 0:
              done = true;
              break;
            default: {
              if (!parseUnknownField(input, unknownFields,
                                     extensionRegistry, tag)) {
                done = true;
              }
              break;
            }
            case 8: {
              bitField0_ |= 0x00000001;
              numBackupCommands_ = input.readUInt32();
              break;
            }
            case 16: {
              bitField0_ |= 0x00000002;
              numNewCommands_ = input.readUInt32();
              break;
            }
            case 26: {
              bitField0_ |= 0x00000004;
              data_ = input.readBytes();
              break;
            }
            case 32: {
              bitField0_ |= 0x00000008;
              commandNumber_ = input.readUInt32();
              break;
            }
            case 40: {
              bitField0_ |= 0x00000010;
              numCommands_ = input.readUInt32();
              break;
            }
          }
        }
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        throw e.setUnfinishedMessage(this);
      } catch (java.io.IOException e) {
        throw new com.google.protobuf.InvalidProtocolBufferException(
            e.getMessage()).setUnfinishedMessage(this);
      } finally {
        this.unknownFields = unknownFields.build();
        makeExtensionsImmutable();
      }
    }
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_Move_descriptor;
    }

    protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_Move_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_Move.class, skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_Move.Builder.class);
    }

    public static com.google.protobuf.Parser PARSER =
        new com.google.protobuf.AbstractParser() {
      public CCLCMsg_Move parsePartialFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return new CCLCMsg_Move(input, extensionRegistry);
      }
    };

    @java.lang.Override
    public com.google.protobuf.Parser getParserForType() {
      return PARSER;
    }

    private int bitField0_;
    public static final int NUM_BACKUP_COMMANDS_FIELD_NUMBER = 1;
    private int numBackupCommands_;
    /**
     * optional uint32 num_backup_commands = 1;
     */
    public boolean hasNumBackupCommands() {
      return ((bitField0_ & 0x00000001) == 0x00000001);
    }
    /**
     * optional uint32 num_backup_commands = 1;
     */
    public int getNumBackupCommands() {
      return numBackupCommands_;
    }

    public static final int NUM_NEW_COMMANDS_FIELD_NUMBER = 2;
    private int numNewCommands_;
    /**
     * optional uint32 num_new_commands = 2;
     */
    public boolean hasNumNewCommands() {
      return ((bitField0_ & 0x00000002) == 0x00000002);
    }
    /**
     * optional uint32 num_new_commands = 2;
     */
    public int getNumNewCommands() {
      return numNewCommands_;
    }

    public static final int DATA_FIELD_NUMBER = 3;
    private com.google.protobuf.ByteString data_;
    /**
     * optional bytes data = 3;
     */
    public boolean hasData() {
      return ((bitField0_ & 0x00000004) == 0x00000004);
    }
    /**
     * optional bytes data = 3;
     */
    public com.google.protobuf.ByteString getData() {
      return data_;
    }

    public static final int COMMAND_NUMBER_FIELD_NUMBER = 4;
    private int commandNumber_;
    /**
     * optional uint32 command_number = 4;
     */
    public boolean hasCommandNumber() {
      return ((bitField0_ & 0x00000008) == 0x00000008);
    }
    /**
     * optional uint32 command_number = 4;
     */
    public int getCommandNumber() {
      return commandNumber_;
    }

    public static final int NUM_COMMANDS_FIELD_NUMBER = 5;
    private int numCommands_;
    /**
     * optional uint32 num_commands = 5;
     */
    public boolean hasNumCommands() {
      return ((bitField0_ & 0x00000010) == 0x00000010);
    }
    /**
     * optional uint32 num_commands = 5;
     */
    public int getNumCommands() {
      return numCommands_;
    }

    private void initFields() {
      numBackupCommands_ = 0;
      numNewCommands_ = 0;
      data_ = com.google.protobuf.ByteString.EMPTY;
      commandNumber_ = 0;
      numCommands_ = 0;
    }
    private byte memoizedIsInitialized = -1;
    public final boolean isInitialized() {
      byte isInitialized = memoizedIsInitialized;
      if (isInitialized == 1) return true;
      if (isInitialized == 0) return false;

      memoizedIsInitialized = 1;
      return true;
    }

    public void writeTo(com.google.protobuf.CodedOutputStream output)
                        throws java.io.IOException {
      getSerializedSize();
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        output.writeUInt32(1, numBackupCommands_);
      }
      if (((bitField0_ & 0x00000002) == 0x00000002)) {
        output.writeUInt32(2, numNewCommands_);
      }
      if (((bitField0_ & 0x00000004) == 0x00000004)) {
        output.writeBytes(3, data_);
      }
      if (((bitField0_ & 0x00000008) == 0x00000008)) {
        output.writeUInt32(4, commandNumber_);
      }
      if (((bitField0_ & 0x00000010) == 0x00000010)) {
        output.writeUInt32(5, numCommands_);
      }
      getUnknownFields().writeTo(output);
    }

    private int memoizedSerializedSize = -1;
    public int getSerializedSize() {
      int size = memoizedSerializedSize;
      if (size != -1) return size;

      size = 0;
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        size += com.google.protobuf.CodedOutputStream
          .computeUInt32Size(1, numBackupCommands_);
      }
      if (((bitField0_ & 0x00000002) == 0x00000002)) {
        size += com.google.protobuf.CodedOutputStream
          .computeUInt32Size(2, numNewCommands_);
      }
      if (((bitField0_ & 0x00000004) == 0x00000004)) {
        size += com.google.protobuf.CodedOutputStream
          .computeBytesSize(3, data_);
      }
      if (((bitField0_ & 0x00000008) == 0x00000008)) {
        size += com.google.protobuf.CodedOutputStream
          .computeUInt32Size(4, commandNumber_);
      }
      if (((bitField0_ & 0x00000010) == 0x00000010)) {
        size += com.google.protobuf.CodedOutputStream
          .computeUInt32Size(5, numCommands_);
      }
      size += getUnknownFields().getSerializedSize();
      memoizedSerializedSize = size;
      return size;
    }

    private static final long serialVersionUID = 0L;
    @java.lang.Override
    protected java.lang.Object writeReplace()
        throws java.io.ObjectStreamException {
      return super.writeReplace();
    }

    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_Move parseFrom(
        com.google.protobuf.ByteString data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_Move parseFrom(
        com.google.protobuf.ByteString data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_Move parseFrom(byte[] data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_Move parseFrom(
        byte[] data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_Move parseFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_Move parseFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_Move parseDelimitedFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_Move parseDelimitedFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_Move parseFrom(
        com.google.protobuf.CodedInputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_Move parseFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }

    public static Builder newBuilder() { return Builder.create(); }
    public Builder newBuilderForType() { return newBuilder(); }
    public static Builder newBuilder(skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_Move prototype) {
      return newBuilder().mergeFrom(prototype);
    }
    public Builder toBuilder() { return newBuilder(this); }

    @java.lang.Override
    protected Builder newBuilderForType(
        com.google.protobuf.GeneratedMessage.BuilderParent parent) {
      Builder builder = new Builder(parent);
      return builder;
    }
    /**
     * Protobuf type {@code CCLCMsg_Move}
     */
    public static final class Builder extends
        com.google.protobuf.GeneratedMessage.Builder implements
        // @@protoc_insertion_point(builder_implements:CCLCMsg_Move)
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_MoveOrBuilder {
      public static final com.google.protobuf.Descriptors.Descriptor
          getDescriptor() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_Move_descriptor;
      }

      protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
          internalGetFieldAccessorTable() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_Move_fieldAccessorTable
            .ensureFieldAccessorsInitialized(
                skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_Move.class, skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_Move.Builder.class);
      }

      // Construct using skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_Move.newBuilder()
      private Builder() {
        maybeForceBuilderInitialization();
      }

      private Builder(
          com.google.protobuf.GeneratedMessage.BuilderParent parent) {
        super(parent);
        maybeForceBuilderInitialization();
      }
      private void maybeForceBuilderInitialization() {
        if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
        }
      }
      private static Builder create() {
        return new Builder();
      }

      public Builder clear() {
        super.clear();
        numBackupCommands_ = 0;
        bitField0_ = (bitField0_ & ~0x00000001);
        numNewCommands_ = 0;
        bitField0_ = (bitField0_ & ~0x00000002);
        data_ = com.google.protobuf.ByteString.EMPTY;
        bitField0_ = (bitField0_ & ~0x00000004);
        commandNumber_ = 0;
        bitField0_ = (bitField0_ & ~0x00000008);
        numCommands_ = 0;
        bitField0_ = (bitField0_ & ~0x00000010);
        return this;
      }

      public Builder clone() {
        return create().mergeFrom(buildPartial());
      }

      public com.google.protobuf.Descriptors.Descriptor
          getDescriptorForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_Move_descriptor;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_Move getDefaultInstanceForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_Move.getDefaultInstance();
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_Move build() {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_Move result = buildPartial();
        if (!result.isInitialized()) {
          throw newUninitializedMessageException(result);
        }
        return result;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_Move buildPartial() {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_Move result = new skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_Move(this);
        int from_bitField0_ = bitField0_;
        int to_bitField0_ = 0;
        if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
          to_bitField0_ |= 0x00000001;
        }
        result.numBackupCommands_ = numBackupCommands_;
        if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
          to_bitField0_ |= 0x00000002;
        }
        result.numNewCommands_ = numNewCommands_;
        if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
          to_bitField0_ |= 0x00000004;
        }
        result.data_ = data_;
        if (((from_bitField0_ & 0x00000008) == 0x00000008)) {
          to_bitField0_ |= 0x00000008;
        }
        result.commandNumber_ = commandNumber_;
        if (((from_bitField0_ & 0x00000010) == 0x00000010)) {
          to_bitField0_ |= 0x00000010;
        }
        result.numCommands_ = numCommands_;
        result.bitField0_ = to_bitField0_;
        onBuilt();
        return result;
      }

      public Builder mergeFrom(com.google.protobuf.Message other) {
        if (other instanceof skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_Move) {
          return mergeFrom((skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_Move)other);
        } else {
          super.mergeFrom(other);
          return this;
        }
      }

      public Builder mergeFrom(skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_Move other) {
        if (other == skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_Move.getDefaultInstance()) return this;
        if (other.hasNumBackupCommands()) {
          setNumBackupCommands(other.getNumBackupCommands());
        }
        if (other.hasNumNewCommands()) {
          setNumNewCommands(other.getNumNewCommands());
        }
        if (other.hasData()) {
          setData(other.getData());
        }
        if (other.hasCommandNumber()) {
          setCommandNumber(other.getCommandNumber());
        }
        if (other.hasNumCommands()) {
          setNumCommands(other.getNumCommands());
        }
        this.mergeUnknownFields(other.getUnknownFields());
        return this;
      }

      public final boolean isInitialized() {
        return true;
      }

      public Builder mergeFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_Move parsedMessage = null;
        try {
          parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
          parsedMessage = (skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_Move) e.getUnfinishedMessage();
          throw e;
        } finally {
          if (parsedMessage != null) {
            mergeFrom(parsedMessage);
          }
        }
        return this;
      }
      private int bitField0_;

      private int numBackupCommands_ ;
      /**
       * optional uint32 num_backup_commands = 1;
       */
      public boolean hasNumBackupCommands() {
        return ((bitField0_ & 0x00000001) == 0x00000001);
      }
      /**
       * optional uint32 num_backup_commands = 1;
       */
      public int getNumBackupCommands() {
        return numBackupCommands_;
      }
      /**
       * optional uint32 num_backup_commands = 1;
       */
      public Builder setNumBackupCommands(int value) {
        bitField0_ |= 0x00000001;
        numBackupCommands_ = value;
        onChanged();
        return this;
      }
      /**
       * optional uint32 num_backup_commands = 1;
       */
      public Builder clearNumBackupCommands() {
        bitField0_ = (bitField0_ & ~0x00000001);
        numBackupCommands_ = 0;
        onChanged();
        return this;
      }

      private int numNewCommands_ ;
      /**
       * optional uint32 num_new_commands = 2;
       */
      public boolean hasNumNewCommands() {
        return ((bitField0_ & 0x00000002) == 0x00000002);
      }
      /**
       * optional uint32 num_new_commands = 2;
       */
      public int getNumNewCommands() {
        return numNewCommands_;
      }
      /**
       * optional uint32 num_new_commands = 2;
       */
      public Builder setNumNewCommands(int value) {
        bitField0_ |= 0x00000002;
        numNewCommands_ = value;
        onChanged();
        return this;
      }
      /**
       * optional uint32 num_new_commands = 2;
       */
      public Builder clearNumNewCommands() {
        bitField0_ = (bitField0_ & ~0x00000002);
        numNewCommands_ = 0;
        onChanged();
        return this;
      }

      private com.google.protobuf.ByteString data_ = com.google.protobuf.ByteString.EMPTY;
      /**
       * optional bytes data = 3;
       */
      public boolean hasData() {
        return ((bitField0_ & 0x00000004) == 0x00000004);
      }
      /**
       * optional bytes data = 3;
       */
      public com.google.protobuf.ByteString getData() {
        return data_;
      }
      /**
       * optional bytes data = 3;
       */
      public Builder setData(com.google.protobuf.ByteString value) {
        if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00000004;
        data_ = value;
        onChanged();
        return this;
      }
      /**
       * optional bytes data = 3;
       */
      public Builder clearData() {
        bitField0_ = (bitField0_ & ~0x00000004);
        data_ = getDefaultInstance().getData();
        onChanged();
        return this;
      }

      private int commandNumber_ ;
      /**
       * optional uint32 command_number = 4;
       */
      public boolean hasCommandNumber() {
        return ((bitField0_ & 0x00000008) == 0x00000008);
      }
      /**
       * optional uint32 command_number = 4;
       */
      public int getCommandNumber() {
        return commandNumber_;
      }
      /**
       * optional uint32 command_number = 4;
       */
      public Builder setCommandNumber(int value) {
        bitField0_ |= 0x00000008;
        commandNumber_ = value;
        onChanged();
        return this;
      }
      /**
       * optional uint32 command_number = 4;
       */
      public Builder clearCommandNumber() {
        bitField0_ = (bitField0_ & ~0x00000008);
        commandNumber_ = 0;
        onChanged();
        return this;
      }

      private int numCommands_ ;
      /**
       * optional uint32 num_commands = 5;
       */
      public boolean hasNumCommands() {
        return ((bitField0_ & 0x00000010) == 0x00000010);
      }
      /**
       * optional uint32 num_commands = 5;
       */
      public int getNumCommands() {
        return numCommands_;
      }
      /**
       * optional uint32 num_commands = 5;
       */
      public Builder setNumCommands(int value) {
        bitField0_ |= 0x00000010;
        numCommands_ = value;
        onChanged();
        return this;
      }
      /**
       * optional uint32 num_commands = 5;
       */
      public Builder clearNumCommands() {
        bitField0_ = (bitField0_ & ~0x00000010);
        numCommands_ = 0;
        onChanged();
        return this;
      }

      // @@protoc_insertion_point(builder_scope:CCLCMsg_Move)
    }

    static {
      defaultInstance = new CCLCMsg_Move(true);
      defaultInstance.initFields();
    }

    // @@protoc_insertion_point(class_scope:CCLCMsg_Move)
  }

  public interface CMsgVoiceAudioOrBuilder extends
      // @@protoc_insertion_point(interface_extends:CMsgVoiceAudio)
      com.google.protobuf.MessageOrBuilder {

    /**
     * optional .VoiceDataFormat_t format = 1 [default = VOICEDATA_FORMAT_STEAM];
     */
    boolean hasFormat();
    /**
     * optional .VoiceDataFormat_t format = 1 [default = VOICEDATA_FORMAT_STEAM];
     */
    skadistats.clarity.wire.common.proto.NetMessages.VoiceDataFormat_t getFormat();

    /**
     * optional bytes voice_data = 2;
     */
    boolean hasVoiceData();
    /**
     * optional bytes voice_data = 2;
     */
    com.google.protobuf.ByteString getVoiceData();

    /**
     * optional int32 sequence_bytes = 3;
     */
    boolean hasSequenceBytes();
    /**
     * optional int32 sequence_bytes = 3;
     */
    int getSequenceBytes();

    /**
     * optional uint32 section_number = 4;
     */
    boolean hasSectionNumber();
    /**
     * optional uint32 section_number = 4;
     */
    int getSectionNumber();

    /**
     * optional uint32 sample_rate = 5;
     */
    boolean hasSampleRate();
    /**
     * optional uint32 sample_rate = 5;
     */
    int getSampleRate();

    /**
     * optional uint32 uncompressed_sample_offset = 6;
     */
    boolean hasUncompressedSampleOffset();
    /**
     * optional uint32 uncompressed_sample_offset = 6;
     */
    int getUncompressedSampleOffset();
  }
  /**
   * Protobuf type {@code CMsgVoiceAudio}
   */
  public static final class CMsgVoiceAudio extends
      com.google.protobuf.GeneratedMessage implements
      // @@protoc_insertion_point(message_implements:CMsgVoiceAudio)
      CMsgVoiceAudioOrBuilder {
    // Use CMsgVoiceAudio.newBuilder() to construct.
    private CMsgVoiceAudio(com.google.protobuf.GeneratedMessage.Builder builder) {
      super(builder);
      this.unknownFields = builder.getUnknownFields();
    }
    private CMsgVoiceAudio(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }

    private static final CMsgVoiceAudio defaultInstance;
    public static CMsgVoiceAudio getDefaultInstance() {
      return defaultInstance;
    }

    public CMsgVoiceAudio getDefaultInstanceForType() {
      return defaultInstance;
    }

    private final com.google.protobuf.UnknownFieldSet unknownFields;
    @java.lang.Override
    public final com.google.protobuf.UnknownFieldSet
        getUnknownFields() {
      return this.unknownFields;
    }
    private CMsgVoiceAudio(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      initFields();
      int mutable_bitField0_ = 0;
      com.google.protobuf.UnknownFieldSet.Builder unknownFields =
          com.google.protobuf.UnknownFieldSet.newBuilder();
      try {
        boolean done = false;
        while (!done) {
          int tag = input.readTag();
          switch (tag) {
            case 0:
              done = true;
              break;
            default: {
              if (!parseUnknownField(input, unknownFields,
                                     extensionRegistry, tag)) {
                done = true;
              }
              break;
            }
            case 8: {
              int rawValue = input.readEnum();
              skadistats.clarity.wire.common.proto.NetMessages.VoiceDataFormat_t value = skadistats.clarity.wire.common.proto.NetMessages.VoiceDataFormat_t.valueOf(rawValue);
              if (value == null) {
                unknownFields.mergeVarintField(1, rawValue);
              } else {
                bitField0_ |= 0x00000001;
                format_ = value;
              }
              break;
            }
            case 18: {
              bitField0_ |= 0x00000002;
              voiceData_ = input.readBytes();
              break;
            }
            case 24: {
              bitField0_ |= 0x00000004;
              sequenceBytes_ = input.readInt32();
              break;
            }
            case 32: {
              bitField0_ |= 0x00000008;
              sectionNumber_ = input.readUInt32();
              break;
            }
            case 40: {
              bitField0_ |= 0x00000010;
              sampleRate_ = input.readUInt32();
              break;
            }
            case 48: {
              bitField0_ |= 0x00000020;
              uncompressedSampleOffset_ = input.readUInt32();
              break;
            }
          }
        }
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        throw e.setUnfinishedMessage(this);
      } catch (java.io.IOException e) {
        throw new com.google.protobuf.InvalidProtocolBufferException(
            e.getMessage()).setUnfinishedMessage(this);
      } finally {
        this.unknownFields = unknownFields.build();
        makeExtensionsImmutable();
      }
    }
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CMsgVoiceAudio_descriptor;
    }

    protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CMsgVoiceAudio_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio.class, skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio.Builder.class);
    }

    public static com.google.protobuf.Parser PARSER =
        new com.google.protobuf.AbstractParser() {
      public CMsgVoiceAudio parsePartialFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return new CMsgVoiceAudio(input, extensionRegistry);
      }
    };

    @java.lang.Override
    public com.google.protobuf.Parser getParserForType() {
      return PARSER;
    }

    private int bitField0_;
    public static final int FORMAT_FIELD_NUMBER = 1;
    private skadistats.clarity.wire.common.proto.NetMessages.VoiceDataFormat_t format_;
    /**
     * optional .VoiceDataFormat_t format = 1 [default = VOICEDATA_FORMAT_STEAM];
     */
    public boolean hasFormat() {
      return ((bitField0_ & 0x00000001) == 0x00000001);
    }
    /**
     * optional .VoiceDataFormat_t format = 1 [default = VOICEDATA_FORMAT_STEAM];
     */
    public skadistats.clarity.wire.common.proto.NetMessages.VoiceDataFormat_t getFormat() {
      return format_;
    }

    public static final int VOICE_DATA_FIELD_NUMBER = 2;
    private com.google.protobuf.ByteString voiceData_;
    /**
     * optional bytes voice_data = 2;
     */
    public boolean hasVoiceData() {
      return ((bitField0_ & 0x00000002) == 0x00000002);
    }
    /**
     * optional bytes voice_data = 2;
     */
    public com.google.protobuf.ByteString getVoiceData() {
      return voiceData_;
    }

    public static final int SEQUENCE_BYTES_FIELD_NUMBER = 3;
    private int sequenceBytes_;
    /**
     * optional int32 sequence_bytes = 3;
     */
    public boolean hasSequenceBytes() {
      return ((bitField0_ & 0x00000004) == 0x00000004);
    }
    /**
     * optional int32 sequence_bytes = 3;
     */
    public int getSequenceBytes() {
      return sequenceBytes_;
    }

    public static final int SECTION_NUMBER_FIELD_NUMBER = 4;
    private int sectionNumber_;
    /**
     * optional uint32 section_number = 4;
     */
    public boolean hasSectionNumber() {
      return ((bitField0_ & 0x00000008) == 0x00000008);
    }
    /**
     * optional uint32 section_number = 4;
     */
    public int getSectionNumber() {
      return sectionNumber_;
    }

    public static final int SAMPLE_RATE_FIELD_NUMBER = 5;
    private int sampleRate_;
    /**
     * optional uint32 sample_rate = 5;
     */
    public boolean hasSampleRate() {
      return ((bitField0_ & 0x00000010) == 0x00000010);
    }
    /**
     * optional uint32 sample_rate = 5;
     */
    public int getSampleRate() {
      return sampleRate_;
    }

    public static final int UNCOMPRESSED_SAMPLE_OFFSET_FIELD_NUMBER = 6;
    private int uncompressedSampleOffset_;
    /**
     * optional uint32 uncompressed_sample_offset = 6;
     */
    public boolean hasUncompressedSampleOffset() {
      return ((bitField0_ & 0x00000020) == 0x00000020);
    }
    /**
     * optional uint32 uncompressed_sample_offset = 6;
     */
    public int getUncompressedSampleOffset() {
      return uncompressedSampleOffset_;
    }

    private void initFields() {
      format_ = skadistats.clarity.wire.common.proto.NetMessages.VoiceDataFormat_t.VOICEDATA_FORMAT_STEAM;
      voiceData_ = com.google.protobuf.ByteString.EMPTY;
      sequenceBytes_ = 0;
      sectionNumber_ = 0;
      sampleRate_ = 0;
      uncompressedSampleOffset_ = 0;
    }
    private byte memoizedIsInitialized = -1;
    public final boolean isInitialized() {
      byte isInitialized = memoizedIsInitialized;
      if (isInitialized == 1) return true;
      if (isInitialized == 0) return false;

      memoizedIsInitialized = 1;
      return true;
    }

    public void writeTo(com.google.protobuf.CodedOutputStream output)
                        throws java.io.IOException {
      getSerializedSize();
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        output.writeEnum(1, format_.getNumber());
      }
      if (((bitField0_ & 0x00000002) == 0x00000002)) {
        output.writeBytes(2, voiceData_);
      }
      if (((bitField0_ & 0x00000004) == 0x00000004)) {
        output.writeInt32(3, sequenceBytes_);
      }
      if (((bitField0_ & 0x00000008) == 0x00000008)) {
        output.writeUInt32(4, sectionNumber_);
      }
      if (((bitField0_ & 0x00000010) == 0x00000010)) {
        output.writeUInt32(5, sampleRate_);
      }
      if (((bitField0_ & 0x00000020) == 0x00000020)) {
        output.writeUInt32(6, uncompressedSampleOffset_);
      }
      getUnknownFields().writeTo(output);
    }

    private int memoizedSerializedSize = -1;
    public int getSerializedSize() {
      int size = memoizedSerializedSize;
      if (size != -1) return size;

      size = 0;
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        size += com.google.protobuf.CodedOutputStream
          .computeEnumSize(1, format_.getNumber());
      }
      if (((bitField0_ & 0x00000002) == 0x00000002)) {
        size += com.google.protobuf.CodedOutputStream
          .computeBytesSize(2, voiceData_);
      }
      if (((bitField0_ & 0x00000004) == 0x00000004)) {
        size += com.google.protobuf.CodedOutputStream
          .computeInt32Size(3, sequenceBytes_);
      }
      if (((bitField0_ & 0x00000008) == 0x00000008)) {
        size += com.google.protobuf.CodedOutputStream
          .computeUInt32Size(4, sectionNumber_);
      }
      if (((bitField0_ & 0x00000010) == 0x00000010)) {
        size += com.google.protobuf.CodedOutputStream
          .computeUInt32Size(5, sampleRate_);
      }
      if (((bitField0_ & 0x00000020) == 0x00000020)) {
        size += com.google.protobuf.CodedOutputStream
          .computeUInt32Size(6, uncompressedSampleOffset_);
      }
      size += getUnknownFields().getSerializedSize();
      memoizedSerializedSize = size;
      return size;
    }

    private static final long serialVersionUID = 0L;
    @java.lang.Override
    protected java.lang.Object writeReplace()
        throws java.io.ObjectStreamException {
      return super.writeReplace();
    }

    public static skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio parseFrom(
        com.google.protobuf.ByteString data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio parseFrom(
        com.google.protobuf.ByteString data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio parseFrom(byte[] data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio parseFrom(
        byte[] data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio parseFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio parseFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio parseDelimitedFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio parseDelimitedFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio parseFrom(
        com.google.protobuf.CodedInputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio parseFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }

    public static Builder newBuilder() { return Builder.create(); }
    public Builder newBuilderForType() { return newBuilder(); }
    public static Builder newBuilder(skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio prototype) {
      return newBuilder().mergeFrom(prototype);
    }
    public Builder toBuilder() { return newBuilder(this); }

    @java.lang.Override
    protected Builder newBuilderForType(
        com.google.protobuf.GeneratedMessage.BuilderParent parent) {
      Builder builder = new Builder(parent);
      return builder;
    }
    /**
     * Protobuf type {@code CMsgVoiceAudio}
     */
    public static final class Builder extends
        com.google.protobuf.GeneratedMessage.Builder implements
        // @@protoc_insertion_point(builder_implements:CMsgVoiceAudio)
        skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudioOrBuilder {
      public static final com.google.protobuf.Descriptors.Descriptor
          getDescriptor() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CMsgVoiceAudio_descriptor;
      }

      protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
          internalGetFieldAccessorTable() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CMsgVoiceAudio_fieldAccessorTable
            .ensureFieldAccessorsInitialized(
                skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio.class, skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio.Builder.class);
      }

      // Construct using skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio.newBuilder()
      private Builder() {
        maybeForceBuilderInitialization();
      }

      private Builder(
          com.google.protobuf.GeneratedMessage.BuilderParent parent) {
        super(parent);
        maybeForceBuilderInitialization();
      }
      private void maybeForceBuilderInitialization() {
        if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
        }
      }
      private static Builder create() {
        return new Builder();
      }

      public Builder clear() {
        super.clear();
        format_ = skadistats.clarity.wire.common.proto.NetMessages.VoiceDataFormat_t.VOICEDATA_FORMAT_STEAM;
        bitField0_ = (bitField0_ & ~0x00000001);
        voiceData_ = com.google.protobuf.ByteString.EMPTY;
        bitField0_ = (bitField0_ & ~0x00000002);
        sequenceBytes_ = 0;
        bitField0_ = (bitField0_ & ~0x00000004);
        sectionNumber_ = 0;
        bitField0_ = (bitField0_ & ~0x00000008);
        sampleRate_ = 0;
        bitField0_ = (bitField0_ & ~0x00000010);
        uncompressedSampleOffset_ = 0;
        bitField0_ = (bitField0_ & ~0x00000020);
        return this;
      }

      public Builder clone() {
        return create().mergeFrom(buildPartial());
      }

      public com.google.protobuf.Descriptors.Descriptor
          getDescriptorForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CMsgVoiceAudio_descriptor;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio getDefaultInstanceForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio.getDefaultInstance();
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio build() {
        skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio result = buildPartial();
        if (!result.isInitialized()) {
          throw newUninitializedMessageException(result);
        }
        return result;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio buildPartial() {
        skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio result = new skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio(this);
        int from_bitField0_ = bitField0_;
        int to_bitField0_ = 0;
        if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
          to_bitField0_ |= 0x00000001;
        }
        result.format_ = format_;
        if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
          to_bitField0_ |= 0x00000002;
        }
        result.voiceData_ = voiceData_;
        if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
          to_bitField0_ |= 0x00000004;
        }
        result.sequenceBytes_ = sequenceBytes_;
        if (((from_bitField0_ & 0x00000008) == 0x00000008)) {
          to_bitField0_ |= 0x00000008;
        }
        result.sectionNumber_ = sectionNumber_;
        if (((from_bitField0_ & 0x00000010) == 0x00000010)) {
          to_bitField0_ |= 0x00000010;
        }
        result.sampleRate_ = sampleRate_;
        if (((from_bitField0_ & 0x00000020) == 0x00000020)) {
          to_bitField0_ |= 0x00000020;
        }
        result.uncompressedSampleOffset_ = uncompressedSampleOffset_;
        result.bitField0_ = to_bitField0_;
        onBuilt();
        return result;
      }

      public Builder mergeFrom(com.google.protobuf.Message other) {
        if (other instanceof skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio) {
          return mergeFrom((skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio)other);
        } else {
          super.mergeFrom(other);
          return this;
        }
      }

      public Builder mergeFrom(skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio other) {
        if (other == skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio.getDefaultInstance()) return this;
        if (other.hasFormat()) {
          setFormat(other.getFormat());
        }
        if (other.hasVoiceData()) {
          setVoiceData(other.getVoiceData());
        }
        if (other.hasSequenceBytes()) {
          setSequenceBytes(other.getSequenceBytes());
        }
        if (other.hasSectionNumber()) {
          setSectionNumber(other.getSectionNumber());
        }
        if (other.hasSampleRate()) {
          setSampleRate(other.getSampleRate());
        }
        if (other.hasUncompressedSampleOffset()) {
          setUncompressedSampleOffset(other.getUncompressedSampleOffset());
        }
        this.mergeUnknownFields(other.getUnknownFields());
        return this;
      }

      public final boolean isInitialized() {
        return true;
      }

      public Builder mergeFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio parsedMessage = null;
        try {
          parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
          parsedMessage = (skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio) e.getUnfinishedMessage();
          throw e;
        } finally {
          if (parsedMessage != null) {
            mergeFrom(parsedMessage);
          }
        }
        return this;
      }
      private int bitField0_;

      private skadistats.clarity.wire.common.proto.NetMessages.VoiceDataFormat_t format_ = skadistats.clarity.wire.common.proto.NetMessages.VoiceDataFormat_t.VOICEDATA_FORMAT_STEAM;
      /**
       * optional .VoiceDataFormat_t format = 1 [default = VOICEDATA_FORMAT_STEAM];
       */
      public boolean hasFormat() {
        return ((bitField0_ & 0x00000001) == 0x00000001);
      }
      /**
       * optional .VoiceDataFormat_t format = 1 [default = VOICEDATA_FORMAT_STEAM];
       */
      public skadistats.clarity.wire.common.proto.NetMessages.VoiceDataFormat_t getFormat() {
        return format_;
      }
      /**
       * optional .VoiceDataFormat_t format = 1 [default = VOICEDATA_FORMAT_STEAM];
       */
      public Builder setFormat(skadistats.clarity.wire.common.proto.NetMessages.VoiceDataFormat_t value) {
        if (value == null) {
          throw new NullPointerException();
        }
        bitField0_ |= 0x00000001;
        format_ = value;
        onChanged();
        return this;
      }
      /**
       * optional .VoiceDataFormat_t format = 1 [default = VOICEDATA_FORMAT_STEAM];
       */
      public Builder clearFormat() {
        bitField0_ = (bitField0_ & ~0x00000001);
        format_ = skadistats.clarity.wire.common.proto.NetMessages.VoiceDataFormat_t.VOICEDATA_FORMAT_STEAM;
        onChanged();
        return this;
      }

      private com.google.protobuf.ByteString voiceData_ = com.google.protobuf.ByteString.EMPTY;
      /**
       * optional bytes voice_data = 2;
       */
      public boolean hasVoiceData() {
        return ((bitField0_ & 0x00000002) == 0x00000002);
      }
      /**
       * optional bytes voice_data = 2;
       */
      public com.google.protobuf.ByteString getVoiceData() {
        return voiceData_;
      }
      /**
       * optional bytes voice_data = 2;
       */
      public Builder setVoiceData(com.google.protobuf.ByteString value) {
        if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00000002;
        voiceData_ = value;
        onChanged();
        return this;
      }
      /**
       * optional bytes voice_data = 2;
       */
      public Builder clearVoiceData() {
        bitField0_ = (bitField0_ & ~0x00000002);
        voiceData_ = getDefaultInstance().getVoiceData();
        onChanged();
        return this;
      }

      private int sequenceBytes_ ;
      /**
       * optional int32 sequence_bytes = 3;
       */
      public boolean hasSequenceBytes() {
        return ((bitField0_ & 0x00000004) == 0x00000004);
      }
      /**
       * optional int32 sequence_bytes = 3;
       */
      public int getSequenceBytes() {
        return sequenceBytes_;
      }
      /**
       * optional int32 sequence_bytes = 3;
       */
      public Builder setSequenceBytes(int value) {
        bitField0_ |= 0x00000004;
        sequenceBytes_ = value;
        onChanged();
        return this;
      }
      /**
       * optional int32 sequence_bytes = 3;
       */
      public Builder clearSequenceBytes() {
        bitField0_ = (bitField0_ & ~0x00000004);
        sequenceBytes_ = 0;
        onChanged();
        return this;
      }

      private int sectionNumber_ ;
      /**
       * optional uint32 section_number = 4;
       */
      public boolean hasSectionNumber() {
        return ((bitField0_ & 0x00000008) == 0x00000008);
      }
      /**
       * optional uint32 section_number = 4;
       */
      public int getSectionNumber() {
        return sectionNumber_;
      }
      /**
       * optional uint32 section_number = 4;
       */
      public Builder setSectionNumber(int value) {
        bitField0_ |= 0x00000008;
        sectionNumber_ = value;
        onChanged();
        return this;
      }
      /**
       * optional uint32 section_number = 4;
       */
      public Builder clearSectionNumber() {
        bitField0_ = (bitField0_ & ~0x00000008);
        sectionNumber_ = 0;
        onChanged();
        return this;
      }

      private int sampleRate_ ;
      /**
       * optional uint32 sample_rate = 5;
       */
      public boolean hasSampleRate() {
        return ((bitField0_ & 0x00000010) == 0x00000010);
      }
      /**
       * optional uint32 sample_rate = 5;
       */
      public int getSampleRate() {
        return sampleRate_;
      }
      /**
       * optional uint32 sample_rate = 5;
       */
      public Builder setSampleRate(int value) {
        bitField0_ |= 0x00000010;
        sampleRate_ = value;
        onChanged();
        return this;
      }
      /**
       * optional uint32 sample_rate = 5;
       */
      public Builder clearSampleRate() {
        bitField0_ = (bitField0_ & ~0x00000010);
        sampleRate_ = 0;
        onChanged();
        return this;
      }

      private int uncompressedSampleOffset_ ;
      /**
       * optional uint32 uncompressed_sample_offset = 6;
       */
      public boolean hasUncompressedSampleOffset() {
        return ((bitField0_ & 0x00000020) == 0x00000020);
      }
      /**
       * optional uint32 uncompressed_sample_offset = 6;
       */
      public int getUncompressedSampleOffset() {
        return uncompressedSampleOffset_;
      }
      /**
       * optional uint32 uncompressed_sample_offset = 6;
       */
      public Builder setUncompressedSampleOffset(int value) {
        bitField0_ |= 0x00000020;
        uncompressedSampleOffset_ = value;
        onChanged();
        return this;
      }
      /**
       * optional uint32 uncompressed_sample_offset = 6;
       */
      public Builder clearUncompressedSampleOffset() {
        bitField0_ = (bitField0_ & ~0x00000020);
        uncompressedSampleOffset_ = 0;
        onChanged();
        return this;
      }

      // @@protoc_insertion_point(builder_scope:CMsgVoiceAudio)
    }

    static {
      defaultInstance = new CMsgVoiceAudio(true);
      defaultInstance.initFields();
    }

    // @@protoc_insertion_point(class_scope:CMsgVoiceAudio)
  }

  public interface CCLCMsg_VoiceDataOrBuilder extends
      // @@protoc_insertion_point(interface_extends:CCLCMsg_VoiceData)
      com.google.protobuf.MessageOrBuilder {

    /**
     * optional .CMsgVoiceAudio audio = 1;
     */
    boolean hasAudio();
    /**
     * optional .CMsgVoiceAudio audio = 1;
     */
    skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio getAudio();
    /**
     * optional .CMsgVoiceAudio audio = 1;
     */
    skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudioOrBuilder getAudioOrBuilder();

    /**
     * optional fixed64 xuid = 2;
     */
    boolean hasXuid();
    /**
     * optional fixed64 xuid = 2;
     */
    long getXuid();

    /**
     * optional uint32 tick = 3;
     */
    boolean hasTick();
    /**
     * optional uint32 tick = 3;
     */
    int getTick();
  }
  /**
   * Protobuf type {@code CCLCMsg_VoiceData}
   */
  public static final class CCLCMsg_VoiceData extends
      com.google.protobuf.GeneratedMessage implements
      // @@protoc_insertion_point(message_implements:CCLCMsg_VoiceData)
      CCLCMsg_VoiceDataOrBuilder {
    // Use CCLCMsg_VoiceData.newBuilder() to construct.
    private CCLCMsg_VoiceData(com.google.protobuf.GeneratedMessage.Builder builder) {
      super(builder);
      this.unknownFields = builder.getUnknownFields();
    }
    private CCLCMsg_VoiceData(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }

    private static final CCLCMsg_VoiceData defaultInstance;
    public static CCLCMsg_VoiceData getDefaultInstance() {
      return defaultInstance;
    }

    public CCLCMsg_VoiceData getDefaultInstanceForType() {
      return defaultInstance;
    }

    private final com.google.protobuf.UnknownFieldSet unknownFields;
    @java.lang.Override
    public final com.google.protobuf.UnknownFieldSet
        getUnknownFields() {
      return this.unknownFields;
    }
    private CCLCMsg_VoiceData(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      initFields();
      int mutable_bitField0_ = 0;
      com.google.protobuf.UnknownFieldSet.Builder unknownFields =
          com.google.protobuf.UnknownFieldSet.newBuilder();
      try {
        boolean done = false;
        while (!done) {
          int tag = input.readTag();
          switch (tag) {
            case 0:
              done = true;
              break;
            default: {
              if (!parseUnknownField(input, unknownFields,
                                     extensionRegistry, tag)) {
                done = true;
              }
              break;
            }
            case 10: {
              skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio.Builder subBuilder = null;
              if (((bitField0_ & 0x00000001) == 0x00000001)) {
                subBuilder = audio_.toBuilder();
              }
              audio_ = input.readMessage(skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio.PARSER, extensionRegistry);
              if (subBuilder != null) {
                subBuilder.mergeFrom(audio_);
                audio_ = subBuilder.buildPartial();
              }
              bitField0_ |= 0x00000001;
              break;
            }
            case 17: {
              bitField0_ |= 0x00000002;
              xuid_ = input.readFixed64();
              break;
            }
            case 24: {
              bitField0_ |= 0x00000004;
              tick_ = input.readUInt32();
              break;
            }
          }
        }
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        throw e.setUnfinishedMessage(this);
      } catch (java.io.IOException e) {
        throw new com.google.protobuf.InvalidProtocolBufferException(
            e.getMessage()).setUnfinishedMessage(this);
      } finally {
        this.unknownFields = unknownFields.build();
        makeExtensionsImmutable();
      }
    }
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_VoiceData_descriptor;
    }

    protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_VoiceData_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_VoiceData.class, skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_VoiceData.Builder.class);
    }

    public static com.google.protobuf.Parser PARSER =
        new com.google.protobuf.AbstractParser() {
      public CCLCMsg_VoiceData parsePartialFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return new CCLCMsg_VoiceData(input, extensionRegistry);
      }
    };

    @java.lang.Override
    public com.google.protobuf.Parser getParserForType() {
      return PARSER;
    }

    private int bitField0_;
    public static final int AUDIO_FIELD_NUMBER = 1;
    private skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio audio_;
    /**
     * optional .CMsgVoiceAudio audio = 1;
     */
    public boolean hasAudio() {
      return ((bitField0_ & 0x00000001) == 0x00000001);
    }
    /**
     * optional .CMsgVoiceAudio audio = 1;
     */
    public skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio getAudio() {
      return audio_;
    }
    /**
     * optional .CMsgVoiceAudio audio = 1;
     */
    public skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudioOrBuilder getAudioOrBuilder() {
      return audio_;
    }

    public static final int XUID_FIELD_NUMBER = 2;
    private long xuid_;
    /**
     * optional fixed64 xuid = 2;
     */
    public boolean hasXuid() {
      return ((bitField0_ & 0x00000002) == 0x00000002);
    }
    /**
     * optional fixed64 xuid = 2;
     */
    public long getXuid() {
      return xuid_;
    }

    public static final int TICK_FIELD_NUMBER = 3;
    private int tick_;
    /**
     * optional uint32 tick = 3;
     */
    public boolean hasTick() {
      return ((bitField0_ & 0x00000004) == 0x00000004);
    }
    /**
     * optional uint32 tick = 3;
     */
    public int getTick() {
      return tick_;
    }

    private void initFields() {
      audio_ = skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio.getDefaultInstance();
      xuid_ = 0L;
      tick_ = 0;
    }
    private byte memoizedIsInitialized = -1;
    public final boolean isInitialized() {
      byte isInitialized = memoizedIsInitialized;
      if (isInitialized == 1) return true;
      if (isInitialized == 0) return false;

      memoizedIsInitialized = 1;
      return true;
    }

    public void writeTo(com.google.protobuf.CodedOutputStream output)
                        throws java.io.IOException {
      getSerializedSize();
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        output.writeMessage(1, audio_);
      }
      if (((bitField0_ & 0x00000002) == 0x00000002)) {
        output.writeFixed64(2, xuid_);
      }
      if (((bitField0_ & 0x00000004) == 0x00000004)) {
        output.writeUInt32(3, tick_);
      }
      getUnknownFields().writeTo(output);
    }

    private int memoizedSerializedSize = -1;
    public int getSerializedSize() {
      int size = memoizedSerializedSize;
      if (size != -1) return size;

      size = 0;
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        size += com.google.protobuf.CodedOutputStream
          .computeMessageSize(1, audio_);
      }
      if (((bitField0_ & 0x00000002) == 0x00000002)) {
        size += com.google.protobuf.CodedOutputStream
          .computeFixed64Size(2, xuid_);
      }
      if (((bitField0_ & 0x00000004) == 0x00000004)) {
        size += com.google.protobuf.CodedOutputStream
          .computeUInt32Size(3, tick_);
      }
      size += getUnknownFields().getSerializedSize();
      memoizedSerializedSize = size;
      return size;
    }

    private static final long serialVersionUID = 0L;
    @java.lang.Override
    protected java.lang.Object writeReplace()
        throws java.io.ObjectStreamException {
      return super.writeReplace();
    }

    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_VoiceData parseFrom(
        com.google.protobuf.ByteString data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_VoiceData parseFrom(
        com.google.protobuf.ByteString data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_VoiceData parseFrom(byte[] data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_VoiceData parseFrom(
        byte[] data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_VoiceData parseFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_VoiceData parseFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_VoiceData parseDelimitedFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_VoiceData parseDelimitedFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_VoiceData parseFrom(
        com.google.protobuf.CodedInputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_VoiceData parseFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }

    public static Builder newBuilder() { return Builder.create(); }
    public Builder newBuilderForType() { return newBuilder(); }
    public static Builder newBuilder(skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_VoiceData prototype) {
      return newBuilder().mergeFrom(prototype);
    }
    public Builder toBuilder() { return newBuilder(this); }

    @java.lang.Override
    protected Builder newBuilderForType(
        com.google.protobuf.GeneratedMessage.BuilderParent parent) {
      Builder builder = new Builder(parent);
      return builder;
    }
    /**
     * Protobuf type {@code CCLCMsg_VoiceData}
     */
    public static final class Builder extends
        com.google.protobuf.GeneratedMessage.Builder implements
        // @@protoc_insertion_point(builder_implements:CCLCMsg_VoiceData)
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_VoiceDataOrBuilder {
      public static final com.google.protobuf.Descriptors.Descriptor
          getDescriptor() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_VoiceData_descriptor;
      }

      protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
          internalGetFieldAccessorTable() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_VoiceData_fieldAccessorTable
            .ensureFieldAccessorsInitialized(
                skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_VoiceData.class, skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_VoiceData.Builder.class);
      }

      // Construct using skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_VoiceData.newBuilder()
      private Builder() {
        maybeForceBuilderInitialization();
      }

      private Builder(
          com.google.protobuf.GeneratedMessage.BuilderParent parent) {
        super(parent);
        maybeForceBuilderInitialization();
      }
      private void maybeForceBuilderInitialization() {
        if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
          getAudioFieldBuilder();
        }
      }
      private static Builder create() {
        return new Builder();
      }

      public Builder clear() {
        super.clear();
        if (audioBuilder_ == null) {
          audio_ = skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio.getDefaultInstance();
        } else {
          audioBuilder_.clear();
        }
        bitField0_ = (bitField0_ & ~0x00000001);
        xuid_ = 0L;
        bitField0_ = (bitField0_ & ~0x00000002);
        tick_ = 0;
        bitField0_ = (bitField0_ & ~0x00000004);
        return this;
      }

      public Builder clone() {
        return create().mergeFrom(buildPartial());
      }

      public com.google.protobuf.Descriptors.Descriptor
          getDescriptorForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_VoiceData_descriptor;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_VoiceData getDefaultInstanceForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_VoiceData.getDefaultInstance();
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_VoiceData build() {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_VoiceData result = buildPartial();
        if (!result.isInitialized()) {
          throw newUninitializedMessageException(result);
        }
        return result;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_VoiceData buildPartial() {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_VoiceData result = new skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_VoiceData(this);
        int from_bitField0_ = bitField0_;
        int to_bitField0_ = 0;
        if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
          to_bitField0_ |= 0x00000001;
        }
        if (audioBuilder_ == null) {
          result.audio_ = audio_;
        } else {
          result.audio_ = audioBuilder_.build();
        }
        if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
          to_bitField0_ |= 0x00000002;
        }
        result.xuid_ = xuid_;
        if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
          to_bitField0_ |= 0x00000004;
        }
        result.tick_ = tick_;
        result.bitField0_ = to_bitField0_;
        onBuilt();
        return result;
      }

      public Builder mergeFrom(com.google.protobuf.Message other) {
        if (other instanceof skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_VoiceData) {
          return mergeFrom((skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_VoiceData)other);
        } else {
          super.mergeFrom(other);
          return this;
        }
      }

      public Builder mergeFrom(skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_VoiceData other) {
        if (other == skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_VoiceData.getDefaultInstance()) return this;
        if (other.hasAudio()) {
          mergeAudio(other.getAudio());
        }
        if (other.hasXuid()) {
          setXuid(other.getXuid());
        }
        if (other.hasTick()) {
          setTick(other.getTick());
        }
        this.mergeUnknownFields(other.getUnknownFields());
        return this;
      }

      public final boolean isInitialized() {
        return true;
      }

      public Builder mergeFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_VoiceData parsedMessage = null;
        try {
          parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
          parsedMessage = (skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_VoiceData) e.getUnfinishedMessage();
          throw e;
        } finally {
          if (parsedMessage != null) {
            mergeFrom(parsedMessage);
          }
        }
        return this;
      }
      private int bitField0_;

      private skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio audio_ = skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio.getDefaultInstance();
      private com.google.protobuf.SingleFieldBuilder<
          skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio, skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio.Builder, skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudioOrBuilder> audioBuilder_;
      /**
       * optional .CMsgVoiceAudio audio = 1;
       */
      public boolean hasAudio() {
        return ((bitField0_ & 0x00000001) == 0x00000001);
      }
      /**
       * optional .CMsgVoiceAudio audio = 1;
       */
      public skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio getAudio() {
        if (audioBuilder_ == null) {
          return audio_;
        } else {
          return audioBuilder_.getMessage();
        }
      }
      /**
       * optional .CMsgVoiceAudio audio = 1;
       */
      public Builder setAudio(skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio value) {
        if (audioBuilder_ == null) {
          if (value == null) {
            throw new NullPointerException();
          }
          audio_ = value;
          onChanged();
        } else {
          audioBuilder_.setMessage(value);
        }
        bitField0_ |= 0x00000001;
        return this;
      }
      /**
       * optional .CMsgVoiceAudio audio = 1;
       */
      public Builder setAudio(
          skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio.Builder builderForValue) {
        if (audioBuilder_ == null) {
          audio_ = builderForValue.build();
          onChanged();
        } else {
          audioBuilder_.setMessage(builderForValue.build());
        }
        bitField0_ |= 0x00000001;
        return this;
      }
      /**
       * optional .CMsgVoiceAudio audio = 1;
       */
      public Builder mergeAudio(skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio value) {
        if (audioBuilder_ == null) {
          if (((bitField0_ & 0x00000001) == 0x00000001) &&
              audio_ != skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio.getDefaultInstance()) {
            audio_ =
              skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio.newBuilder(audio_).mergeFrom(value).buildPartial();
          } else {
            audio_ = value;
          }
          onChanged();
        } else {
          audioBuilder_.mergeFrom(value);
        }
        bitField0_ |= 0x00000001;
        return this;
      }
      /**
       * optional .CMsgVoiceAudio audio = 1;
       */
      public Builder clearAudio() {
        if (audioBuilder_ == null) {
          audio_ = skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio.getDefaultInstance();
          onChanged();
        } else {
          audioBuilder_.clear();
        }
        bitField0_ = (bitField0_ & ~0x00000001);
        return this;
      }
      /**
       * optional .CMsgVoiceAudio audio = 1;
       */
      public skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio.Builder getAudioBuilder() {
        bitField0_ |= 0x00000001;
        onChanged();
        return getAudioFieldBuilder().getBuilder();
      }
      /**
       * optional .CMsgVoiceAudio audio = 1;
       */
      public skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudioOrBuilder getAudioOrBuilder() {
        if (audioBuilder_ != null) {
          return audioBuilder_.getMessageOrBuilder();
        } else {
          return audio_;
        }
      }
      /**
       * optional .CMsgVoiceAudio audio = 1;
       */
      private com.google.protobuf.SingleFieldBuilder<
          skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio, skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio.Builder, skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudioOrBuilder> 
          getAudioFieldBuilder() {
        if (audioBuilder_ == null) {
          audioBuilder_ = new com.google.protobuf.SingleFieldBuilder<
              skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio, skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudio.Builder, skadistats.clarity.wire.common.proto.NetMessages.CMsgVoiceAudioOrBuilder>(
                  getAudio(),
                  getParentForChildren(),
                  isClean());
          audio_ = null;
        }
        return audioBuilder_;
      }

      private long xuid_ ;
      /**
       * optional fixed64 xuid = 2;
       */
      public boolean hasXuid() {
        return ((bitField0_ & 0x00000002) == 0x00000002);
      }
      /**
       * optional fixed64 xuid = 2;
       */
      public long getXuid() {
        return xuid_;
      }
      /**
       * optional fixed64 xuid = 2;
       */
      public Builder setXuid(long value) {
        bitField0_ |= 0x00000002;
        xuid_ = value;
        onChanged();
        return this;
      }
      /**
       * optional fixed64 xuid = 2;
       */
      public Builder clearXuid() {
        bitField0_ = (bitField0_ & ~0x00000002);
        xuid_ = 0L;
        onChanged();
        return this;
      }

      private int tick_ ;
      /**
       * optional uint32 tick = 3;
       */
      public boolean hasTick() {
        return ((bitField0_ & 0x00000004) == 0x00000004);
      }
      /**
       * optional uint32 tick = 3;
       */
      public int getTick() {
        return tick_;
      }
      /**
       * optional uint32 tick = 3;
       */
      public Builder setTick(int value) {
        bitField0_ |= 0x00000004;
        tick_ = value;
        onChanged();
        return this;
      }
      /**
       * optional uint32 tick = 3;
       */
      public Builder clearTick() {
        bitField0_ = (bitField0_ & ~0x00000004);
        tick_ = 0;
        onChanged();
        return this;
      }

      // @@protoc_insertion_point(builder_scope:CCLCMsg_VoiceData)
    }

    static {
      defaultInstance = new CCLCMsg_VoiceData(true);
      defaultInstance.initFields();
    }

    // @@protoc_insertion_point(class_scope:CCLCMsg_VoiceData)
  }

  public interface CCLCMsg_BaselineAckOrBuilder extends
      // @@protoc_insertion_point(interface_extends:CCLCMsg_BaselineAck)
      com.google.protobuf.MessageOrBuilder {

    /**
     * optional int32 baseline_tick = 1;
     */
    boolean hasBaselineTick();
    /**
     * optional int32 baseline_tick = 1;
     */
    int getBaselineTick();

    /**
     * optional int32 baseline_nr = 2;
     */
    boolean hasBaselineNr();
    /**
     * optional int32 baseline_nr = 2;
     */
    int getBaselineNr();
  }
  /**
   * Protobuf type {@code CCLCMsg_BaselineAck}
   */
  public static final class CCLCMsg_BaselineAck extends
      com.google.protobuf.GeneratedMessage implements
      // @@protoc_insertion_point(message_implements:CCLCMsg_BaselineAck)
      CCLCMsg_BaselineAckOrBuilder {
    // Use CCLCMsg_BaselineAck.newBuilder() to construct.
    private CCLCMsg_BaselineAck(com.google.protobuf.GeneratedMessage.Builder builder) {
      super(builder);
      this.unknownFields = builder.getUnknownFields();
    }
    private CCLCMsg_BaselineAck(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }

    private static final CCLCMsg_BaselineAck defaultInstance;
    public static CCLCMsg_BaselineAck getDefaultInstance() {
      return defaultInstance;
    }

    public CCLCMsg_BaselineAck getDefaultInstanceForType() {
      return defaultInstance;
    }

    private final com.google.protobuf.UnknownFieldSet unknownFields;
    @java.lang.Override
    public final com.google.protobuf.UnknownFieldSet
        getUnknownFields() {
      return this.unknownFields;
    }
    private CCLCMsg_BaselineAck(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      initFields();
      int mutable_bitField0_ = 0;
      com.google.protobuf.UnknownFieldSet.Builder unknownFields =
          com.google.protobuf.UnknownFieldSet.newBuilder();
      try {
        boolean done = false;
        while (!done) {
          int tag = input.readTag();
          switch (tag) {
            case 0:
              done = true;
              break;
            default: {
              if (!parseUnknownField(input, unknownFields,
                                     extensionRegistry, tag)) {
                done = true;
              }
              break;
            }
            case 8: {
              bitField0_ |= 0x00000001;
              baselineTick_ = input.readInt32();
              break;
            }
            case 16: {
              bitField0_ |= 0x00000002;
              baselineNr_ = input.readInt32();
              break;
            }
          }
        }
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        throw e.setUnfinishedMessage(this);
      } catch (java.io.IOException e) {
        throw new com.google.protobuf.InvalidProtocolBufferException(
            e.getMessage()).setUnfinishedMessage(this);
      } finally {
        this.unknownFields = unknownFields.build();
        makeExtensionsImmutable();
      }
    }
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_BaselineAck_descriptor;
    }

    protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_BaselineAck_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_BaselineAck.class, skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_BaselineAck.Builder.class);
    }

    public static com.google.protobuf.Parser PARSER =
        new com.google.protobuf.AbstractParser() {
      public CCLCMsg_BaselineAck parsePartialFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return new CCLCMsg_BaselineAck(input, extensionRegistry);
      }
    };

    @java.lang.Override
    public com.google.protobuf.Parser getParserForType() {
      return PARSER;
    }

    private int bitField0_;
    public static final int BASELINE_TICK_FIELD_NUMBER = 1;
    private int baselineTick_;
    /**
     * optional int32 baseline_tick = 1;
     */
    public boolean hasBaselineTick() {
      return ((bitField0_ & 0x00000001) == 0x00000001);
    }
    /**
     * optional int32 baseline_tick = 1;
     */
    public int getBaselineTick() {
      return baselineTick_;
    }

    public static final int BASELINE_NR_FIELD_NUMBER = 2;
    private int baselineNr_;
    /**
     * optional int32 baseline_nr = 2;
     */
    public boolean hasBaselineNr() {
      return ((bitField0_ & 0x00000002) == 0x00000002);
    }
    /**
     * optional int32 baseline_nr = 2;
     */
    public int getBaselineNr() {
      return baselineNr_;
    }

    private void initFields() {
      baselineTick_ = 0;
      baselineNr_ = 0;
    }
    private byte memoizedIsInitialized = -1;
    public final boolean isInitialized() {
      byte isInitialized = memoizedIsInitialized;
      if (isInitialized == 1) return true;
      if (isInitialized == 0) return false;

      memoizedIsInitialized = 1;
      return true;
    }

    public void writeTo(com.google.protobuf.CodedOutputStream output)
                        throws java.io.IOException {
      getSerializedSize();
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        output.writeInt32(1, baselineTick_);
      }
      if (((bitField0_ & 0x00000002) == 0x00000002)) {
        output.writeInt32(2, baselineNr_);
      }
      getUnknownFields().writeTo(output);
    }

    private int memoizedSerializedSize = -1;
    public int getSerializedSize() {
      int size = memoizedSerializedSize;
      if (size != -1) return size;

      size = 0;
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        size += com.google.protobuf.CodedOutputStream
          .computeInt32Size(1, baselineTick_);
      }
      if (((bitField0_ & 0x00000002) == 0x00000002)) {
        size += com.google.protobuf.CodedOutputStream
          .computeInt32Size(2, baselineNr_);
      }
      size += getUnknownFields().getSerializedSize();
      memoizedSerializedSize = size;
      return size;
    }

    private static final long serialVersionUID = 0L;
    @java.lang.Override
    protected java.lang.Object writeReplace()
        throws java.io.ObjectStreamException {
      return super.writeReplace();
    }

    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_BaselineAck parseFrom(
        com.google.protobuf.ByteString data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_BaselineAck parseFrom(
        com.google.protobuf.ByteString data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_BaselineAck parseFrom(byte[] data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_BaselineAck parseFrom(
        byte[] data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_BaselineAck parseFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_BaselineAck parseFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_BaselineAck parseDelimitedFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_BaselineAck parseDelimitedFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_BaselineAck parseFrom(
        com.google.protobuf.CodedInputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_BaselineAck parseFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }

    public static Builder newBuilder() { return Builder.create(); }
    public Builder newBuilderForType() { return newBuilder(); }
    public static Builder newBuilder(skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_BaselineAck prototype) {
      return newBuilder().mergeFrom(prototype);
    }
    public Builder toBuilder() { return newBuilder(this); }

    @java.lang.Override
    protected Builder newBuilderForType(
        com.google.protobuf.GeneratedMessage.BuilderParent parent) {
      Builder builder = new Builder(parent);
      return builder;
    }
    /**
     * Protobuf type {@code CCLCMsg_BaselineAck}
     */
    public static final class Builder extends
        com.google.protobuf.GeneratedMessage.Builder implements
        // @@protoc_insertion_point(builder_implements:CCLCMsg_BaselineAck)
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_BaselineAckOrBuilder {
      public static final com.google.protobuf.Descriptors.Descriptor
          getDescriptor() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_BaselineAck_descriptor;
      }

      protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
          internalGetFieldAccessorTable() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_BaselineAck_fieldAccessorTable
            .ensureFieldAccessorsInitialized(
                skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_BaselineAck.class, skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_BaselineAck.Builder.class);
      }

      // Construct using skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_BaselineAck.newBuilder()
      private Builder() {
        maybeForceBuilderInitialization();
      }

      private Builder(
          com.google.protobuf.GeneratedMessage.BuilderParent parent) {
        super(parent);
        maybeForceBuilderInitialization();
      }
      private void maybeForceBuilderInitialization() {
        if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
        }
      }
      private static Builder create() {
        return new Builder();
      }

      public Builder clear() {
        super.clear();
        baselineTick_ = 0;
        bitField0_ = (bitField0_ & ~0x00000001);
        baselineNr_ = 0;
        bitField0_ = (bitField0_ & ~0x00000002);
        return this;
      }

      public Builder clone() {
        return create().mergeFrom(buildPartial());
      }

      public com.google.protobuf.Descriptors.Descriptor
          getDescriptorForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_BaselineAck_descriptor;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_BaselineAck getDefaultInstanceForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_BaselineAck.getDefaultInstance();
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_BaselineAck build() {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_BaselineAck result = buildPartial();
        if (!result.isInitialized()) {
          throw newUninitializedMessageException(result);
        }
        return result;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_BaselineAck buildPartial() {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_BaselineAck result = new skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_BaselineAck(this);
        int from_bitField0_ = bitField0_;
        int to_bitField0_ = 0;
        if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
          to_bitField0_ |= 0x00000001;
        }
        result.baselineTick_ = baselineTick_;
        if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
          to_bitField0_ |= 0x00000002;
        }
        result.baselineNr_ = baselineNr_;
        result.bitField0_ = to_bitField0_;
        onBuilt();
        return result;
      }

      public Builder mergeFrom(com.google.protobuf.Message other) {
        if (other instanceof skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_BaselineAck) {
          return mergeFrom((skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_BaselineAck)other);
        } else {
          super.mergeFrom(other);
          return this;
        }
      }

      public Builder mergeFrom(skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_BaselineAck other) {
        if (other == skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_BaselineAck.getDefaultInstance()) return this;
        if (other.hasBaselineTick()) {
          setBaselineTick(other.getBaselineTick());
        }
        if (other.hasBaselineNr()) {
          setBaselineNr(other.getBaselineNr());
        }
        this.mergeUnknownFields(other.getUnknownFields());
        return this;
      }

      public final boolean isInitialized() {
        return true;
      }

      public Builder mergeFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_BaselineAck parsedMessage = null;
        try {
          parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
          parsedMessage = (skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_BaselineAck) e.getUnfinishedMessage();
          throw e;
        } finally {
          if (parsedMessage != null) {
            mergeFrom(parsedMessage);
          }
        }
        return this;
      }
      private int bitField0_;

      private int baselineTick_ ;
      /**
       * optional int32 baseline_tick = 1;
       */
      public boolean hasBaselineTick() {
        return ((bitField0_ & 0x00000001) == 0x00000001);
      }
      /**
       * optional int32 baseline_tick = 1;
       */
      public int getBaselineTick() {
        return baselineTick_;
      }
      /**
       * optional int32 baseline_tick = 1;
       */
      public Builder setBaselineTick(int value) {
        bitField0_ |= 0x00000001;
        baselineTick_ = value;
        onChanged();
        return this;
      }
      /**
       * optional int32 baseline_tick = 1;
       */
      public Builder clearBaselineTick() {
        bitField0_ = (bitField0_ & ~0x00000001);
        baselineTick_ = 0;
        onChanged();
        return this;
      }

      private int baselineNr_ ;
      /**
       * optional int32 baseline_nr = 2;
       */
      public boolean hasBaselineNr() {
        return ((bitField0_ & 0x00000002) == 0x00000002);
      }
      /**
       * optional int32 baseline_nr = 2;
       */
      public int getBaselineNr() {
        return baselineNr_;
      }
      /**
       * optional int32 baseline_nr = 2;
       */
      public Builder setBaselineNr(int value) {
        bitField0_ |= 0x00000002;
        baselineNr_ = value;
        onChanged();
        return this;
      }
      /**
       * optional int32 baseline_nr = 2;
       */
      public Builder clearBaselineNr() {
        bitField0_ = (bitField0_ & ~0x00000002);
        baselineNr_ = 0;
        onChanged();
        return this;
      }

      // @@protoc_insertion_point(builder_scope:CCLCMsg_BaselineAck)
    }

    static {
      defaultInstance = new CCLCMsg_BaselineAck(true);
      defaultInstance.initFields();
    }

    // @@protoc_insertion_point(class_scope:CCLCMsg_BaselineAck)
  }

  public interface CCLCMsg_ListenEventsOrBuilder extends
      // @@protoc_insertion_point(interface_extends:CCLCMsg_ListenEvents)
      com.google.protobuf.MessageOrBuilder {

    /**
     * repeated fixed32 event_mask = 1;
     */
    java.util.List getEventMaskList();
    /**
     * repeated fixed32 event_mask = 1;
     */
    int getEventMaskCount();
    /**
     * repeated fixed32 event_mask = 1;
     */
    int getEventMask(int index);
  }
  /**
   * Protobuf type {@code CCLCMsg_ListenEvents}
   */
  public static final class CCLCMsg_ListenEvents extends
      com.google.protobuf.GeneratedMessage implements
      // @@protoc_insertion_point(message_implements:CCLCMsg_ListenEvents)
      CCLCMsg_ListenEventsOrBuilder {
    // Use CCLCMsg_ListenEvents.newBuilder() to construct.
    private CCLCMsg_ListenEvents(com.google.protobuf.GeneratedMessage.Builder builder) {
      super(builder);
      this.unknownFields = builder.getUnknownFields();
    }
    private CCLCMsg_ListenEvents(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }

    private static final CCLCMsg_ListenEvents defaultInstance;
    public static CCLCMsg_ListenEvents getDefaultInstance() {
      return defaultInstance;
    }

    public CCLCMsg_ListenEvents getDefaultInstanceForType() {
      return defaultInstance;
    }

    private final com.google.protobuf.UnknownFieldSet unknownFields;
    @java.lang.Override
    public final com.google.protobuf.UnknownFieldSet
        getUnknownFields() {
      return this.unknownFields;
    }
    private CCLCMsg_ListenEvents(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      initFields();
      int mutable_bitField0_ = 0;
      com.google.protobuf.UnknownFieldSet.Builder unknownFields =
          com.google.protobuf.UnknownFieldSet.newBuilder();
      try {
        boolean done = false;
        while (!done) {
          int tag = input.readTag();
          switch (tag) {
            case 0:
              done = true;
              break;
            default: {
              if (!parseUnknownField(input, unknownFields,
                                     extensionRegistry, tag)) {
                done = true;
              }
              break;
            }
            case 13: {
              if (!((mutable_bitField0_ & 0x00000001) == 0x00000001)) {
                eventMask_ = new java.util.ArrayList();
                mutable_bitField0_ |= 0x00000001;
              }
              eventMask_.add(input.readFixed32());
              break;
            }
            case 10: {
              int length = input.readRawVarint32();
              int limit = input.pushLimit(length);
              if (!((mutable_bitField0_ & 0x00000001) == 0x00000001) && input.getBytesUntilLimit() > 0) {
                eventMask_ = new java.util.ArrayList();
                mutable_bitField0_ |= 0x00000001;
              }
              while (input.getBytesUntilLimit() > 0) {
                eventMask_.add(input.readFixed32());
              }
              input.popLimit(limit);
              break;
            }
          }
        }
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        throw e.setUnfinishedMessage(this);
      } catch (java.io.IOException e) {
        throw new com.google.protobuf.InvalidProtocolBufferException(
            e.getMessage()).setUnfinishedMessage(this);
      } finally {
        if (((mutable_bitField0_ & 0x00000001) == 0x00000001)) {
          eventMask_ = java.util.Collections.unmodifiableList(eventMask_);
        }
        this.unknownFields = unknownFields.build();
        makeExtensionsImmutable();
      }
    }
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_ListenEvents_descriptor;
    }

    protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_ListenEvents_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ListenEvents.class, skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ListenEvents.Builder.class);
    }

    public static com.google.protobuf.Parser PARSER =
        new com.google.protobuf.AbstractParser() {
      public CCLCMsg_ListenEvents parsePartialFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return new CCLCMsg_ListenEvents(input, extensionRegistry);
      }
    };

    @java.lang.Override
    public com.google.protobuf.Parser getParserForType() {
      return PARSER;
    }

    public static final int EVENT_MASK_FIELD_NUMBER = 1;
    private java.util.List eventMask_;
    /**
     * repeated fixed32 event_mask = 1;
     */
    public java.util.List
        getEventMaskList() {
      return eventMask_;
    }
    /**
     * repeated fixed32 event_mask = 1;
     */
    public int getEventMaskCount() {
      return eventMask_.size();
    }
    /**
     * repeated fixed32 event_mask = 1;
     */
    public int getEventMask(int index) {
      return eventMask_.get(index);
    }

    private void initFields() {
      eventMask_ = java.util.Collections.emptyList();
    }
    private byte memoizedIsInitialized = -1;
    public final boolean isInitialized() {
      byte isInitialized = memoizedIsInitialized;
      if (isInitialized == 1) return true;
      if (isInitialized == 0) return false;

      memoizedIsInitialized = 1;
      return true;
    }

    public void writeTo(com.google.protobuf.CodedOutputStream output)
                        throws java.io.IOException {
      getSerializedSize();
      for (int i = 0; i < eventMask_.size(); i++) {
        output.writeFixed32(1, eventMask_.get(i));
      }
      getUnknownFields().writeTo(output);
    }

    private int memoizedSerializedSize = -1;
    public int getSerializedSize() {
      int size = memoizedSerializedSize;
      if (size != -1) return size;

      size = 0;
      {
        int dataSize = 0;
        dataSize = 4 * getEventMaskList().size();
        size += dataSize;
        size += 1 * getEventMaskList().size();
      }
      size += getUnknownFields().getSerializedSize();
      memoizedSerializedSize = size;
      return size;
    }

    private static final long serialVersionUID = 0L;
    @java.lang.Override
    protected java.lang.Object writeReplace()
        throws java.io.ObjectStreamException {
      return super.writeReplace();
    }

    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ListenEvents parseFrom(
        com.google.protobuf.ByteString data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ListenEvents parseFrom(
        com.google.protobuf.ByteString data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ListenEvents parseFrom(byte[] data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ListenEvents parseFrom(
        byte[] data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ListenEvents parseFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ListenEvents parseFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ListenEvents parseDelimitedFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ListenEvents parseDelimitedFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ListenEvents parseFrom(
        com.google.protobuf.CodedInputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ListenEvents parseFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }

    public static Builder newBuilder() { return Builder.create(); }
    public Builder newBuilderForType() { return newBuilder(); }
    public static Builder newBuilder(skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ListenEvents prototype) {
      return newBuilder().mergeFrom(prototype);
    }
    public Builder toBuilder() { return newBuilder(this); }

    @java.lang.Override
    protected Builder newBuilderForType(
        com.google.protobuf.GeneratedMessage.BuilderParent parent) {
      Builder builder = new Builder(parent);
      return builder;
    }
    /**
     * Protobuf type {@code CCLCMsg_ListenEvents}
     */
    public static final class Builder extends
        com.google.protobuf.GeneratedMessage.Builder implements
        // @@protoc_insertion_point(builder_implements:CCLCMsg_ListenEvents)
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ListenEventsOrBuilder {
      public static final com.google.protobuf.Descriptors.Descriptor
          getDescriptor() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_ListenEvents_descriptor;
      }

      protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
          internalGetFieldAccessorTable() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_ListenEvents_fieldAccessorTable
            .ensureFieldAccessorsInitialized(
                skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ListenEvents.class, skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ListenEvents.Builder.class);
      }

      // Construct using skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ListenEvents.newBuilder()
      private Builder() {
        maybeForceBuilderInitialization();
      }

      private Builder(
          com.google.protobuf.GeneratedMessage.BuilderParent parent) {
        super(parent);
        maybeForceBuilderInitialization();
      }
      private void maybeForceBuilderInitialization() {
        if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
        }
      }
      private static Builder create() {
        return new Builder();
      }

      public Builder clear() {
        super.clear();
        eventMask_ = java.util.Collections.emptyList();
        bitField0_ = (bitField0_ & ~0x00000001);
        return this;
      }

      public Builder clone() {
        return create().mergeFrom(buildPartial());
      }

      public com.google.protobuf.Descriptors.Descriptor
          getDescriptorForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_ListenEvents_descriptor;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ListenEvents getDefaultInstanceForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ListenEvents.getDefaultInstance();
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ListenEvents build() {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ListenEvents result = buildPartial();
        if (!result.isInitialized()) {
          throw newUninitializedMessageException(result);
        }
        return result;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ListenEvents buildPartial() {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ListenEvents result = new skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ListenEvents(this);
        int from_bitField0_ = bitField0_;
        if (((bitField0_ & 0x00000001) == 0x00000001)) {
          eventMask_ = java.util.Collections.unmodifiableList(eventMask_);
          bitField0_ = (bitField0_ & ~0x00000001);
        }
        result.eventMask_ = eventMask_;
        onBuilt();
        return result;
      }

      public Builder mergeFrom(com.google.protobuf.Message other) {
        if (other instanceof skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ListenEvents) {
          return mergeFrom((skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ListenEvents)other);
        } else {
          super.mergeFrom(other);
          return this;
        }
      }

      public Builder mergeFrom(skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ListenEvents other) {
        if (other == skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ListenEvents.getDefaultInstance()) return this;
        if (!other.eventMask_.isEmpty()) {
          if (eventMask_.isEmpty()) {
            eventMask_ = other.eventMask_;
            bitField0_ = (bitField0_ & ~0x00000001);
          } else {
            ensureEventMaskIsMutable();
            eventMask_.addAll(other.eventMask_);
          }
          onChanged();
        }
        this.mergeUnknownFields(other.getUnknownFields());
        return this;
      }

      public final boolean isInitialized() {
        return true;
      }

      public Builder mergeFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ListenEvents parsedMessage = null;
        try {
          parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
          parsedMessage = (skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ListenEvents) e.getUnfinishedMessage();
          throw e;
        } finally {
          if (parsedMessage != null) {
            mergeFrom(parsedMessage);
          }
        }
        return this;
      }
      private int bitField0_;

      private java.util.List eventMask_ = java.util.Collections.emptyList();
      private void ensureEventMaskIsMutable() {
        if (!((bitField0_ & 0x00000001) == 0x00000001)) {
          eventMask_ = new java.util.ArrayList(eventMask_);
          bitField0_ |= 0x00000001;
         }
      }
      /**
       * repeated fixed32 event_mask = 1;
       */
      public java.util.List
          getEventMaskList() {
        return java.util.Collections.unmodifiableList(eventMask_);
      }
      /**
       * repeated fixed32 event_mask = 1;
       */
      public int getEventMaskCount() {
        return eventMask_.size();
      }
      /**
       * repeated fixed32 event_mask = 1;
       */
      public int getEventMask(int index) {
        return eventMask_.get(index);
      }
      /**
       * repeated fixed32 event_mask = 1;
       */
      public Builder setEventMask(
          int index, int value) {
        ensureEventMaskIsMutable();
        eventMask_.set(index, value);
        onChanged();
        return this;
      }
      /**
       * repeated fixed32 event_mask = 1;
       */
      public Builder addEventMask(int value) {
        ensureEventMaskIsMutable();
        eventMask_.add(value);
        onChanged();
        return this;
      }
      /**
       * repeated fixed32 event_mask = 1;
       */
      public Builder addAllEventMask(
          java.lang.Iterable values) {
        ensureEventMaskIsMutable();
        com.google.protobuf.AbstractMessageLite.Builder.addAll(
            values, eventMask_);
        onChanged();
        return this;
      }
      /**
       * repeated fixed32 event_mask = 1;
       */
      public Builder clearEventMask() {
        eventMask_ = java.util.Collections.emptyList();
        bitField0_ = (bitField0_ & ~0x00000001);
        onChanged();
        return this;
      }

      // @@protoc_insertion_point(builder_scope:CCLCMsg_ListenEvents)
    }

    static {
      defaultInstance = new CCLCMsg_ListenEvents(true);
      defaultInstance.initFields();
    }

    // @@protoc_insertion_point(class_scope:CCLCMsg_ListenEvents)
  }

  public interface CCLCMsg_RespondCvarValueOrBuilder extends
      // @@protoc_insertion_point(interface_extends:CCLCMsg_RespondCvarValue)
      com.google.protobuf.MessageOrBuilder {

    /**
     * optional int32 cookie = 1;
     */
    boolean hasCookie();
    /**
     * optional int32 cookie = 1;
     */
    int getCookie();

    /**
     * optional int32 status_code = 2;
     */
    boolean hasStatusCode();
    /**
     * optional int32 status_code = 2;
     */
    int getStatusCode();

    /**
     * optional string name = 3;
     */
    boolean hasName();
    /**
     * optional string name = 3;
     */
    java.lang.String getName();
    /**
     * optional string name = 3;
     */
    com.google.protobuf.ByteString
        getNameBytes();

    /**
     * optional string value = 4;
     */
    boolean hasValue();
    /**
     * optional string value = 4;
     */
    java.lang.String getValue();
    /**
     * optional string value = 4;
     */
    com.google.protobuf.ByteString
        getValueBytes();
  }
  /**
   * Protobuf type {@code CCLCMsg_RespondCvarValue}
   */
  public static final class CCLCMsg_RespondCvarValue extends
      com.google.protobuf.GeneratedMessage implements
      // @@protoc_insertion_point(message_implements:CCLCMsg_RespondCvarValue)
      CCLCMsg_RespondCvarValueOrBuilder {
    // Use CCLCMsg_RespondCvarValue.newBuilder() to construct.
    private CCLCMsg_RespondCvarValue(com.google.protobuf.GeneratedMessage.Builder builder) {
      super(builder);
      this.unknownFields = builder.getUnknownFields();
    }
    private CCLCMsg_RespondCvarValue(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }

    private static final CCLCMsg_RespondCvarValue defaultInstance;
    public static CCLCMsg_RespondCvarValue getDefaultInstance() {
      return defaultInstance;
    }

    public CCLCMsg_RespondCvarValue getDefaultInstanceForType() {
      return defaultInstance;
    }

    private final com.google.protobuf.UnknownFieldSet unknownFields;
    @java.lang.Override
    public final com.google.protobuf.UnknownFieldSet
        getUnknownFields() {
      return this.unknownFields;
    }
    private CCLCMsg_RespondCvarValue(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      initFields();
      int mutable_bitField0_ = 0;
      com.google.protobuf.UnknownFieldSet.Builder unknownFields =
          com.google.protobuf.UnknownFieldSet.newBuilder();
      try {
        boolean done = false;
        while (!done) {
          int tag = input.readTag();
          switch (tag) {
            case 0:
              done = true;
              break;
            default: {
              if (!parseUnknownField(input, unknownFields,
                                     extensionRegistry, tag)) {
                done = true;
              }
              break;
            }
            case 8: {
              bitField0_ |= 0x00000001;
              cookie_ = input.readInt32();
              break;
            }
            case 16: {
              bitField0_ |= 0x00000002;
              statusCode_ = input.readInt32();
              break;
            }
            case 26: {
              com.google.protobuf.ByteString bs = input.readBytes();
              bitField0_ |= 0x00000004;
              name_ = bs;
              break;
            }
            case 34: {
              com.google.protobuf.ByteString bs = input.readBytes();
              bitField0_ |= 0x00000008;
              value_ = bs;
              break;
            }
          }
        }
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        throw e.setUnfinishedMessage(this);
      } catch (java.io.IOException e) {
        throw new com.google.protobuf.InvalidProtocolBufferException(
            e.getMessage()).setUnfinishedMessage(this);
      } finally {
        this.unknownFields = unknownFields.build();
        makeExtensionsImmutable();
      }
    }
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_RespondCvarValue_descriptor;
    }

    protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_RespondCvarValue_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RespondCvarValue.class, skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RespondCvarValue.Builder.class);
    }

    public static com.google.protobuf.Parser PARSER =
        new com.google.protobuf.AbstractParser() {
      public CCLCMsg_RespondCvarValue parsePartialFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return new CCLCMsg_RespondCvarValue(input, extensionRegistry);
      }
    };

    @java.lang.Override
    public com.google.protobuf.Parser getParserForType() {
      return PARSER;
    }

    private int bitField0_;
    public static final int COOKIE_FIELD_NUMBER = 1;
    private int cookie_;
    /**
     * optional int32 cookie = 1;
     */
    public boolean hasCookie() {
      return ((bitField0_ & 0x00000001) == 0x00000001);
    }
    /**
     * optional int32 cookie = 1;
     */
    public int getCookie() {
      return cookie_;
    }

    public static final int STATUS_CODE_FIELD_NUMBER = 2;
    private int statusCode_;
    /**
     * optional int32 status_code = 2;
     */
    public boolean hasStatusCode() {
      return ((bitField0_ & 0x00000002) == 0x00000002);
    }
    /**
     * optional int32 status_code = 2;
     */
    public int getStatusCode() {
      return statusCode_;
    }

    public static final int NAME_FIELD_NUMBER = 3;
    private java.lang.Object name_;
    /**
     * optional string name = 3;
     */
    public boolean hasName() {
      return ((bitField0_ & 0x00000004) == 0x00000004);
    }
    /**
     * optional string name = 3;
     */
    public java.lang.String getName() {
      java.lang.Object ref = name_;
      if (ref instanceof java.lang.String) {
        return (java.lang.String) ref;
      } else {
        com.google.protobuf.ByteString bs = 
            (com.google.protobuf.ByteString) ref;
        java.lang.String s = bs.toStringUtf8();
        if (bs.isValidUtf8()) {
          name_ = s;
        }
        return s;
      }
    }
    /**
     * optional string name = 3;
     */
    public com.google.protobuf.ByteString
        getNameBytes() {
      java.lang.Object ref = name_;
      if (ref instanceof java.lang.String) {
        com.google.protobuf.ByteString b = 
            com.google.protobuf.ByteString.copyFromUtf8(
                (java.lang.String) ref);
        name_ = b;
        return b;
      } else {
        return (com.google.protobuf.ByteString) ref;
      }
    }

    public static final int VALUE_FIELD_NUMBER = 4;
    private java.lang.Object value_;
    /**
     * optional string value = 4;
     */
    public boolean hasValue() {
      return ((bitField0_ & 0x00000008) == 0x00000008);
    }
    /**
     * optional string value = 4;
     */
    public java.lang.String getValue() {
      java.lang.Object ref = value_;
      if (ref instanceof java.lang.String) {
        return (java.lang.String) ref;
      } else {
        com.google.protobuf.ByteString bs = 
            (com.google.protobuf.ByteString) ref;
        java.lang.String s = bs.toStringUtf8();
        if (bs.isValidUtf8()) {
          value_ = s;
        }
        return s;
      }
    }
    /**
     * optional string value = 4;
     */
    public com.google.protobuf.ByteString
        getValueBytes() {
      java.lang.Object ref = value_;
      if (ref instanceof java.lang.String) {
        com.google.protobuf.ByteString b = 
            com.google.protobuf.ByteString.copyFromUtf8(
                (java.lang.String) ref);
        value_ = b;
        return b;
      } else {
        return (com.google.protobuf.ByteString) ref;
      }
    }

    private void initFields() {
      cookie_ = 0;
      statusCode_ = 0;
      name_ = "";
      value_ = "";
    }
    private byte memoizedIsInitialized = -1;
    public final boolean isInitialized() {
      byte isInitialized = memoizedIsInitialized;
      if (isInitialized == 1) return true;
      if (isInitialized == 0) return false;

      memoizedIsInitialized = 1;
      return true;
    }

    public void writeTo(com.google.protobuf.CodedOutputStream output)
                        throws java.io.IOException {
      getSerializedSize();
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        output.writeInt32(1, cookie_);
      }
      if (((bitField0_ & 0x00000002) == 0x00000002)) {
        output.writeInt32(2, statusCode_);
      }
      if (((bitField0_ & 0x00000004) == 0x00000004)) {
        output.writeBytes(3, getNameBytes());
      }
      if (((bitField0_ & 0x00000008) == 0x00000008)) {
        output.writeBytes(4, getValueBytes());
      }
      getUnknownFields().writeTo(output);
    }

    private int memoizedSerializedSize = -1;
    public int getSerializedSize() {
      int size = memoizedSerializedSize;
      if (size != -1) return size;

      size = 0;
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        size += com.google.protobuf.CodedOutputStream
          .computeInt32Size(1, cookie_);
      }
      if (((bitField0_ & 0x00000002) == 0x00000002)) {
        size += com.google.protobuf.CodedOutputStream
          .computeInt32Size(2, statusCode_);
      }
      if (((bitField0_ & 0x00000004) == 0x00000004)) {
        size += com.google.protobuf.CodedOutputStream
          .computeBytesSize(3, getNameBytes());
      }
      if (((bitField0_ & 0x00000008) == 0x00000008)) {
        size += com.google.protobuf.CodedOutputStream
          .computeBytesSize(4, getValueBytes());
      }
      size += getUnknownFields().getSerializedSize();
      memoizedSerializedSize = size;
      return size;
    }

    private static final long serialVersionUID = 0L;
    @java.lang.Override
    protected java.lang.Object writeReplace()
        throws java.io.ObjectStreamException {
      return super.writeReplace();
    }

    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RespondCvarValue parseFrom(
        com.google.protobuf.ByteString data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RespondCvarValue parseFrom(
        com.google.protobuf.ByteString data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RespondCvarValue parseFrom(byte[] data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RespondCvarValue parseFrom(
        byte[] data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RespondCvarValue parseFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RespondCvarValue parseFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RespondCvarValue parseDelimitedFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RespondCvarValue parseDelimitedFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RespondCvarValue parseFrom(
        com.google.protobuf.CodedInputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RespondCvarValue parseFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }

    public static Builder newBuilder() { return Builder.create(); }
    public Builder newBuilderForType() { return newBuilder(); }
    public static Builder newBuilder(skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RespondCvarValue prototype) {
      return newBuilder().mergeFrom(prototype);
    }
    public Builder toBuilder() { return newBuilder(this); }

    @java.lang.Override
    protected Builder newBuilderForType(
        com.google.protobuf.GeneratedMessage.BuilderParent parent) {
      Builder builder = new Builder(parent);
      return builder;
    }
    /**
     * Protobuf type {@code CCLCMsg_RespondCvarValue}
     */
    public static final class Builder extends
        com.google.protobuf.GeneratedMessage.Builder implements
        // @@protoc_insertion_point(builder_implements:CCLCMsg_RespondCvarValue)
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RespondCvarValueOrBuilder {
      public static final com.google.protobuf.Descriptors.Descriptor
          getDescriptor() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_RespondCvarValue_descriptor;
      }

      protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
          internalGetFieldAccessorTable() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_RespondCvarValue_fieldAccessorTable
            .ensureFieldAccessorsInitialized(
                skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RespondCvarValue.class, skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RespondCvarValue.Builder.class);
      }

      // Construct using skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RespondCvarValue.newBuilder()
      private Builder() {
        maybeForceBuilderInitialization();
      }

      private Builder(
          com.google.protobuf.GeneratedMessage.BuilderParent parent) {
        super(parent);
        maybeForceBuilderInitialization();
      }
      private void maybeForceBuilderInitialization() {
        if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
        }
      }
      private static Builder create() {
        return new Builder();
      }

      public Builder clear() {
        super.clear();
        cookie_ = 0;
        bitField0_ = (bitField0_ & ~0x00000001);
        statusCode_ = 0;
        bitField0_ = (bitField0_ & ~0x00000002);
        name_ = "";
        bitField0_ = (bitField0_ & ~0x00000004);
        value_ = "";
        bitField0_ = (bitField0_ & ~0x00000008);
        return this;
      }

      public Builder clone() {
        return create().mergeFrom(buildPartial());
      }

      public com.google.protobuf.Descriptors.Descriptor
          getDescriptorForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_RespondCvarValue_descriptor;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RespondCvarValue getDefaultInstanceForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RespondCvarValue.getDefaultInstance();
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RespondCvarValue build() {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RespondCvarValue result = buildPartial();
        if (!result.isInitialized()) {
          throw newUninitializedMessageException(result);
        }
        return result;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RespondCvarValue buildPartial() {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RespondCvarValue result = new skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RespondCvarValue(this);
        int from_bitField0_ = bitField0_;
        int to_bitField0_ = 0;
        if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
          to_bitField0_ |= 0x00000001;
        }
        result.cookie_ = cookie_;
        if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
          to_bitField0_ |= 0x00000002;
        }
        result.statusCode_ = statusCode_;
        if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
          to_bitField0_ |= 0x00000004;
        }
        result.name_ = name_;
        if (((from_bitField0_ & 0x00000008) == 0x00000008)) {
          to_bitField0_ |= 0x00000008;
        }
        result.value_ = value_;
        result.bitField0_ = to_bitField0_;
        onBuilt();
        return result;
      }

      public Builder mergeFrom(com.google.protobuf.Message other) {
        if (other instanceof skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RespondCvarValue) {
          return mergeFrom((skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RespondCvarValue)other);
        } else {
          super.mergeFrom(other);
          return this;
        }
      }

      public Builder mergeFrom(skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RespondCvarValue other) {
        if (other == skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RespondCvarValue.getDefaultInstance()) return this;
        if (other.hasCookie()) {
          setCookie(other.getCookie());
        }
        if (other.hasStatusCode()) {
          setStatusCode(other.getStatusCode());
        }
        if (other.hasName()) {
          bitField0_ |= 0x00000004;
          name_ = other.name_;
          onChanged();
        }
        if (other.hasValue()) {
          bitField0_ |= 0x00000008;
          value_ = other.value_;
          onChanged();
        }
        this.mergeUnknownFields(other.getUnknownFields());
        return this;
      }

      public final boolean isInitialized() {
        return true;
      }

      public Builder mergeFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RespondCvarValue parsedMessage = null;
        try {
          parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
          parsedMessage = (skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RespondCvarValue) e.getUnfinishedMessage();
          throw e;
        } finally {
          if (parsedMessage != null) {
            mergeFrom(parsedMessage);
          }
        }
        return this;
      }
      private int bitField0_;

      private int cookie_ ;
      /**
       * optional int32 cookie = 1;
       */
      public boolean hasCookie() {
        return ((bitField0_ & 0x00000001) == 0x00000001);
      }
      /**
       * optional int32 cookie = 1;
       */
      public int getCookie() {
        return cookie_;
      }
      /**
       * optional int32 cookie = 1;
       */
      public Builder setCookie(int value) {
        bitField0_ |= 0x00000001;
        cookie_ = value;
        onChanged();
        return this;
      }
      /**
       * optional int32 cookie = 1;
       */
      public Builder clearCookie() {
        bitField0_ = (bitField0_ & ~0x00000001);
        cookie_ = 0;
        onChanged();
        return this;
      }

      private int statusCode_ ;
      /**
       * optional int32 status_code = 2;
       */
      public boolean hasStatusCode() {
        return ((bitField0_ & 0x00000002) == 0x00000002);
      }
      /**
       * optional int32 status_code = 2;
       */
      public int getStatusCode() {
        return statusCode_;
      }
      /**
       * optional int32 status_code = 2;
       */
      public Builder setStatusCode(int value) {
        bitField0_ |= 0x00000002;
        statusCode_ = value;
        onChanged();
        return this;
      }
      /**
       * optional int32 status_code = 2;
       */
      public Builder clearStatusCode() {
        bitField0_ = (bitField0_ & ~0x00000002);
        statusCode_ = 0;
        onChanged();
        return this;
      }

      private java.lang.Object name_ = "";
      /**
       * optional string name = 3;
       */
      public boolean hasName() {
        return ((bitField0_ & 0x00000004) == 0x00000004);
      }
      /**
       * optional string name = 3;
       */
      public java.lang.String getName() {
        java.lang.Object ref = name_;
        if (!(ref instanceof java.lang.String)) {
          com.google.protobuf.ByteString bs =
              (com.google.protobuf.ByteString) ref;
          java.lang.String s = bs.toStringUtf8();
          if (bs.isValidUtf8()) {
            name_ = s;
          }
          return s;
        } else {
          return (java.lang.String) ref;
        }
      }
      /**
       * optional string name = 3;
       */
      public com.google.protobuf.ByteString
          getNameBytes() {
        java.lang.Object ref = name_;
        if (ref instanceof String) {
          com.google.protobuf.ByteString b = 
              com.google.protobuf.ByteString.copyFromUtf8(
                  (java.lang.String) ref);
          name_ = b;
          return b;
        } else {
          return (com.google.protobuf.ByteString) ref;
        }
      }
      /**
       * optional string name = 3;
       */
      public Builder setName(
          java.lang.String value) {
        if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00000004;
        name_ = value;
        onChanged();
        return this;
      }
      /**
       * optional string name = 3;
       */
      public Builder clearName() {
        bitField0_ = (bitField0_ & ~0x00000004);
        name_ = getDefaultInstance().getName();
        onChanged();
        return this;
      }
      /**
       * optional string name = 3;
       */
      public Builder setNameBytes(
          com.google.protobuf.ByteString value) {
        if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00000004;
        name_ = value;
        onChanged();
        return this;
      }

      private java.lang.Object value_ = "";
      /**
       * optional string value = 4;
       */
      public boolean hasValue() {
        return ((bitField0_ & 0x00000008) == 0x00000008);
      }
      /**
       * optional string value = 4;
       */
      public java.lang.String getValue() {
        java.lang.Object ref = value_;
        if (!(ref instanceof java.lang.String)) {
          com.google.protobuf.ByteString bs =
              (com.google.protobuf.ByteString) ref;
          java.lang.String s = bs.toStringUtf8();
          if (bs.isValidUtf8()) {
            value_ = s;
          }
          return s;
        } else {
          return (java.lang.String) ref;
        }
      }
      /**
       * optional string value = 4;
       */
      public com.google.protobuf.ByteString
          getValueBytes() {
        java.lang.Object ref = value_;
        if (ref instanceof String) {
          com.google.protobuf.ByteString b = 
              com.google.protobuf.ByteString.copyFromUtf8(
                  (java.lang.String) ref);
          value_ = b;
          return b;
        } else {
          return (com.google.protobuf.ByteString) ref;
        }
      }
      /**
       * optional string value = 4;
       */
      public Builder setValue(
          java.lang.String value) {
        if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00000008;
        value_ = value;
        onChanged();
        return this;
      }
      /**
       * optional string value = 4;
       */
      public Builder clearValue() {
        bitField0_ = (bitField0_ & ~0x00000008);
        value_ = getDefaultInstance().getValue();
        onChanged();
        return this;
      }
      /**
       * optional string value = 4;
       */
      public Builder setValueBytes(
          com.google.protobuf.ByteString value) {
        if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00000008;
        value_ = value;
        onChanged();
        return this;
      }

      // @@protoc_insertion_point(builder_scope:CCLCMsg_RespondCvarValue)
    }

    static {
      defaultInstance = new CCLCMsg_RespondCvarValue(true);
      defaultInstance.initFields();
    }

    // @@protoc_insertion_point(class_scope:CCLCMsg_RespondCvarValue)
  }

  public interface CCLCMsg_FileCRCCheckOrBuilder extends
      // @@protoc_insertion_point(interface_extends:CCLCMsg_FileCRCCheck)
      com.google.protobuf.MessageOrBuilder {

    /**
     * optional int32 code_path = 1;
     */
    boolean hasCodePath();
    /**
     * optional int32 code_path = 1;
     */
    int getCodePath();

    /**
     * optional string path = 2;
     */
    boolean hasPath();
    /**
     * optional string path = 2;
     */
    java.lang.String getPath();
    /**
     * optional string path = 2;
     */
    com.google.protobuf.ByteString
        getPathBytes();

    /**
     * optional int32 code_filename = 3;
     */
    boolean hasCodeFilename();
    /**
     * optional int32 code_filename = 3;
     */
    int getCodeFilename();

    /**
     * optional string filename = 4;
     */
    boolean hasFilename();
    /**
     * optional string filename = 4;
     */
    java.lang.String getFilename();
    /**
     * optional string filename = 4;
     */
    com.google.protobuf.ByteString
        getFilenameBytes();

    /**
     * optional fixed32 crc = 5;
     */
    boolean hasCrc();
    /**
     * optional fixed32 crc = 5;
     */
    int getCrc();
  }
  /**
   * Protobuf type {@code CCLCMsg_FileCRCCheck}
   */
  public static final class CCLCMsg_FileCRCCheck extends
      com.google.protobuf.GeneratedMessage implements
      // @@protoc_insertion_point(message_implements:CCLCMsg_FileCRCCheck)
      CCLCMsg_FileCRCCheckOrBuilder {
    // Use CCLCMsg_FileCRCCheck.newBuilder() to construct.
    private CCLCMsg_FileCRCCheck(com.google.protobuf.GeneratedMessage.Builder builder) {
      super(builder);
      this.unknownFields = builder.getUnknownFields();
    }
    private CCLCMsg_FileCRCCheck(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }

    private static final CCLCMsg_FileCRCCheck defaultInstance;
    public static CCLCMsg_FileCRCCheck getDefaultInstance() {
      return defaultInstance;
    }

    public CCLCMsg_FileCRCCheck getDefaultInstanceForType() {
      return defaultInstance;
    }

    private final com.google.protobuf.UnknownFieldSet unknownFields;
    @java.lang.Override
    public final com.google.protobuf.UnknownFieldSet
        getUnknownFields() {
      return this.unknownFields;
    }
    private CCLCMsg_FileCRCCheck(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      initFields();
      int mutable_bitField0_ = 0;
      com.google.protobuf.UnknownFieldSet.Builder unknownFields =
          com.google.protobuf.UnknownFieldSet.newBuilder();
      try {
        boolean done = false;
        while (!done) {
          int tag = input.readTag();
          switch (tag) {
            case 0:
              done = true;
              break;
            default: {
              if (!parseUnknownField(input, unknownFields,
                                     extensionRegistry, tag)) {
                done = true;
              }
              break;
            }
            case 8: {
              bitField0_ |= 0x00000001;
              codePath_ = input.readInt32();
              break;
            }
            case 18: {
              com.google.protobuf.ByteString bs = input.readBytes();
              bitField0_ |= 0x00000002;
              path_ = bs;
              break;
            }
            case 24: {
              bitField0_ |= 0x00000004;
              codeFilename_ = input.readInt32();
              break;
            }
            case 34: {
              com.google.protobuf.ByteString bs = input.readBytes();
              bitField0_ |= 0x00000008;
              filename_ = bs;
              break;
            }
            case 45: {
              bitField0_ |= 0x00000010;
              crc_ = input.readFixed32();
              break;
            }
          }
        }
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        throw e.setUnfinishedMessage(this);
      } catch (java.io.IOException e) {
        throw new com.google.protobuf.InvalidProtocolBufferException(
            e.getMessage()).setUnfinishedMessage(this);
      } finally {
        this.unknownFields = unknownFields.build();
        makeExtensionsImmutable();
      }
    }
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_FileCRCCheck_descriptor;
    }

    protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_FileCRCCheck_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_FileCRCCheck.class, skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_FileCRCCheck.Builder.class);
    }

    public static com.google.protobuf.Parser PARSER =
        new com.google.protobuf.AbstractParser() {
      public CCLCMsg_FileCRCCheck parsePartialFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return new CCLCMsg_FileCRCCheck(input, extensionRegistry);
      }
    };

    @java.lang.Override
    public com.google.protobuf.Parser getParserForType() {
      return PARSER;
    }

    private int bitField0_;
    public static final int CODE_PATH_FIELD_NUMBER = 1;
    private int codePath_;
    /**
     * optional int32 code_path = 1;
     */
    public boolean hasCodePath() {
      return ((bitField0_ & 0x00000001) == 0x00000001);
    }
    /**
     * optional int32 code_path = 1;
     */
    public int getCodePath() {
      return codePath_;
    }

    public static final int PATH_FIELD_NUMBER = 2;
    private java.lang.Object path_;
    /**
     * optional string path = 2;
     */
    public boolean hasPath() {
      return ((bitField0_ & 0x00000002) == 0x00000002);
    }
    /**
     * optional string path = 2;
     */
    public java.lang.String getPath() {
      java.lang.Object ref = path_;
      if (ref instanceof java.lang.String) {
        return (java.lang.String) ref;
      } else {
        com.google.protobuf.ByteString bs = 
            (com.google.protobuf.ByteString) ref;
        java.lang.String s = bs.toStringUtf8();
        if (bs.isValidUtf8()) {
          path_ = s;
        }
        return s;
      }
    }
    /**
     * optional string path = 2;
     */
    public com.google.protobuf.ByteString
        getPathBytes() {
      java.lang.Object ref = path_;
      if (ref instanceof java.lang.String) {
        com.google.protobuf.ByteString b = 
            com.google.protobuf.ByteString.copyFromUtf8(
                (java.lang.String) ref);
        path_ = b;
        return b;
      } else {
        return (com.google.protobuf.ByteString) ref;
      }
    }

    public static final int CODE_FILENAME_FIELD_NUMBER = 3;
    private int codeFilename_;
    /**
     * optional int32 code_filename = 3;
     */
    public boolean hasCodeFilename() {
      return ((bitField0_ & 0x00000004) == 0x00000004);
    }
    /**
     * optional int32 code_filename = 3;
     */
    public int getCodeFilename() {
      return codeFilename_;
    }

    public static final int FILENAME_FIELD_NUMBER = 4;
    private java.lang.Object filename_;
    /**
     * optional string filename = 4;
     */
    public boolean hasFilename() {
      return ((bitField0_ & 0x00000008) == 0x00000008);
    }
    /**
     * optional string filename = 4;
     */
    public java.lang.String getFilename() {
      java.lang.Object ref = filename_;
      if (ref instanceof java.lang.String) {
        return (java.lang.String) ref;
      } else {
        com.google.protobuf.ByteString bs = 
            (com.google.protobuf.ByteString) ref;
        java.lang.String s = bs.toStringUtf8();
        if (bs.isValidUtf8()) {
          filename_ = s;
        }
        return s;
      }
    }
    /**
     * optional string filename = 4;
     */
    public com.google.protobuf.ByteString
        getFilenameBytes() {
      java.lang.Object ref = filename_;
      if (ref instanceof java.lang.String) {
        com.google.protobuf.ByteString b = 
            com.google.protobuf.ByteString.copyFromUtf8(
                (java.lang.String) ref);
        filename_ = b;
        return b;
      } else {
        return (com.google.protobuf.ByteString) ref;
      }
    }

    public static final int CRC_FIELD_NUMBER = 5;
    private int crc_;
    /**
     * optional fixed32 crc = 5;
     */
    public boolean hasCrc() {
      return ((bitField0_ & 0x00000010) == 0x00000010);
    }
    /**
     * optional fixed32 crc = 5;
     */
    public int getCrc() {
      return crc_;
    }

    private void initFields() {
      codePath_ = 0;
      path_ = "";
      codeFilename_ = 0;
      filename_ = "";
      crc_ = 0;
    }
    private byte memoizedIsInitialized = -1;
    public final boolean isInitialized() {
      byte isInitialized = memoizedIsInitialized;
      if (isInitialized == 1) return true;
      if (isInitialized == 0) return false;

      memoizedIsInitialized = 1;
      return true;
    }

    public void writeTo(com.google.protobuf.CodedOutputStream output)
                        throws java.io.IOException {
      getSerializedSize();
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        output.writeInt32(1, codePath_);
      }
      if (((bitField0_ & 0x00000002) == 0x00000002)) {
        output.writeBytes(2, getPathBytes());
      }
      if (((bitField0_ & 0x00000004) == 0x00000004)) {
        output.writeInt32(3, codeFilename_);
      }
      if (((bitField0_ & 0x00000008) == 0x00000008)) {
        output.writeBytes(4, getFilenameBytes());
      }
      if (((bitField0_ & 0x00000010) == 0x00000010)) {
        output.writeFixed32(5, crc_);
      }
      getUnknownFields().writeTo(output);
    }

    private int memoizedSerializedSize = -1;
    public int getSerializedSize() {
      int size = memoizedSerializedSize;
      if (size != -1) return size;

      size = 0;
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        size += com.google.protobuf.CodedOutputStream
          .computeInt32Size(1, codePath_);
      }
      if (((bitField0_ & 0x00000002) == 0x00000002)) {
        size += com.google.protobuf.CodedOutputStream
          .computeBytesSize(2, getPathBytes());
      }
      if (((bitField0_ & 0x00000004) == 0x00000004)) {
        size += com.google.protobuf.CodedOutputStream
          .computeInt32Size(3, codeFilename_);
      }
      if (((bitField0_ & 0x00000008) == 0x00000008)) {
        size += com.google.protobuf.CodedOutputStream
          .computeBytesSize(4, getFilenameBytes());
      }
      if (((bitField0_ & 0x00000010) == 0x00000010)) {
        size += com.google.protobuf.CodedOutputStream
          .computeFixed32Size(5, crc_);
      }
      size += getUnknownFields().getSerializedSize();
      memoizedSerializedSize = size;
      return size;
    }

    private static final long serialVersionUID = 0L;
    @java.lang.Override
    protected java.lang.Object writeReplace()
        throws java.io.ObjectStreamException {
      return super.writeReplace();
    }

    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_FileCRCCheck parseFrom(
        com.google.protobuf.ByteString data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_FileCRCCheck parseFrom(
        com.google.protobuf.ByteString data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_FileCRCCheck parseFrom(byte[] data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_FileCRCCheck parseFrom(
        byte[] data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_FileCRCCheck parseFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_FileCRCCheck parseFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_FileCRCCheck parseDelimitedFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_FileCRCCheck parseDelimitedFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_FileCRCCheck parseFrom(
        com.google.protobuf.CodedInputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_FileCRCCheck parseFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }

    public static Builder newBuilder() { return Builder.create(); }
    public Builder newBuilderForType() { return newBuilder(); }
    public static Builder newBuilder(skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_FileCRCCheck prototype) {
      return newBuilder().mergeFrom(prototype);
    }
    public Builder toBuilder() { return newBuilder(this); }

    @java.lang.Override
    protected Builder newBuilderForType(
        com.google.protobuf.GeneratedMessage.BuilderParent parent) {
      Builder builder = new Builder(parent);
      return builder;
    }
    /**
     * Protobuf type {@code CCLCMsg_FileCRCCheck}
     */
    public static final class Builder extends
        com.google.protobuf.GeneratedMessage.Builder implements
        // @@protoc_insertion_point(builder_implements:CCLCMsg_FileCRCCheck)
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_FileCRCCheckOrBuilder {
      public static final com.google.protobuf.Descriptors.Descriptor
          getDescriptor() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_FileCRCCheck_descriptor;
      }

      protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
          internalGetFieldAccessorTable() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_FileCRCCheck_fieldAccessorTable
            .ensureFieldAccessorsInitialized(
                skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_FileCRCCheck.class, skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_FileCRCCheck.Builder.class);
      }

      // Construct using skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_FileCRCCheck.newBuilder()
      private Builder() {
        maybeForceBuilderInitialization();
      }

      private Builder(
          com.google.protobuf.GeneratedMessage.BuilderParent parent) {
        super(parent);
        maybeForceBuilderInitialization();
      }
      private void maybeForceBuilderInitialization() {
        if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
        }
      }
      private static Builder create() {
        return new Builder();
      }

      public Builder clear() {
        super.clear();
        codePath_ = 0;
        bitField0_ = (bitField0_ & ~0x00000001);
        path_ = "";
        bitField0_ = (bitField0_ & ~0x00000002);
        codeFilename_ = 0;
        bitField0_ = (bitField0_ & ~0x00000004);
        filename_ = "";
        bitField0_ = (bitField0_ & ~0x00000008);
        crc_ = 0;
        bitField0_ = (bitField0_ & ~0x00000010);
        return this;
      }

      public Builder clone() {
        return create().mergeFrom(buildPartial());
      }

      public com.google.protobuf.Descriptors.Descriptor
          getDescriptorForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_FileCRCCheck_descriptor;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_FileCRCCheck getDefaultInstanceForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_FileCRCCheck.getDefaultInstance();
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_FileCRCCheck build() {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_FileCRCCheck result = buildPartial();
        if (!result.isInitialized()) {
          throw newUninitializedMessageException(result);
        }
        return result;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_FileCRCCheck buildPartial() {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_FileCRCCheck result = new skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_FileCRCCheck(this);
        int from_bitField0_ = bitField0_;
        int to_bitField0_ = 0;
        if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
          to_bitField0_ |= 0x00000001;
        }
        result.codePath_ = codePath_;
        if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
          to_bitField0_ |= 0x00000002;
        }
        result.path_ = path_;
        if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
          to_bitField0_ |= 0x00000004;
        }
        result.codeFilename_ = codeFilename_;
        if (((from_bitField0_ & 0x00000008) == 0x00000008)) {
          to_bitField0_ |= 0x00000008;
        }
        result.filename_ = filename_;
        if (((from_bitField0_ & 0x00000010) == 0x00000010)) {
          to_bitField0_ |= 0x00000010;
        }
        result.crc_ = crc_;
        result.bitField0_ = to_bitField0_;
        onBuilt();
        return result;
      }

      public Builder mergeFrom(com.google.protobuf.Message other) {
        if (other instanceof skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_FileCRCCheck) {
          return mergeFrom((skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_FileCRCCheck)other);
        } else {
          super.mergeFrom(other);
          return this;
        }
      }

      public Builder mergeFrom(skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_FileCRCCheck other) {
        if (other == skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_FileCRCCheck.getDefaultInstance()) return this;
        if (other.hasCodePath()) {
          setCodePath(other.getCodePath());
        }
        if (other.hasPath()) {
          bitField0_ |= 0x00000002;
          path_ = other.path_;
          onChanged();
        }
        if (other.hasCodeFilename()) {
          setCodeFilename(other.getCodeFilename());
        }
        if (other.hasFilename()) {
          bitField0_ |= 0x00000008;
          filename_ = other.filename_;
          onChanged();
        }
        if (other.hasCrc()) {
          setCrc(other.getCrc());
        }
        this.mergeUnknownFields(other.getUnknownFields());
        return this;
      }

      public final boolean isInitialized() {
        return true;
      }

      public Builder mergeFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_FileCRCCheck parsedMessage = null;
        try {
          parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
          parsedMessage = (skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_FileCRCCheck) e.getUnfinishedMessage();
          throw e;
        } finally {
          if (parsedMessage != null) {
            mergeFrom(parsedMessage);
          }
        }
        return this;
      }
      private int bitField0_;

      private int codePath_ ;
      /**
       * optional int32 code_path = 1;
       */
      public boolean hasCodePath() {
        return ((bitField0_ & 0x00000001) == 0x00000001);
      }
      /**
       * optional int32 code_path = 1;
       */
      public int getCodePath() {
        return codePath_;
      }
      /**
       * optional int32 code_path = 1;
       */
      public Builder setCodePath(int value) {
        bitField0_ |= 0x00000001;
        codePath_ = value;
        onChanged();
        return this;
      }
      /**
       * optional int32 code_path = 1;
       */
      public Builder clearCodePath() {
        bitField0_ = (bitField0_ & ~0x00000001);
        codePath_ = 0;
        onChanged();
        return this;
      }

      private java.lang.Object path_ = "";
      /**
       * optional string path = 2;
       */
      public boolean hasPath() {
        return ((bitField0_ & 0x00000002) == 0x00000002);
      }
      /**
       * optional string path = 2;
       */
      public java.lang.String getPath() {
        java.lang.Object ref = path_;
        if (!(ref instanceof java.lang.String)) {
          com.google.protobuf.ByteString bs =
              (com.google.protobuf.ByteString) ref;
          java.lang.String s = bs.toStringUtf8();
          if (bs.isValidUtf8()) {
            path_ = s;
          }
          return s;
        } else {
          return (java.lang.String) ref;
        }
      }
      /**
       * optional string path = 2;
       */
      public com.google.protobuf.ByteString
          getPathBytes() {
        java.lang.Object ref = path_;
        if (ref instanceof String) {
          com.google.protobuf.ByteString b = 
              com.google.protobuf.ByteString.copyFromUtf8(
                  (java.lang.String) ref);
          path_ = b;
          return b;
        } else {
          return (com.google.protobuf.ByteString) ref;
        }
      }
      /**
       * optional string path = 2;
       */
      public Builder setPath(
          java.lang.String value) {
        if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00000002;
        path_ = value;
        onChanged();
        return this;
      }
      /**
       * optional string path = 2;
       */
      public Builder clearPath() {
        bitField0_ = (bitField0_ & ~0x00000002);
        path_ = getDefaultInstance().getPath();
        onChanged();
        return this;
      }
      /**
       * optional string path = 2;
       */
      public Builder setPathBytes(
          com.google.protobuf.ByteString value) {
        if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00000002;
        path_ = value;
        onChanged();
        return this;
      }

      private int codeFilename_ ;
      /**
       * optional int32 code_filename = 3;
       */
      public boolean hasCodeFilename() {
        return ((bitField0_ & 0x00000004) == 0x00000004);
      }
      /**
       * optional int32 code_filename = 3;
       */
      public int getCodeFilename() {
        return codeFilename_;
      }
      /**
       * optional int32 code_filename = 3;
       */
      public Builder setCodeFilename(int value) {
        bitField0_ |= 0x00000004;
        codeFilename_ = value;
        onChanged();
        return this;
      }
      /**
       * optional int32 code_filename = 3;
       */
      public Builder clearCodeFilename() {
        bitField0_ = (bitField0_ & ~0x00000004);
        codeFilename_ = 0;
        onChanged();
        return this;
      }

      private java.lang.Object filename_ = "";
      /**
       * optional string filename = 4;
       */
      public boolean hasFilename() {
        return ((bitField0_ & 0x00000008) == 0x00000008);
      }
      /**
       * optional string filename = 4;
       */
      public java.lang.String getFilename() {
        java.lang.Object ref = filename_;
        if (!(ref instanceof java.lang.String)) {
          com.google.protobuf.ByteString bs =
              (com.google.protobuf.ByteString) ref;
          java.lang.String s = bs.toStringUtf8();
          if (bs.isValidUtf8()) {
            filename_ = s;
          }
          return s;
        } else {
          return (java.lang.String) ref;
        }
      }
      /**
       * optional string filename = 4;
       */
      public com.google.protobuf.ByteString
          getFilenameBytes() {
        java.lang.Object ref = filename_;
        if (ref instanceof String) {
          com.google.protobuf.ByteString b = 
              com.google.protobuf.ByteString.copyFromUtf8(
                  (java.lang.String) ref);
          filename_ = b;
          return b;
        } else {
          return (com.google.protobuf.ByteString) ref;
        }
      }
      /**
       * optional string filename = 4;
       */
      public Builder setFilename(
          java.lang.String value) {
        if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00000008;
        filename_ = value;
        onChanged();
        return this;
      }
      /**
       * optional string filename = 4;
       */
      public Builder clearFilename() {
        bitField0_ = (bitField0_ & ~0x00000008);
        filename_ = getDefaultInstance().getFilename();
        onChanged();
        return this;
      }
      /**
       * optional string filename = 4;
       */
      public Builder setFilenameBytes(
          com.google.protobuf.ByteString value) {
        if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00000008;
        filename_ = value;
        onChanged();
        return this;
      }

      private int crc_ ;
      /**
       * optional fixed32 crc = 5;
       */
      public boolean hasCrc() {
        return ((bitField0_ & 0x00000010) == 0x00000010);
      }
      /**
       * optional fixed32 crc = 5;
       */
      public int getCrc() {
        return crc_;
      }
      /**
       * optional fixed32 crc = 5;
       */
      public Builder setCrc(int value) {
        bitField0_ |= 0x00000010;
        crc_ = value;
        onChanged();
        return this;
      }
      /**
       * optional fixed32 crc = 5;
       */
      public Builder clearCrc() {
        bitField0_ = (bitField0_ & ~0x00000010);
        crc_ = 0;
        onChanged();
        return this;
      }

      // @@protoc_insertion_point(builder_scope:CCLCMsg_FileCRCCheck)
    }

    static {
      defaultInstance = new CCLCMsg_FileCRCCheck(true);
      defaultInstance.initFields();
    }

    // @@protoc_insertion_point(class_scope:CCLCMsg_FileCRCCheck)
  }

  public interface CCLCMsg_LoadingProgressOrBuilder extends
      // @@protoc_insertion_point(interface_extends:CCLCMsg_LoadingProgress)
      com.google.protobuf.MessageOrBuilder {

    /**
     * optional int32 progress = 1;
     */
    boolean hasProgress();
    /**
     * optional int32 progress = 1;
     */
    int getProgress();
  }
  /**
   * Protobuf type {@code CCLCMsg_LoadingProgress}
   */
  public static final class CCLCMsg_LoadingProgress extends
      com.google.protobuf.GeneratedMessage implements
      // @@protoc_insertion_point(message_implements:CCLCMsg_LoadingProgress)
      CCLCMsg_LoadingProgressOrBuilder {
    // Use CCLCMsg_LoadingProgress.newBuilder() to construct.
    private CCLCMsg_LoadingProgress(com.google.protobuf.GeneratedMessage.Builder builder) {
      super(builder);
      this.unknownFields = builder.getUnknownFields();
    }
    private CCLCMsg_LoadingProgress(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }

    private static final CCLCMsg_LoadingProgress defaultInstance;
    public static CCLCMsg_LoadingProgress getDefaultInstance() {
      return defaultInstance;
    }

    public CCLCMsg_LoadingProgress getDefaultInstanceForType() {
      return defaultInstance;
    }

    private final com.google.protobuf.UnknownFieldSet unknownFields;
    @java.lang.Override
    public final com.google.protobuf.UnknownFieldSet
        getUnknownFields() {
      return this.unknownFields;
    }
    private CCLCMsg_LoadingProgress(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      initFields();
      int mutable_bitField0_ = 0;
      com.google.protobuf.UnknownFieldSet.Builder unknownFields =
          com.google.protobuf.UnknownFieldSet.newBuilder();
      try {
        boolean done = false;
        while (!done) {
          int tag = input.readTag();
          switch (tag) {
            case 0:
              done = true;
              break;
            default: {
              if (!parseUnknownField(input, unknownFields,
                                     extensionRegistry, tag)) {
                done = true;
              }
              break;
            }
            case 8: {
              bitField0_ |= 0x00000001;
              progress_ = input.readInt32();
              break;
            }
          }
        }
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        throw e.setUnfinishedMessage(this);
      } catch (java.io.IOException e) {
        throw new com.google.protobuf.InvalidProtocolBufferException(
            e.getMessage()).setUnfinishedMessage(this);
      } finally {
        this.unknownFields = unknownFields.build();
        makeExtensionsImmutable();
      }
    }
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_LoadingProgress_descriptor;
    }

    protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_LoadingProgress_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_LoadingProgress.class, skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_LoadingProgress.Builder.class);
    }

    public static com.google.protobuf.Parser PARSER =
        new com.google.protobuf.AbstractParser() {
      public CCLCMsg_LoadingProgress parsePartialFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return new CCLCMsg_LoadingProgress(input, extensionRegistry);
      }
    };

    @java.lang.Override
    public com.google.protobuf.Parser getParserForType() {
      return PARSER;
    }

    private int bitField0_;
    public static final int PROGRESS_FIELD_NUMBER = 1;
    private int progress_;
    /**
     * optional int32 progress = 1;
     */
    public boolean hasProgress() {
      return ((bitField0_ & 0x00000001) == 0x00000001);
    }
    /**
     * optional int32 progress = 1;
     */
    public int getProgress() {
      return progress_;
    }

    private void initFields() {
      progress_ = 0;
    }
    private byte memoizedIsInitialized = -1;
    public final boolean isInitialized() {
      byte isInitialized = memoizedIsInitialized;
      if (isInitialized == 1) return true;
      if (isInitialized == 0) return false;

      memoizedIsInitialized = 1;
      return true;
    }

    public void writeTo(com.google.protobuf.CodedOutputStream output)
                        throws java.io.IOException {
      getSerializedSize();
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        output.writeInt32(1, progress_);
      }
      getUnknownFields().writeTo(output);
    }

    private int memoizedSerializedSize = -1;
    public int getSerializedSize() {
      int size = memoizedSerializedSize;
      if (size != -1) return size;

      size = 0;
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        size += com.google.protobuf.CodedOutputStream
          .computeInt32Size(1, progress_);
      }
      size += getUnknownFields().getSerializedSize();
      memoizedSerializedSize = size;
      return size;
    }

    private static final long serialVersionUID = 0L;
    @java.lang.Override
    protected java.lang.Object writeReplace()
        throws java.io.ObjectStreamException {
      return super.writeReplace();
    }

    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_LoadingProgress parseFrom(
        com.google.protobuf.ByteString data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_LoadingProgress parseFrom(
        com.google.protobuf.ByteString data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_LoadingProgress parseFrom(byte[] data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_LoadingProgress parseFrom(
        byte[] data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_LoadingProgress parseFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_LoadingProgress parseFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_LoadingProgress parseDelimitedFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_LoadingProgress parseDelimitedFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_LoadingProgress parseFrom(
        com.google.protobuf.CodedInputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_LoadingProgress parseFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }

    public static Builder newBuilder() { return Builder.create(); }
    public Builder newBuilderForType() { return newBuilder(); }
    public static Builder newBuilder(skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_LoadingProgress prototype) {
      return newBuilder().mergeFrom(prototype);
    }
    public Builder toBuilder() { return newBuilder(this); }

    @java.lang.Override
    protected Builder newBuilderForType(
        com.google.protobuf.GeneratedMessage.BuilderParent parent) {
      Builder builder = new Builder(parent);
      return builder;
    }
    /**
     * Protobuf type {@code CCLCMsg_LoadingProgress}
     */
    public static final class Builder extends
        com.google.protobuf.GeneratedMessage.Builder implements
        // @@protoc_insertion_point(builder_implements:CCLCMsg_LoadingProgress)
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_LoadingProgressOrBuilder {
      public static final com.google.protobuf.Descriptors.Descriptor
          getDescriptor() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_LoadingProgress_descriptor;
      }

      protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
          internalGetFieldAccessorTable() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_LoadingProgress_fieldAccessorTable
            .ensureFieldAccessorsInitialized(
                skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_LoadingProgress.class, skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_LoadingProgress.Builder.class);
      }

      // Construct using skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_LoadingProgress.newBuilder()
      private Builder() {
        maybeForceBuilderInitialization();
      }

      private Builder(
          com.google.protobuf.GeneratedMessage.BuilderParent parent) {
        super(parent);
        maybeForceBuilderInitialization();
      }
      private void maybeForceBuilderInitialization() {
        if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
        }
      }
      private static Builder create() {
        return new Builder();
      }

      public Builder clear() {
        super.clear();
        progress_ = 0;
        bitField0_ = (bitField0_ & ~0x00000001);
        return this;
      }

      public Builder clone() {
        return create().mergeFrom(buildPartial());
      }

      public com.google.protobuf.Descriptors.Descriptor
          getDescriptorForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_LoadingProgress_descriptor;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_LoadingProgress getDefaultInstanceForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_LoadingProgress.getDefaultInstance();
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_LoadingProgress build() {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_LoadingProgress result = buildPartial();
        if (!result.isInitialized()) {
          throw newUninitializedMessageException(result);
        }
        return result;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_LoadingProgress buildPartial() {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_LoadingProgress result = new skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_LoadingProgress(this);
        int from_bitField0_ = bitField0_;
        int to_bitField0_ = 0;
        if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
          to_bitField0_ |= 0x00000001;
        }
        result.progress_ = progress_;
        result.bitField0_ = to_bitField0_;
        onBuilt();
        return result;
      }

      public Builder mergeFrom(com.google.protobuf.Message other) {
        if (other instanceof skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_LoadingProgress) {
          return mergeFrom((skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_LoadingProgress)other);
        } else {
          super.mergeFrom(other);
          return this;
        }
      }

      public Builder mergeFrom(skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_LoadingProgress other) {
        if (other == skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_LoadingProgress.getDefaultInstance()) return this;
        if (other.hasProgress()) {
          setProgress(other.getProgress());
        }
        this.mergeUnknownFields(other.getUnknownFields());
        return this;
      }

      public final boolean isInitialized() {
        return true;
      }

      public Builder mergeFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_LoadingProgress parsedMessage = null;
        try {
          parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
          parsedMessage = (skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_LoadingProgress) e.getUnfinishedMessage();
          throw e;
        } finally {
          if (parsedMessage != null) {
            mergeFrom(parsedMessage);
          }
        }
        return this;
      }
      private int bitField0_;

      private int progress_ ;
      /**
       * optional int32 progress = 1;
       */
      public boolean hasProgress() {
        return ((bitField0_ & 0x00000001) == 0x00000001);
      }
      /**
       * optional int32 progress = 1;
       */
      public int getProgress() {
        return progress_;
      }
      /**
       * optional int32 progress = 1;
       */
      public Builder setProgress(int value) {
        bitField0_ |= 0x00000001;
        progress_ = value;
        onChanged();
        return this;
      }
      /**
       * optional int32 progress = 1;
       */
      public Builder clearProgress() {
        bitField0_ = (bitField0_ & ~0x00000001);
        progress_ = 0;
        onChanged();
        return this;
      }

      // @@protoc_insertion_point(builder_scope:CCLCMsg_LoadingProgress)
    }

    static {
      defaultInstance = new CCLCMsg_LoadingProgress(true);
      defaultInstance.initFields();
    }

    // @@protoc_insertion_point(class_scope:CCLCMsg_LoadingProgress)
  }

  public interface CCLCMsg_SplitPlayerConnectOrBuilder extends
      // @@protoc_insertion_point(interface_extends:CCLCMsg_SplitPlayerConnect)
      com.google.protobuf.MessageOrBuilder {

    /**
     * optional string playername = 1;
     */
    boolean hasPlayername();
    /**
     * optional string playername = 1;
     */
    java.lang.String getPlayername();
    /**
     * optional string playername = 1;
     */
    com.google.protobuf.ByteString
        getPlayernameBytes();
  }
  /**
   * Protobuf type {@code CCLCMsg_SplitPlayerConnect}
   */
  public static final class CCLCMsg_SplitPlayerConnect extends
      com.google.protobuf.GeneratedMessage implements
      // @@protoc_insertion_point(message_implements:CCLCMsg_SplitPlayerConnect)
      CCLCMsg_SplitPlayerConnectOrBuilder {
    // Use CCLCMsg_SplitPlayerConnect.newBuilder() to construct.
    private CCLCMsg_SplitPlayerConnect(com.google.protobuf.GeneratedMessage.Builder builder) {
      super(builder);
      this.unknownFields = builder.getUnknownFields();
    }
    private CCLCMsg_SplitPlayerConnect(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }

    private static final CCLCMsg_SplitPlayerConnect defaultInstance;
    public static CCLCMsg_SplitPlayerConnect getDefaultInstance() {
      return defaultInstance;
    }

    public CCLCMsg_SplitPlayerConnect getDefaultInstanceForType() {
      return defaultInstance;
    }

    private final com.google.protobuf.UnknownFieldSet unknownFields;
    @java.lang.Override
    public final com.google.protobuf.UnknownFieldSet
        getUnknownFields() {
      return this.unknownFields;
    }
    private CCLCMsg_SplitPlayerConnect(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      initFields();
      int mutable_bitField0_ = 0;
      com.google.protobuf.UnknownFieldSet.Builder unknownFields =
          com.google.protobuf.UnknownFieldSet.newBuilder();
      try {
        boolean done = false;
        while (!done) {
          int tag = input.readTag();
          switch (tag) {
            case 0:
              done = true;
              break;
            default: {
              if (!parseUnknownField(input, unknownFields,
                                     extensionRegistry, tag)) {
                done = true;
              }
              break;
            }
            case 10: {
              com.google.protobuf.ByteString bs = input.readBytes();
              bitField0_ |= 0x00000001;
              playername_ = bs;
              break;
            }
          }
        }
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        throw e.setUnfinishedMessage(this);
      } catch (java.io.IOException e) {
        throw new com.google.protobuf.InvalidProtocolBufferException(
            e.getMessage()).setUnfinishedMessage(this);
      } finally {
        this.unknownFields = unknownFields.build();
        makeExtensionsImmutable();
      }
    }
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_SplitPlayerConnect_descriptor;
    }

    protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_SplitPlayerConnect_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerConnect.class, skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerConnect.Builder.class);
    }

    public static com.google.protobuf.Parser PARSER =
        new com.google.protobuf.AbstractParser() {
      public CCLCMsg_SplitPlayerConnect parsePartialFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return new CCLCMsg_SplitPlayerConnect(input, extensionRegistry);
      }
    };

    @java.lang.Override
    public com.google.protobuf.Parser getParserForType() {
      return PARSER;
    }

    private int bitField0_;
    public static final int PLAYERNAME_FIELD_NUMBER = 1;
    private java.lang.Object playername_;
    /**
     * optional string playername = 1;
     */
    public boolean hasPlayername() {
      return ((bitField0_ & 0x00000001) == 0x00000001);
    }
    /**
     * optional string playername = 1;
     */
    public java.lang.String getPlayername() {
      java.lang.Object ref = playername_;
      if (ref instanceof java.lang.String) {
        return (java.lang.String) ref;
      } else {
        com.google.protobuf.ByteString bs = 
            (com.google.protobuf.ByteString) ref;
        java.lang.String s = bs.toStringUtf8();
        if (bs.isValidUtf8()) {
          playername_ = s;
        }
        return s;
      }
    }
    /**
     * optional string playername = 1;
     */
    public com.google.protobuf.ByteString
        getPlayernameBytes() {
      java.lang.Object ref = playername_;
      if (ref instanceof java.lang.String) {
        com.google.protobuf.ByteString b = 
            com.google.protobuf.ByteString.copyFromUtf8(
                (java.lang.String) ref);
        playername_ = b;
        return b;
      } else {
        return (com.google.protobuf.ByteString) ref;
      }
    }

    private void initFields() {
      playername_ = "";
    }
    private byte memoizedIsInitialized = -1;
    public final boolean isInitialized() {
      byte isInitialized = memoizedIsInitialized;
      if (isInitialized == 1) return true;
      if (isInitialized == 0) return false;

      memoizedIsInitialized = 1;
      return true;
    }

    public void writeTo(com.google.protobuf.CodedOutputStream output)
                        throws java.io.IOException {
      getSerializedSize();
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        output.writeBytes(1, getPlayernameBytes());
      }
      getUnknownFields().writeTo(output);
    }

    private int memoizedSerializedSize = -1;
    public int getSerializedSize() {
      int size = memoizedSerializedSize;
      if (size != -1) return size;

      size = 0;
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        size += com.google.protobuf.CodedOutputStream
          .computeBytesSize(1, getPlayernameBytes());
      }
      size += getUnknownFields().getSerializedSize();
      memoizedSerializedSize = size;
      return size;
    }

    private static final long serialVersionUID = 0L;
    @java.lang.Override
    protected java.lang.Object writeReplace()
        throws java.io.ObjectStreamException {
      return super.writeReplace();
    }

    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerConnect parseFrom(
        com.google.protobuf.ByteString data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerConnect parseFrom(
        com.google.protobuf.ByteString data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerConnect parseFrom(byte[] data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerConnect parseFrom(
        byte[] data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerConnect parseFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerConnect parseFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerConnect parseDelimitedFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerConnect parseDelimitedFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerConnect parseFrom(
        com.google.protobuf.CodedInputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerConnect parseFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }

    public static Builder newBuilder() { return Builder.create(); }
    public Builder newBuilderForType() { return newBuilder(); }
    public static Builder newBuilder(skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerConnect prototype) {
      return newBuilder().mergeFrom(prototype);
    }
    public Builder toBuilder() { return newBuilder(this); }

    @java.lang.Override
    protected Builder newBuilderForType(
        com.google.protobuf.GeneratedMessage.BuilderParent parent) {
      Builder builder = new Builder(parent);
      return builder;
    }
    /**
     * Protobuf type {@code CCLCMsg_SplitPlayerConnect}
     */
    public static final class Builder extends
        com.google.protobuf.GeneratedMessage.Builder implements
        // @@protoc_insertion_point(builder_implements:CCLCMsg_SplitPlayerConnect)
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerConnectOrBuilder {
      public static final com.google.protobuf.Descriptors.Descriptor
          getDescriptor() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_SplitPlayerConnect_descriptor;
      }

      protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
          internalGetFieldAccessorTable() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_SplitPlayerConnect_fieldAccessorTable
            .ensureFieldAccessorsInitialized(
                skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerConnect.class, skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerConnect.Builder.class);
      }

      // Construct using skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerConnect.newBuilder()
      private Builder() {
        maybeForceBuilderInitialization();
      }

      private Builder(
          com.google.protobuf.GeneratedMessage.BuilderParent parent) {
        super(parent);
        maybeForceBuilderInitialization();
      }
      private void maybeForceBuilderInitialization() {
        if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
        }
      }
      private static Builder create() {
        return new Builder();
      }

      public Builder clear() {
        super.clear();
        playername_ = "";
        bitField0_ = (bitField0_ & ~0x00000001);
        return this;
      }

      public Builder clone() {
        return create().mergeFrom(buildPartial());
      }

      public com.google.protobuf.Descriptors.Descriptor
          getDescriptorForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_SplitPlayerConnect_descriptor;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerConnect getDefaultInstanceForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerConnect.getDefaultInstance();
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerConnect build() {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerConnect result = buildPartial();
        if (!result.isInitialized()) {
          throw newUninitializedMessageException(result);
        }
        return result;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerConnect buildPartial() {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerConnect result = new skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerConnect(this);
        int from_bitField0_ = bitField0_;
        int to_bitField0_ = 0;
        if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
          to_bitField0_ |= 0x00000001;
        }
        result.playername_ = playername_;
        result.bitField0_ = to_bitField0_;
        onBuilt();
        return result;
      }

      public Builder mergeFrom(com.google.protobuf.Message other) {
        if (other instanceof skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerConnect) {
          return mergeFrom((skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerConnect)other);
        } else {
          super.mergeFrom(other);
          return this;
        }
      }

      public Builder mergeFrom(skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerConnect other) {
        if (other == skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerConnect.getDefaultInstance()) return this;
        if (other.hasPlayername()) {
          bitField0_ |= 0x00000001;
          playername_ = other.playername_;
          onChanged();
        }
        this.mergeUnknownFields(other.getUnknownFields());
        return this;
      }

      public final boolean isInitialized() {
        return true;
      }

      public Builder mergeFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerConnect parsedMessage = null;
        try {
          parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
          parsedMessage = (skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerConnect) e.getUnfinishedMessage();
          throw e;
        } finally {
          if (parsedMessage != null) {
            mergeFrom(parsedMessage);
          }
        }
        return this;
      }
      private int bitField0_;

      private java.lang.Object playername_ = "";
      /**
       * optional string playername = 1;
       */
      public boolean hasPlayername() {
        return ((bitField0_ & 0x00000001) == 0x00000001);
      }
      /**
       * optional string playername = 1;
       */
      public java.lang.String getPlayername() {
        java.lang.Object ref = playername_;
        if (!(ref instanceof java.lang.String)) {
          com.google.protobuf.ByteString bs =
              (com.google.protobuf.ByteString) ref;
          java.lang.String s = bs.toStringUtf8();
          if (bs.isValidUtf8()) {
            playername_ = s;
          }
          return s;
        } else {
          return (java.lang.String) ref;
        }
      }
      /**
       * optional string playername = 1;
       */
      public com.google.protobuf.ByteString
          getPlayernameBytes() {
        java.lang.Object ref = playername_;
        if (ref instanceof String) {
          com.google.protobuf.ByteString b = 
              com.google.protobuf.ByteString.copyFromUtf8(
                  (java.lang.String) ref);
          playername_ = b;
          return b;
        } else {
          return (com.google.protobuf.ByteString) ref;
        }
      }
      /**
       * optional string playername = 1;
       */
      public Builder setPlayername(
          java.lang.String value) {
        if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00000001;
        playername_ = value;
        onChanged();
        return this;
      }
      /**
       * optional string playername = 1;
       */
      public Builder clearPlayername() {
        bitField0_ = (bitField0_ & ~0x00000001);
        playername_ = getDefaultInstance().getPlayername();
        onChanged();
        return this;
      }
      /**
       * optional string playername = 1;
       */
      public Builder setPlayernameBytes(
          com.google.protobuf.ByteString value) {
        if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00000001;
        playername_ = value;
        onChanged();
        return this;
      }

      // @@protoc_insertion_point(builder_scope:CCLCMsg_SplitPlayerConnect)
    }

    static {
      defaultInstance = new CCLCMsg_SplitPlayerConnect(true);
      defaultInstance.initFields();
    }

    // @@protoc_insertion_point(class_scope:CCLCMsg_SplitPlayerConnect)
  }

  public interface CCLCMsg_ClientMessageOrBuilder extends
      // @@protoc_insertion_point(interface_extends:CCLCMsg_ClientMessage)
      com.google.protobuf.MessageOrBuilder {

    /**
     * optional int32 msg_type = 1;
     */
    boolean hasMsgType();
    /**
     * optional int32 msg_type = 1;
     */
    int getMsgType();

    /**
     * optional bytes data = 2;
     */
    boolean hasData();
    /**
     * optional bytes data = 2;
     */
    com.google.protobuf.ByteString getData();
  }
  /**
   * Protobuf type {@code CCLCMsg_ClientMessage}
   */
  public static final class CCLCMsg_ClientMessage extends
      com.google.protobuf.GeneratedMessage implements
      // @@protoc_insertion_point(message_implements:CCLCMsg_ClientMessage)
      CCLCMsg_ClientMessageOrBuilder {
    // Use CCLCMsg_ClientMessage.newBuilder() to construct.
    private CCLCMsg_ClientMessage(com.google.protobuf.GeneratedMessage.Builder builder) {
      super(builder);
      this.unknownFields = builder.getUnknownFields();
    }
    private CCLCMsg_ClientMessage(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }

    private static final CCLCMsg_ClientMessage defaultInstance;
    public static CCLCMsg_ClientMessage getDefaultInstance() {
      return defaultInstance;
    }

    public CCLCMsg_ClientMessage getDefaultInstanceForType() {
      return defaultInstance;
    }

    private final com.google.protobuf.UnknownFieldSet unknownFields;
    @java.lang.Override
    public final com.google.protobuf.UnknownFieldSet
        getUnknownFields() {
      return this.unknownFields;
    }
    private CCLCMsg_ClientMessage(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      initFields();
      int mutable_bitField0_ = 0;
      com.google.protobuf.UnknownFieldSet.Builder unknownFields =
          com.google.protobuf.UnknownFieldSet.newBuilder();
      try {
        boolean done = false;
        while (!done) {
          int tag = input.readTag();
          switch (tag) {
            case 0:
              done = true;
              break;
            default: {
              if (!parseUnknownField(input, unknownFields,
                                     extensionRegistry, tag)) {
                done = true;
              }
              break;
            }
            case 8: {
              bitField0_ |= 0x00000001;
              msgType_ = input.readInt32();
              break;
            }
            case 18: {
              bitField0_ |= 0x00000002;
              data_ = input.readBytes();
              break;
            }
          }
        }
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        throw e.setUnfinishedMessage(this);
      } catch (java.io.IOException e) {
        throw new com.google.protobuf.InvalidProtocolBufferException(
            e.getMessage()).setUnfinishedMessage(this);
      } finally {
        this.unknownFields = unknownFields.build();
        makeExtensionsImmutable();
      }
    }
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_ClientMessage_descriptor;
    }

    protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_ClientMessage_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientMessage.class, skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientMessage.Builder.class);
    }

    public static com.google.protobuf.Parser PARSER =
        new com.google.protobuf.AbstractParser() {
      public CCLCMsg_ClientMessage parsePartialFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return new CCLCMsg_ClientMessage(input, extensionRegistry);
      }
    };

    @java.lang.Override
    public com.google.protobuf.Parser getParserForType() {
      return PARSER;
    }

    private int bitField0_;
    public static final int MSG_TYPE_FIELD_NUMBER = 1;
    private int msgType_;
    /**
     * optional int32 msg_type = 1;
     */
    public boolean hasMsgType() {
      return ((bitField0_ & 0x00000001) == 0x00000001);
    }
    /**
     * optional int32 msg_type = 1;
     */
    public int getMsgType() {
      return msgType_;
    }

    public static final int DATA_FIELD_NUMBER = 2;
    private com.google.protobuf.ByteString data_;
    /**
     * optional bytes data = 2;
     */
    public boolean hasData() {
      return ((bitField0_ & 0x00000002) == 0x00000002);
    }
    /**
     * optional bytes data = 2;
     */
    public com.google.protobuf.ByteString getData() {
      return data_;
    }

    private void initFields() {
      msgType_ = 0;
      data_ = com.google.protobuf.ByteString.EMPTY;
    }
    private byte memoizedIsInitialized = -1;
    public final boolean isInitialized() {
      byte isInitialized = memoizedIsInitialized;
      if (isInitialized == 1) return true;
      if (isInitialized == 0) return false;

      memoizedIsInitialized = 1;
      return true;
    }

    public void writeTo(com.google.protobuf.CodedOutputStream output)
                        throws java.io.IOException {
      getSerializedSize();
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        output.writeInt32(1, msgType_);
      }
      if (((bitField0_ & 0x00000002) == 0x00000002)) {
        output.writeBytes(2, data_);
      }
      getUnknownFields().writeTo(output);
    }

    private int memoizedSerializedSize = -1;
    public int getSerializedSize() {
      int size = memoizedSerializedSize;
      if (size != -1) return size;

      size = 0;
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        size += com.google.protobuf.CodedOutputStream
          .computeInt32Size(1, msgType_);
      }
      if (((bitField0_ & 0x00000002) == 0x00000002)) {
        size += com.google.protobuf.CodedOutputStream
          .computeBytesSize(2, data_);
      }
      size += getUnknownFields().getSerializedSize();
      memoizedSerializedSize = size;
      return size;
    }

    private static final long serialVersionUID = 0L;
    @java.lang.Override
    protected java.lang.Object writeReplace()
        throws java.io.ObjectStreamException {
      return super.writeReplace();
    }

    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientMessage parseFrom(
        com.google.protobuf.ByteString data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientMessage parseFrom(
        com.google.protobuf.ByteString data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientMessage parseFrom(byte[] data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientMessage parseFrom(
        byte[] data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientMessage parseFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientMessage parseFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientMessage parseDelimitedFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientMessage parseDelimitedFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientMessage parseFrom(
        com.google.protobuf.CodedInputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientMessage parseFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }

    public static Builder newBuilder() { return Builder.create(); }
    public Builder newBuilderForType() { return newBuilder(); }
    public static Builder newBuilder(skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientMessage prototype) {
      return newBuilder().mergeFrom(prototype);
    }
    public Builder toBuilder() { return newBuilder(this); }

    @java.lang.Override
    protected Builder newBuilderForType(
        com.google.protobuf.GeneratedMessage.BuilderParent parent) {
      Builder builder = new Builder(parent);
      return builder;
    }
    /**
     * Protobuf type {@code CCLCMsg_ClientMessage}
     */
    public static final class Builder extends
        com.google.protobuf.GeneratedMessage.Builder implements
        // @@protoc_insertion_point(builder_implements:CCLCMsg_ClientMessage)
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientMessageOrBuilder {
      public static final com.google.protobuf.Descriptors.Descriptor
          getDescriptor() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_ClientMessage_descriptor;
      }

      protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
          internalGetFieldAccessorTable() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_ClientMessage_fieldAccessorTable
            .ensureFieldAccessorsInitialized(
                skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientMessage.class, skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientMessage.Builder.class);
      }

      // Construct using skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientMessage.newBuilder()
      private Builder() {
        maybeForceBuilderInitialization();
      }

      private Builder(
          com.google.protobuf.GeneratedMessage.BuilderParent parent) {
        super(parent);
        maybeForceBuilderInitialization();
      }
      private void maybeForceBuilderInitialization() {
        if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
        }
      }
      private static Builder create() {
        return new Builder();
      }

      public Builder clear() {
        super.clear();
        msgType_ = 0;
        bitField0_ = (bitField0_ & ~0x00000001);
        data_ = com.google.protobuf.ByteString.EMPTY;
        bitField0_ = (bitField0_ & ~0x00000002);
        return this;
      }

      public Builder clone() {
        return create().mergeFrom(buildPartial());
      }

      public com.google.protobuf.Descriptors.Descriptor
          getDescriptorForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_ClientMessage_descriptor;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientMessage getDefaultInstanceForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientMessage.getDefaultInstance();
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientMessage build() {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientMessage result = buildPartial();
        if (!result.isInitialized()) {
          throw newUninitializedMessageException(result);
        }
        return result;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientMessage buildPartial() {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientMessage result = new skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientMessage(this);
        int from_bitField0_ = bitField0_;
        int to_bitField0_ = 0;
        if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
          to_bitField0_ |= 0x00000001;
        }
        result.msgType_ = msgType_;
        if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
          to_bitField0_ |= 0x00000002;
        }
        result.data_ = data_;
        result.bitField0_ = to_bitField0_;
        onBuilt();
        return result;
      }

      public Builder mergeFrom(com.google.protobuf.Message other) {
        if (other instanceof skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientMessage) {
          return mergeFrom((skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientMessage)other);
        } else {
          super.mergeFrom(other);
          return this;
        }
      }

      public Builder mergeFrom(skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientMessage other) {
        if (other == skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientMessage.getDefaultInstance()) return this;
        if (other.hasMsgType()) {
          setMsgType(other.getMsgType());
        }
        if (other.hasData()) {
          setData(other.getData());
        }
        this.mergeUnknownFields(other.getUnknownFields());
        return this;
      }

      public final boolean isInitialized() {
        return true;
      }

      public Builder mergeFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientMessage parsedMessage = null;
        try {
          parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
          parsedMessage = (skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ClientMessage) e.getUnfinishedMessage();
          throw e;
        } finally {
          if (parsedMessage != null) {
            mergeFrom(parsedMessage);
          }
        }
        return this;
      }
      private int bitField0_;

      private int msgType_ ;
      /**
       * optional int32 msg_type = 1;
       */
      public boolean hasMsgType() {
        return ((bitField0_ & 0x00000001) == 0x00000001);
      }
      /**
       * optional int32 msg_type = 1;
       */
      public int getMsgType() {
        return msgType_;
      }
      /**
       * optional int32 msg_type = 1;
       */
      public Builder setMsgType(int value) {
        bitField0_ |= 0x00000001;
        msgType_ = value;
        onChanged();
        return this;
      }
      /**
       * optional int32 msg_type = 1;
       */
      public Builder clearMsgType() {
        bitField0_ = (bitField0_ & ~0x00000001);
        msgType_ = 0;
        onChanged();
        return this;
      }

      private com.google.protobuf.ByteString data_ = com.google.protobuf.ByteString.EMPTY;
      /**
       * optional bytes data = 2;
       */
      public boolean hasData() {
        return ((bitField0_ & 0x00000002) == 0x00000002);
      }
      /**
       * optional bytes data = 2;
       */
      public com.google.protobuf.ByteString getData() {
        return data_;
      }
      /**
       * optional bytes data = 2;
       */
      public Builder setData(com.google.protobuf.ByteString value) {
        if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00000002;
        data_ = value;
        onChanged();
        return this;
      }
      /**
       * optional bytes data = 2;
       */
      public Builder clearData() {
        bitField0_ = (bitField0_ & ~0x00000002);
        data_ = getDefaultInstance().getData();
        onChanged();
        return this;
      }

      // @@protoc_insertion_point(builder_scope:CCLCMsg_ClientMessage)
    }

    static {
      defaultInstance = new CCLCMsg_ClientMessage(true);
      defaultInstance.initFields();
    }

    // @@protoc_insertion_point(class_scope:CCLCMsg_ClientMessage)
  }

  public interface CCLCMsg_SplitPlayerDisconnectOrBuilder extends
      // @@protoc_insertion_point(interface_extends:CCLCMsg_SplitPlayerDisconnect)
      com.google.protobuf.MessageOrBuilder {

    /**
     * optional int32 slot = 1;
     */
    boolean hasSlot();
    /**
     * optional int32 slot = 1;
     */
    int getSlot();
  }
  /**
   * Protobuf type {@code CCLCMsg_SplitPlayerDisconnect}
   */
  public static final class CCLCMsg_SplitPlayerDisconnect extends
      com.google.protobuf.GeneratedMessage implements
      // @@protoc_insertion_point(message_implements:CCLCMsg_SplitPlayerDisconnect)
      CCLCMsg_SplitPlayerDisconnectOrBuilder {
    // Use CCLCMsg_SplitPlayerDisconnect.newBuilder() to construct.
    private CCLCMsg_SplitPlayerDisconnect(com.google.protobuf.GeneratedMessage.Builder builder) {
      super(builder);
      this.unknownFields = builder.getUnknownFields();
    }
    private CCLCMsg_SplitPlayerDisconnect(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }

    private static final CCLCMsg_SplitPlayerDisconnect defaultInstance;
    public static CCLCMsg_SplitPlayerDisconnect getDefaultInstance() {
      return defaultInstance;
    }

    public CCLCMsg_SplitPlayerDisconnect getDefaultInstanceForType() {
      return defaultInstance;
    }

    private final com.google.protobuf.UnknownFieldSet unknownFields;
    @java.lang.Override
    public final com.google.protobuf.UnknownFieldSet
        getUnknownFields() {
      return this.unknownFields;
    }
    private CCLCMsg_SplitPlayerDisconnect(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      initFields();
      int mutable_bitField0_ = 0;
      com.google.protobuf.UnknownFieldSet.Builder unknownFields =
          com.google.protobuf.UnknownFieldSet.newBuilder();
      try {
        boolean done = false;
        while (!done) {
          int tag = input.readTag();
          switch (tag) {
            case 0:
              done = true;
              break;
            default: {
              if (!parseUnknownField(input, unknownFields,
                                     extensionRegistry, tag)) {
                done = true;
              }
              break;
            }
            case 8: {
              bitField0_ |= 0x00000001;
              slot_ = input.readInt32();
              break;
            }
          }
        }
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        throw e.setUnfinishedMessage(this);
      } catch (java.io.IOException e) {
        throw new com.google.protobuf.InvalidProtocolBufferException(
            e.getMessage()).setUnfinishedMessage(this);
      } finally {
        this.unknownFields = unknownFields.build();
        makeExtensionsImmutable();
      }
    }
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_SplitPlayerDisconnect_descriptor;
    }

    protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_SplitPlayerDisconnect_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerDisconnect.class, skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerDisconnect.Builder.class);
    }

    public static com.google.protobuf.Parser PARSER =
        new com.google.protobuf.AbstractParser() {
      public CCLCMsg_SplitPlayerDisconnect parsePartialFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return new CCLCMsg_SplitPlayerDisconnect(input, extensionRegistry);
      }
    };

    @java.lang.Override
    public com.google.protobuf.Parser getParserForType() {
      return PARSER;
    }

    private int bitField0_;
    public static final int SLOT_FIELD_NUMBER = 1;
    private int slot_;
    /**
     * optional int32 slot = 1;
     */
    public boolean hasSlot() {
      return ((bitField0_ & 0x00000001) == 0x00000001);
    }
    /**
     * optional int32 slot = 1;
     */
    public int getSlot() {
      return slot_;
    }

    private void initFields() {
      slot_ = 0;
    }
    private byte memoizedIsInitialized = -1;
    public final boolean isInitialized() {
      byte isInitialized = memoizedIsInitialized;
      if (isInitialized == 1) return true;
      if (isInitialized == 0) return false;

      memoizedIsInitialized = 1;
      return true;
    }

    public void writeTo(com.google.protobuf.CodedOutputStream output)
                        throws java.io.IOException {
      getSerializedSize();
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        output.writeInt32(1, slot_);
      }
      getUnknownFields().writeTo(output);
    }

    private int memoizedSerializedSize = -1;
    public int getSerializedSize() {
      int size = memoizedSerializedSize;
      if (size != -1) return size;

      size = 0;
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        size += com.google.protobuf.CodedOutputStream
          .computeInt32Size(1, slot_);
      }
      size += getUnknownFields().getSerializedSize();
      memoizedSerializedSize = size;
      return size;
    }

    private static final long serialVersionUID = 0L;
    @java.lang.Override
    protected java.lang.Object writeReplace()
        throws java.io.ObjectStreamException {
      return super.writeReplace();
    }

    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerDisconnect parseFrom(
        com.google.protobuf.ByteString data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerDisconnect parseFrom(
        com.google.protobuf.ByteString data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerDisconnect parseFrom(byte[] data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerDisconnect parseFrom(
        byte[] data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerDisconnect parseFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerDisconnect parseFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerDisconnect parseDelimitedFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerDisconnect parseDelimitedFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerDisconnect parseFrom(
        com.google.protobuf.CodedInputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerDisconnect parseFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }

    public static Builder newBuilder() { return Builder.create(); }
    public Builder newBuilderForType() { return newBuilder(); }
    public static Builder newBuilder(skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerDisconnect prototype) {
      return newBuilder().mergeFrom(prototype);
    }
    public Builder toBuilder() { return newBuilder(this); }

    @java.lang.Override
    protected Builder newBuilderForType(
        com.google.protobuf.GeneratedMessage.BuilderParent parent) {
      Builder builder = new Builder(parent);
      return builder;
    }
    /**
     * Protobuf type {@code CCLCMsg_SplitPlayerDisconnect}
     */
    public static final class Builder extends
        com.google.protobuf.GeneratedMessage.Builder implements
        // @@protoc_insertion_point(builder_implements:CCLCMsg_SplitPlayerDisconnect)
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerDisconnectOrBuilder {
      public static final com.google.protobuf.Descriptors.Descriptor
          getDescriptor() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_SplitPlayerDisconnect_descriptor;
      }

      protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
          internalGetFieldAccessorTable() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_SplitPlayerDisconnect_fieldAccessorTable
            .ensureFieldAccessorsInitialized(
                skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerDisconnect.class, skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerDisconnect.Builder.class);
      }

      // Construct using skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerDisconnect.newBuilder()
      private Builder() {
        maybeForceBuilderInitialization();
      }

      private Builder(
          com.google.protobuf.GeneratedMessage.BuilderParent parent) {
        super(parent);
        maybeForceBuilderInitialization();
      }
      private void maybeForceBuilderInitialization() {
        if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
        }
      }
      private static Builder create() {
        return new Builder();
      }

      public Builder clear() {
        super.clear();
        slot_ = 0;
        bitField0_ = (bitField0_ & ~0x00000001);
        return this;
      }

      public Builder clone() {
        return create().mergeFrom(buildPartial());
      }

      public com.google.protobuf.Descriptors.Descriptor
          getDescriptorForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_SplitPlayerDisconnect_descriptor;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerDisconnect getDefaultInstanceForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerDisconnect.getDefaultInstance();
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerDisconnect build() {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerDisconnect result = buildPartial();
        if (!result.isInitialized()) {
          throw newUninitializedMessageException(result);
        }
        return result;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerDisconnect buildPartial() {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerDisconnect result = new skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerDisconnect(this);
        int from_bitField0_ = bitField0_;
        int to_bitField0_ = 0;
        if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
          to_bitField0_ |= 0x00000001;
        }
        result.slot_ = slot_;
        result.bitField0_ = to_bitField0_;
        onBuilt();
        return result;
      }

      public Builder mergeFrom(com.google.protobuf.Message other) {
        if (other instanceof skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerDisconnect) {
          return mergeFrom((skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerDisconnect)other);
        } else {
          super.mergeFrom(other);
          return this;
        }
      }

      public Builder mergeFrom(skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerDisconnect other) {
        if (other == skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerDisconnect.getDefaultInstance()) return this;
        if (other.hasSlot()) {
          setSlot(other.getSlot());
        }
        this.mergeUnknownFields(other.getUnknownFields());
        return this;
      }

      public final boolean isInitialized() {
        return true;
      }

      public Builder mergeFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerDisconnect parsedMessage = null;
        try {
          parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
          parsedMessage = (skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_SplitPlayerDisconnect) e.getUnfinishedMessage();
          throw e;
        } finally {
          if (parsedMessage != null) {
            mergeFrom(parsedMessage);
          }
        }
        return this;
      }
      private int bitField0_;

      private int slot_ ;
      /**
       * optional int32 slot = 1;
       */
      public boolean hasSlot() {
        return ((bitField0_ & 0x00000001) == 0x00000001);
      }
      /**
       * optional int32 slot = 1;
       */
      public int getSlot() {
        return slot_;
      }
      /**
       * optional int32 slot = 1;
       */
      public Builder setSlot(int value) {
        bitField0_ |= 0x00000001;
        slot_ = value;
        onChanged();
        return this;
      }
      /**
       * optional int32 slot = 1;
       */
      public Builder clearSlot() {
        bitField0_ = (bitField0_ & ~0x00000001);
        slot_ = 0;
        onChanged();
        return this;
      }

      // @@protoc_insertion_point(builder_scope:CCLCMsg_SplitPlayerDisconnect)
    }

    static {
      defaultInstance = new CCLCMsg_SplitPlayerDisconnect(true);
      defaultInstance.initFields();
    }

    // @@protoc_insertion_point(class_scope:CCLCMsg_SplitPlayerDisconnect)
  }

  public interface CCLCMsg_ServerStatusOrBuilder extends
      // @@protoc_insertion_point(interface_extends:CCLCMsg_ServerStatus)
      com.google.protobuf.MessageOrBuilder {

    /**
     * optional bool simplified = 1;
     */
    boolean hasSimplified();
    /**
     * optional bool simplified = 1;
     */
    boolean getSimplified();
  }
  /**
   * Protobuf type {@code CCLCMsg_ServerStatus}
   */
  public static final class CCLCMsg_ServerStatus extends
      com.google.protobuf.GeneratedMessage implements
      // @@protoc_insertion_point(message_implements:CCLCMsg_ServerStatus)
      CCLCMsg_ServerStatusOrBuilder {
    // Use CCLCMsg_ServerStatus.newBuilder() to construct.
    private CCLCMsg_ServerStatus(com.google.protobuf.GeneratedMessage.Builder builder) {
      super(builder);
      this.unknownFields = builder.getUnknownFields();
    }
    private CCLCMsg_ServerStatus(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }

    private static final CCLCMsg_ServerStatus defaultInstance;
    public static CCLCMsg_ServerStatus getDefaultInstance() {
      return defaultInstance;
    }

    public CCLCMsg_ServerStatus getDefaultInstanceForType() {
      return defaultInstance;
    }

    private final com.google.protobuf.UnknownFieldSet unknownFields;
    @java.lang.Override
    public final com.google.protobuf.UnknownFieldSet
        getUnknownFields() {
      return this.unknownFields;
    }
    private CCLCMsg_ServerStatus(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      initFields();
      int mutable_bitField0_ = 0;
      com.google.protobuf.UnknownFieldSet.Builder unknownFields =
          com.google.protobuf.UnknownFieldSet.newBuilder();
      try {
        boolean done = false;
        while (!done) {
          int tag = input.readTag();
          switch (tag) {
            case 0:
              done = true;
              break;
            default: {
              if (!parseUnknownField(input, unknownFields,
                                     extensionRegistry, tag)) {
                done = true;
              }
              break;
            }
            case 8: {
              bitField0_ |= 0x00000001;
              simplified_ = input.readBool();
              break;
            }
          }
        }
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        throw e.setUnfinishedMessage(this);
      } catch (java.io.IOException e) {
        throw new com.google.protobuf.InvalidProtocolBufferException(
            e.getMessage()).setUnfinishedMessage(this);
      } finally {
        this.unknownFields = unknownFields.build();
        makeExtensionsImmutable();
      }
    }
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_ServerStatus_descriptor;
    }

    protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_ServerStatus_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerStatus.class, skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerStatus.Builder.class);
    }

    public static com.google.protobuf.Parser PARSER =
        new com.google.protobuf.AbstractParser() {
      public CCLCMsg_ServerStatus parsePartialFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return new CCLCMsg_ServerStatus(input, extensionRegistry);
      }
    };

    @java.lang.Override
    public com.google.protobuf.Parser getParserForType() {
      return PARSER;
    }

    private int bitField0_;
    public static final int SIMPLIFIED_FIELD_NUMBER = 1;
    private boolean simplified_;
    /**
     * optional bool simplified = 1;
     */
    public boolean hasSimplified() {
      return ((bitField0_ & 0x00000001) == 0x00000001);
    }
    /**
     * optional bool simplified = 1;
     */
    public boolean getSimplified() {
      return simplified_;
    }

    private void initFields() {
      simplified_ = false;
    }
    private byte memoizedIsInitialized = -1;
    public final boolean isInitialized() {
      byte isInitialized = memoizedIsInitialized;
      if (isInitialized == 1) return true;
      if (isInitialized == 0) return false;

      memoizedIsInitialized = 1;
      return true;
    }

    public void writeTo(com.google.protobuf.CodedOutputStream output)
                        throws java.io.IOException {
      getSerializedSize();
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        output.writeBool(1, simplified_);
      }
      getUnknownFields().writeTo(output);
    }

    private int memoizedSerializedSize = -1;
    public int getSerializedSize() {
      int size = memoizedSerializedSize;
      if (size != -1) return size;

      size = 0;
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        size += com.google.protobuf.CodedOutputStream
          .computeBoolSize(1, simplified_);
      }
      size += getUnknownFields().getSerializedSize();
      memoizedSerializedSize = size;
      return size;
    }

    private static final long serialVersionUID = 0L;
    @java.lang.Override
    protected java.lang.Object writeReplace()
        throws java.io.ObjectStreamException {
      return super.writeReplace();
    }

    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerStatus parseFrom(
        com.google.protobuf.ByteString data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerStatus parseFrom(
        com.google.protobuf.ByteString data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerStatus parseFrom(byte[] data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerStatus parseFrom(
        byte[] data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerStatus parseFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerStatus parseFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerStatus parseDelimitedFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerStatus parseDelimitedFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerStatus parseFrom(
        com.google.protobuf.CodedInputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerStatus parseFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }

    public static Builder newBuilder() { return Builder.create(); }
    public Builder newBuilderForType() { return newBuilder(); }
    public static Builder newBuilder(skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerStatus prototype) {
      return newBuilder().mergeFrom(prototype);
    }
    public Builder toBuilder() { return newBuilder(this); }

    @java.lang.Override
    protected Builder newBuilderForType(
        com.google.protobuf.GeneratedMessage.BuilderParent parent) {
      Builder builder = new Builder(parent);
      return builder;
    }
    /**
     * Protobuf type {@code CCLCMsg_ServerStatus}
     */
    public static final class Builder extends
        com.google.protobuf.GeneratedMessage.Builder implements
        // @@protoc_insertion_point(builder_implements:CCLCMsg_ServerStatus)
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerStatusOrBuilder {
      public static final com.google.protobuf.Descriptors.Descriptor
          getDescriptor() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_ServerStatus_descriptor;
      }

      protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
          internalGetFieldAccessorTable() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_ServerStatus_fieldAccessorTable
            .ensureFieldAccessorsInitialized(
                skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerStatus.class, skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerStatus.Builder.class);
      }

      // Construct using skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerStatus.newBuilder()
      private Builder() {
        maybeForceBuilderInitialization();
      }

      private Builder(
          com.google.protobuf.GeneratedMessage.BuilderParent parent) {
        super(parent);
        maybeForceBuilderInitialization();
      }
      private void maybeForceBuilderInitialization() {
        if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
        }
      }
      private static Builder create() {
        return new Builder();
      }

      public Builder clear() {
        super.clear();
        simplified_ = false;
        bitField0_ = (bitField0_ & ~0x00000001);
        return this;
      }

      public Builder clone() {
        return create().mergeFrom(buildPartial());
      }

      public com.google.protobuf.Descriptors.Descriptor
          getDescriptorForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_ServerStatus_descriptor;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerStatus getDefaultInstanceForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerStatus.getDefaultInstance();
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerStatus build() {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerStatus result = buildPartial();
        if (!result.isInitialized()) {
          throw newUninitializedMessageException(result);
        }
        return result;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerStatus buildPartial() {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerStatus result = new skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerStatus(this);
        int from_bitField0_ = bitField0_;
        int to_bitField0_ = 0;
        if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
          to_bitField0_ |= 0x00000001;
        }
        result.simplified_ = simplified_;
        result.bitField0_ = to_bitField0_;
        onBuilt();
        return result;
      }

      public Builder mergeFrom(com.google.protobuf.Message other) {
        if (other instanceof skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerStatus) {
          return mergeFrom((skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerStatus)other);
        } else {
          super.mergeFrom(other);
          return this;
        }
      }

      public Builder mergeFrom(skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerStatus other) {
        if (other == skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerStatus.getDefaultInstance()) return this;
        if (other.hasSimplified()) {
          setSimplified(other.getSimplified());
        }
        this.mergeUnknownFields(other.getUnknownFields());
        return this;
      }

      public final boolean isInitialized() {
        return true;
      }

      public Builder mergeFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerStatus parsedMessage = null;
        try {
          parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
          parsedMessage = (skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerStatus) e.getUnfinishedMessage();
          throw e;
        } finally {
          if (parsedMessage != null) {
            mergeFrom(parsedMessage);
          }
        }
        return this;
      }
      private int bitField0_;

      private boolean simplified_ ;
      /**
       * optional bool simplified = 1;
       */
      public boolean hasSimplified() {
        return ((bitField0_ & 0x00000001) == 0x00000001);
      }
      /**
       * optional bool simplified = 1;
       */
      public boolean getSimplified() {
        return simplified_;
      }
      /**
       * optional bool simplified = 1;
       */
      public Builder setSimplified(boolean value) {
        bitField0_ |= 0x00000001;
        simplified_ = value;
        onChanged();
        return this;
      }
      /**
       * optional bool simplified = 1;
       */
      public Builder clearSimplified() {
        bitField0_ = (bitField0_ & ~0x00000001);
        simplified_ = false;
        onChanged();
        return this;
      }

      // @@protoc_insertion_point(builder_scope:CCLCMsg_ServerStatus)
    }

    static {
      defaultInstance = new CCLCMsg_ServerStatus(true);
      defaultInstance.initFields();
    }

    // @@protoc_insertion_point(class_scope:CCLCMsg_ServerStatus)
  }

  public interface CCLCMsg_ServerPingOrBuilder extends
      // @@protoc_insertion_point(interface_extends:CCLCMsg_ServerPing)
      com.google.protobuf.MessageOrBuilder {
  }
  /**
   * Protobuf type {@code CCLCMsg_ServerPing}
   */
  public static final class CCLCMsg_ServerPing extends
      com.google.protobuf.GeneratedMessage implements
      // @@protoc_insertion_point(message_implements:CCLCMsg_ServerPing)
      CCLCMsg_ServerPingOrBuilder {
    // Use CCLCMsg_ServerPing.newBuilder() to construct.
    private CCLCMsg_ServerPing(com.google.protobuf.GeneratedMessage.Builder builder) {
      super(builder);
      this.unknownFields = builder.getUnknownFields();
    }
    private CCLCMsg_ServerPing(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }

    private static final CCLCMsg_ServerPing defaultInstance;
    public static CCLCMsg_ServerPing getDefaultInstance() {
      return defaultInstance;
    }

    public CCLCMsg_ServerPing getDefaultInstanceForType() {
      return defaultInstance;
    }

    private final com.google.protobuf.UnknownFieldSet unknownFields;
    @java.lang.Override
    public final com.google.protobuf.UnknownFieldSet
        getUnknownFields() {
      return this.unknownFields;
    }
    private CCLCMsg_ServerPing(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      initFields();
      com.google.protobuf.UnknownFieldSet.Builder unknownFields =
          com.google.protobuf.UnknownFieldSet.newBuilder();
      try {
        boolean done = false;
        while (!done) {
          int tag = input.readTag();
          switch (tag) {
            case 0:
              done = true;
              break;
            default: {
              if (!parseUnknownField(input, unknownFields,
                                     extensionRegistry, tag)) {
                done = true;
              }
              break;
            }
          }
        }
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        throw e.setUnfinishedMessage(this);
      } catch (java.io.IOException e) {
        throw new com.google.protobuf.InvalidProtocolBufferException(
            e.getMessage()).setUnfinishedMessage(this);
      } finally {
        this.unknownFields = unknownFields.build();
        makeExtensionsImmutable();
      }
    }
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_ServerPing_descriptor;
    }

    protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_ServerPing_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerPing.class, skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerPing.Builder.class);
    }

    public static com.google.protobuf.Parser PARSER =
        new com.google.protobuf.AbstractParser() {
      public CCLCMsg_ServerPing parsePartialFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return new CCLCMsg_ServerPing(input, extensionRegistry);
      }
    };

    @java.lang.Override
    public com.google.protobuf.Parser getParserForType() {
      return PARSER;
    }

    private void initFields() {
    }
    private byte memoizedIsInitialized = -1;
    public final boolean isInitialized() {
      byte isInitialized = memoizedIsInitialized;
      if (isInitialized == 1) return true;
      if (isInitialized == 0) return false;

      memoizedIsInitialized = 1;
      return true;
    }

    public void writeTo(com.google.protobuf.CodedOutputStream output)
                        throws java.io.IOException {
      getSerializedSize();
      getUnknownFields().writeTo(output);
    }

    private int memoizedSerializedSize = -1;
    public int getSerializedSize() {
      int size = memoizedSerializedSize;
      if (size != -1) return size;

      size = 0;
      size += getUnknownFields().getSerializedSize();
      memoizedSerializedSize = size;
      return size;
    }

    private static final long serialVersionUID = 0L;
    @java.lang.Override
    protected java.lang.Object writeReplace()
        throws java.io.ObjectStreamException {
      return super.writeReplace();
    }

    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerPing parseFrom(
        com.google.protobuf.ByteString data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerPing parseFrom(
        com.google.protobuf.ByteString data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerPing parseFrom(byte[] data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerPing parseFrom(
        byte[] data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerPing parseFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerPing parseFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerPing parseDelimitedFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerPing parseDelimitedFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerPing parseFrom(
        com.google.protobuf.CodedInputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerPing parseFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }

    public static Builder newBuilder() { return Builder.create(); }
    public Builder newBuilderForType() { return newBuilder(); }
    public static Builder newBuilder(skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerPing prototype) {
      return newBuilder().mergeFrom(prototype);
    }
    public Builder toBuilder() { return newBuilder(this); }

    @java.lang.Override
    protected Builder newBuilderForType(
        com.google.protobuf.GeneratedMessage.BuilderParent parent) {
      Builder builder = new Builder(parent);
      return builder;
    }
    /**
     * Protobuf type {@code CCLCMsg_ServerPing}
     */
    public static final class Builder extends
        com.google.protobuf.GeneratedMessage.Builder implements
        // @@protoc_insertion_point(builder_implements:CCLCMsg_ServerPing)
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerPingOrBuilder {
      public static final com.google.protobuf.Descriptors.Descriptor
          getDescriptor() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_ServerPing_descriptor;
      }

      protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
          internalGetFieldAccessorTable() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_ServerPing_fieldAccessorTable
            .ensureFieldAccessorsInitialized(
                skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerPing.class, skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerPing.Builder.class);
      }

      // Construct using skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerPing.newBuilder()
      private Builder() {
        maybeForceBuilderInitialization();
      }

      private Builder(
          com.google.protobuf.GeneratedMessage.BuilderParent parent) {
        super(parent);
        maybeForceBuilderInitialization();
      }
      private void maybeForceBuilderInitialization() {
        if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
        }
      }
      private static Builder create() {
        return new Builder();
      }

      public Builder clear() {
        super.clear();
        return this;
      }

      public Builder clone() {
        return create().mergeFrom(buildPartial());
      }

      public com.google.protobuf.Descriptors.Descriptor
          getDescriptorForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_ServerPing_descriptor;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerPing getDefaultInstanceForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerPing.getDefaultInstance();
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerPing build() {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerPing result = buildPartial();
        if (!result.isInitialized()) {
          throw newUninitializedMessageException(result);
        }
        return result;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerPing buildPartial() {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerPing result = new skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerPing(this);
        onBuilt();
        return result;
      }

      public Builder mergeFrom(com.google.protobuf.Message other) {
        if (other instanceof skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerPing) {
          return mergeFrom((skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerPing)other);
        } else {
          super.mergeFrom(other);
          return this;
        }
      }

      public Builder mergeFrom(skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerPing other) {
        if (other == skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerPing.getDefaultInstance()) return this;
        this.mergeUnknownFields(other.getUnknownFields());
        return this;
      }

      public final boolean isInitialized() {
        return true;
      }

      public Builder mergeFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerPing parsedMessage = null;
        try {
          parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
          parsedMessage = (skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_ServerPing) e.getUnfinishedMessage();
          throw e;
        } finally {
          if (parsedMessage != null) {
            mergeFrom(parsedMessage);
          }
        }
        return this;
      }

      // @@protoc_insertion_point(builder_scope:CCLCMsg_ServerPing)
    }

    static {
      defaultInstance = new CCLCMsg_ServerPing(true);
      defaultInstance.initFields();
    }

    // @@protoc_insertion_point(class_scope:CCLCMsg_ServerPing)
  }

  public interface CCLCMsg_RequestPauseOrBuilder extends
      // @@protoc_insertion_point(interface_extends:CCLCMsg_RequestPause)
      com.google.protobuf.MessageOrBuilder {

    /**
     * optional .RequestPause_t pause_type = 1 [default = RP_PAUSE];
     */
    boolean hasPauseType();
    /**
     * optional .RequestPause_t pause_type = 1 [default = RP_PAUSE];
     */
    skadistats.clarity.wire.common.proto.NetMessages.RequestPause_t getPauseType();

    /**
     * optional int32 pause_group = 2;
     */
    boolean hasPauseGroup();
    /**
     * optional int32 pause_group = 2;
     */
    int getPauseGroup();
  }
  /**
   * Protobuf type {@code CCLCMsg_RequestPause}
   */
  public static final class CCLCMsg_RequestPause extends
      com.google.protobuf.GeneratedMessage implements
      // @@protoc_insertion_point(message_implements:CCLCMsg_RequestPause)
      CCLCMsg_RequestPauseOrBuilder {
    // Use CCLCMsg_RequestPause.newBuilder() to construct.
    private CCLCMsg_RequestPause(com.google.protobuf.GeneratedMessage.Builder builder) {
      super(builder);
      this.unknownFields = builder.getUnknownFields();
    }
    private CCLCMsg_RequestPause(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }

    private static final CCLCMsg_RequestPause defaultInstance;
    public static CCLCMsg_RequestPause getDefaultInstance() {
      return defaultInstance;
    }

    public CCLCMsg_RequestPause getDefaultInstanceForType() {
      return defaultInstance;
    }

    private final com.google.protobuf.UnknownFieldSet unknownFields;
    @java.lang.Override
    public final com.google.protobuf.UnknownFieldSet
        getUnknownFields() {
      return this.unknownFields;
    }
    private CCLCMsg_RequestPause(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      initFields();
      int mutable_bitField0_ = 0;
      com.google.protobuf.UnknownFieldSet.Builder unknownFields =
          com.google.protobuf.UnknownFieldSet.newBuilder();
      try {
        boolean done = false;
        while (!done) {
          int tag = input.readTag();
          switch (tag) {
            case 0:
              done = true;
              break;
            default: {
              if (!parseUnknownField(input, unknownFields,
                                     extensionRegistry, tag)) {
                done = true;
              }
              break;
            }
            case 8: {
              int rawValue = input.readEnum();
              skadistats.clarity.wire.common.proto.NetMessages.RequestPause_t value = skadistats.clarity.wire.common.proto.NetMessages.RequestPause_t.valueOf(rawValue);
              if (value == null) {
                unknownFields.mergeVarintField(1, rawValue);
              } else {
                bitField0_ |= 0x00000001;
                pauseType_ = value;
              }
              break;
            }
            case 16: {
              bitField0_ |= 0x00000002;
              pauseGroup_ = input.readInt32();
              break;
            }
          }
        }
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        throw e.setUnfinishedMessage(this);
      } catch (java.io.IOException e) {
        throw new com.google.protobuf.InvalidProtocolBufferException(
            e.getMessage()).setUnfinishedMessage(this);
      } finally {
        this.unknownFields = unknownFields.build();
        makeExtensionsImmutable();
      }
    }
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_RequestPause_descriptor;
    }

    protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_RequestPause_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RequestPause.class, skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RequestPause.Builder.class);
    }

    public static com.google.protobuf.Parser PARSER =
        new com.google.protobuf.AbstractParser() {
      public CCLCMsg_RequestPause parsePartialFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return new CCLCMsg_RequestPause(input, extensionRegistry);
      }
    };

    @java.lang.Override
    public com.google.protobuf.Parser getParserForType() {
      return PARSER;
    }

    private int bitField0_;
    public static final int PAUSE_TYPE_FIELD_NUMBER = 1;
    private skadistats.clarity.wire.common.proto.NetMessages.RequestPause_t pauseType_;
    /**
     * optional .RequestPause_t pause_type = 1 [default = RP_PAUSE];
     */
    public boolean hasPauseType() {
      return ((bitField0_ & 0x00000001) == 0x00000001);
    }
    /**
     * optional .RequestPause_t pause_type = 1 [default = RP_PAUSE];
     */
    public skadistats.clarity.wire.common.proto.NetMessages.RequestPause_t getPauseType() {
      return pauseType_;
    }

    public static final int PAUSE_GROUP_FIELD_NUMBER = 2;
    private int pauseGroup_;
    /**
     * optional int32 pause_group = 2;
     */
    public boolean hasPauseGroup() {
      return ((bitField0_ & 0x00000002) == 0x00000002);
    }
    /**
     * optional int32 pause_group = 2;
     */
    public int getPauseGroup() {
      return pauseGroup_;
    }

    private void initFields() {
      pauseType_ = skadistats.clarity.wire.common.proto.NetMessages.RequestPause_t.RP_PAUSE;
      pauseGroup_ = 0;
    }
    private byte memoizedIsInitialized = -1;
    public final boolean isInitialized() {
      byte isInitialized = memoizedIsInitialized;
      if (isInitialized == 1) return true;
      if (isInitialized == 0) return false;

      memoizedIsInitialized = 1;
      return true;
    }

    public void writeTo(com.google.protobuf.CodedOutputStream output)
                        throws java.io.IOException {
      getSerializedSize();
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        output.writeEnum(1, pauseType_.getNumber());
      }
      if (((bitField0_ & 0x00000002) == 0x00000002)) {
        output.writeInt32(2, pauseGroup_);
      }
      getUnknownFields().writeTo(output);
    }

    private int memoizedSerializedSize = -1;
    public int getSerializedSize() {
      int size = memoizedSerializedSize;
      if (size != -1) return size;

      size = 0;
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        size += com.google.protobuf.CodedOutputStream
          .computeEnumSize(1, pauseType_.getNumber());
      }
      if (((bitField0_ & 0x00000002) == 0x00000002)) {
        size += com.google.protobuf.CodedOutputStream
          .computeInt32Size(2, pauseGroup_);
      }
      size += getUnknownFields().getSerializedSize();
      memoizedSerializedSize = size;
      return size;
    }

    private static final long serialVersionUID = 0L;
    @java.lang.Override
    protected java.lang.Object writeReplace()
        throws java.io.ObjectStreamException {
      return super.writeReplace();
    }

    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RequestPause parseFrom(
        com.google.protobuf.ByteString data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RequestPause parseFrom(
        com.google.protobuf.ByteString data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RequestPause parseFrom(byte[] data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RequestPause parseFrom(
        byte[] data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RequestPause parseFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RequestPause parseFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RequestPause parseDelimitedFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RequestPause parseDelimitedFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RequestPause parseFrom(
        com.google.protobuf.CodedInputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RequestPause parseFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }

    public static Builder newBuilder() { return Builder.create(); }
    public Builder newBuilderForType() { return newBuilder(); }
    public static Builder newBuilder(skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RequestPause prototype) {
      return newBuilder().mergeFrom(prototype);
    }
    public Builder toBuilder() { return newBuilder(this); }

    @java.lang.Override
    protected Builder newBuilderForType(
        com.google.protobuf.GeneratedMessage.BuilderParent parent) {
      Builder builder = new Builder(parent);
      return builder;
    }
    /**
     * Protobuf type {@code CCLCMsg_RequestPause}
     */
    public static final class Builder extends
        com.google.protobuf.GeneratedMessage.Builder implements
        // @@protoc_insertion_point(builder_implements:CCLCMsg_RequestPause)
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RequestPauseOrBuilder {
      public static final com.google.protobuf.Descriptors.Descriptor
          getDescriptor() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_RequestPause_descriptor;
      }

      protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
          internalGetFieldAccessorTable() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_RequestPause_fieldAccessorTable
            .ensureFieldAccessorsInitialized(
                skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RequestPause.class, skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RequestPause.Builder.class);
      }

      // Construct using skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RequestPause.newBuilder()
      private Builder() {
        maybeForceBuilderInitialization();
      }

      private Builder(
          com.google.protobuf.GeneratedMessage.BuilderParent parent) {
        super(parent);
        maybeForceBuilderInitialization();
      }
      private void maybeForceBuilderInitialization() {
        if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
        }
      }
      private static Builder create() {
        return new Builder();
      }

      public Builder clear() {
        super.clear();
        pauseType_ = skadistats.clarity.wire.common.proto.NetMessages.RequestPause_t.RP_PAUSE;
        bitField0_ = (bitField0_ & ~0x00000001);
        pauseGroup_ = 0;
        bitField0_ = (bitField0_ & ~0x00000002);
        return this;
      }

      public Builder clone() {
        return create().mergeFrom(buildPartial());
      }

      public com.google.protobuf.Descriptors.Descriptor
          getDescriptorForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_RequestPause_descriptor;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RequestPause getDefaultInstanceForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RequestPause.getDefaultInstance();
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RequestPause build() {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RequestPause result = buildPartial();
        if (!result.isInitialized()) {
          throw newUninitializedMessageException(result);
        }
        return result;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RequestPause buildPartial() {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RequestPause result = new skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RequestPause(this);
        int from_bitField0_ = bitField0_;
        int to_bitField0_ = 0;
        if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
          to_bitField0_ |= 0x00000001;
        }
        result.pauseType_ = pauseType_;
        if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
          to_bitField0_ |= 0x00000002;
        }
        result.pauseGroup_ = pauseGroup_;
        result.bitField0_ = to_bitField0_;
        onBuilt();
        return result;
      }

      public Builder mergeFrom(com.google.protobuf.Message other) {
        if (other instanceof skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RequestPause) {
          return mergeFrom((skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RequestPause)other);
        } else {
          super.mergeFrom(other);
          return this;
        }
      }

      public Builder mergeFrom(skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RequestPause other) {
        if (other == skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RequestPause.getDefaultInstance()) return this;
        if (other.hasPauseType()) {
          setPauseType(other.getPauseType());
        }
        if (other.hasPauseGroup()) {
          setPauseGroup(other.getPauseGroup());
        }
        this.mergeUnknownFields(other.getUnknownFields());
        return this;
      }

      public final boolean isInitialized() {
        return true;
      }

      public Builder mergeFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RequestPause parsedMessage = null;
        try {
          parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
          parsedMessage = (skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_RequestPause) e.getUnfinishedMessage();
          throw e;
        } finally {
          if (parsedMessage != null) {
            mergeFrom(parsedMessage);
          }
        }
        return this;
      }
      private int bitField0_;

      private skadistats.clarity.wire.common.proto.NetMessages.RequestPause_t pauseType_ = skadistats.clarity.wire.common.proto.NetMessages.RequestPause_t.RP_PAUSE;
      /**
       * optional .RequestPause_t pause_type = 1 [default = RP_PAUSE];
       */
      public boolean hasPauseType() {
        return ((bitField0_ & 0x00000001) == 0x00000001);
      }
      /**
       * optional .RequestPause_t pause_type = 1 [default = RP_PAUSE];
       */
      public skadistats.clarity.wire.common.proto.NetMessages.RequestPause_t getPauseType() {
        return pauseType_;
      }
      /**
       * optional .RequestPause_t pause_type = 1 [default = RP_PAUSE];
       */
      public Builder setPauseType(skadistats.clarity.wire.common.proto.NetMessages.RequestPause_t value) {
        if (value == null) {
          throw new NullPointerException();
        }
        bitField0_ |= 0x00000001;
        pauseType_ = value;
        onChanged();
        return this;
      }
      /**
       * optional .RequestPause_t pause_type = 1 [default = RP_PAUSE];
       */
      public Builder clearPauseType() {
        bitField0_ = (bitField0_ & ~0x00000001);
        pauseType_ = skadistats.clarity.wire.common.proto.NetMessages.RequestPause_t.RP_PAUSE;
        onChanged();
        return this;
      }

      private int pauseGroup_ ;
      /**
       * optional int32 pause_group = 2;
       */
      public boolean hasPauseGroup() {
        return ((bitField0_ & 0x00000002) == 0x00000002);
      }
      /**
       * optional int32 pause_group = 2;
       */
      public int getPauseGroup() {
        return pauseGroup_;
      }
      /**
       * optional int32 pause_group = 2;
       */
      public Builder setPauseGroup(int value) {
        bitField0_ |= 0x00000002;
        pauseGroup_ = value;
        onChanged();
        return this;
      }
      /**
       * optional int32 pause_group = 2;
       */
      public Builder clearPauseGroup() {
        bitField0_ = (bitField0_ & ~0x00000002);
        pauseGroup_ = 0;
        onChanged();
        return this;
      }

      // @@protoc_insertion_point(builder_scope:CCLCMsg_RequestPause)
    }

    static {
      defaultInstance = new CCLCMsg_RequestPause(true);
      defaultInstance.initFields();
    }

    // @@protoc_insertion_point(class_scope:CCLCMsg_RequestPause)
  }

  public interface CCLCMsg_CmdKeyValuesOrBuilder extends
      // @@protoc_insertion_point(interface_extends:CCLCMsg_CmdKeyValues)
      com.google.protobuf.MessageOrBuilder {

    /**
     * optional bytes data = 1;
     */
    boolean hasData();
    /**
     * optional bytes data = 1;
     */
    com.google.protobuf.ByteString getData();
  }
  /**
   * Protobuf type {@code CCLCMsg_CmdKeyValues}
   */
  public static final class CCLCMsg_CmdKeyValues extends
      com.google.protobuf.GeneratedMessage implements
      // @@protoc_insertion_point(message_implements:CCLCMsg_CmdKeyValues)
      CCLCMsg_CmdKeyValuesOrBuilder {
    // Use CCLCMsg_CmdKeyValues.newBuilder() to construct.
    private CCLCMsg_CmdKeyValues(com.google.protobuf.GeneratedMessage.Builder builder) {
      super(builder);
      this.unknownFields = builder.getUnknownFields();
    }
    private CCLCMsg_CmdKeyValues(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }

    private static final CCLCMsg_CmdKeyValues defaultInstance;
    public static CCLCMsg_CmdKeyValues getDefaultInstance() {
      return defaultInstance;
    }

    public CCLCMsg_CmdKeyValues getDefaultInstanceForType() {
      return defaultInstance;
    }

    private final com.google.protobuf.UnknownFieldSet unknownFields;
    @java.lang.Override
    public final com.google.protobuf.UnknownFieldSet
        getUnknownFields() {
      return this.unknownFields;
    }
    private CCLCMsg_CmdKeyValues(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      initFields();
      int mutable_bitField0_ = 0;
      com.google.protobuf.UnknownFieldSet.Builder unknownFields =
          com.google.protobuf.UnknownFieldSet.newBuilder();
      try {
        boolean done = false;
        while (!done) {
          int tag = input.readTag();
          switch (tag) {
            case 0:
              done = true;
              break;
            default: {
              if (!parseUnknownField(input, unknownFields,
                                     extensionRegistry, tag)) {
                done = true;
              }
              break;
            }
            case 10: {
              bitField0_ |= 0x00000001;
              data_ = input.readBytes();
              break;
            }
          }
        }
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        throw e.setUnfinishedMessage(this);
      } catch (java.io.IOException e) {
        throw new com.google.protobuf.InvalidProtocolBufferException(
            e.getMessage()).setUnfinishedMessage(this);
      } finally {
        this.unknownFields = unknownFields.build();
        makeExtensionsImmutable();
      }
    }
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_CmdKeyValues_descriptor;
    }

    protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_CmdKeyValues_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_CmdKeyValues.class, skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_CmdKeyValues.Builder.class);
    }

    public static com.google.protobuf.Parser PARSER =
        new com.google.protobuf.AbstractParser() {
      public CCLCMsg_CmdKeyValues parsePartialFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return new CCLCMsg_CmdKeyValues(input, extensionRegistry);
      }
    };

    @java.lang.Override
    public com.google.protobuf.Parser getParserForType() {
      return PARSER;
    }

    private int bitField0_;
    public static final int DATA_FIELD_NUMBER = 1;
    private com.google.protobuf.ByteString data_;
    /**
     * optional bytes data = 1;
     */
    public boolean hasData() {
      return ((bitField0_ & 0x00000001) == 0x00000001);
    }
    /**
     * optional bytes data = 1;
     */
    public com.google.protobuf.ByteString getData() {
      return data_;
    }

    private void initFields() {
      data_ = com.google.protobuf.ByteString.EMPTY;
    }
    private byte memoizedIsInitialized = -1;
    public final boolean isInitialized() {
      byte isInitialized = memoizedIsInitialized;
      if (isInitialized == 1) return true;
      if (isInitialized == 0) return false;

      memoizedIsInitialized = 1;
      return true;
    }

    public void writeTo(com.google.protobuf.CodedOutputStream output)
                        throws java.io.IOException {
      getSerializedSize();
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        output.writeBytes(1, data_);
      }
      getUnknownFields().writeTo(output);
    }

    private int memoizedSerializedSize = -1;
    public int getSerializedSize() {
      int size = memoizedSerializedSize;
      if (size != -1) return size;

      size = 0;
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        size += com.google.protobuf.CodedOutputStream
          .computeBytesSize(1, data_);
      }
      size += getUnknownFields().getSerializedSize();
      memoizedSerializedSize = size;
      return size;
    }

    private static final long serialVersionUID = 0L;
    @java.lang.Override
    protected java.lang.Object writeReplace()
        throws java.io.ObjectStreamException {
      return super.writeReplace();
    }

    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_CmdKeyValues parseFrom(
        com.google.protobuf.ByteString data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_CmdKeyValues parseFrom(
        com.google.protobuf.ByteString data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_CmdKeyValues parseFrom(byte[] data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_CmdKeyValues parseFrom(
        byte[] data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_CmdKeyValues parseFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_CmdKeyValues parseFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_CmdKeyValues parseDelimitedFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_CmdKeyValues parseDelimitedFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_CmdKeyValues parseFrom(
        com.google.protobuf.CodedInputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_CmdKeyValues parseFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }

    public static Builder newBuilder() { return Builder.create(); }
    public Builder newBuilderForType() { return newBuilder(); }
    public static Builder newBuilder(skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_CmdKeyValues prototype) {
      return newBuilder().mergeFrom(prototype);
    }
    public Builder toBuilder() { return newBuilder(this); }

    @java.lang.Override
    protected Builder newBuilderForType(
        com.google.protobuf.GeneratedMessage.BuilderParent parent) {
      Builder builder = new Builder(parent);
      return builder;
    }
    /**
     * Protobuf type {@code CCLCMsg_CmdKeyValues}
     */
    public static final class Builder extends
        com.google.protobuf.GeneratedMessage.Builder implements
        // @@protoc_insertion_point(builder_implements:CCLCMsg_CmdKeyValues)
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_CmdKeyValuesOrBuilder {
      public static final com.google.protobuf.Descriptors.Descriptor
          getDescriptor() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_CmdKeyValues_descriptor;
      }

      protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
          internalGetFieldAccessorTable() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_CmdKeyValues_fieldAccessorTable
            .ensureFieldAccessorsInitialized(
                skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_CmdKeyValues.class, skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_CmdKeyValues.Builder.class);
      }

      // Construct using skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_CmdKeyValues.newBuilder()
      private Builder() {
        maybeForceBuilderInitialization();
      }

      private Builder(
          com.google.protobuf.GeneratedMessage.BuilderParent parent) {
        super(parent);
        maybeForceBuilderInitialization();
      }
      private void maybeForceBuilderInitialization() {
        if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
        }
      }
      private static Builder create() {
        return new Builder();
      }

      public Builder clear() {
        super.clear();
        data_ = com.google.protobuf.ByteString.EMPTY;
        bitField0_ = (bitField0_ & ~0x00000001);
        return this;
      }

      public Builder clone() {
        return create().mergeFrom(buildPartial());
      }

      public com.google.protobuf.Descriptors.Descriptor
          getDescriptorForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CCLCMsg_CmdKeyValues_descriptor;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_CmdKeyValues getDefaultInstanceForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_CmdKeyValues.getDefaultInstance();
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_CmdKeyValues build() {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_CmdKeyValues result = buildPartial();
        if (!result.isInitialized()) {
          throw newUninitializedMessageException(result);
        }
        return result;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_CmdKeyValues buildPartial() {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_CmdKeyValues result = new skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_CmdKeyValues(this);
        int from_bitField0_ = bitField0_;
        int to_bitField0_ = 0;
        if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
          to_bitField0_ |= 0x00000001;
        }
        result.data_ = data_;
        result.bitField0_ = to_bitField0_;
        onBuilt();
        return result;
      }

      public Builder mergeFrom(com.google.protobuf.Message other) {
        if (other instanceof skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_CmdKeyValues) {
          return mergeFrom((skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_CmdKeyValues)other);
        } else {
          super.mergeFrom(other);
          return this;
        }
      }

      public Builder mergeFrom(skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_CmdKeyValues other) {
        if (other == skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_CmdKeyValues.getDefaultInstance()) return this;
        if (other.hasData()) {
          setData(other.getData());
        }
        this.mergeUnknownFields(other.getUnknownFields());
        return this;
      }

      public final boolean isInitialized() {
        return true;
      }

      public Builder mergeFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_CmdKeyValues parsedMessage = null;
        try {
          parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
          parsedMessage = (skadistats.clarity.wire.common.proto.NetMessages.CCLCMsg_CmdKeyValues) e.getUnfinishedMessage();
          throw e;
        } finally {
          if (parsedMessage != null) {
            mergeFrom(parsedMessage);
          }
        }
        return this;
      }
      private int bitField0_;

      private com.google.protobuf.ByteString data_ = com.google.protobuf.ByteString.EMPTY;
      /**
       * optional bytes data = 1;
       */
      public boolean hasData() {
        return ((bitField0_ & 0x00000001) == 0x00000001);
      }
      /**
       * optional bytes data = 1;
       */
      public com.google.protobuf.ByteString getData() {
        return data_;
      }
      /**
       * optional bytes data = 1;
       */
      public Builder setData(com.google.protobuf.ByteString value) {
        if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00000001;
        data_ = value;
        onChanged();
        return this;
      }
      /**
       * optional bytes data = 1;
       */
      public Builder clearData() {
        bitField0_ = (bitField0_ & ~0x00000001);
        data_ = getDefaultInstance().getData();
        onChanged();
        return this;
      }

      // @@protoc_insertion_point(builder_scope:CCLCMsg_CmdKeyValues)
    }

    static {
      defaultInstance = new CCLCMsg_CmdKeyValues(true);
      defaultInstance.initFields();
    }

    // @@protoc_insertion_point(class_scope:CCLCMsg_CmdKeyValues)
  }

  public interface CSVCMsg_GameEventListOrBuilder extends
      // @@protoc_insertion_point(interface_extends:CSVCMsg_GameEventList)
      com.google.protobuf.MessageOrBuilder {

    /**
     * repeated .CSVCMsg_GameEventList.descriptor_t descriptors = 1;
     */
    java.util.List 
        getDescriptorsList();
    /**
     * repeated .CSVCMsg_GameEventList.descriptor_t descriptors = 1;
     */
    skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t getDescriptors(int index);
    /**
     * repeated .CSVCMsg_GameEventList.descriptor_t descriptors = 1;
     */
    int getDescriptorsCount();
    /**
     * repeated .CSVCMsg_GameEventList.descriptor_t descriptors = 1;
     */
    java.util.List 
        getDescriptorsOrBuilderList();
    /**
     * repeated .CSVCMsg_GameEventList.descriptor_t descriptors = 1;
     */
    skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_tOrBuilder getDescriptorsOrBuilder(
        int index);
  }
  /**
   * Protobuf type {@code CSVCMsg_GameEventList}
   */
  public static final class CSVCMsg_GameEventList extends
      com.google.protobuf.GeneratedMessage implements
      // @@protoc_insertion_point(message_implements:CSVCMsg_GameEventList)
      CSVCMsg_GameEventListOrBuilder {
    // Use CSVCMsg_GameEventList.newBuilder() to construct.
    private CSVCMsg_GameEventList(com.google.protobuf.GeneratedMessage.Builder builder) {
      super(builder);
      this.unknownFields = builder.getUnknownFields();
    }
    private CSVCMsg_GameEventList(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }

    private static final CSVCMsg_GameEventList defaultInstance;
    public static CSVCMsg_GameEventList getDefaultInstance() {
      return defaultInstance;
    }

    public CSVCMsg_GameEventList getDefaultInstanceForType() {
      return defaultInstance;
    }

    private final com.google.protobuf.UnknownFieldSet unknownFields;
    @java.lang.Override
    public final com.google.protobuf.UnknownFieldSet
        getUnknownFields() {
      return this.unknownFields;
    }
    private CSVCMsg_GameEventList(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      initFields();
      int mutable_bitField0_ = 0;
      com.google.protobuf.UnknownFieldSet.Builder unknownFields =
          com.google.protobuf.UnknownFieldSet.newBuilder();
      try {
        boolean done = false;
        while (!done) {
          int tag = input.readTag();
          switch (tag) {
            case 0:
              done = true;
              break;
            default: {
              if (!parseUnknownField(input, unknownFields,
                                     extensionRegistry, tag)) {
                done = true;
              }
              break;
            }
            case 10: {
              if (!((mutable_bitField0_ & 0x00000001) == 0x00000001)) {
                descriptors_ = new java.util.ArrayList();
                mutable_bitField0_ |= 0x00000001;
              }
              descriptors_.add(input.readMessage(skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t.PARSER, extensionRegistry));
              break;
            }
          }
        }
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        throw e.setUnfinishedMessage(this);
      } catch (java.io.IOException e) {
        throw new com.google.protobuf.InvalidProtocolBufferException(
            e.getMessage()).setUnfinishedMessage(this);
      } finally {
        if (((mutable_bitField0_ & 0x00000001) == 0x00000001)) {
          descriptors_ = java.util.Collections.unmodifiableList(descriptors_);
        }
        this.unknownFields = unknownFields.build();
        makeExtensionsImmutable();
      }
    }
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_GameEventList_descriptor;
    }

    protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_GameEventList_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.class, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.Builder.class);
    }

    public static com.google.protobuf.Parser PARSER =
        new com.google.protobuf.AbstractParser() {
      public CSVCMsg_GameEventList parsePartialFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return new CSVCMsg_GameEventList(input, extensionRegistry);
      }
    };

    @java.lang.Override
    public com.google.protobuf.Parser getParserForType() {
      return PARSER;
    }

    public interface key_tOrBuilder extends
        // @@protoc_insertion_point(interface_extends:CSVCMsg_GameEventList.key_t)
        com.google.protobuf.MessageOrBuilder {

      /**
       * optional int32 type = 1;
       */
      boolean hasType();
      /**
       * optional int32 type = 1;
       */
      int getType();

      /**
       * optional string name = 2;
       */
      boolean hasName();
      /**
       * optional string name = 2;
       */
      java.lang.String getName();
      /**
       * optional string name = 2;
       */
      com.google.protobuf.ByteString
          getNameBytes();
    }
    /**
     * Protobuf type {@code CSVCMsg_GameEventList.key_t}
     */
    public static final class key_t extends
        com.google.protobuf.GeneratedMessage implements
        // @@protoc_insertion_point(message_implements:CSVCMsg_GameEventList.key_t)
        key_tOrBuilder {
      // Use key_t.newBuilder() to construct.
      private key_t(com.google.protobuf.GeneratedMessage.Builder builder) {
        super(builder);
        this.unknownFields = builder.getUnknownFields();
      }
      private key_t(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }

      private static final key_t defaultInstance;
      public static key_t getDefaultInstance() {
        return defaultInstance;
      }

      public key_t getDefaultInstanceForType() {
        return defaultInstance;
      }

      private final com.google.protobuf.UnknownFieldSet unknownFields;
      @java.lang.Override
      public final com.google.protobuf.UnknownFieldSet
          getUnknownFields() {
        return this.unknownFields;
      }
      private key_t(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        initFields();
        int mutable_bitField0_ = 0;
        com.google.protobuf.UnknownFieldSet.Builder unknownFields =
            com.google.protobuf.UnknownFieldSet.newBuilder();
        try {
          boolean done = false;
          while (!done) {
            int tag = input.readTag();
            switch (tag) {
              case 0:
                done = true;
                break;
              default: {
                if (!parseUnknownField(input, unknownFields,
                                       extensionRegistry, tag)) {
                  done = true;
                }
                break;
              }
              case 8: {
                bitField0_ |= 0x00000001;
                type_ = input.readInt32();
                break;
              }
              case 18: {
                com.google.protobuf.ByteString bs = input.readBytes();
                bitField0_ |= 0x00000002;
                name_ = bs;
                break;
              }
            }
          }
        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
          throw e.setUnfinishedMessage(this);
        } catch (java.io.IOException e) {
          throw new com.google.protobuf.InvalidProtocolBufferException(
              e.getMessage()).setUnfinishedMessage(this);
        } finally {
          this.unknownFields = unknownFields.build();
          makeExtensionsImmutable();
        }
      }
      public static final com.google.protobuf.Descriptors.Descriptor
          getDescriptor() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_GameEventList_key_t_descriptor;
      }

      protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
          internalGetFieldAccessorTable() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_GameEventList_key_t_fieldAccessorTable
            .ensureFieldAccessorsInitialized(
                skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t.class, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t.Builder.class);
      }

      public static com.google.protobuf.Parser PARSER =
          new com.google.protobuf.AbstractParser() {
        public key_t parsePartialFrom(
            com.google.protobuf.CodedInputStream input,
            com.google.protobuf.ExtensionRegistryLite extensionRegistry)
            throws com.google.protobuf.InvalidProtocolBufferException {
          return new key_t(input, extensionRegistry);
        }
      };

      @java.lang.Override
      public com.google.protobuf.Parser getParserForType() {
        return PARSER;
      }

      private int bitField0_;
      public static final int TYPE_FIELD_NUMBER = 1;
      private int type_;
      /**
       * optional int32 type = 1;
       */
      public boolean hasType() {
        return ((bitField0_ & 0x00000001) == 0x00000001);
      }
      /**
       * optional int32 type = 1;
       */
      public int getType() {
        return type_;
      }

      public static final int NAME_FIELD_NUMBER = 2;
      private java.lang.Object name_;
      /**
       * optional string name = 2;
       */
      public boolean hasName() {
        return ((bitField0_ & 0x00000002) == 0x00000002);
      }
      /**
       * optional string name = 2;
       */
      public java.lang.String getName() {
        java.lang.Object ref = name_;
        if (ref instanceof java.lang.String) {
          return (java.lang.String) ref;
        } else {
          com.google.protobuf.ByteString bs = 
              (com.google.protobuf.ByteString) ref;
          java.lang.String s = bs.toStringUtf8();
          if (bs.isValidUtf8()) {
            name_ = s;
          }
          return s;
        }
      }
      /**
       * optional string name = 2;
       */
      public com.google.protobuf.ByteString
          getNameBytes() {
        java.lang.Object ref = name_;
        if (ref instanceof java.lang.String) {
          com.google.protobuf.ByteString b = 
              com.google.protobuf.ByteString.copyFromUtf8(
                  (java.lang.String) ref);
          name_ = b;
          return b;
        } else {
          return (com.google.protobuf.ByteString) ref;
        }
      }

      private void initFields() {
        type_ = 0;
        name_ = "";
      }
      private byte memoizedIsInitialized = -1;
      public final boolean isInitialized() {
        byte isInitialized = memoizedIsInitialized;
        if (isInitialized == 1) return true;
        if (isInitialized == 0) return false;

        memoizedIsInitialized = 1;
        return true;
      }

      public void writeTo(com.google.protobuf.CodedOutputStream output)
                          throws java.io.IOException {
        getSerializedSize();
        if (((bitField0_ & 0x00000001) == 0x00000001)) {
          output.writeInt32(1, type_);
        }
        if (((bitField0_ & 0x00000002) == 0x00000002)) {
          output.writeBytes(2, getNameBytes());
        }
        getUnknownFields().writeTo(output);
      }

      private int memoizedSerializedSize = -1;
      public int getSerializedSize() {
        int size = memoizedSerializedSize;
        if (size != -1) return size;

        size = 0;
        if (((bitField0_ & 0x00000001) == 0x00000001)) {
          size += com.google.protobuf.CodedOutputStream
            .computeInt32Size(1, type_);
        }
        if (((bitField0_ & 0x00000002) == 0x00000002)) {
          size += com.google.protobuf.CodedOutputStream
            .computeBytesSize(2, getNameBytes());
        }
        size += getUnknownFields().getSerializedSize();
        memoizedSerializedSize = size;
        return size;
      }

      private static final long serialVersionUID = 0L;
      @java.lang.Override
      protected java.lang.Object writeReplace()
          throws java.io.ObjectStreamException {
        return super.writeReplace();
      }

      public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t parseFrom(
          com.google.protobuf.ByteString data)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return PARSER.parseFrom(data);
      }
      public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t parseFrom(
          com.google.protobuf.ByteString data,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return PARSER.parseFrom(data, extensionRegistry);
      }
      public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t parseFrom(byte[] data)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return PARSER.parseFrom(data);
      }
      public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t parseFrom(
          byte[] data,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return PARSER.parseFrom(data, extensionRegistry);
      }
      public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t parseFrom(java.io.InputStream input)
          throws java.io.IOException {
        return PARSER.parseFrom(input);
      }
      public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t parseFrom(
          java.io.InputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        return PARSER.parseFrom(input, extensionRegistry);
      }
      public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t parseDelimitedFrom(java.io.InputStream input)
          throws java.io.IOException {
        return PARSER.parseDelimitedFrom(input);
      }
      public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t parseDelimitedFrom(
          java.io.InputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        return PARSER.parseDelimitedFrom(input, extensionRegistry);
      }
      public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t parseFrom(
          com.google.protobuf.CodedInputStream input)
          throws java.io.IOException {
        return PARSER.parseFrom(input);
      }
      public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t parseFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        return PARSER.parseFrom(input, extensionRegistry);
      }

      public static Builder newBuilder() { return Builder.create(); }
      public Builder newBuilderForType() { return newBuilder(); }
      public static Builder newBuilder(skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t prototype) {
        return newBuilder().mergeFrom(prototype);
      }
      public Builder toBuilder() { return newBuilder(this); }

      @java.lang.Override
      protected Builder newBuilderForType(
          com.google.protobuf.GeneratedMessage.BuilderParent parent) {
        Builder builder = new Builder(parent);
        return builder;
      }
      /**
       * Protobuf type {@code CSVCMsg_GameEventList.key_t}
       */
      public static final class Builder extends
          com.google.protobuf.GeneratedMessage.Builder implements
          // @@protoc_insertion_point(builder_implements:CSVCMsg_GameEventList.key_t)
          skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_tOrBuilder {
        public static final com.google.protobuf.Descriptors.Descriptor
            getDescriptor() {
          return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_GameEventList_key_t_descriptor;
        }

        protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
            internalGetFieldAccessorTable() {
          return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_GameEventList_key_t_fieldAccessorTable
              .ensureFieldAccessorsInitialized(
                  skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t.class, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t.Builder.class);
        }

        // Construct using skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t.newBuilder()
        private Builder() {
          maybeForceBuilderInitialization();
        }

        private Builder(
            com.google.protobuf.GeneratedMessage.BuilderParent parent) {
          super(parent);
          maybeForceBuilderInitialization();
        }
        private void maybeForceBuilderInitialization() {
          if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
          }
        }
        private static Builder create() {
          return new Builder();
        }

        public Builder clear() {
          super.clear();
          type_ = 0;
          bitField0_ = (bitField0_ & ~0x00000001);
          name_ = "";
          bitField0_ = (bitField0_ & ~0x00000002);
          return this;
        }

        public Builder clone() {
          return create().mergeFrom(buildPartial());
        }

        public com.google.protobuf.Descriptors.Descriptor
            getDescriptorForType() {
          return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_GameEventList_key_t_descriptor;
        }

        public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t getDefaultInstanceForType() {
          return skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t.getDefaultInstance();
        }

        public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t build() {
          skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t result = buildPartial();
          if (!result.isInitialized()) {
            throw newUninitializedMessageException(result);
          }
          return result;
        }

        public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t buildPartial() {
          skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t result = new skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t(this);
          int from_bitField0_ = bitField0_;
          int to_bitField0_ = 0;
          if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
            to_bitField0_ |= 0x00000001;
          }
          result.type_ = type_;
          if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
            to_bitField0_ |= 0x00000002;
          }
          result.name_ = name_;
          result.bitField0_ = to_bitField0_;
          onBuilt();
          return result;
        }

        public Builder mergeFrom(com.google.protobuf.Message other) {
          if (other instanceof skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t) {
            return mergeFrom((skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t)other);
          } else {
            super.mergeFrom(other);
            return this;
          }
        }

        public Builder mergeFrom(skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t other) {
          if (other == skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t.getDefaultInstance()) return this;
          if (other.hasType()) {
            setType(other.getType());
          }
          if (other.hasName()) {
            bitField0_ |= 0x00000002;
            name_ = other.name_;
            onChanged();
          }
          this.mergeUnknownFields(other.getUnknownFields());
          return this;
        }

        public final boolean isInitialized() {
          return true;
        }

        public Builder mergeFrom(
            com.google.protobuf.CodedInputStream input,
            com.google.protobuf.ExtensionRegistryLite extensionRegistry)
            throws java.io.IOException {
          skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t parsedMessage = null;
          try {
            parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
          } catch (com.google.protobuf.InvalidProtocolBufferException e) {
            parsedMessage = (skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t) e.getUnfinishedMessage();
            throw e;
          } finally {
            if (parsedMessage != null) {
              mergeFrom(parsedMessage);
            }
          }
          return this;
        }
        private int bitField0_;

        private int type_ ;
        /**
         * optional int32 type = 1;
         */
        public boolean hasType() {
          return ((bitField0_ & 0x00000001) == 0x00000001);
        }
        /**
         * optional int32 type = 1;
         */
        public int getType() {
          return type_;
        }
        /**
         * optional int32 type = 1;
         */
        public Builder setType(int value) {
          bitField0_ |= 0x00000001;
          type_ = value;
          onChanged();
          return this;
        }
        /**
         * optional int32 type = 1;
         */
        public Builder clearType() {
          bitField0_ = (bitField0_ & ~0x00000001);
          type_ = 0;
          onChanged();
          return this;
        }

        private java.lang.Object name_ = "";
        /**
         * optional string name = 2;
         */
        public boolean hasName() {
          return ((bitField0_ & 0x00000002) == 0x00000002);
        }
        /**
         * optional string name = 2;
         */
        public java.lang.String getName() {
          java.lang.Object ref = name_;
          if (!(ref instanceof java.lang.String)) {
            com.google.protobuf.ByteString bs =
                (com.google.protobuf.ByteString) ref;
            java.lang.String s = bs.toStringUtf8();
            if (bs.isValidUtf8()) {
              name_ = s;
            }
            return s;
          } else {
            return (java.lang.String) ref;
          }
        }
        /**
         * optional string name = 2;
         */
        public com.google.protobuf.ByteString
            getNameBytes() {
          java.lang.Object ref = name_;
          if (ref instanceof String) {
            com.google.protobuf.ByteString b = 
                com.google.protobuf.ByteString.copyFromUtf8(
                    (java.lang.String) ref);
            name_ = b;
            return b;
          } else {
            return (com.google.protobuf.ByteString) ref;
          }
        }
        /**
         * optional string name = 2;
         */
        public Builder setName(
            java.lang.String value) {
          if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00000002;
          name_ = value;
          onChanged();
          return this;
        }
        /**
         * optional string name = 2;
         */
        public Builder clearName() {
          bitField0_ = (bitField0_ & ~0x00000002);
          name_ = getDefaultInstance().getName();
          onChanged();
          return this;
        }
        /**
         * optional string name = 2;
         */
        public Builder setNameBytes(
            com.google.protobuf.ByteString value) {
          if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00000002;
          name_ = value;
          onChanged();
          return this;
        }

        // @@protoc_insertion_point(builder_scope:CSVCMsg_GameEventList.key_t)
      }

      static {
        defaultInstance = new key_t(true);
        defaultInstance.initFields();
      }

      // @@protoc_insertion_point(class_scope:CSVCMsg_GameEventList.key_t)
    }

    public interface descriptor_tOrBuilder extends
        // @@protoc_insertion_point(interface_extends:CSVCMsg_GameEventList.descriptor_t)
        com.google.protobuf.MessageOrBuilder {

      /**
       * optional int32 eventid = 1;
       */
      boolean hasEventid();
      /**
       * optional int32 eventid = 1;
       */
      int getEventid();

      /**
       * optional string name = 2;
       */
      boolean hasName();
      /**
       * optional string name = 2;
       */
      java.lang.String getName();
      /**
       * optional string name = 2;
       */
      com.google.protobuf.ByteString
          getNameBytes();

      /**
       * repeated .CSVCMsg_GameEventList.key_t keys = 3;
       */
      java.util.List 
          getKeysList();
      /**
       * repeated .CSVCMsg_GameEventList.key_t keys = 3;
       */
      skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t getKeys(int index);
      /**
       * repeated .CSVCMsg_GameEventList.key_t keys = 3;
       */
      int getKeysCount();
      /**
       * repeated .CSVCMsg_GameEventList.key_t keys = 3;
       */
      java.util.List 
          getKeysOrBuilderList();
      /**
       * repeated .CSVCMsg_GameEventList.key_t keys = 3;
       */
      skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_tOrBuilder getKeysOrBuilder(
          int index);
    }
    /**
     * Protobuf type {@code CSVCMsg_GameEventList.descriptor_t}
     */
    public static final class descriptor_t extends
        com.google.protobuf.GeneratedMessage implements
        // @@protoc_insertion_point(message_implements:CSVCMsg_GameEventList.descriptor_t)
        descriptor_tOrBuilder {
      // Use descriptor_t.newBuilder() to construct.
      private descriptor_t(com.google.protobuf.GeneratedMessage.Builder builder) {
        super(builder);
        this.unknownFields = builder.getUnknownFields();
      }
      private descriptor_t(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }

      private static final descriptor_t defaultInstance;
      public static descriptor_t getDefaultInstance() {
        return defaultInstance;
      }

      public descriptor_t getDefaultInstanceForType() {
        return defaultInstance;
      }

      private final com.google.protobuf.UnknownFieldSet unknownFields;
      @java.lang.Override
      public final com.google.protobuf.UnknownFieldSet
          getUnknownFields() {
        return this.unknownFields;
      }
      private descriptor_t(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        initFields();
        int mutable_bitField0_ = 0;
        com.google.protobuf.UnknownFieldSet.Builder unknownFields =
            com.google.protobuf.UnknownFieldSet.newBuilder();
        try {
          boolean done = false;
          while (!done) {
            int tag = input.readTag();
            switch (tag) {
              case 0:
                done = true;
                break;
              default: {
                if (!parseUnknownField(input, unknownFields,
                                       extensionRegistry, tag)) {
                  done = true;
                }
                break;
              }
              case 8: {
                bitField0_ |= 0x00000001;
                eventid_ = input.readInt32();
                break;
              }
              case 18: {
                com.google.protobuf.ByteString bs = input.readBytes();
                bitField0_ |= 0x00000002;
                name_ = bs;
                break;
              }
              case 26: {
                if (!((mutable_bitField0_ & 0x00000004) == 0x00000004)) {
                  keys_ = new java.util.ArrayList();
                  mutable_bitField0_ |= 0x00000004;
                }
                keys_.add(input.readMessage(skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t.PARSER, extensionRegistry));
                break;
              }
            }
          }
        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
          throw e.setUnfinishedMessage(this);
        } catch (java.io.IOException e) {
          throw new com.google.protobuf.InvalidProtocolBufferException(
              e.getMessage()).setUnfinishedMessage(this);
        } finally {
          if (((mutable_bitField0_ & 0x00000004) == 0x00000004)) {
            keys_ = java.util.Collections.unmodifiableList(keys_);
          }
          this.unknownFields = unknownFields.build();
          makeExtensionsImmutable();
        }
      }
      public static final com.google.protobuf.Descriptors.Descriptor
          getDescriptor() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_GameEventList_descriptor_t_descriptor;
      }

      protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
          internalGetFieldAccessorTable() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_GameEventList_descriptor_t_fieldAccessorTable
            .ensureFieldAccessorsInitialized(
                skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t.class, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t.Builder.class);
      }

      public static com.google.protobuf.Parser PARSER =
          new com.google.protobuf.AbstractParser() {
        public descriptor_t parsePartialFrom(
            com.google.protobuf.CodedInputStream input,
            com.google.protobuf.ExtensionRegistryLite extensionRegistry)
            throws com.google.protobuf.InvalidProtocolBufferException {
          return new descriptor_t(input, extensionRegistry);
        }
      };

      @java.lang.Override
      public com.google.protobuf.Parser getParserForType() {
        return PARSER;
      }

      private int bitField0_;
      public static final int EVENTID_FIELD_NUMBER = 1;
      private int eventid_;
      /**
       * optional int32 eventid = 1;
       */
      public boolean hasEventid() {
        return ((bitField0_ & 0x00000001) == 0x00000001);
      }
      /**
       * optional int32 eventid = 1;
       */
      public int getEventid() {
        return eventid_;
      }

      public static final int NAME_FIELD_NUMBER = 2;
      private java.lang.Object name_;
      /**
       * optional string name = 2;
       */
      public boolean hasName() {
        return ((bitField0_ & 0x00000002) == 0x00000002);
      }
      /**
       * optional string name = 2;
       */
      public java.lang.String getName() {
        java.lang.Object ref = name_;
        if (ref instanceof java.lang.String) {
          return (java.lang.String) ref;
        } else {
          com.google.protobuf.ByteString bs = 
              (com.google.protobuf.ByteString) ref;
          java.lang.String s = bs.toStringUtf8();
          if (bs.isValidUtf8()) {
            name_ = s;
          }
          return s;
        }
      }
      /**
       * optional string name = 2;
       */
      public com.google.protobuf.ByteString
          getNameBytes() {
        java.lang.Object ref = name_;
        if (ref instanceof java.lang.String) {
          com.google.protobuf.ByteString b = 
              com.google.protobuf.ByteString.copyFromUtf8(
                  (java.lang.String) ref);
          name_ = b;
          return b;
        } else {
          return (com.google.protobuf.ByteString) ref;
        }
      }

      public static final int KEYS_FIELD_NUMBER = 3;
      private java.util.List keys_;
      /**
       * repeated .CSVCMsg_GameEventList.key_t keys = 3;
       */
      public java.util.List getKeysList() {
        return keys_;
      }
      /**
       * repeated .CSVCMsg_GameEventList.key_t keys = 3;
       */
      public java.util.List 
          getKeysOrBuilderList() {
        return keys_;
      }
      /**
       * repeated .CSVCMsg_GameEventList.key_t keys = 3;
       */
      public int getKeysCount() {
        return keys_.size();
      }
      /**
       * repeated .CSVCMsg_GameEventList.key_t keys = 3;
       */
      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t getKeys(int index) {
        return keys_.get(index);
      }
      /**
       * repeated .CSVCMsg_GameEventList.key_t keys = 3;
       */
      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_tOrBuilder getKeysOrBuilder(
          int index) {
        return keys_.get(index);
      }

      private void initFields() {
        eventid_ = 0;
        name_ = "";
        keys_ = java.util.Collections.emptyList();
      }
      private byte memoizedIsInitialized = -1;
      public final boolean isInitialized() {
        byte isInitialized = memoizedIsInitialized;
        if (isInitialized == 1) return true;
        if (isInitialized == 0) return false;

        memoizedIsInitialized = 1;
        return true;
      }

      public void writeTo(com.google.protobuf.CodedOutputStream output)
                          throws java.io.IOException {
        getSerializedSize();
        if (((bitField0_ & 0x00000001) == 0x00000001)) {
          output.writeInt32(1, eventid_);
        }
        if (((bitField0_ & 0x00000002) == 0x00000002)) {
          output.writeBytes(2, getNameBytes());
        }
        for (int i = 0; i < keys_.size(); i++) {
          output.writeMessage(3, keys_.get(i));
        }
        getUnknownFields().writeTo(output);
      }

      private int memoizedSerializedSize = -1;
      public int getSerializedSize() {
        int size = memoizedSerializedSize;
        if (size != -1) return size;

        size = 0;
        if (((bitField0_ & 0x00000001) == 0x00000001)) {
          size += com.google.protobuf.CodedOutputStream
            .computeInt32Size(1, eventid_);
        }
        if (((bitField0_ & 0x00000002) == 0x00000002)) {
          size += com.google.protobuf.CodedOutputStream
            .computeBytesSize(2, getNameBytes());
        }
        for (int i = 0; i < keys_.size(); i++) {
          size += com.google.protobuf.CodedOutputStream
            .computeMessageSize(3, keys_.get(i));
        }
        size += getUnknownFields().getSerializedSize();
        memoizedSerializedSize = size;
        return size;
      }

      private static final long serialVersionUID = 0L;
      @java.lang.Override
      protected java.lang.Object writeReplace()
          throws java.io.ObjectStreamException {
        return super.writeReplace();
      }

      public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t parseFrom(
          com.google.protobuf.ByteString data)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return PARSER.parseFrom(data);
      }
      public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t parseFrom(
          com.google.protobuf.ByteString data,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return PARSER.parseFrom(data, extensionRegistry);
      }
      public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t parseFrom(byte[] data)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return PARSER.parseFrom(data);
      }
      public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t parseFrom(
          byte[] data,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return PARSER.parseFrom(data, extensionRegistry);
      }
      public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t parseFrom(java.io.InputStream input)
          throws java.io.IOException {
        return PARSER.parseFrom(input);
      }
      public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t parseFrom(
          java.io.InputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        return PARSER.parseFrom(input, extensionRegistry);
      }
      public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t parseDelimitedFrom(java.io.InputStream input)
          throws java.io.IOException {
        return PARSER.parseDelimitedFrom(input);
      }
      public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t parseDelimitedFrom(
          java.io.InputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        return PARSER.parseDelimitedFrom(input, extensionRegistry);
      }
      public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t parseFrom(
          com.google.protobuf.CodedInputStream input)
          throws java.io.IOException {
        return PARSER.parseFrom(input);
      }
      public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t parseFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        return PARSER.parseFrom(input, extensionRegistry);
      }

      public static Builder newBuilder() { return Builder.create(); }
      public Builder newBuilderForType() { return newBuilder(); }
      public static Builder newBuilder(skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t prototype) {
        return newBuilder().mergeFrom(prototype);
      }
      public Builder toBuilder() { return newBuilder(this); }

      @java.lang.Override
      protected Builder newBuilderForType(
          com.google.protobuf.GeneratedMessage.BuilderParent parent) {
        Builder builder = new Builder(parent);
        return builder;
      }
      /**
       * Protobuf type {@code CSVCMsg_GameEventList.descriptor_t}
       */
      public static final class Builder extends
          com.google.protobuf.GeneratedMessage.Builder implements
          // @@protoc_insertion_point(builder_implements:CSVCMsg_GameEventList.descriptor_t)
          skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_tOrBuilder {
        public static final com.google.protobuf.Descriptors.Descriptor
            getDescriptor() {
          return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_GameEventList_descriptor_t_descriptor;
        }

        protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
            internalGetFieldAccessorTable() {
          return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_GameEventList_descriptor_t_fieldAccessorTable
              .ensureFieldAccessorsInitialized(
                  skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t.class, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t.Builder.class);
        }

        // Construct using skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t.newBuilder()
        private Builder() {
          maybeForceBuilderInitialization();
        }

        private Builder(
            com.google.protobuf.GeneratedMessage.BuilderParent parent) {
          super(parent);
          maybeForceBuilderInitialization();
        }
        private void maybeForceBuilderInitialization() {
          if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
            getKeysFieldBuilder();
          }
        }
        private static Builder create() {
          return new Builder();
        }

        public Builder clear() {
          super.clear();
          eventid_ = 0;
          bitField0_ = (bitField0_ & ~0x00000001);
          name_ = "";
          bitField0_ = (bitField0_ & ~0x00000002);
          if (keysBuilder_ == null) {
            keys_ = java.util.Collections.emptyList();
            bitField0_ = (bitField0_ & ~0x00000004);
          } else {
            keysBuilder_.clear();
          }
          return this;
        }

        public Builder clone() {
          return create().mergeFrom(buildPartial());
        }

        public com.google.protobuf.Descriptors.Descriptor
            getDescriptorForType() {
          return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_GameEventList_descriptor_t_descriptor;
        }

        public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t getDefaultInstanceForType() {
          return skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t.getDefaultInstance();
        }

        public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t build() {
          skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t result = buildPartial();
          if (!result.isInitialized()) {
            throw newUninitializedMessageException(result);
          }
          return result;
        }

        public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t buildPartial() {
          skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t result = new skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t(this);
          int from_bitField0_ = bitField0_;
          int to_bitField0_ = 0;
          if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
            to_bitField0_ |= 0x00000001;
          }
          result.eventid_ = eventid_;
          if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
            to_bitField0_ |= 0x00000002;
          }
          result.name_ = name_;
          if (keysBuilder_ == null) {
            if (((bitField0_ & 0x00000004) == 0x00000004)) {
              keys_ = java.util.Collections.unmodifiableList(keys_);
              bitField0_ = (bitField0_ & ~0x00000004);
            }
            result.keys_ = keys_;
          } else {
            result.keys_ = keysBuilder_.build();
          }
          result.bitField0_ = to_bitField0_;
          onBuilt();
          return result;
        }

        public Builder mergeFrom(com.google.protobuf.Message other) {
          if (other instanceof skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t) {
            return mergeFrom((skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t)other);
          } else {
            super.mergeFrom(other);
            return this;
          }
        }

        public Builder mergeFrom(skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t other) {
          if (other == skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t.getDefaultInstance()) return this;
          if (other.hasEventid()) {
            setEventid(other.getEventid());
          }
          if (other.hasName()) {
            bitField0_ |= 0x00000002;
            name_ = other.name_;
            onChanged();
          }
          if (keysBuilder_ == null) {
            if (!other.keys_.isEmpty()) {
              if (keys_.isEmpty()) {
                keys_ = other.keys_;
                bitField0_ = (bitField0_ & ~0x00000004);
              } else {
                ensureKeysIsMutable();
                keys_.addAll(other.keys_);
              }
              onChanged();
            }
          } else {
            if (!other.keys_.isEmpty()) {
              if (keysBuilder_.isEmpty()) {
                keysBuilder_.dispose();
                keysBuilder_ = null;
                keys_ = other.keys_;
                bitField0_ = (bitField0_ & ~0x00000004);
                keysBuilder_ = 
                  com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ?
                     getKeysFieldBuilder() : null;
              } else {
                keysBuilder_.addAllMessages(other.keys_);
              }
            }
          }
          this.mergeUnknownFields(other.getUnknownFields());
          return this;
        }

        public final boolean isInitialized() {
          return true;
        }

        public Builder mergeFrom(
            com.google.protobuf.CodedInputStream input,
            com.google.protobuf.ExtensionRegistryLite extensionRegistry)
            throws java.io.IOException {
          skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t parsedMessage = null;
          try {
            parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
          } catch (com.google.protobuf.InvalidProtocolBufferException e) {
            parsedMessage = (skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t) e.getUnfinishedMessage();
            throw e;
          } finally {
            if (parsedMessage != null) {
              mergeFrom(parsedMessage);
            }
          }
          return this;
        }
        private int bitField0_;

        private int eventid_ ;
        /**
         * optional int32 eventid = 1;
         */
        public boolean hasEventid() {
          return ((bitField0_ & 0x00000001) == 0x00000001);
        }
        /**
         * optional int32 eventid = 1;
         */
        public int getEventid() {
          return eventid_;
        }
        /**
         * optional int32 eventid = 1;
         */
        public Builder setEventid(int value) {
          bitField0_ |= 0x00000001;
          eventid_ = value;
          onChanged();
          return this;
        }
        /**
         * optional int32 eventid = 1;
         */
        public Builder clearEventid() {
          bitField0_ = (bitField0_ & ~0x00000001);
          eventid_ = 0;
          onChanged();
          return this;
        }

        private java.lang.Object name_ = "";
        /**
         * optional string name = 2;
         */
        public boolean hasName() {
          return ((bitField0_ & 0x00000002) == 0x00000002);
        }
        /**
         * optional string name = 2;
         */
        public java.lang.String getName() {
          java.lang.Object ref = name_;
          if (!(ref instanceof java.lang.String)) {
            com.google.protobuf.ByteString bs =
                (com.google.protobuf.ByteString) ref;
            java.lang.String s = bs.toStringUtf8();
            if (bs.isValidUtf8()) {
              name_ = s;
            }
            return s;
          } else {
            return (java.lang.String) ref;
          }
        }
        /**
         * optional string name = 2;
         */
        public com.google.protobuf.ByteString
            getNameBytes() {
          java.lang.Object ref = name_;
          if (ref instanceof String) {
            com.google.protobuf.ByteString b = 
                com.google.protobuf.ByteString.copyFromUtf8(
                    (java.lang.String) ref);
            name_ = b;
            return b;
          } else {
            return (com.google.protobuf.ByteString) ref;
          }
        }
        /**
         * optional string name = 2;
         */
        public Builder setName(
            java.lang.String value) {
          if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00000002;
          name_ = value;
          onChanged();
          return this;
        }
        /**
         * optional string name = 2;
         */
        public Builder clearName() {
          bitField0_ = (bitField0_ & ~0x00000002);
          name_ = getDefaultInstance().getName();
          onChanged();
          return this;
        }
        /**
         * optional string name = 2;
         */
        public Builder setNameBytes(
            com.google.protobuf.ByteString value) {
          if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00000002;
          name_ = value;
          onChanged();
          return this;
        }

        private java.util.List keys_ =
          java.util.Collections.emptyList();
        private void ensureKeysIsMutable() {
          if (!((bitField0_ & 0x00000004) == 0x00000004)) {
            keys_ = new java.util.ArrayList(keys_);
            bitField0_ |= 0x00000004;
           }
        }

        private com.google.protobuf.RepeatedFieldBuilder<
            skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t.Builder, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_tOrBuilder> keysBuilder_;

        /**
         * repeated .CSVCMsg_GameEventList.key_t keys = 3;
         */
        public java.util.List getKeysList() {
          if (keysBuilder_ == null) {
            return java.util.Collections.unmodifiableList(keys_);
          } else {
            return keysBuilder_.getMessageList();
          }
        }
        /**
         * repeated .CSVCMsg_GameEventList.key_t keys = 3;
         */
        public int getKeysCount() {
          if (keysBuilder_ == null) {
            return keys_.size();
          } else {
            return keysBuilder_.getCount();
          }
        }
        /**
         * repeated .CSVCMsg_GameEventList.key_t keys = 3;
         */
        public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t getKeys(int index) {
          if (keysBuilder_ == null) {
            return keys_.get(index);
          } else {
            return keysBuilder_.getMessage(index);
          }
        }
        /**
         * repeated .CSVCMsg_GameEventList.key_t keys = 3;
         */
        public Builder setKeys(
            int index, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t value) {
          if (keysBuilder_ == null) {
            if (value == null) {
              throw new NullPointerException();
            }
            ensureKeysIsMutable();
            keys_.set(index, value);
            onChanged();
          } else {
            keysBuilder_.setMessage(index, value);
          }
          return this;
        }
        /**
         * repeated .CSVCMsg_GameEventList.key_t keys = 3;
         */
        public Builder setKeys(
            int index, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t.Builder builderForValue) {
          if (keysBuilder_ == null) {
            ensureKeysIsMutable();
            keys_.set(index, builderForValue.build());
            onChanged();
          } else {
            keysBuilder_.setMessage(index, builderForValue.build());
          }
          return this;
        }
        /**
         * repeated .CSVCMsg_GameEventList.key_t keys = 3;
         */
        public Builder addKeys(skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t value) {
          if (keysBuilder_ == null) {
            if (value == null) {
              throw new NullPointerException();
            }
            ensureKeysIsMutable();
            keys_.add(value);
            onChanged();
          } else {
            keysBuilder_.addMessage(value);
          }
          return this;
        }
        /**
         * repeated .CSVCMsg_GameEventList.key_t keys = 3;
         */
        public Builder addKeys(
            int index, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t value) {
          if (keysBuilder_ == null) {
            if (value == null) {
              throw new NullPointerException();
            }
            ensureKeysIsMutable();
            keys_.add(index, value);
            onChanged();
          } else {
            keysBuilder_.addMessage(index, value);
          }
          return this;
        }
        /**
         * repeated .CSVCMsg_GameEventList.key_t keys = 3;
         */
        public Builder addKeys(
            skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t.Builder builderForValue) {
          if (keysBuilder_ == null) {
            ensureKeysIsMutable();
            keys_.add(builderForValue.build());
            onChanged();
          } else {
            keysBuilder_.addMessage(builderForValue.build());
          }
          return this;
        }
        /**
         * repeated .CSVCMsg_GameEventList.key_t keys = 3;
         */
        public Builder addKeys(
            int index, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t.Builder builderForValue) {
          if (keysBuilder_ == null) {
            ensureKeysIsMutable();
            keys_.add(index, builderForValue.build());
            onChanged();
          } else {
            keysBuilder_.addMessage(index, builderForValue.build());
          }
          return this;
        }
        /**
         * repeated .CSVCMsg_GameEventList.key_t keys = 3;
         */
        public Builder addAllKeys(
            java.lang.Iterable values) {
          if (keysBuilder_ == null) {
            ensureKeysIsMutable();
            com.google.protobuf.AbstractMessageLite.Builder.addAll(
                values, keys_);
            onChanged();
          } else {
            keysBuilder_.addAllMessages(values);
          }
          return this;
        }
        /**
         * repeated .CSVCMsg_GameEventList.key_t keys = 3;
         */
        public Builder clearKeys() {
          if (keysBuilder_ == null) {
            keys_ = java.util.Collections.emptyList();
            bitField0_ = (bitField0_ & ~0x00000004);
            onChanged();
          } else {
            keysBuilder_.clear();
          }
          return this;
        }
        /**
         * repeated .CSVCMsg_GameEventList.key_t keys = 3;
         */
        public Builder removeKeys(int index) {
          if (keysBuilder_ == null) {
            ensureKeysIsMutable();
            keys_.remove(index);
            onChanged();
          } else {
            keysBuilder_.remove(index);
          }
          return this;
        }
        /**
         * repeated .CSVCMsg_GameEventList.key_t keys = 3;
         */
        public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t.Builder getKeysBuilder(
            int index) {
          return getKeysFieldBuilder().getBuilder(index);
        }
        /**
         * repeated .CSVCMsg_GameEventList.key_t keys = 3;
         */
        public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_tOrBuilder getKeysOrBuilder(
            int index) {
          if (keysBuilder_ == null) {
            return keys_.get(index);  } else {
            return keysBuilder_.getMessageOrBuilder(index);
          }
        }
        /**
         * repeated .CSVCMsg_GameEventList.key_t keys = 3;
         */
        public java.util.List 
             getKeysOrBuilderList() {
          if (keysBuilder_ != null) {
            return keysBuilder_.getMessageOrBuilderList();
          } else {
            return java.util.Collections.unmodifiableList(keys_);
          }
        }
        /**
         * repeated .CSVCMsg_GameEventList.key_t keys = 3;
         */
        public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t.Builder addKeysBuilder() {
          return getKeysFieldBuilder().addBuilder(
              skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t.getDefaultInstance());
        }
        /**
         * repeated .CSVCMsg_GameEventList.key_t keys = 3;
         */
        public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t.Builder addKeysBuilder(
            int index) {
          return getKeysFieldBuilder().addBuilder(
              index, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t.getDefaultInstance());
        }
        /**
         * repeated .CSVCMsg_GameEventList.key_t keys = 3;
         */
        public java.util.List 
             getKeysBuilderList() {
          return getKeysFieldBuilder().getBuilderList();
        }
        private com.google.protobuf.RepeatedFieldBuilder<
            skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t.Builder, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_tOrBuilder> 
            getKeysFieldBuilder() {
          if (keysBuilder_ == null) {
            keysBuilder_ = new com.google.protobuf.RepeatedFieldBuilder<
                skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_t.Builder, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.key_tOrBuilder>(
                    keys_,
                    ((bitField0_ & 0x00000004) == 0x00000004),
                    getParentForChildren(),
                    isClean());
            keys_ = null;
          }
          return keysBuilder_;
        }

        // @@protoc_insertion_point(builder_scope:CSVCMsg_GameEventList.descriptor_t)
      }

      static {
        defaultInstance = new descriptor_t(true);
        defaultInstance.initFields();
      }

      // @@protoc_insertion_point(class_scope:CSVCMsg_GameEventList.descriptor_t)
    }

    public static final int DESCRIPTORS_FIELD_NUMBER = 1;
    private java.util.List descriptors_;
    /**
     * repeated .CSVCMsg_GameEventList.descriptor_t descriptors = 1;
     */
    public java.util.List getDescriptorsList() {
      return descriptors_;
    }
    /**
     * repeated .CSVCMsg_GameEventList.descriptor_t descriptors = 1;
     */
    public java.util.List 
        getDescriptorsOrBuilderList() {
      return descriptors_;
    }
    /**
     * repeated .CSVCMsg_GameEventList.descriptor_t descriptors = 1;
     */
    public int getDescriptorsCount() {
      return descriptors_.size();
    }
    /**
     * repeated .CSVCMsg_GameEventList.descriptor_t descriptors = 1;
     */
    public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t getDescriptors(int index) {
      return descriptors_.get(index);
    }
    /**
     * repeated .CSVCMsg_GameEventList.descriptor_t descriptors = 1;
     */
    public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_tOrBuilder getDescriptorsOrBuilder(
        int index) {
      return descriptors_.get(index);
    }

    private void initFields() {
      descriptors_ = java.util.Collections.emptyList();
    }
    private byte memoizedIsInitialized = -1;
    public final boolean isInitialized() {
      byte isInitialized = memoizedIsInitialized;
      if (isInitialized == 1) return true;
      if (isInitialized == 0) return false;

      memoizedIsInitialized = 1;
      return true;
    }

    public void writeTo(com.google.protobuf.CodedOutputStream output)
                        throws java.io.IOException {
      getSerializedSize();
      for (int i = 0; i < descriptors_.size(); i++) {
        output.writeMessage(1, descriptors_.get(i));
      }
      getUnknownFields().writeTo(output);
    }

    private int memoizedSerializedSize = -1;
    public int getSerializedSize() {
      int size = memoizedSerializedSize;
      if (size != -1) return size;

      size = 0;
      for (int i = 0; i < descriptors_.size(); i++) {
        size += com.google.protobuf.CodedOutputStream
          .computeMessageSize(1, descriptors_.get(i));
      }
      size += getUnknownFields().getSerializedSize();
      memoizedSerializedSize = size;
      return size;
    }

    private static final long serialVersionUID = 0L;
    @java.lang.Override
    protected java.lang.Object writeReplace()
        throws java.io.ObjectStreamException {
      return super.writeReplace();
    }

    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList parseFrom(
        com.google.protobuf.ByteString data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList parseFrom(
        com.google.protobuf.ByteString data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList parseFrom(byte[] data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList parseFrom(
        byte[] data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList parseFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList parseFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList parseDelimitedFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList parseDelimitedFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList parseFrom(
        com.google.protobuf.CodedInputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList parseFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }

    public static Builder newBuilder() { return Builder.create(); }
    public Builder newBuilderForType() { return newBuilder(); }
    public static Builder newBuilder(skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList prototype) {
      return newBuilder().mergeFrom(prototype);
    }
    public Builder toBuilder() { return newBuilder(this); }

    @java.lang.Override
    protected Builder newBuilderForType(
        com.google.protobuf.GeneratedMessage.BuilderParent parent) {
      Builder builder = new Builder(parent);
      return builder;
    }
    /**
     * Protobuf type {@code CSVCMsg_GameEventList}
     */
    public static final class Builder extends
        com.google.protobuf.GeneratedMessage.Builder implements
        // @@protoc_insertion_point(builder_implements:CSVCMsg_GameEventList)
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventListOrBuilder {
      public static final com.google.protobuf.Descriptors.Descriptor
          getDescriptor() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_GameEventList_descriptor;
      }

      protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
          internalGetFieldAccessorTable() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_GameEventList_fieldAccessorTable
            .ensureFieldAccessorsInitialized(
                skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.class, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.Builder.class);
      }

      // Construct using skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.newBuilder()
      private Builder() {
        maybeForceBuilderInitialization();
      }

      private Builder(
          com.google.protobuf.GeneratedMessage.BuilderParent parent) {
        super(parent);
        maybeForceBuilderInitialization();
      }
      private void maybeForceBuilderInitialization() {
        if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
          getDescriptorsFieldBuilder();
        }
      }
      private static Builder create() {
        return new Builder();
      }

      public Builder clear() {
        super.clear();
        if (descriptorsBuilder_ == null) {
          descriptors_ = java.util.Collections.emptyList();
          bitField0_ = (bitField0_ & ~0x00000001);
        } else {
          descriptorsBuilder_.clear();
        }
        return this;
      }

      public Builder clone() {
        return create().mergeFrom(buildPartial());
      }

      public com.google.protobuf.Descriptors.Descriptor
          getDescriptorForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_GameEventList_descriptor;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList getDefaultInstanceForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.getDefaultInstance();
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList build() {
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList result = buildPartial();
        if (!result.isInitialized()) {
          throw newUninitializedMessageException(result);
        }
        return result;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList buildPartial() {
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList result = new skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList(this);
        int from_bitField0_ = bitField0_;
        if (descriptorsBuilder_ == null) {
          if (((bitField0_ & 0x00000001) == 0x00000001)) {
            descriptors_ = java.util.Collections.unmodifiableList(descriptors_);
            bitField0_ = (bitField0_ & ~0x00000001);
          }
          result.descriptors_ = descriptors_;
        } else {
          result.descriptors_ = descriptorsBuilder_.build();
        }
        onBuilt();
        return result;
      }

      public Builder mergeFrom(com.google.protobuf.Message other) {
        if (other instanceof skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList) {
          return mergeFrom((skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList)other);
        } else {
          super.mergeFrom(other);
          return this;
        }
      }

      public Builder mergeFrom(skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList other) {
        if (other == skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.getDefaultInstance()) return this;
        if (descriptorsBuilder_ == null) {
          if (!other.descriptors_.isEmpty()) {
            if (descriptors_.isEmpty()) {
              descriptors_ = other.descriptors_;
              bitField0_ = (bitField0_ & ~0x00000001);
            } else {
              ensureDescriptorsIsMutable();
              descriptors_.addAll(other.descriptors_);
            }
            onChanged();
          }
        } else {
          if (!other.descriptors_.isEmpty()) {
            if (descriptorsBuilder_.isEmpty()) {
              descriptorsBuilder_.dispose();
              descriptorsBuilder_ = null;
              descriptors_ = other.descriptors_;
              bitField0_ = (bitField0_ & ~0x00000001);
              descriptorsBuilder_ = 
                com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ?
                   getDescriptorsFieldBuilder() : null;
            } else {
              descriptorsBuilder_.addAllMessages(other.descriptors_);
            }
          }
        }
        this.mergeUnknownFields(other.getUnknownFields());
        return this;
      }

      public final boolean isInitialized() {
        return true;
      }

      public Builder mergeFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList parsedMessage = null;
        try {
          parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
          parsedMessage = (skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList) e.getUnfinishedMessage();
          throw e;
        } finally {
          if (parsedMessage != null) {
            mergeFrom(parsedMessage);
          }
        }
        return this;
      }
      private int bitField0_;

      private java.util.List descriptors_ =
        java.util.Collections.emptyList();
      private void ensureDescriptorsIsMutable() {
        if (!((bitField0_ & 0x00000001) == 0x00000001)) {
          descriptors_ = new java.util.ArrayList(descriptors_);
          bitField0_ |= 0x00000001;
         }
      }

      private com.google.protobuf.RepeatedFieldBuilder<
          skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t.Builder, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_tOrBuilder> descriptorsBuilder_;

      /**
       * repeated .CSVCMsg_GameEventList.descriptor_t descriptors = 1;
       */
      public java.util.List getDescriptorsList() {
        if (descriptorsBuilder_ == null) {
          return java.util.Collections.unmodifiableList(descriptors_);
        } else {
          return descriptorsBuilder_.getMessageList();
        }
      }
      /**
       * repeated .CSVCMsg_GameEventList.descriptor_t descriptors = 1;
       */
      public int getDescriptorsCount() {
        if (descriptorsBuilder_ == null) {
          return descriptors_.size();
        } else {
          return descriptorsBuilder_.getCount();
        }
      }
      /**
       * repeated .CSVCMsg_GameEventList.descriptor_t descriptors = 1;
       */
      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t getDescriptors(int index) {
        if (descriptorsBuilder_ == null) {
          return descriptors_.get(index);
        } else {
          return descriptorsBuilder_.getMessage(index);
        }
      }
      /**
       * repeated .CSVCMsg_GameEventList.descriptor_t descriptors = 1;
       */
      public Builder setDescriptors(
          int index, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t value) {
        if (descriptorsBuilder_ == null) {
          if (value == null) {
            throw new NullPointerException();
          }
          ensureDescriptorsIsMutable();
          descriptors_.set(index, value);
          onChanged();
        } else {
          descriptorsBuilder_.setMessage(index, value);
        }
        return this;
      }
      /**
       * repeated .CSVCMsg_GameEventList.descriptor_t descriptors = 1;
       */
      public Builder setDescriptors(
          int index, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t.Builder builderForValue) {
        if (descriptorsBuilder_ == null) {
          ensureDescriptorsIsMutable();
          descriptors_.set(index, builderForValue.build());
          onChanged();
        } else {
          descriptorsBuilder_.setMessage(index, builderForValue.build());
        }
        return this;
      }
      /**
       * repeated .CSVCMsg_GameEventList.descriptor_t descriptors = 1;
       */
      public Builder addDescriptors(skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t value) {
        if (descriptorsBuilder_ == null) {
          if (value == null) {
            throw new NullPointerException();
          }
          ensureDescriptorsIsMutable();
          descriptors_.add(value);
          onChanged();
        } else {
          descriptorsBuilder_.addMessage(value);
        }
        return this;
      }
      /**
       * repeated .CSVCMsg_GameEventList.descriptor_t descriptors = 1;
       */
      public Builder addDescriptors(
          int index, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t value) {
        if (descriptorsBuilder_ == null) {
          if (value == null) {
            throw new NullPointerException();
          }
          ensureDescriptorsIsMutable();
          descriptors_.add(index, value);
          onChanged();
        } else {
          descriptorsBuilder_.addMessage(index, value);
        }
        return this;
      }
      /**
       * repeated .CSVCMsg_GameEventList.descriptor_t descriptors = 1;
       */
      public Builder addDescriptors(
          skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t.Builder builderForValue) {
        if (descriptorsBuilder_ == null) {
          ensureDescriptorsIsMutable();
          descriptors_.add(builderForValue.build());
          onChanged();
        } else {
          descriptorsBuilder_.addMessage(builderForValue.build());
        }
        return this;
      }
      /**
       * repeated .CSVCMsg_GameEventList.descriptor_t descriptors = 1;
       */
      public Builder addDescriptors(
          int index, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t.Builder builderForValue) {
        if (descriptorsBuilder_ == null) {
          ensureDescriptorsIsMutable();
          descriptors_.add(index, builderForValue.build());
          onChanged();
        } else {
          descriptorsBuilder_.addMessage(index, builderForValue.build());
        }
        return this;
      }
      /**
       * repeated .CSVCMsg_GameEventList.descriptor_t descriptors = 1;
       */
      public Builder addAllDescriptors(
          java.lang.Iterable values) {
        if (descriptorsBuilder_ == null) {
          ensureDescriptorsIsMutable();
          com.google.protobuf.AbstractMessageLite.Builder.addAll(
              values, descriptors_);
          onChanged();
        } else {
          descriptorsBuilder_.addAllMessages(values);
        }
        return this;
      }
      /**
       * repeated .CSVCMsg_GameEventList.descriptor_t descriptors = 1;
       */
      public Builder clearDescriptors() {
        if (descriptorsBuilder_ == null) {
          descriptors_ = java.util.Collections.emptyList();
          bitField0_ = (bitField0_ & ~0x00000001);
          onChanged();
        } else {
          descriptorsBuilder_.clear();
        }
        return this;
      }
      /**
       * repeated .CSVCMsg_GameEventList.descriptor_t descriptors = 1;
       */
      public Builder removeDescriptors(int index) {
        if (descriptorsBuilder_ == null) {
          ensureDescriptorsIsMutable();
          descriptors_.remove(index);
          onChanged();
        } else {
          descriptorsBuilder_.remove(index);
        }
        return this;
      }
      /**
       * repeated .CSVCMsg_GameEventList.descriptor_t descriptors = 1;
       */
      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t.Builder getDescriptorsBuilder(
          int index) {
        return getDescriptorsFieldBuilder().getBuilder(index);
      }
      /**
       * repeated .CSVCMsg_GameEventList.descriptor_t descriptors = 1;
       */
      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_tOrBuilder getDescriptorsOrBuilder(
          int index) {
        if (descriptorsBuilder_ == null) {
          return descriptors_.get(index);  } else {
          return descriptorsBuilder_.getMessageOrBuilder(index);
        }
      }
      /**
       * repeated .CSVCMsg_GameEventList.descriptor_t descriptors = 1;
       */
      public java.util.List 
           getDescriptorsOrBuilderList() {
        if (descriptorsBuilder_ != null) {
          return descriptorsBuilder_.getMessageOrBuilderList();
        } else {
          return java.util.Collections.unmodifiableList(descriptors_);
        }
      }
      /**
       * repeated .CSVCMsg_GameEventList.descriptor_t descriptors = 1;
       */
      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t.Builder addDescriptorsBuilder() {
        return getDescriptorsFieldBuilder().addBuilder(
            skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t.getDefaultInstance());
      }
      /**
       * repeated .CSVCMsg_GameEventList.descriptor_t descriptors = 1;
       */
      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t.Builder addDescriptorsBuilder(
          int index) {
        return getDescriptorsFieldBuilder().addBuilder(
            index, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t.getDefaultInstance());
      }
      /**
       * repeated .CSVCMsg_GameEventList.descriptor_t descriptors = 1;
       */
      public java.util.List 
           getDescriptorsBuilderList() {
        return getDescriptorsFieldBuilder().getBuilderList();
      }
      private com.google.protobuf.RepeatedFieldBuilder<
          skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t.Builder, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_tOrBuilder> 
          getDescriptorsFieldBuilder() {
        if (descriptorsBuilder_ == null) {
          descriptorsBuilder_ = new com.google.protobuf.RepeatedFieldBuilder<
              skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_t.Builder, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GameEventList.descriptor_tOrBuilder>(
                  descriptors_,
                  ((bitField0_ & 0x00000001) == 0x00000001),
                  getParentForChildren(),
                  isClean());
          descriptors_ = null;
        }
        return descriptorsBuilder_;
      }

      // @@protoc_insertion_point(builder_scope:CSVCMsg_GameEventList)
    }

    static {
      defaultInstance = new CSVCMsg_GameEventList(true);
      defaultInstance.initFields();
    }

    // @@protoc_insertion_point(class_scope:CSVCMsg_GameEventList)
  }

  public interface CSVCMsg_PacketEntitiesOrBuilder extends
      // @@protoc_insertion_point(interface_extends:CSVCMsg_PacketEntities)
      com.google.protobuf.MessageOrBuilder {

    /**
     * optional int32 max_entries = 1;
     */
    boolean hasMaxEntries();
    /**
     * optional int32 max_entries = 1;
     */
    int getMaxEntries();

    /**
     * optional int32 updated_entries = 2;
     */
    boolean hasUpdatedEntries();
    /**
     * optional int32 updated_entries = 2;
     */
    int getUpdatedEntries();

    /**
     * optional bool is_delta = 3;
     */
    boolean hasIsDelta();
    /**
     * optional bool is_delta = 3;
     */
    boolean getIsDelta();

    /**
     * optional bool update_baseline = 4;
     */
    boolean hasUpdateBaseline();
    /**
     * optional bool update_baseline = 4;
     */
    boolean getUpdateBaseline();

    /**
     * optional int32 baseline = 5;
     */
    boolean hasBaseline();
    /**
     * optional int32 baseline = 5;
     */
    int getBaseline();

    /**
     * optional int32 delta_from = 6;
     */
    boolean hasDeltaFrom();
    /**
     * optional int32 delta_from = 6;
     */
    int getDeltaFrom();

    /**
     * optional bytes entity_data = 7;
     */
    boolean hasEntityData();
    /**
     * optional bytes entity_data = 7;
     */
    com.google.protobuf.ByteString getEntityData();

    /**
     * optional bool pending_full_frame = 8;
     */
    boolean hasPendingFullFrame();
    /**
     * optional bool pending_full_frame = 8;
     */
    boolean getPendingFullFrame();

    /**
     * optional uint32 active_spawngroup_handle = 9;
     */
    boolean hasActiveSpawngroupHandle();
    /**
     * optional uint32 active_spawngroup_handle = 9;
     */
    int getActiveSpawngroupHandle();

    /**
     * optional uint32 max_spawngroup_creationsequence = 10;
     */
    boolean hasMaxSpawngroupCreationsequence();
    /**
     * optional uint32 max_spawngroup_creationsequence = 10;
     */
    int getMaxSpawngroupCreationsequence();

    /**
     * optional uint32 last_cmd_number = 11;
     */
    boolean hasLastCmdNumber();
    /**
     * optional uint32 last_cmd_number = 11;
     */
    int getLastCmdNumber();
  }
  /**
   * Protobuf type {@code CSVCMsg_PacketEntities}
   */
  public static final class CSVCMsg_PacketEntities extends
      com.google.protobuf.GeneratedMessage implements
      // @@protoc_insertion_point(message_implements:CSVCMsg_PacketEntities)
      CSVCMsg_PacketEntitiesOrBuilder {
    // Use CSVCMsg_PacketEntities.newBuilder() to construct.
    private CSVCMsg_PacketEntities(com.google.protobuf.GeneratedMessage.Builder builder) {
      super(builder);
      this.unknownFields = builder.getUnknownFields();
    }
    private CSVCMsg_PacketEntities(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }

    private static final CSVCMsg_PacketEntities defaultInstance;
    public static CSVCMsg_PacketEntities getDefaultInstance() {
      return defaultInstance;
    }

    public CSVCMsg_PacketEntities getDefaultInstanceForType() {
      return defaultInstance;
    }

    private final com.google.protobuf.UnknownFieldSet unknownFields;
    @java.lang.Override
    public final com.google.protobuf.UnknownFieldSet
        getUnknownFields() {
      return this.unknownFields;
    }
    private CSVCMsg_PacketEntities(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      initFields();
      int mutable_bitField0_ = 0;
      com.google.protobuf.UnknownFieldSet.Builder unknownFields =
          com.google.protobuf.UnknownFieldSet.newBuilder();
      try {
        boolean done = false;
        while (!done) {
          int tag = input.readTag();
          switch (tag) {
            case 0:
              done = true;
              break;
            default: {
              if (!parseUnknownField(input, unknownFields,
                                     extensionRegistry, tag)) {
                done = true;
              }
              break;
            }
            case 8: {
              bitField0_ |= 0x00000001;
              maxEntries_ = input.readInt32();
              break;
            }
            case 16: {
              bitField0_ |= 0x00000002;
              updatedEntries_ = input.readInt32();
              break;
            }
            case 24: {
              bitField0_ |= 0x00000004;
              isDelta_ = input.readBool();
              break;
            }
            case 32: {
              bitField0_ |= 0x00000008;
              updateBaseline_ = input.readBool();
              break;
            }
            case 40: {
              bitField0_ |= 0x00000010;
              baseline_ = input.readInt32();
              break;
            }
            case 48: {
              bitField0_ |= 0x00000020;
              deltaFrom_ = input.readInt32();
              break;
            }
            case 58: {
              bitField0_ |= 0x00000040;
              entityData_ = input.readBytes();
              break;
            }
            case 64: {
              bitField0_ |= 0x00000080;
              pendingFullFrame_ = input.readBool();
              break;
            }
            case 72: {
              bitField0_ |= 0x00000100;
              activeSpawngroupHandle_ = input.readUInt32();
              break;
            }
            case 80: {
              bitField0_ |= 0x00000200;
              maxSpawngroupCreationsequence_ = input.readUInt32();
              break;
            }
            case 88: {
              bitField0_ |= 0x00000400;
              lastCmdNumber_ = input.readUInt32();
              break;
            }
          }
        }
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        throw e.setUnfinishedMessage(this);
      } catch (java.io.IOException e) {
        throw new com.google.protobuf.InvalidProtocolBufferException(
            e.getMessage()).setUnfinishedMessage(this);
      } finally {
        this.unknownFields = unknownFields.build();
        makeExtensionsImmutable();
      }
    }
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_PacketEntities_descriptor;
    }

    protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_PacketEntities_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_PacketEntities.class, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_PacketEntities.Builder.class);
    }

    public static com.google.protobuf.Parser PARSER =
        new com.google.protobuf.AbstractParser() {
      public CSVCMsg_PacketEntities parsePartialFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return new CSVCMsg_PacketEntities(input, extensionRegistry);
      }
    };

    @java.lang.Override
    public com.google.protobuf.Parser getParserForType() {
      return PARSER;
    }

    private int bitField0_;
    public static final int MAX_ENTRIES_FIELD_NUMBER = 1;
    private int maxEntries_;
    /**
     * optional int32 max_entries = 1;
     */
    public boolean hasMaxEntries() {
      return ((bitField0_ & 0x00000001) == 0x00000001);
    }
    /**
     * optional int32 max_entries = 1;
     */
    public int getMaxEntries() {
      return maxEntries_;
    }

    public static final int UPDATED_ENTRIES_FIELD_NUMBER = 2;
    private int updatedEntries_;
    /**
     * optional int32 updated_entries = 2;
     */
    public boolean hasUpdatedEntries() {
      return ((bitField0_ & 0x00000002) == 0x00000002);
    }
    /**
     * optional int32 updated_entries = 2;
     */
    public int getUpdatedEntries() {
      return updatedEntries_;
    }

    public static final int IS_DELTA_FIELD_NUMBER = 3;
    private boolean isDelta_;
    /**
     * optional bool is_delta = 3;
     */
    public boolean hasIsDelta() {
      return ((bitField0_ & 0x00000004) == 0x00000004);
    }
    /**
     * optional bool is_delta = 3;
     */
    public boolean getIsDelta() {
      return isDelta_;
    }

    public static final int UPDATE_BASELINE_FIELD_NUMBER = 4;
    private boolean updateBaseline_;
    /**
     * optional bool update_baseline = 4;
     */
    public boolean hasUpdateBaseline() {
      return ((bitField0_ & 0x00000008) == 0x00000008);
    }
    /**
     * optional bool update_baseline = 4;
     */
    public boolean getUpdateBaseline() {
      return updateBaseline_;
    }

    public static final int BASELINE_FIELD_NUMBER = 5;
    private int baseline_;
    /**
     * optional int32 baseline = 5;
     */
    public boolean hasBaseline() {
      return ((bitField0_ & 0x00000010) == 0x00000010);
    }
    /**
     * optional int32 baseline = 5;
     */
    public int getBaseline() {
      return baseline_;
    }

    public static final int DELTA_FROM_FIELD_NUMBER = 6;
    private int deltaFrom_;
    /**
     * optional int32 delta_from = 6;
     */
    public boolean hasDeltaFrom() {
      return ((bitField0_ & 0x00000020) == 0x00000020);
    }
    /**
     * optional int32 delta_from = 6;
     */
    public int getDeltaFrom() {
      return deltaFrom_;
    }

    public static final int ENTITY_DATA_FIELD_NUMBER = 7;
    private com.google.protobuf.ByteString entityData_;
    /**
     * optional bytes entity_data = 7;
     */
    public boolean hasEntityData() {
      return ((bitField0_ & 0x00000040) == 0x00000040);
    }
    /**
     * optional bytes entity_data = 7;
     */
    public com.google.protobuf.ByteString getEntityData() {
      return entityData_;
    }

    public static final int PENDING_FULL_FRAME_FIELD_NUMBER = 8;
    private boolean pendingFullFrame_;
    /**
     * optional bool pending_full_frame = 8;
     */
    public boolean hasPendingFullFrame() {
      return ((bitField0_ & 0x00000080) == 0x00000080);
    }
    /**
     * optional bool pending_full_frame = 8;
     */
    public boolean getPendingFullFrame() {
      return pendingFullFrame_;
    }

    public static final int ACTIVE_SPAWNGROUP_HANDLE_FIELD_NUMBER = 9;
    private int activeSpawngroupHandle_;
    /**
     * optional uint32 active_spawngroup_handle = 9;
     */
    public boolean hasActiveSpawngroupHandle() {
      return ((bitField0_ & 0x00000100) == 0x00000100);
    }
    /**
     * optional uint32 active_spawngroup_handle = 9;
     */
    public int getActiveSpawngroupHandle() {
      return activeSpawngroupHandle_;
    }

    public static final int MAX_SPAWNGROUP_CREATIONSEQUENCE_FIELD_NUMBER = 10;
    private int maxSpawngroupCreationsequence_;
    /**
     * optional uint32 max_spawngroup_creationsequence = 10;
     */
    public boolean hasMaxSpawngroupCreationsequence() {
      return ((bitField0_ & 0x00000200) == 0x00000200);
    }
    /**
     * optional uint32 max_spawngroup_creationsequence = 10;
     */
    public int getMaxSpawngroupCreationsequence() {
      return maxSpawngroupCreationsequence_;
    }

    public static final int LAST_CMD_NUMBER_FIELD_NUMBER = 11;
    private int lastCmdNumber_;
    /**
     * optional uint32 last_cmd_number = 11;
     */
    public boolean hasLastCmdNumber() {
      return ((bitField0_ & 0x00000400) == 0x00000400);
    }
    /**
     * optional uint32 last_cmd_number = 11;
     */
    public int getLastCmdNumber() {
      return lastCmdNumber_;
    }

    private void initFields() {
      maxEntries_ = 0;
      updatedEntries_ = 0;
      isDelta_ = false;
      updateBaseline_ = false;
      baseline_ = 0;
      deltaFrom_ = 0;
      entityData_ = com.google.protobuf.ByteString.EMPTY;
      pendingFullFrame_ = false;
      activeSpawngroupHandle_ = 0;
      maxSpawngroupCreationsequence_ = 0;
      lastCmdNumber_ = 0;
    }
    private byte memoizedIsInitialized = -1;
    public final boolean isInitialized() {
      byte isInitialized = memoizedIsInitialized;
      if (isInitialized == 1) return true;
      if (isInitialized == 0) return false;

      memoizedIsInitialized = 1;
      return true;
    }

    public void writeTo(com.google.protobuf.CodedOutputStream output)
                        throws java.io.IOException {
      getSerializedSize();
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        output.writeInt32(1, maxEntries_);
      }
      if (((bitField0_ & 0x00000002) == 0x00000002)) {
        output.writeInt32(2, updatedEntries_);
      }
      if (((bitField0_ & 0x00000004) == 0x00000004)) {
        output.writeBool(3, isDelta_);
      }
      if (((bitField0_ & 0x00000008) == 0x00000008)) {
        output.writeBool(4, updateBaseline_);
      }
      if (((bitField0_ & 0x00000010) == 0x00000010)) {
        output.writeInt32(5, baseline_);
      }
      if (((bitField0_ & 0x00000020) == 0x00000020)) {
        output.writeInt32(6, deltaFrom_);
      }
      if (((bitField0_ & 0x00000040) == 0x00000040)) {
        output.writeBytes(7, entityData_);
      }
      if (((bitField0_ & 0x00000080) == 0x00000080)) {
        output.writeBool(8, pendingFullFrame_);
      }
      if (((bitField0_ & 0x00000100) == 0x00000100)) {
        output.writeUInt32(9, activeSpawngroupHandle_);
      }
      if (((bitField0_ & 0x00000200) == 0x00000200)) {
        output.writeUInt32(10, maxSpawngroupCreationsequence_);
      }
      if (((bitField0_ & 0x00000400) == 0x00000400)) {
        output.writeUInt32(11, lastCmdNumber_);
      }
      getUnknownFields().writeTo(output);
    }

    private int memoizedSerializedSize = -1;
    public int getSerializedSize() {
      int size = memoizedSerializedSize;
      if (size != -1) return size;

      size = 0;
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        size += com.google.protobuf.CodedOutputStream
          .computeInt32Size(1, maxEntries_);
      }
      if (((bitField0_ & 0x00000002) == 0x00000002)) {
        size += com.google.protobuf.CodedOutputStream
          .computeInt32Size(2, updatedEntries_);
      }
      if (((bitField0_ & 0x00000004) == 0x00000004)) {
        size += com.google.protobuf.CodedOutputStream
          .computeBoolSize(3, isDelta_);
      }
      if (((bitField0_ & 0x00000008) == 0x00000008)) {
        size += com.google.protobuf.CodedOutputStream
          .computeBoolSize(4, updateBaseline_);
      }
      if (((bitField0_ & 0x00000010) == 0x00000010)) {
        size += com.google.protobuf.CodedOutputStream
          .computeInt32Size(5, baseline_);
      }
      if (((bitField0_ & 0x00000020) == 0x00000020)) {
        size += com.google.protobuf.CodedOutputStream
          .computeInt32Size(6, deltaFrom_);
      }
      if (((bitField0_ & 0x00000040) == 0x00000040)) {
        size += com.google.protobuf.CodedOutputStream
          .computeBytesSize(7, entityData_);
      }
      if (((bitField0_ & 0x00000080) == 0x00000080)) {
        size += com.google.protobuf.CodedOutputStream
          .computeBoolSize(8, pendingFullFrame_);
      }
      if (((bitField0_ & 0x00000100) == 0x00000100)) {
        size += com.google.protobuf.CodedOutputStream
          .computeUInt32Size(9, activeSpawngroupHandle_);
      }
      if (((bitField0_ & 0x00000200) == 0x00000200)) {
        size += com.google.protobuf.CodedOutputStream
          .computeUInt32Size(10, maxSpawngroupCreationsequence_);
      }
      if (((bitField0_ & 0x00000400) == 0x00000400)) {
        size += com.google.protobuf.CodedOutputStream
          .computeUInt32Size(11, lastCmdNumber_);
      }
      size += getUnknownFields().getSerializedSize();
      memoizedSerializedSize = size;
      return size;
    }

    private static final long serialVersionUID = 0L;
    @java.lang.Override
    protected java.lang.Object writeReplace()
        throws java.io.ObjectStreamException {
      return super.writeReplace();
    }

    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_PacketEntities parseFrom(
        com.google.protobuf.ByteString data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_PacketEntities parseFrom(
        com.google.protobuf.ByteString data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_PacketEntities parseFrom(byte[] data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_PacketEntities parseFrom(
        byte[] data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_PacketEntities parseFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_PacketEntities parseFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_PacketEntities parseDelimitedFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_PacketEntities parseDelimitedFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_PacketEntities parseFrom(
        com.google.protobuf.CodedInputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_PacketEntities parseFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }

    public static Builder newBuilder() { return Builder.create(); }
    public Builder newBuilderForType() { return newBuilder(); }
    public static Builder newBuilder(skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_PacketEntities prototype) {
      return newBuilder().mergeFrom(prototype);
    }
    public Builder toBuilder() { return newBuilder(this); }

    @java.lang.Override
    protected Builder newBuilderForType(
        com.google.protobuf.GeneratedMessage.BuilderParent parent) {
      Builder builder = new Builder(parent);
      return builder;
    }
    /**
     * Protobuf type {@code CSVCMsg_PacketEntities}
     */
    public static final class Builder extends
        com.google.protobuf.GeneratedMessage.Builder implements
        // @@protoc_insertion_point(builder_implements:CSVCMsg_PacketEntities)
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_PacketEntitiesOrBuilder {
      public static final com.google.protobuf.Descriptors.Descriptor
          getDescriptor() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_PacketEntities_descriptor;
      }

      protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
          internalGetFieldAccessorTable() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_PacketEntities_fieldAccessorTable
            .ensureFieldAccessorsInitialized(
                skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_PacketEntities.class, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_PacketEntities.Builder.class);
      }

      // Construct using skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_PacketEntities.newBuilder()
      private Builder() {
        maybeForceBuilderInitialization();
      }

      private Builder(
          com.google.protobuf.GeneratedMessage.BuilderParent parent) {
        super(parent);
        maybeForceBuilderInitialization();
      }
      private void maybeForceBuilderInitialization() {
        if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
        }
      }
      private static Builder create() {
        return new Builder();
      }

      public Builder clear() {
        super.clear();
        maxEntries_ = 0;
        bitField0_ = (bitField0_ & ~0x00000001);
        updatedEntries_ = 0;
        bitField0_ = (bitField0_ & ~0x00000002);
        isDelta_ = false;
        bitField0_ = (bitField0_ & ~0x00000004);
        updateBaseline_ = false;
        bitField0_ = (bitField0_ & ~0x00000008);
        baseline_ = 0;
        bitField0_ = (bitField0_ & ~0x00000010);
        deltaFrom_ = 0;
        bitField0_ = (bitField0_ & ~0x00000020);
        entityData_ = com.google.protobuf.ByteString.EMPTY;
        bitField0_ = (bitField0_ & ~0x00000040);
        pendingFullFrame_ = false;
        bitField0_ = (bitField0_ & ~0x00000080);
        activeSpawngroupHandle_ = 0;
        bitField0_ = (bitField0_ & ~0x00000100);
        maxSpawngroupCreationsequence_ = 0;
        bitField0_ = (bitField0_ & ~0x00000200);
        lastCmdNumber_ = 0;
        bitField0_ = (bitField0_ & ~0x00000400);
        return this;
      }

      public Builder clone() {
        return create().mergeFrom(buildPartial());
      }

      public com.google.protobuf.Descriptors.Descriptor
          getDescriptorForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_PacketEntities_descriptor;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_PacketEntities getDefaultInstanceForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_PacketEntities.getDefaultInstance();
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_PacketEntities build() {
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_PacketEntities result = buildPartial();
        if (!result.isInitialized()) {
          throw newUninitializedMessageException(result);
        }
        return result;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_PacketEntities buildPartial() {
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_PacketEntities result = new skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_PacketEntities(this);
        int from_bitField0_ = bitField0_;
        int to_bitField0_ = 0;
        if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
          to_bitField0_ |= 0x00000001;
        }
        result.maxEntries_ = maxEntries_;
        if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
          to_bitField0_ |= 0x00000002;
        }
        result.updatedEntries_ = updatedEntries_;
        if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
          to_bitField0_ |= 0x00000004;
        }
        result.isDelta_ = isDelta_;
        if (((from_bitField0_ & 0x00000008) == 0x00000008)) {
          to_bitField0_ |= 0x00000008;
        }
        result.updateBaseline_ = updateBaseline_;
        if (((from_bitField0_ & 0x00000010) == 0x00000010)) {
          to_bitField0_ |= 0x00000010;
        }
        result.baseline_ = baseline_;
        if (((from_bitField0_ & 0x00000020) == 0x00000020)) {
          to_bitField0_ |= 0x00000020;
        }
        result.deltaFrom_ = deltaFrom_;
        if (((from_bitField0_ & 0x00000040) == 0x00000040)) {
          to_bitField0_ |= 0x00000040;
        }
        result.entityData_ = entityData_;
        if (((from_bitField0_ & 0x00000080) == 0x00000080)) {
          to_bitField0_ |= 0x00000080;
        }
        result.pendingFullFrame_ = pendingFullFrame_;
        if (((from_bitField0_ & 0x00000100) == 0x00000100)) {
          to_bitField0_ |= 0x00000100;
        }
        result.activeSpawngroupHandle_ = activeSpawngroupHandle_;
        if (((from_bitField0_ & 0x00000200) == 0x00000200)) {
          to_bitField0_ |= 0x00000200;
        }
        result.maxSpawngroupCreationsequence_ = maxSpawngroupCreationsequence_;
        if (((from_bitField0_ & 0x00000400) == 0x00000400)) {
          to_bitField0_ |= 0x00000400;
        }
        result.lastCmdNumber_ = lastCmdNumber_;
        result.bitField0_ = to_bitField0_;
        onBuilt();
        return result;
      }

      public Builder mergeFrom(com.google.protobuf.Message other) {
        if (other instanceof skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_PacketEntities) {
          return mergeFrom((skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_PacketEntities)other);
        } else {
          super.mergeFrom(other);
          return this;
        }
      }

      public Builder mergeFrom(skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_PacketEntities other) {
        if (other == skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_PacketEntities.getDefaultInstance()) return this;
        if (other.hasMaxEntries()) {
          setMaxEntries(other.getMaxEntries());
        }
        if (other.hasUpdatedEntries()) {
          setUpdatedEntries(other.getUpdatedEntries());
        }
        if (other.hasIsDelta()) {
          setIsDelta(other.getIsDelta());
        }
        if (other.hasUpdateBaseline()) {
          setUpdateBaseline(other.getUpdateBaseline());
        }
        if (other.hasBaseline()) {
          setBaseline(other.getBaseline());
        }
        if (other.hasDeltaFrom()) {
          setDeltaFrom(other.getDeltaFrom());
        }
        if (other.hasEntityData()) {
          setEntityData(other.getEntityData());
        }
        if (other.hasPendingFullFrame()) {
          setPendingFullFrame(other.getPendingFullFrame());
        }
        if (other.hasActiveSpawngroupHandle()) {
          setActiveSpawngroupHandle(other.getActiveSpawngroupHandle());
        }
        if (other.hasMaxSpawngroupCreationsequence()) {
          setMaxSpawngroupCreationsequence(other.getMaxSpawngroupCreationsequence());
        }
        if (other.hasLastCmdNumber()) {
          setLastCmdNumber(other.getLastCmdNumber());
        }
        this.mergeUnknownFields(other.getUnknownFields());
        return this;
      }

      public final boolean isInitialized() {
        return true;
      }

      public Builder mergeFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_PacketEntities parsedMessage = null;
        try {
          parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
          parsedMessage = (skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_PacketEntities) e.getUnfinishedMessage();
          throw e;
        } finally {
          if (parsedMessage != null) {
            mergeFrom(parsedMessage);
          }
        }
        return this;
      }
      private int bitField0_;

      private int maxEntries_ ;
      /**
       * optional int32 max_entries = 1;
       */
      public boolean hasMaxEntries() {
        return ((bitField0_ & 0x00000001) == 0x00000001);
      }
      /**
       * optional int32 max_entries = 1;
       */
      public int getMaxEntries() {
        return maxEntries_;
      }
      /**
       * optional int32 max_entries = 1;
       */
      public Builder setMaxEntries(int value) {
        bitField0_ |= 0x00000001;
        maxEntries_ = value;
        onChanged();
        return this;
      }
      /**
       * optional int32 max_entries = 1;
       */
      public Builder clearMaxEntries() {
        bitField0_ = (bitField0_ & ~0x00000001);
        maxEntries_ = 0;
        onChanged();
        return this;
      }

      private int updatedEntries_ ;
      /**
       * optional int32 updated_entries = 2;
       */
      public boolean hasUpdatedEntries() {
        return ((bitField0_ & 0x00000002) == 0x00000002);
      }
      /**
       * optional int32 updated_entries = 2;
       */
      public int getUpdatedEntries() {
        return updatedEntries_;
      }
      /**
       * optional int32 updated_entries = 2;
       */
      public Builder setUpdatedEntries(int value) {
        bitField0_ |= 0x00000002;
        updatedEntries_ = value;
        onChanged();
        return this;
      }
      /**
       * optional int32 updated_entries = 2;
       */
      public Builder clearUpdatedEntries() {
        bitField0_ = (bitField0_ & ~0x00000002);
        updatedEntries_ = 0;
        onChanged();
        return this;
      }

      private boolean isDelta_ ;
      /**
       * optional bool is_delta = 3;
       */
      public boolean hasIsDelta() {
        return ((bitField0_ & 0x00000004) == 0x00000004);
      }
      /**
       * optional bool is_delta = 3;
       */
      public boolean getIsDelta() {
        return isDelta_;
      }
      /**
       * optional bool is_delta = 3;
       */
      public Builder setIsDelta(boolean value) {
        bitField0_ |= 0x00000004;
        isDelta_ = value;
        onChanged();
        return this;
      }
      /**
       * optional bool is_delta = 3;
       */
      public Builder clearIsDelta() {
        bitField0_ = (bitField0_ & ~0x00000004);
        isDelta_ = false;
        onChanged();
        return this;
      }

      private boolean updateBaseline_ ;
      /**
       * optional bool update_baseline = 4;
       */
      public boolean hasUpdateBaseline() {
        return ((bitField0_ & 0x00000008) == 0x00000008);
      }
      /**
       * optional bool update_baseline = 4;
       */
      public boolean getUpdateBaseline() {
        return updateBaseline_;
      }
      /**
       * optional bool update_baseline = 4;
       */
      public Builder setUpdateBaseline(boolean value) {
        bitField0_ |= 0x00000008;
        updateBaseline_ = value;
        onChanged();
        return this;
      }
      /**
       * optional bool update_baseline = 4;
       */
      public Builder clearUpdateBaseline() {
        bitField0_ = (bitField0_ & ~0x00000008);
        updateBaseline_ = false;
        onChanged();
        return this;
      }

      private int baseline_ ;
      /**
       * optional int32 baseline = 5;
       */
      public boolean hasBaseline() {
        return ((bitField0_ & 0x00000010) == 0x00000010);
      }
      /**
       * optional int32 baseline = 5;
       */
      public int getBaseline() {
        return baseline_;
      }
      /**
       * optional int32 baseline = 5;
       */
      public Builder setBaseline(int value) {
        bitField0_ |= 0x00000010;
        baseline_ = value;
        onChanged();
        return this;
      }
      /**
       * optional int32 baseline = 5;
       */
      public Builder clearBaseline() {
        bitField0_ = (bitField0_ & ~0x00000010);
        baseline_ = 0;
        onChanged();
        return this;
      }

      private int deltaFrom_ ;
      /**
       * optional int32 delta_from = 6;
       */
      public boolean hasDeltaFrom() {
        return ((bitField0_ & 0x00000020) == 0x00000020);
      }
      /**
       * optional int32 delta_from = 6;
       */
      public int getDeltaFrom() {
        return deltaFrom_;
      }
      /**
       * optional int32 delta_from = 6;
       */
      public Builder setDeltaFrom(int value) {
        bitField0_ |= 0x00000020;
        deltaFrom_ = value;
        onChanged();
        return this;
      }
      /**
       * optional int32 delta_from = 6;
       */
      public Builder clearDeltaFrom() {
        bitField0_ = (bitField0_ & ~0x00000020);
        deltaFrom_ = 0;
        onChanged();
        return this;
      }

      private com.google.protobuf.ByteString entityData_ = com.google.protobuf.ByteString.EMPTY;
      /**
       * optional bytes entity_data = 7;
       */
      public boolean hasEntityData() {
        return ((bitField0_ & 0x00000040) == 0x00000040);
      }
      /**
       * optional bytes entity_data = 7;
       */
      public com.google.protobuf.ByteString getEntityData() {
        return entityData_;
      }
      /**
       * optional bytes entity_data = 7;
       */
      public Builder setEntityData(com.google.protobuf.ByteString value) {
        if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00000040;
        entityData_ = value;
        onChanged();
        return this;
      }
      /**
       * optional bytes entity_data = 7;
       */
      public Builder clearEntityData() {
        bitField0_ = (bitField0_ & ~0x00000040);
        entityData_ = getDefaultInstance().getEntityData();
        onChanged();
        return this;
      }

      private boolean pendingFullFrame_ ;
      /**
       * optional bool pending_full_frame = 8;
       */
      public boolean hasPendingFullFrame() {
        return ((bitField0_ & 0x00000080) == 0x00000080);
      }
      /**
       * optional bool pending_full_frame = 8;
       */
      public boolean getPendingFullFrame() {
        return pendingFullFrame_;
      }
      /**
       * optional bool pending_full_frame = 8;
       */
      public Builder setPendingFullFrame(boolean value) {
        bitField0_ |= 0x00000080;
        pendingFullFrame_ = value;
        onChanged();
        return this;
      }
      /**
       * optional bool pending_full_frame = 8;
       */
      public Builder clearPendingFullFrame() {
        bitField0_ = (bitField0_ & ~0x00000080);
        pendingFullFrame_ = false;
        onChanged();
        return this;
      }

      private int activeSpawngroupHandle_ ;
      /**
       * optional uint32 active_spawngroup_handle = 9;
       */
      public boolean hasActiveSpawngroupHandle() {
        return ((bitField0_ & 0x00000100) == 0x00000100);
      }
      /**
       * optional uint32 active_spawngroup_handle = 9;
       */
      public int getActiveSpawngroupHandle() {
        return activeSpawngroupHandle_;
      }
      /**
       * optional uint32 active_spawngroup_handle = 9;
       */
      public Builder setActiveSpawngroupHandle(int value) {
        bitField0_ |= 0x00000100;
        activeSpawngroupHandle_ = value;
        onChanged();
        return this;
      }
      /**
       * optional uint32 active_spawngroup_handle = 9;
       */
      public Builder clearActiveSpawngroupHandle() {
        bitField0_ = (bitField0_ & ~0x00000100);
        activeSpawngroupHandle_ = 0;
        onChanged();
        return this;
      }

      private int maxSpawngroupCreationsequence_ ;
      /**
       * optional uint32 max_spawngroup_creationsequence = 10;
       */
      public boolean hasMaxSpawngroupCreationsequence() {
        return ((bitField0_ & 0x00000200) == 0x00000200);
      }
      /**
       * optional uint32 max_spawngroup_creationsequence = 10;
       */
      public int getMaxSpawngroupCreationsequence() {
        return maxSpawngroupCreationsequence_;
      }
      /**
       * optional uint32 max_spawngroup_creationsequence = 10;
       */
      public Builder setMaxSpawngroupCreationsequence(int value) {
        bitField0_ |= 0x00000200;
        maxSpawngroupCreationsequence_ = value;
        onChanged();
        return this;
      }
      /**
       * optional uint32 max_spawngroup_creationsequence = 10;
       */
      public Builder clearMaxSpawngroupCreationsequence() {
        bitField0_ = (bitField0_ & ~0x00000200);
        maxSpawngroupCreationsequence_ = 0;
        onChanged();
        return this;
      }

      private int lastCmdNumber_ ;
      /**
       * optional uint32 last_cmd_number = 11;
       */
      public boolean hasLastCmdNumber() {
        return ((bitField0_ & 0x00000400) == 0x00000400);
      }
      /**
       * optional uint32 last_cmd_number = 11;
       */
      public int getLastCmdNumber() {
        return lastCmdNumber_;
      }
      /**
       * optional uint32 last_cmd_number = 11;
       */
      public Builder setLastCmdNumber(int value) {
        bitField0_ |= 0x00000400;
        lastCmdNumber_ = value;
        onChanged();
        return this;
      }
      /**
       * optional uint32 last_cmd_number = 11;
       */
      public Builder clearLastCmdNumber() {
        bitField0_ = (bitField0_ & ~0x00000400);
        lastCmdNumber_ = 0;
        onChanged();
        return this;
      }

      // @@protoc_insertion_point(builder_scope:CSVCMsg_PacketEntities)
    }

    static {
      defaultInstance = new CSVCMsg_PacketEntities(true);
      defaultInstance.initFields();
    }

    // @@protoc_insertion_point(class_scope:CSVCMsg_PacketEntities)
  }

  public interface CSVCMsg_ServerInfoOrBuilder extends
      // @@protoc_insertion_point(interface_extends:CSVCMsg_ServerInfo)
      com.google.protobuf.MessageOrBuilder {

    /**
     * optional int32 protocol = 1;
     */
    boolean hasProtocol();
    /**
     * optional int32 protocol = 1;
     */
    int getProtocol();

    /**
     * optional int32 server_count = 2;
     */
    boolean hasServerCount();
    /**
     * optional int32 server_count = 2;
     */
    int getServerCount();

    /**
     * optional bool is_dedicated = 3;
     */
    boolean hasIsDedicated();
    /**
     * optional bool is_dedicated = 3;
     */
    boolean getIsDedicated();

    /**
     * optional bool is_hltv = 4;
     */
    boolean hasIsHltv();
    /**
     * optional bool is_hltv = 4;
     */
    boolean getIsHltv();

    /**
     * optional bool is_replay = 5;
     */
    boolean hasIsReplay();
    /**
     * optional bool is_replay = 5;
     */
    boolean getIsReplay();

    /**
     * optional int32 c_os = 6;
     */
    boolean hasCOs();
    /**
     * optional int32 c_os = 6;
     */
    int getCOs();

    /**
     * optional fixed32 map_crc = 7;
     */
    boolean hasMapCrc();
    /**
     * optional fixed32 map_crc = 7;
     */
    int getMapCrc();

    /**
     * optional fixed32 client_crc = 8;
     */
    boolean hasClientCrc();
    /**
     * optional fixed32 client_crc = 8;
     */
    int getClientCrc();

    /**
     * optional fixed32 string_table_crc = 9;
     */
    boolean hasStringTableCrc();
    /**
     * optional fixed32 string_table_crc = 9;
     */
    int getStringTableCrc();

    /**
     * optional int32 max_clients = 10;
     */
    boolean hasMaxClients();
    /**
     * optional int32 max_clients = 10;
     */
    int getMaxClients();

    /**
     * optional int32 max_classes = 11;
     */
    boolean hasMaxClasses();
    /**
     * optional int32 max_classes = 11;
     */
    int getMaxClasses();

    /**
     * optional int32 player_slot = 12;
     */
    boolean hasPlayerSlot();
    /**
     * optional int32 player_slot = 12;
     */
    int getPlayerSlot();

    /**
     * optional float tick_interval = 13;
     */
    boolean hasTickInterval();
    /**
     * optional float tick_interval = 13;
     */
    float getTickInterval();

    /**
     * optional string game_dir = 14;
     */
    boolean hasGameDir();
    /**
     * optional string game_dir = 14;
     */
    java.lang.String getGameDir();
    /**
     * optional string game_dir = 14;
     */
    com.google.protobuf.ByteString
        getGameDirBytes();

    /**
     * optional string map_name = 15;
     */
    boolean hasMapName();
    /**
     * optional string map_name = 15;
     */
    java.lang.String getMapName();
    /**
     * optional string map_name = 15;
     */
    com.google.protobuf.ByteString
        getMapNameBytes();

    /**
     * optional string sky_name = 16;
     */
    boolean hasSkyName();
    /**
     * optional string sky_name = 16;
     */
    java.lang.String getSkyName();
    /**
     * optional string sky_name = 16;
     */
    com.google.protobuf.ByteString
        getSkyNameBytes();

    /**
     * optional string host_name = 17;
     */
    boolean hasHostName();
    /**
     * optional string host_name = 17;
     */
    java.lang.String getHostName();
    /**
     * optional string host_name = 17;
     */
    com.google.protobuf.ByteString
        getHostNameBytes();

    /**
     * optional string addon_name = 18;
     */
    boolean hasAddonName();
    /**
     * optional string addon_name = 18;
     */
    java.lang.String getAddonName();
    /**
     * optional string addon_name = 18;
     */
    com.google.protobuf.ByteString
        getAddonNameBytes();

    /**
     * optional .CSVCMsg_GameSessionConfiguration game_session_config = 19;
     */
    boolean hasGameSessionConfig();
    /**
     * optional .CSVCMsg_GameSessionConfiguration game_session_config = 19;
     */
    skadistats.clarity.wire.common.proto.NetworkBaseTypes.CSVCMsg_GameSessionConfiguration getGameSessionConfig();
    /**
     * optional .CSVCMsg_GameSessionConfiguration game_session_config = 19;
     */
    skadistats.clarity.wire.common.proto.NetworkBaseTypes.CSVCMsg_GameSessionConfigurationOrBuilder getGameSessionConfigOrBuilder();

    /**
     * optional bytes game_session_manifest = 20;
     */
    boolean hasGameSessionManifest();
    /**
     * optional bytes game_session_manifest = 20;
     */
    com.google.protobuf.ByteString getGameSessionManifest();
  }
  /**
   * Protobuf type {@code CSVCMsg_ServerInfo}
   */
  public static final class CSVCMsg_ServerInfo extends
      com.google.protobuf.GeneratedMessage implements
      // @@protoc_insertion_point(message_implements:CSVCMsg_ServerInfo)
      CSVCMsg_ServerInfoOrBuilder {
    // Use CSVCMsg_ServerInfo.newBuilder() to construct.
    private CSVCMsg_ServerInfo(com.google.protobuf.GeneratedMessage.Builder builder) {
      super(builder);
      this.unknownFields = builder.getUnknownFields();
    }
    private CSVCMsg_ServerInfo(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }

    private static final CSVCMsg_ServerInfo defaultInstance;
    public static CSVCMsg_ServerInfo getDefaultInstance() {
      return defaultInstance;
    }

    public CSVCMsg_ServerInfo getDefaultInstanceForType() {
      return defaultInstance;
    }

    private final com.google.protobuf.UnknownFieldSet unknownFields;
    @java.lang.Override
    public final com.google.protobuf.UnknownFieldSet
        getUnknownFields() {
      return this.unknownFields;
    }
    private CSVCMsg_ServerInfo(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      initFields();
      int mutable_bitField0_ = 0;
      com.google.protobuf.UnknownFieldSet.Builder unknownFields =
          com.google.protobuf.UnknownFieldSet.newBuilder();
      try {
        boolean done = false;
        while (!done) {
          int tag = input.readTag();
          switch (tag) {
            case 0:
              done = true;
              break;
            default: {
              if (!parseUnknownField(input, unknownFields,
                                     extensionRegistry, tag)) {
                done = true;
              }
              break;
            }
            case 8: {
              bitField0_ |= 0x00000001;
              protocol_ = input.readInt32();
              break;
            }
            case 16: {
              bitField0_ |= 0x00000002;
              serverCount_ = input.readInt32();
              break;
            }
            case 24: {
              bitField0_ |= 0x00000004;
              isDedicated_ = input.readBool();
              break;
            }
            case 32: {
              bitField0_ |= 0x00000008;
              isHltv_ = input.readBool();
              break;
            }
            case 40: {
              bitField0_ |= 0x00000010;
              isReplay_ = input.readBool();
              break;
            }
            case 48: {
              bitField0_ |= 0x00000020;
              cOs_ = input.readInt32();
              break;
            }
            case 61: {
              bitField0_ |= 0x00000040;
              mapCrc_ = input.readFixed32();
              break;
            }
            case 69: {
              bitField0_ |= 0x00000080;
              clientCrc_ = input.readFixed32();
              break;
            }
            case 77: {
              bitField0_ |= 0x00000100;
              stringTableCrc_ = input.readFixed32();
              break;
            }
            case 80: {
              bitField0_ |= 0x00000200;
              maxClients_ = input.readInt32();
              break;
            }
            case 88: {
              bitField0_ |= 0x00000400;
              maxClasses_ = input.readInt32();
              break;
            }
            case 96: {
              bitField0_ |= 0x00000800;
              playerSlot_ = input.readInt32();
              break;
            }
            case 109: {
              bitField0_ |= 0x00001000;
              tickInterval_ = input.readFloat();
              break;
            }
            case 114: {
              com.google.protobuf.ByteString bs = input.readBytes();
              bitField0_ |= 0x00002000;
              gameDir_ = bs;
              break;
            }
            case 122: {
              com.google.protobuf.ByteString bs = input.readBytes();
              bitField0_ |= 0x00004000;
              mapName_ = bs;
              break;
            }
            case 130: {
              com.google.protobuf.ByteString bs = input.readBytes();
              bitField0_ |= 0x00008000;
              skyName_ = bs;
              break;
            }
            case 138: {
              com.google.protobuf.ByteString bs = input.readBytes();
              bitField0_ |= 0x00010000;
              hostName_ = bs;
              break;
            }
            case 146: {
              com.google.protobuf.ByteString bs = input.readBytes();
              bitField0_ |= 0x00020000;
              addonName_ = bs;
              break;
            }
            case 154: {
              skadistats.clarity.wire.common.proto.NetworkBaseTypes.CSVCMsg_GameSessionConfiguration.Builder subBuilder = null;
              if (((bitField0_ & 0x00040000) == 0x00040000)) {
                subBuilder = gameSessionConfig_.toBuilder();
              }
              gameSessionConfig_ = input.readMessage(skadistats.clarity.wire.common.proto.NetworkBaseTypes.CSVCMsg_GameSessionConfiguration.PARSER, extensionRegistry);
              if (subBuilder != null) {
                subBuilder.mergeFrom(gameSessionConfig_);
                gameSessionConfig_ = subBuilder.buildPartial();
              }
              bitField0_ |= 0x00040000;
              break;
            }
            case 162: {
              bitField0_ |= 0x00080000;
              gameSessionManifest_ = input.readBytes();
              break;
            }
          }
        }
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        throw e.setUnfinishedMessage(this);
      } catch (java.io.IOException e) {
        throw new com.google.protobuf.InvalidProtocolBufferException(
            e.getMessage()).setUnfinishedMessage(this);
      } finally {
        this.unknownFields = unknownFields.build();
        makeExtensionsImmutable();
      }
    }
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_ServerInfo_descriptor;
    }

    protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_ServerInfo_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ServerInfo.class, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ServerInfo.Builder.class);
    }

    public static com.google.protobuf.Parser PARSER =
        new com.google.protobuf.AbstractParser() {
      public CSVCMsg_ServerInfo parsePartialFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return new CSVCMsg_ServerInfo(input, extensionRegistry);
      }
    };

    @java.lang.Override
    public com.google.protobuf.Parser getParserForType() {
      return PARSER;
    }

    private int bitField0_;
    public static final int PROTOCOL_FIELD_NUMBER = 1;
    private int protocol_;
    /**
     * optional int32 protocol = 1;
     */
    public boolean hasProtocol() {
      return ((bitField0_ & 0x00000001) == 0x00000001);
    }
    /**
     * optional int32 protocol = 1;
     */
    public int getProtocol() {
      return protocol_;
    }

    public static final int SERVER_COUNT_FIELD_NUMBER = 2;
    private int serverCount_;
    /**
     * optional int32 server_count = 2;
     */
    public boolean hasServerCount() {
      return ((bitField0_ & 0x00000002) == 0x00000002);
    }
    /**
     * optional int32 server_count = 2;
     */
    public int getServerCount() {
      return serverCount_;
    }

    public static final int IS_DEDICATED_FIELD_NUMBER = 3;
    private boolean isDedicated_;
    /**
     * optional bool is_dedicated = 3;
     */
    public boolean hasIsDedicated() {
      return ((bitField0_ & 0x00000004) == 0x00000004);
    }
    /**
     * optional bool is_dedicated = 3;
     */
    public boolean getIsDedicated() {
      return isDedicated_;
    }

    public static final int IS_HLTV_FIELD_NUMBER = 4;
    private boolean isHltv_;
    /**
     * optional bool is_hltv = 4;
     */
    public boolean hasIsHltv() {
      return ((bitField0_ & 0x00000008) == 0x00000008);
    }
    /**
     * optional bool is_hltv = 4;
     */
    public boolean getIsHltv() {
      return isHltv_;
    }

    public static final int IS_REPLAY_FIELD_NUMBER = 5;
    private boolean isReplay_;
    /**
     * optional bool is_replay = 5;
     */
    public boolean hasIsReplay() {
      return ((bitField0_ & 0x00000010) == 0x00000010);
    }
    /**
     * optional bool is_replay = 5;
     */
    public boolean getIsReplay() {
      return isReplay_;
    }

    public static final int C_OS_FIELD_NUMBER = 6;
    private int cOs_;
    /**
     * optional int32 c_os = 6;
     */
    public boolean hasCOs() {
      return ((bitField0_ & 0x00000020) == 0x00000020);
    }
    /**
     * optional int32 c_os = 6;
     */
    public int getCOs() {
      return cOs_;
    }

    public static final int MAP_CRC_FIELD_NUMBER = 7;
    private int mapCrc_;
    /**
     * optional fixed32 map_crc = 7;
     */
    public boolean hasMapCrc() {
      return ((bitField0_ & 0x00000040) == 0x00000040);
    }
    /**
     * optional fixed32 map_crc = 7;
     */
    public int getMapCrc() {
      return mapCrc_;
    }

    public static final int CLIENT_CRC_FIELD_NUMBER = 8;
    private int clientCrc_;
    /**
     * optional fixed32 client_crc = 8;
     */
    public boolean hasClientCrc() {
      return ((bitField0_ & 0x00000080) == 0x00000080);
    }
    /**
     * optional fixed32 client_crc = 8;
     */
    public int getClientCrc() {
      return clientCrc_;
    }

    public static final int STRING_TABLE_CRC_FIELD_NUMBER = 9;
    private int stringTableCrc_;
    /**
     * optional fixed32 string_table_crc = 9;
     */
    public boolean hasStringTableCrc() {
      return ((bitField0_ & 0x00000100) == 0x00000100);
    }
    /**
     * optional fixed32 string_table_crc = 9;
     */
    public int getStringTableCrc() {
      return stringTableCrc_;
    }

    public static final int MAX_CLIENTS_FIELD_NUMBER = 10;
    private int maxClients_;
    /**
     * optional int32 max_clients = 10;
     */
    public boolean hasMaxClients() {
      return ((bitField0_ & 0x00000200) == 0x00000200);
    }
    /**
     * optional int32 max_clients = 10;
     */
    public int getMaxClients() {
      return maxClients_;
    }

    public static final int MAX_CLASSES_FIELD_NUMBER = 11;
    private int maxClasses_;
    /**
     * optional int32 max_classes = 11;
     */
    public boolean hasMaxClasses() {
      return ((bitField0_ & 0x00000400) == 0x00000400);
    }
    /**
     * optional int32 max_classes = 11;
     */
    public int getMaxClasses() {
      return maxClasses_;
    }

    public static final int PLAYER_SLOT_FIELD_NUMBER = 12;
    private int playerSlot_;
    /**
     * optional int32 player_slot = 12;
     */
    public boolean hasPlayerSlot() {
      return ((bitField0_ & 0x00000800) == 0x00000800);
    }
    /**
     * optional int32 player_slot = 12;
     */
    public int getPlayerSlot() {
      return playerSlot_;
    }

    public static final int TICK_INTERVAL_FIELD_NUMBER = 13;
    private float tickInterval_;
    /**
     * optional float tick_interval = 13;
     */
    public boolean hasTickInterval() {
      return ((bitField0_ & 0x00001000) == 0x00001000);
    }
    /**
     * optional float tick_interval = 13;
     */
    public float getTickInterval() {
      return tickInterval_;
    }

    public static final int GAME_DIR_FIELD_NUMBER = 14;
    private java.lang.Object gameDir_;
    /**
     * optional string game_dir = 14;
     */
    public boolean hasGameDir() {
      return ((bitField0_ & 0x00002000) == 0x00002000);
    }
    /**
     * optional string game_dir = 14;
     */
    public java.lang.String getGameDir() {
      java.lang.Object ref = gameDir_;
      if (ref instanceof java.lang.String) {
        return (java.lang.String) ref;
      } else {
        com.google.protobuf.ByteString bs = 
            (com.google.protobuf.ByteString) ref;
        java.lang.String s = bs.toStringUtf8();
        if (bs.isValidUtf8()) {
          gameDir_ = s;
        }
        return s;
      }
    }
    /**
     * optional string game_dir = 14;
     */
    public com.google.protobuf.ByteString
        getGameDirBytes() {
      java.lang.Object ref = gameDir_;
      if (ref instanceof java.lang.String) {
        com.google.protobuf.ByteString b = 
            com.google.protobuf.ByteString.copyFromUtf8(
                (java.lang.String) ref);
        gameDir_ = b;
        return b;
      } else {
        return (com.google.protobuf.ByteString) ref;
      }
    }

    public static final int MAP_NAME_FIELD_NUMBER = 15;
    private java.lang.Object mapName_;
    /**
     * optional string map_name = 15;
     */
    public boolean hasMapName() {
      return ((bitField0_ & 0x00004000) == 0x00004000);
    }
    /**
     * optional string map_name = 15;
     */
    public java.lang.String getMapName() {
      java.lang.Object ref = mapName_;
      if (ref instanceof java.lang.String) {
        return (java.lang.String) ref;
      } else {
        com.google.protobuf.ByteString bs = 
            (com.google.protobuf.ByteString) ref;
        java.lang.String s = bs.toStringUtf8();
        if (bs.isValidUtf8()) {
          mapName_ = s;
        }
        return s;
      }
    }
    /**
     * optional string map_name = 15;
     */
    public com.google.protobuf.ByteString
        getMapNameBytes() {
      java.lang.Object ref = mapName_;
      if (ref instanceof java.lang.String) {
        com.google.protobuf.ByteString b = 
            com.google.protobuf.ByteString.copyFromUtf8(
                (java.lang.String) ref);
        mapName_ = b;
        return b;
      } else {
        return (com.google.protobuf.ByteString) ref;
      }
    }

    public static final int SKY_NAME_FIELD_NUMBER = 16;
    private java.lang.Object skyName_;
    /**
     * optional string sky_name = 16;
     */
    public boolean hasSkyName() {
      return ((bitField0_ & 0x00008000) == 0x00008000);
    }
    /**
     * optional string sky_name = 16;
     */
    public java.lang.String getSkyName() {
      java.lang.Object ref = skyName_;
      if (ref instanceof java.lang.String) {
        return (java.lang.String) ref;
      } else {
        com.google.protobuf.ByteString bs = 
            (com.google.protobuf.ByteString) ref;
        java.lang.String s = bs.toStringUtf8();
        if (bs.isValidUtf8()) {
          skyName_ = s;
        }
        return s;
      }
    }
    /**
     * optional string sky_name = 16;
     */
    public com.google.protobuf.ByteString
        getSkyNameBytes() {
      java.lang.Object ref = skyName_;
      if (ref instanceof java.lang.String) {
        com.google.protobuf.ByteString b = 
            com.google.protobuf.ByteString.copyFromUtf8(
                (java.lang.String) ref);
        skyName_ = b;
        return b;
      } else {
        return (com.google.protobuf.ByteString) ref;
      }
    }

    public static final int HOST_NAME_FIELD_NUMBER = 17;
    private java.lang.Object hostName_;
    /**
     * optional string host_name = 17;
     */
    public boolean hasHostName() {
      return ((bitField0_ & 0x00010000) == 0x00010000);
    }
    /**
     * optional string host_name = 17;
     */
    public java.lang.String getHostName() {
      java.lang.Object ref = hostName_;
      if (ref instanceof java.lang.String) {
        return (java.lang.String) ref;
      } else {
        com.google.protobuf.ByteString bs = 
            (com.google.protobuf.ByteString) ref;
        java.lang.String s = bs.toStringUtf8();
        if (bs.isValidUtf8()) {
          hostName_ = s;
        }
        return s;
      }
    }
    /**
     * optional string host_name = 17;
     */
    public com.google.protobuf.ByteString
        getHostNameBytes() {
      java.lang.Object ref = hostName_;
      if (ref instanceof java.lang.String) {
        com.google.protobuf.ByteString b = 
            com.google.protobuf.ByteString.copyFromUtf8(
                (java.lang.String) ref);
        hostName_ = b;
        return b;
      } else {
        return (com.google.protobuf.ByteString) ref;
      }
    }

    public static final int ADDON_NAME_FIELD_NUMBER = 18;
    private java.lang.Object addonName_;
    /**
     * optional string addon_name = 18;
     */
    public boolean hasAddonName() {
      return ((bitField0_ & 0x00020000) == 0x00020000);
    }
    /**
     * optional string addon_name = 18;
     */
    public java.lang.String getAddonName() {
      java.lang.Object ref = addonName_;
      if (ref instanceof java.lang.String) {
        return (java.lang.String) ref;
      } else {
        com.google.protobuf.ByteString bs = 
            (com.google.protobuf.ByteString) ref;
        java.lang.String s = bs.toStringUtf8();
        if (bs.isValidUtf8()) {
          addonName_ = s;
        }
        return s;
      }
    }
    /**
     * optional string addon_name = 18;
     */
    public com.google.protobuf.ByteString
        getAddonNameBytes() {
      java.lang.Object ref = addonName_;
      if (ref instanceof java.lang.String) {
        com.google.protobuf.ByteString b = 
            com.google.protobuf.ByteString.copyFromUtf8(
                (java.lang.String) ref);
        addonName_ = b;
        return b;
      } else {
        return (com.google.protobuf.ByteString) ref;
      }
    }

    public static final int GAME_SESSION_CONFIG_FIELD_NUMBER = 19;
    private skadistats.clarity.wire.common.proto.NetworkBaseTypes.CSVCMsg_GameSessionConfiguration gameSessionConfig_;
    /**
     * optional .CSVCMsg_GameSessionConfiguration game_session_config = 19;
     */
    public boolean hasGameSessionConfig() {
      return ((bitField0_ & 0x00040000) == 0x00040000);
    }
    /**
     * optional .CSVCMsg_GameSessionConfiguration game_session_config = 19;
     */
    public skadistats.clarity.wire.common.proto.NetworkBaseTypes.CSVCMsg_GameSessionConfiguration getGameSessionConfig() {
      return gameSessionConfig_;
    }
    /**
     * optional .CSVCMsg_GameSessionConfiguration game_session_config = 19;
     */
    public skadistats.clarity.wire.common.proto.NetworkBaseTypes.CSVCMsg_GameSessionConfigurationOrBuilder getGameSessionConfigOrBuilder() {
      return gameSessionConfig_;
    }

    public static final int GAME_SESSION_MANIFEST_FIELD_NUMBER = 20;
    private com.google.protobuf.ByteString gameSessionManifest_;
    /**
     * optional bytes game_session_manifest = 20;
     */
    public boolean hasGameSessionManifest() {
      return ((bitField0_ & 0x00080000) == 0x00080000);
    }
    /**
     * optional bytes game_session_manifest = 20;
     */
    public com.google.protobuf.ByteString getGameSessionManifest() {
      return gameSessionManifest_;
    }

    private void initFields() {
      protocol_ = 0;
      serverCount_ = 0;
      isDedicated_ = false;
      isHltv_ = false;
      isReplay_ = false;
      cOs_ = 0;
      mapCrc_ = 0;
      clientCrc_ = 0;
      stringTableCrc_ = 0;
      maxClients_ = 0;
      maxClasses_ = 0;
      playerSlot_ = 0;
      tickInterval_ = 0F;
      gameDir_ = "";
      mapName_ = "";
      skyName_ = "";
      hostName_ = "";
      addonName_ = "";
      gameSessionConfig_ = skadistats.clarity.wire.common.proto.NetworkBaseTypes.CSVCMsg_GameSessionConfiguration.getDefaultInstance();
      gameSessionManifest_ = com.google.protobuf.ByteString.EMPTY;
    }
    private byte memoizedIsInitialized = -1;
    public final boolean isInitialized() {
      byte isInitialized = memoizedIsInitialized;
      if (isInitialized == 1) return true;
      if (isInitialized == 0) return false;

      memoizedIsInitialized = 1;
      return true;
    }

    public void writeTo(com.google.protobuf.CodedOutputStream output)
                        throws java.io.IOException {
      getSerializedSize();
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        output.writeInt32(1, protocol_);
      }
      if (((bitField0_ & 0x00000002) == 0x00000002)) {
        output.writeInt32(2, serverCount_);
      }
      if (((bitField0_ & 0x00000004) == 0x00000004)) {
        output.writeBool(3, isDedicated_);
      }
      if (((bitField0_ & 0x00000008) == 0x00000008)) {
        output.writeBool(4, isHltv_);
      }
      if (((bitField0_ & 0x00000010) == 0x00000010)) {
        output.writeBool(5, isReplay_);
      }
      if (((bitField0_ & 0x00000020) == 0x00000020)) {
        output.writeInt32(6, cOs_);
      }
      if (((bitField0_ & 0x00000040) == 0x00000040)) {
        output.writeFixed32(7, mapCrc_);
      }
      if (((bitField0_ & 0x00000080) == 0x00000080)) {
        output.writeFixed32(8, clientCrc_);
      }
      if (((bitField0_ & 0x00000100) == 0x00000100)) {
        output.writeFixed32(9, stringTableCrc_);
      }
      if (((bitField0_ & 0x00000200) == 0x00000200)) {
        output.writeInt32(10, maxClients_);
      }
      if (((bitField0_ & 0x00000400) == 0x00000400)) {
        output.writeInt32(11, maxClasses_);
      }
      if (((bitField0_ & 0x00000800) == 0x00000800)) {
        output.writeInt32(12, playerSlot_);
      }
      if (((bitField0_ & 0x00001000) == 0x00001000)) {
        output.writeFloat(13, tickInterval_);
      }
      if (((bitField0_ & 0x00002000) == 0x00002000)) {
        output.writeBytes(14, getGameDirBytes());
      }
      if (((bitField0_ & 0x00004000) == 0x00004000)) {
        output.writeBytes(15, getMapNameBytes());
      }
      if (((bitField0_ & 0x00008000) == 0x00008000)) {
        output.writeBytes(16, getSkyNameBytes());
      }
      if (((bitField0_ & 0x00010000) == 0x00010000)) {
        output.writeBytes(17, getHostNameBytes());
      }
      if (((bitField0_ & 0x00020000) == 0x00020000)) {
        output.writeBytes(18, getAddonNameBytes());
      }
      if (((bitField0_ & 0x00040000) == 0x00040000)) {
        output.writeMessage(19, gameSessionConfig_);
      }
      if (((bitField0_ & 0x00080000) == 0x00080000)) {
        output.writeBytes(20, gameSessionManifest_);
      }
      getUnknownFields().writeTo(output);
    }

    private int memoizedSerializedSize = -1;
    public int getSerializedSize() {
      int size = memoizedSerializedSize;
      if (size != -1) return size;

      size = 0;
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        size += com.google.protobuf.CodedOutputStream
          .computeInt32Size(1, protocol_);
      }
      if (((bitField0_ & 0x00000002) == 0x00000002)) {
        size += com.google.protobuf.CodedOutputStream
          .computeInt32Size(2, serverCount_);
      }
      if (((bitField0_ & 0x00000004) == 0x00000004)) {
        size += com.google.protobuf.CodedOutputStream
          .computeBoolSize(3, isDedicated_);
      }
      if (((bitField0_ & 0x00000008) == 0x00000008)) {
        size += com.google.protobuf.CodedOutputStream
          .computeBoolSize(4, isHltv_);
      }
      if (((bitField0_ & 0x00000010) == 0x00000010)) {
        size += com.google.protobuf.CodedOutputStream
          .computeBoolSize(5, isReplay_);
      }
      if (((bitField0_ & 0x00000020) == 0x00000020)) {
        size += com.google.protobuf.CodedOutputStream
          .computeInt32Size(6, cOs_);
      }
      if (((bitField0_ & 0x00000040) == 0x00000040)) {
        size += com.google.protobuf.CodedOutputStream
          .computeFixed32Size(7, mapCrc_);
      }
      if (((bitField0_ & 0x00000080) == 0x00000080)) {
        size += com.google.protobuf.CodedOutputStream
          .computeFixed32Size(8, clientCrc_);
      }
      if (((bitField0_ & 0x00000100) == 0x00000100)) {
        size += com.google.protobuf.CodedOutputStream
          .computeFixed32Size(9, stringTableCrc_);
      }
      if (((bitField0_ & 0x00000200) == 0x00000200)) {
        size += com.google.protobuf.CodedOutputStream
          .computeInt32Size(10, maxClients_);
      }
      if (((bitField0_ & 0x00000400) == 0x00000400)) {
        size += com.google.protobuf.CodedOutputStream
          .computeInt32Size(11, maxClasses_);
      }
      if (((bitField0_ & 0x00000800) == 0x00000800)) {
        size += com.google.protobuf.CodedOutputStream
          .computeInt32Size(12, playerSlot_);
      }
      if (((bitField0_ & 0x00001000) == 0x00001000)) {
        size += com.google.protobuf.CodedOutputStream
          .computeFloatSize(13, tickInterval_);
      }
      if (((bitField0_ & 0x00002000) == 0x00002000)) {
        size += com.google.protobuf.CodedOutputStream
          .computeBytesSize(14, getGameDirBytes());
      }
      if (((bitField0_ & 0x00004000) == 0x00004000)) {
        size += com.google.protobuf.CodedOutputStream
          .computeBytesSize(15, getMapNameBytes());
      }
      if (((bitField0_ & 0x00008000) == 0x00008000)) {
        size += com.google.protobuf.CodedOutputStream
          .computeBytesSize(16, getSkyNameBytes());
      }
      if (((bitField0_ & 0x00010000) == 0x00010000)) {
        size += com.google.protobuf.CodedOutputStream
          .computeBytesSize(17, getHostNameBytes());
      }
      if (((bitField0_ & 0x00020000) == 0x00020000)) {
        size += com.google.protobuf.CodedOutputStream
          .computeBytesSize(18, getAddonNameBytes());
      }
      if (((bitField0_ & 0x00040000) == 0x00040000)) {
        size += com.google.protobuf.CodedOutputStream
          .computeMessageSize(19, gameSessionConfig_);
      }
      if (((bitField0_ & 0x00080000) == 0x00080000)) {
        size += com.google.protobuf.CodedOutputStream
          .computeBytesSize(20, gameSessionManifest_);
      }
      size += getUnknownFields().getSerializedSize();
      memoizedSerializedSize = size;
      return size;
    }

    private static final long serialVersionUID = 0L;
    @java.lang.Override
    protected java.lang.Object writeReplace()
        throws java.io.ObjectStreamException {
      return super.writeReplace();
    }

    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ServerInfo parseFrom(
        com.google.protobuf.ByteString data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ServerInfo parseFrom(
        com.google.protobuf.ByteString data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ServerInfo parseFrom(byte[] data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ServerInfo parseFrom(
        byte[] data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ServerInfo parseFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ServerInfo parseFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ServerInfo parseDelimitedFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ServerInfo parseDelimitedFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ServerInfo parseFrom(
        com.google.protobuf.CodedInputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ServerInfo parseFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }

    public static Builder newBuilder() { return Builder.create(); }
    public Builder newBuilderForType() { return newBuilder(); }
    public static Builder newBuilder(skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ServerInfo prototype) {
      return newBuilder().mergeFrom(prototype);
    }
    public Builder toBuilder() { return newBuilder(this); }

    @java.lang.Override
    protected Builder newBuilderForType(
        com.google.protobuf.GeneratedMessage.BuilderParent parent) {
      Builder builder = new Builder(parent);
      return builder;
    }
    /**
     * Protobuf type {@code CSVCMsg_ServerInfo}
     */
    public static final class Builder extends
        com.google.protobuf.GeneratedMessage.Builder implements
        // @@protoc_insertion_point(builder_implements:CSVCMsg_ServerInfo)
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ServerInfoOrBuilder {
      public static final com.google.protobuf.Descriptors.Descriptor
          getDescriptor() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_ServerInfo_descriptor;
      }

      protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
          internalGetFieldAccessorTable() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_ServerInfo_fieldAccessorTable
            .ensureFieldAccessorsInitialized(
                skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ServerInfo.class, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ServerInfo.Builder.class);
      }

      // Construct using skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ServerInfo.newBuilder()
      private Builder() {
        maybeForceBuilderInitialization();
      }

      private Builder(
          com.google.protobuf.GeneratedMessage.BuilderParent parent) {
        super(parent);
        maybeForceBuilderInitialization();
      }
      private void maybeForceBuilderInitialization() {
        if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
          getGameSessionConfigFieldBuilder();
        }
      }
      private static Builder create() {
        return new Builder();
      }

      public Builder clear() {
        super.clear();
        protocol_ = 0;
        bitField0_ = (bitField0_ & ~0x00000001);
        serverCount_ = 0;
        bitField0_ = (bitField0_ & ~0x00000002);
        isDedicated_ = false;
        bitField0_ = (bitField0_ & ~0x00000004);
        isHltv_ = false;
        bitField0_ = (bitField0_ & ~0x00000008);
        isReplay_ = false;
        bitField0_ = (bitField0_ & ~0x00000010);
        cOs_ = 0;
        bitField0_ = (bitField0_ & ~0x00000020);
        mapCrc_ = 0;
        bitField0_ = (bitField0_ & ~0x00000040);
        clientCrc_ = 0;
        bitField0_ = (bitField0_ & ~0x00000080);
        stringTableCrc_ = 0;
        bitField0_ = (bitField0_ & ~0x00000100);
        maxClients_ = 0;
        bitField0_ = (bitField0_ & ~0x00000200);
        maxClasses_ = 0;
        bitField0_ = (bitField0_ & ~0x00000400);
        playerSlot_ = 0;
        bitField0_ = (bitField0_ & ~0x00000800);
        tickInterval_ = 0F;
        bitField0_ = (bitField0_ & ~0x00001000);
        gameDir_ = "";
        bitField0_ = (bitField0_ & ~0x00002000);
        mapName_ = "";
        bitField0_ = (bitField0_ & ~0x00004000);
        skyName_ = "";
        bitField0_ = (bitField0_ & ~0x00008000);
        hostName_ = "";
        bitField0_ = (bitField0_ & ~0x00010000);
        addonName_ = "";
        bitField0_ = (bitField0_ & ~0x00020000);
        if (gameSessionConfigBuilder_ == null) {
          gameSessionConfig_ = skadistats.clarity.wire.common.proto.NetworkBaseTypes.CSVCMsg_GameSessionConfiguration.getDefaultInstance();
        } else {
          gameSessionConfigBuilder_.clear();
        }
        bitField0_ = (bitField0_ & ~0x00040000);
        gameSessionManifest_ = com.google.protobuf.ByteString.EMPTY;
        bitField0_ = (bitField0_ & ~0x00080000);
        return this;
      }

      public Builder clone() {
        return create().mergeFrom(buildPartial());
      }

      public com.google.protobuf.Descriptors.Descriptor
          getDescriptorForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_ServerInfo_descriptor;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ServerInfo getDefaultInstanceForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ServerInfo.getDefaultInstance();
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ServerInfo build() {
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ServerInfo result = buildPartial();
        if (!result.isInitialized()) {
          throw newUninitializedMessageException(result);
        }
        return result;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ServerInfo buildPartial() {
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ServerInfo result = new skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ServerInfo(this);
        int from_bitField0_ = bitField0_;
        int to_bitField0_ = 0;
        if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
          to_bitField0_ |= 0x00000001;
        }
        result.protocol_ = protocol_;
        if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
          to_bitField0_ |= 0x00000002;
        }
        result.serverCount_ = serverCount_;
        if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
          to_bitField0_ |= 0x00000004;
        }
        result.isDedicated_ = isDedicated_;
        if (((from_bitField0_ & 0x00000008) == 0x00000008)) {
          to_bitField0_ |= 0x00000008;
        }
        result.isHltv_ = isHltv_;
        if (((from_bitField0_ & 0x00000010) == 0x00000010)) {
          to_bitField0_ |= 0x00000010;
        }
        result.isReplay_ = isReplay_;
        if (((from_bitField0_ & 0x00000020) == 0x00000020)) {
          to_bitField0_ |= 0x00000020;
        }
        result.cOs_ = cOs_;
        if (((from_bitField0_ & 0x00000040) == 0x00000040)) {
          to_bitField0_ |= 0x00000040;
        }
        result.mapCrc_ = mapCrc_;
        if (((from_bitField0_ & 0x00000080) == 0x00000080)) {
          to_bitField0_ |= 0x00000080;
        }
        result.clientCrc_ = clientCrc_;
        if (((from_bitField0_ & 0x00000100) == 0x00000100)) {
          to_bitField0_ |= 0x00000100;
        }
        result.stringTableCrc_ = stringTableCrc_;
        if (((from_bitField0_ & 0x00000200) == 0x00000200)) {
          to_bitField0_ |= 0x00000200;
        }
        result.maxClients_ = maxClients_;
        if (((from_bitField0_ & 0x00000400) == 0x00000400)) {
          to_bitField0_ |= 0x00000400;
        }
        result.maxClasses_ = maxClasses_;
        if (((from_bitField0_ & 0x00000800) == 0x00000800)) {
          to_bitField0_ |= 0x00000800;
        }
        result.playerSlot_ = playerSlot_;
        if (((from_bitField0_ & 0x00001000) == 0x00001000)) {
          to_bitField0_ |= 0x00001000;
        }
        result.tickInterval_ = tickInterval_;
        if (((from_bitField0_ & 0x00002000) == 0x00002000)) {
          to_bitField0_ |= 0x00002000;
        }
        result.gameDir_ = gameDir_;
        if (((from_bitField0_ & 0x00004000) == 0x00004000)) {
          to_bitField0_ |= 0x00004000;
        }
        result.mapName_ = mapName_;
        if (((from_bitField0_ & 0x00008000) == 0x00008000)) {
          to_bitField0_ |= 0x00008000;
        }
        result.skyName_ = skyName_;
        if (((from_bitField0_ & 0x00010000) == 0x00010000)) {
          to_bitField0_ |= 0x00010000;
        }
        result.hostName_ = hostName_;
        if (((from_bitField0_ & 0x00020000) == 0x00020000)) {
          to_bitField0_ |= 0x00020000;
        }
        result.addonName_ = addonName_;
        if (((from_bitField0_ & 0x00040000) == 0x00040000)) {
          to_bitField0_ |= 0x00040000;
        }
        if (gameSessionConfigBuilder_ == null) {
          result.gameSessionConfig_ = gameSessionConfig_;
        } else {
          result.gameSessionConfig_ = gameSessionConfigBuilder_.build();
        }
        if (((from_bitField0_ & 0x00080000) == 0x00080000)) {
          to_bitField0_ |= 0x00080000;
        }
        result.gameSessionManifest_ = gameSessionManifest_;
        result.bitField0_ = to_bitField0_;
        onBuilt();
        return result;
      }

      public Builder mergeFrom(com.google.protobuf.Message other) {
        if (other instanceof skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ServerInfo) {
          return mergeFrom((skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ServerInfo)other);
        } else {
          super.mergeFrom(other);
          return this;
        }
      }

      public Builder mergeFrom(skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ServerInfo other) {
        if (other == skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ServerInfo.getDefaultInstance()) return this;
        if (other.hasProtocol()) {
          setProtocol(other.getProtocol());
        }
        if (other.hasServerCount()) {
          setServerCount(other.getServerCount());
        }
        if (other.hasIsDedicated()) {
          setIsDedicated(other.getIsDedicated());
        }
        if (other.hasIsHltv()) {
          setIsHltv(other.getIsHltv());
        }
        if (other.hasIsReplay()) {
          setIsReplay(other.getIsReplay());
        }
        if (other.hasCOs()) {
          setCOs(other.getCOs());
        }
        if (other.hasMapCrc()) {
          setMapCrc(other.getMapCrc());
        }
        if (other.hasClientCrc()) {
          setClientCrc(other.getClientCrc());
        }
        if (other.hasStringTableCrc()) {
          setStringTableCrc(other.getStringTableCrc());
        }
        if (other.hasMaxClients()) {
          setMaxClients(other.getMaxClients());
        }
        if (other.hasMaxClasses()) {
          setMaxClasses(other.getMaxClasses());
        }
        if (other.hasPlayerSlot()) {
          setPlayerSlot(other.getPlayerSlot());
        }
        if (other.hasTickInterval()) {
          setTickInterval(other.getTickInterval());
        }
        if (other.hasGameDir()) {
          bitField0_ |= 0x00002000;
          gameDir_ = other.gameDir_;
          onChanged();
        }
        if (other.hasMapName()) {
          bitField0_ |= 0x00004000;
          mapName_ = other.mapName_;
          onChanged();
        }
        if (other.hasSkyName()) {
          bitField0_ |= 0x00008000;
          skyName_ = other.skyName_;
          onChanged();
        }
        if (other.hasHostName()) {
          bitField0_ |= 0x00010000;
          hostName_ = other.hostName_;
          onChanged();
        }
        if (other.hasAddonName()) {
          bitField0_ |= 0x00020000;
          addonName_ = other.addonName_;
          onChanged();
        }
        if (other.hasGameSessionConfig()) {
          mergeGameSessionConfig(other.getGameSessionConfig());
        }
        if (other.hasGameSessionManifest()) {
          setGameSessionManifest(other.getGameSessionManifest());
        }
        this.mergeUnknownFields(other.getUnknownFields());
        return this;
      }

      public final boolean isInitialized() {
        return true;
      }

      public Builder mergeFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ServerInfo parsedMessage = null;
        try {
          parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
          parsedMessage = (skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ServerInfo) e.getUnfinishedMessage();
          throw e;
        } finally {
          if (parsedMessage != null) {
            mergeFrom(parsedMessage);
          }
        }
        return this;
      }
      private int bitField0_;

      private int protocol_ ;
      /**
       * optional int32 protocol = 1;
       */
      public boolean hasProtocol() {
        return ((bitField0_ & 0x00000001) == 0x00000001);
      }
      /**
       * optional int32 protocol = 1;
       */
      public int getProtocol() {
        return protocol_;
      }
      /**
       * optional int32 protocol = 1;
       */
      public Builder setProtocol(int value) {
        bitField0_ |= 0x00000001;
        protocol_ = value;
        onChanged();
        return this;
      }
      /**
       * optional int32 protocol = 1;
       */
      public Builder clearProtocol() {
        bitField0_ = (bitField0_ & ~0x00000001);
        protocol_ = 0;
        onChanged();
        return this;
      }

      private int serverCount_ ;
      /**
       * optional int32 server_count = 2;
       */
      public boolean hasServerCount() {
        return ((bitField0_ & 0x00000002) == 0x00000002);
      }
      /**
       * optional int32 server_count = 2;
       */
      public int getServerCount() {
        return serverCount_;
      }
      /**
       * optional int32 server_count = 2;
       */
      public Builder setServerCount(int value) {
        bitField0_ |= 0x00000002;
        serverCount_ = value;
        onChanged();
        return this;
      }
      /**
       * optional int32 server_count = 2;
       */
      public Builder clearServerCount() {
        bitField0_ = (bitField0_ & ~0x00000002);
        serverCount_ = 0;
        onChanged();
        return this;
      }

      private boolean isDedicated_ ;
      /**
       * optional bool is_dedicated = 3;
       */
      public boolean hasIsDedicated() {
        return ((bitField0_ & 0x00000004) == 0x00000004);
      }
      /**
       * optional bool is_dedicated = 3;
       */
      public boolean getIsDedicated() {
        return isDedicated_;
      }
      /**
       * optional bool is_dedicated = 3;
       */
      public Builder setIsDedicated(boolean value) {
        bitField0_ |= 0x00000004;
        isDedicated_ = value;
        onChanged();
        return this;
      }
      /**
       * optional bool is_dedicated = 3;
       */
      public Builder clearIsDedicated() {
        bitField0_ = (bitField0_ & ~0x00000004);
        isDedicated_ = false;
        onChanged();
        return this;
      }

      private boolean isHltv_ ;
      /**
       * optional bool is_hltv = 4;
       */
      public boolean hasIsHltv() {
        return ((bitField0_ & 0x00000008) == 0x00000008);
      }
      /**
       * optional bool is_hltv = 4;
       */
      public boolean getIsHltv() {
        return isHltv_;
      }
      /**
       * optional bool is_hltv = 4;
       */
      public Builder setIsHltv(boolean value) {
        bitField0_ |= 0x00000008;
        isHltv_ = value;
        onChanged();
        return this;
      }
      /**
       * optional bool is_hltv = 4;
       */
      public Builder clearIsHltv() {
        bitField0_ = (bitField0_ & ~0x00000008);
        isHltv_ = false;
        onChanged();
        return this;
      }

      private boolean isReplay_ ;
      /**
       * optional bool is_replay = 5;
       */
      public boolean hasIsReplay() {
        return ((bitField0_ & 0x00000010) == 0x00000010);
      }
      /**
       * optional bool is_replay = 5;
       */
      public boolean getIsReplay() {
        return isReplay_;
      }
      /**
       * optional bool is_replay = 5;
       */
      public Builder setIsReplay(boolean value) {
        bitField0_ |= 0x00000010;
        isReplay_ = value;
        onChanged();
        return this;
      }
      /**
       * optional bool is_replay = 5;
       */
      public Builder clearIsReplay() {
        bitField0_ = (bitField0_ & ~0x00000010);
        isReplay_ = false;
        onChanged();
        return this;
      }

      private int cOs_ ;
      /**
       * optional int32 c_os = 6;
       */
      public boolean hasCOs() {
        return ((bitField0_ & 0x00000020) == 0x00000020);
      }
      /**
       * optional int32 c_os = 6;
       */
      public int getCOs() {
        return cOs_;
      }
      /**
       * optional int32 c_os = 6;
       */
      public Builder setCOs(int value) {
        bitField0_ |= 0x00000020;
        cOs_ = value;
        onChanged();
        return this;
      }
      /**
       * optional int32 c_os = 6;
       */
      public Builder clearCOs() {
        bitField0_ = (bitField0_ & ~0x00000020);
        cOs_ = 0;
        onChanged();
        return this;
      }

      private int mapCrc_ ;
      /**
       * optional fixed32 map_crc = 7;
       */
      public boolean hasMapCrc() {
        return ((bitField0_ & 0x00000040) == 0x00000040);
      }
      /**
       * optional fixed32 map_crc = 7;
       */
      public int getMapCrc() {
        return mapCrc_;
      }
      /**
       * optional fixed32 map_crc = 7;
       */
      public Builder setMapCrc(int value) {
        bitField0_ |= 0x00000040;
        mapCrc_ = value;
        onChanged();
        return this;
      }
      /**
       * optional fixed32 map_crc = 7;
       */
      public Builder clearMapCrc() {
        bitField0_ = (bitField0_ & ~0x00000040);
        mapCrc_ = 0;
        onChanged();
        return this;
      }

      private int clientCrc_ ;
      /**
       * optional fixed32 client_crc = 8;
       */
      public boolean hasClientCrc() {
        return ((bitField0_ & 0x00000080) == 0x00000080);
      }
      /**
       * optional fixed32 client_crc = 8;
       */
      public int getClientCrc() {
        return clientCrc_;
      }
      /**
       * optional fixed32 client_crc = 8;
       */
      public Builder setClientCrc(int value) {
        bitField0_ |= 0x00000080;
        clientCrc_ = value;
        onChanged();
        return this;
      }
      /**
       * optional fixed32 client_crc = 8;
       */
      public Builder clearClientCrc() {
        bitField0_ = (bitField0_ & ~0x00000080);
        clientCrc_ = 0;
        onChanged();
        return this;
      }

      private int stringTableCrc_ ;
      /**
       * optional fixed32 string_table_crc = 9;
       */
      public boolean hasStringTableCrc() {
        return ((bitField0_ & 0x00000100) == 0x00000100);
      }
      /**
       * optional fixed32 string_table_crc = 9;
       */
      public int getStringTableCrc() {
        return stringTableCrc_;
      }
      /**
       * optional fixed32 string_table_crc = 9;
       */
      public Builder setStringTableCrc(int value) {
        bitField0_ |= 0x00000100;
        stringTableCrc_ = value;
        onChanged();
        return this;
      }
      /**
       * optional fixed32 string_table_crc = 9;
       */
      public Builder clearStringTableCrc() {
        bitField0_ = (bitField0_ & ~0x00000100);
        stringTableCrc_ = 0;
        onChanged();
        return this;
      }

      private int maxClients_ ;
      /**
       * optional int32 max_clients = 10;
       */
      public boolean hasMaxClients() {
        return ((bitField0_ & 0x00000200) == 0x00000200);
      }
      /**
       * optional int32 max_clients = 10;
       */
      public int getMaxClients() {
        return maxClients_;
      }
      /**
       * optional int32 max_clients = 10;
       */
      public Builder setMaxClients(int value) {
        bitField0_ |= 0x00000200;
        maxClients_ = value;
        onChanged();
        return this;
      }
      /**
       * optional int32 max_clients = 10;
       */
      public Builder clearMaxClients() {
        bitField0_ = (bitField0_ & ~0x00000200);
        maxClients_ = 0;
        onChanged();
        return this;
      }

      private int maxClasses_ ;
      /**
       * optional int32 max_classes = 11;
       */
      public boolean hasMaxClasses() {
        return ((bitField0_ & 0x00000400) == 0x00000400);
      }
      /**
       * optional int32 max_classes = 11;
       */
      public int getMaxClasses() {
        return maxClasses_;
      }
      /**
       * optional int32 max_classes = 11;
       */
      public Builder setMaxClasses(int value) {
        bitField0_ |= 0x00000400;
        maxClasses_ = value;
        onChanged();
        return this;
      }
      /**
       * optional int32 max_classes = 11;
       */
      public Builder clearMaxClasses() {
        bitField0_ = (bitField0_ & ~0x00000400);
        maxClasses_ = 0;
        onChanged();
        return this;
      }

      private int playerSlot_ ;
      /**
       * optional int32 player_slot = 12;
       */
      public boolean hasPlayerSlot() {
        return ((bitField0_ & 0x00000800) == 0x00000800);
      }
      /**
       * optional int32 player_slot = 12;
       */
      public int getPlayerSlot() {
        return playerSlot_;
      }
      /**
       * optional int32 player_slot = 12;
       */
      public Builder setPlayerSlot(int value) {
        bitField0_ |= 0x00000800;
        playerSlot_ = value;
        onChanged();
        return this;
      }
      /**
       * optional int32 player_slot = 12;
       */
      public Builder clearPlayerSlot() {
        bitField0_ = (bitField0_ & ~0x00000800);
        playerSlot_ = 0;
        onChanged();
        return this;
      }

      private float tickInterval_ ;
      /**
       * optional float tick_interval = 13;
       */
      public boolean hasTickInterval() {
        return ((bitField0_ & 0x00001000) == 0x00001000);
      }
      /**
       * optional float tick_interval = 13;
       */
      public float getTickInterval() {
        return tickInterval_;
      }
      /**
       * optional float tick_interval = 13;
       */
      public Builder setTickInterval(float value) {
        bitField0_ |= 0x00001000;
        tickInterval_ = value;
        onChanged();
        return this;
      }
      /**
       * optional float tick_interval = 13;
       */
      public Builder clearTickInterval() {
        bitField0_ = (bitField0_ & ~0x00001000);
        tickInterval_ = 0F;
        onChanged();
        return this;
      }

      private java.lang.Object gameDir_ = "";
      /**
       * optional string game_dir = 14;
       */
      public boolean hasGameDir() {
        return ((bitField0_ & 0x00002000) == 0x00002000);
      }
      /**
       * optional string game_dir = 14;
       */
      public java.lang.String getGameDir() {
        java.lang.Object ref = gameDir_;
        if (!(ref instanceof java.lang.String)) {
          com.google.protobuf.ByteString bs =
              (com.google.protobuf.ByteString) ref;
          java.lang.String s = bs.toStringUtf8();
          if (bs.isValidUtf8()) {
            gameDir_ = s;
          }
          return s;
        } else {
          return (java.lang.String) ref;
        }
      }
      /**
       * optional string game_dir = 14;
       */
      public com.google.protobuf.ByteString
          getGameDirBytes() {
        java.lang.Object ref = gameDir_;
        if (ref instanceof String) {
          com.google.protobuf.ByteString b = 
              com.google.protobuf.ByteString.copyFromUtf8(
                  (java.lang.String) ref);
          gameDir_ = b;
          return b;
        } else {
          return (com.google.protobuf.ByteString) ref;
        }
      }
      /**
       * optional string game_dir = 14;
       */
      public Builder setGameDir(
          java.lang.String value) {
        if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00002000;
        gameDir_ = value;
        onChanged();
        return this;
      }
      /**
       * optional string game_dir = 14;
       */
      public Builder clearGameDir() {
        bitField0_ = (bitField0_ & ~0x00002000);
        gameDir_ = getDefaultInstance().getGameDir();
        onChanged();
        return this;
      }
      /**
       * optional string game_dir = 14;
       */
      public Builder setGameDirBytes(
          com.google.protobuf.ByteString value) {
        if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00002000;
        gameDir_ = value;
        onChanged();
        return this;
      }

      private java.lang.Object mapName_ = "";
      /**
       * optional string map_name = 15;
       */
      public boolean hasMapName() {
        return ((bitField0_ & 0x00004000) == 0x00004000);
      }
      /**
       * optional string map_name = 15;
       */
      public java.lang.String getMapName() {
        java.lang.Object ref = mapName_;
        if (!(ref instanceof java.lang.String)) {
          com.google.protobuf.ByteString bs =
              (com.google.protobuf.ByteString) ref;
          java.lang.String s = bs.toStringUtf8();
          if (bs.isValidUtf8()) {
            mapName_ = s;
          }
          return s;
        } else {
          return (java.lang.String) ref;
        }
      }
      /**
       * optional string map_name = 15;
       */
      public com.google.protobuf.ByteString
          getMapNameBytes() {
        java.lang.Object ref = mapName_;
        if (ref instanceof String) {
          com.google.protobuf.ByteString b = 
              com.google.protobuf.ByteString.copyFromUtf8(
                  (java.lang.String) ref);
          mapName_ = b;
          return b;
        } else {
          return (com.google.protobuf.ByteString) ref;
        }
      }
      /**
       * optional string map_name = 15;
       */
      public Builder setMapName(
          java.lang.String value) {
        if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00004000;
        mapName_ = value;
        onChanged();
        return this;
      }
      /**
       * optional string map_name = 15;
       */
      public Builder clearMapName() {
        bitField0_ = (bitField0_ & ~0x00004000);
        mapName_ = getDefaultInstance().getMapName();
        onChanged();
        return this;
      }
      /**
       * optional string map_name = 15;
       */
      public Builder setMapNameBytes(
          com.google.protobuf.ByteString value) {
        if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00004000;
        mapName_ = value;
        onChanged();
        return this;
      }

      private java.lang.Object skyName_ = "";
      /**
       * optional string sky_name = 16;
       */
      public boolean hasSkyName() {
        return ((bitField0_ & 0x00008000) == 0x00008000);
      }
      /**
       * optional string sky_name = 16;
       */
      public java.lang.String getSkyName() {
        java.lang.Object ref = skyName_;
        if (!(ref instanceof java.lang.String)) {
          com.google.protobuf.ByteString bs =
              (com.google.protobuf.ByteString) ref;
          java.lang.String s = bs.toStringUtf8();
          if (bs.isValidUtf8()) {
            skyName_ = s;
          }
          return s;
        } else {
          return (java.lang.String) ref;
        }
      }
      /**
       * optional string sky_name = 16;
       */
      public com.google.protobuf.ByteString
          getSkyNameBytes() {
        java.lang.Object ref = skyName_;
        if (ref instanceof String) {
          com.google.protobuf.ByteString b = 
              com.google.protobuf.ByteString.copyFromUtf8(
                  (java.lang.String) ref);
          skyName_ = b;
          return b;
        } else {
          return (com.google.protobuf.ByteString) ref;
        }
      }
      /**
       * optional string sky_name = 16;
       */
      public Builder setSkyName(
          java.lang.String value) {
        if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00008000;
        skyName_ = value;
        onChanged();
        return this;
      }
      /**
       * optional string sky_name = 16;
       */
      public Builder clearSkyName() {
        bitField0_ = (bitField0_ & ~0x00008000);
        skyName_ = getDefaultInstance().getSkyName();
        onChanged();
        return this;
      }
      /**
       * optional string sky_name = 16;
       */
      public Builder setSkyNameBytes(
          com.google.protobuf.ByteString value) {
        if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00008000;
        skyName_ = value;
        onChanged();
        return this;
      }

      private java.lang.Object hostName_ = "";
      /**
       * optional string host_name = 17;
       */
      public boolean hasHostName() {
        return ((bitField0_ & 0x00010000) == 0x00010000);
      }
      /**
       * optional string host_name = 17;
       */
      public java.lang.String getHostName() {
        java.lang.Object ref = hostName_;
        if (!(ref instanceof java.lang.String)) {
          com.google.protobuf.ByteString bs =
              (com.google.protobuf.ByteString) ref;
          java.lang.String s = bs.toStringUtf8();
          if (bs.isValidUtf8()) {
            hostName_ = s;
          }
          return s;
        } else {
          return (java.lang.String) ref;
        }
      }
      /**
       * optional string host_name = 17;
       */
      public com.google.protobuf.ByteString
          getHostNameBytes() {
        java.lang.Object ref = hostName_;
        if (ref instanceof String) {
          com.google.protobuf.ByteString b = 
              com.google.protobuf.ByteString.copyFromUtf8(
                  (java.lang.String) ref);
          hostName_ = b;
          return b;
        } else {
          return (com.google.protobuf.ByteString) ref;
        }
      }
      /**
       * optional string host_name = 17;
       */
      public Builder setHostName(
          java.lang.String value) {
        if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00010000;
        hostName_ = value;
        onChanged();
        return this;
      }
      /**
       * optional string host_name = 17;
       */
      public Builder clearHostName() {
        bitField0_ = (bitField0_ & ~0x00010000);
        hostName_ = getDefaultInstance().getHostName();
        onChanged();
        return this;
      }
      /**
       * optional string host_name = 17;
       */
      public Builder setHostNameBytes(
          com.google.protobuf.ByteString value) {
        if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00010000;
        hostName_ = value;
        onChanged();
        return this;
      }

      private java.lang.Object addonName_ = "";
      /**
       * optional string addon_name = 18;
       */
      public boolean hasAddonName() {
        return ((bitField0_ & 0x00020000) == 0x00020000);
      }
      /**
       * optional string addon_name = 18;
       */
      public java.lang.String getAddonName() {
        java.lang.Object ref = addonName_;
        if (!(ref instanceof java.lang.String)) {
          com.google.protobuf.ByteString bs =
              (com.google.protobuf.ByteString) ref;
          java.lang.String s = bs.toStringUtf8();
          if (bs.isValidUtf8()) {
            addonName_ = s;
          }
          return s;
        } else {
          return (java.lang.String) ref;
        }
      }
      /**
       * optional string addon_name = 18;
       */
      public com.google.protobuf.ByteString
          getAddonNameBytes() {
        java.lang.Object ref = addonName_;
        if (ref instanceof String) {
          com.google.protobuf.ByteString b = 
              com.google.protobuf.ByteString.copyFromUtf8(
                  (java.lang.String) ref);
          addonName_ = b;
          return b;
        } else {
          return (com.google.protobuf.ByteString) ref;
        }
      }
      /**
       * optional string addon_name = 18;
       */
      public Builder setAddonName(
          java.lang.String value) {
        if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00020000;
        addonName_ = value;
        onChanged();
        return this;
      }
      /**
       * optional string addon_name = 18;
       */
      public Builder clearAddonName() {
        bitField0_ = (bitField0_ & ~0x00020000);
        addonName_ = getDefaultInstance().getAddonName();
        onChanged();
        return this;
      }
      /**
       * optional string addon_name = 18;
       */
      public Builder setAddonNameBytes(
          com.google.protobuf.ByteString value) {
        if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00020000;
        addonName_ = value;
        onChanged();
        return this;
      }

      private skadistats.clarity.wire.common.proto.NetworkBaseTypes.CSVCMsg_GameSessionConfiguration gameSessionConfig_ = skadistats.clarity.wire.common.proto.NetworkBaseTypes.CSVCMsg_GameSessionConfiguration.getDefaultInstance();
      private com.google.protobuf.SingleFieldBuilder<
          skadistats.clarity.wire.common.proto.NetworkBaseTypes.CSVCMsg_GameSessionConfiguration, skadistats.clarity.wire.common.proto.NetworkBaseTypes.CSVCMsg_GameSessionConfiguration.Builder, skadistats.clarity.wire.common.proto.NetworkBaseTypes.CSVCMsg_GameSessionConfigurationOrBuilder> gameSessionConfigBuilder_;
      /**
       * optional .CSVCMsg_GameSessionConfiguration game_session_config = 19;
       */
      public boolean hasGameSessionConfig() {
        return ((bitField0_ & 0x00040000) == 0x00040000);
      }
      /**
       * optional .CSVCMsg_GameSessionConfiguration game_session_config = 19;
       */
      public skadistats.clarity.wire.common.proto.NetworkBaseTypes.CSVCMsg_GameSessionConfiguration getGameSessionConfig() {
        if (gameSessionConfigBuilder_ == null) {
          return gameSessionConfig_;
        } else {
          return gameSessionConfigBuilder_.getMessage();
        }
      }
      /**
       * optional .CSVCMsg_GameSessionConfiguration game_session_config = 19;
       */
      public Builder setGameSessionConfig(skadistats.clarity.wire.common.proto.NetworkBaseTypes.CSVCMsg_GameSessionConfiguration value) {
        if (gameSessionConfigBuilder_ == null) {
          if (value == null) {
            throw new NullPointerException();
          }
          gameSessionConfig_ = value;
          onChanged();
        } else {
          gameSessionConfigBuilder_.setMessage(value);
        }
        bitField0_ |= 0x00040000;
        return this;
      }
      /**
       * optional .CSVCMsg_GameSessionConfiguration game_session_config = 19;
       */
      public Builder setGameSessionConfig(
          skadistats.clarity.wire.common.proto.NetworkBaseTypes.CSVCMsg_GameSessionConfiguration.Builder builderForValue) {
        if (gameSessionConfigBuilder_ == null) {
          gameSessionConfig_ = builderForValue.build();
          onChanged();
        } else {
          gameSessionConfigBuilder_.setMessage(builderForValue.build());
        }
        bitField0_ |= 0x00040000;
        return this;
      }
      /**
       * optional .CSVCMsg_GameSessionConfiguration game_session_config = 19;
       */
      public Builder mergeGameSessionConfig(skadistats.clarity.wire.common.proto.NetworkBaseTypes.CSVCMsg_GameSessionConfiguration value) {
        if (gameSessionConfigBuilder_ == null) {
          if (((bitField0_ & 0x00040000) == 0x00040000) &&
              gameSessionConfig_ != skadistats.clarity.wire.common.proto.NetworkBaseTypes.CSVCMsg_GameSessionConfiguration.getDefaultInstance()) {
            gameSessionConfig_ =
              skadistats.clarity.wire.common.proto.NetworkBaseTypes.CSVCMsg_GameSessionConfiguration.newBuilder(gameSessionConfig_).mergeFrom(value).buildPartial();
          } else {
            gameSessionConfig_ = value;
          }
          onChanged();
        } else {
          gameSessionConfigBuilder_.mergeFrom(value);
        }
        bitField0_ |= 0x00040000;
        return this;
      }
      /**
       * optional .CSVCMsg_GameSessionConfiguration game_session_config = 19;
       */
      public Builder clearGameSessionConfig() {
        if (gameSessionConfigBuilder_ == null) {
          gameSessionConfig_ = skadistats.clarity.wire.common.proto.NetworkBaseTypes.CSVCMsg_GameSessionConfiguration.getDefaultInstance();
          onChanged();
        } else {
          gameSessionConfigBuilder_.clear();
        }
        bitField0_ = (bitField0_ & ~0x00040000);
        return this;
      }
      /**
       * optional .CSVCMsg_GameSessionConfiguration game_session_config = 19;
       */
      public skadistats.clarity.wire.common.proto.NetworkBaseTypes.CSVCMsg_GameSessionConfiguration.Builder getGameSessionConfigBuilder() {
        bitField0_ |= 0x00040000;
        onChanged();
        return getGameSessionConfigFieldBuilder().getBuilder();
      }
      /**
       * optional .CSVCMsg_GameSessionConfiguration game_session_config = 19;
       */
      public skadistats.clarity.wire.common.proto.NetworkBaseTypes.CSVCMsg_GameSessionConfigurationOrBuilder getGameSessionConfigOrBuilder() {
        if (gameSessionConfigBuilder_ != null) {
          return gameSessionConfigBuilder_.getMessageOrBuilder();
        } else {
          return gameSessionConfig_;
        }
      }
      /**
       * optional .CSVCMsg_GameSessionConfiguration game_session_config = 19;
       */
      private com.google.protobuf.SingleFieldBuilder<
          skadistats.clarity.wire.common.proto.NetworkBaseTypes.CSVCMsg_GameSessionConfiguration, skadistats.clarity.wire.common.proto.NetworkBaseTypes.CSVCMsg_GameSessionConfiguration.Builder, skadistats.clarity.wire.common.proto.NetworkBaseTypes.CSVCMsg_GameSessionConfigurationOrBuilder> 
          getGameSessionConfigFieldBuilder() {
        if (gameSessionConfigBuilder_ == null) {
          gameSessionConfigBuilder_ = new com.google.protobuf.SingleFieldBuilder<
              skadistats.clarity.wire.common.proto.NetworkBaseTypes.CSVCMsg_GameSessionConfiguration, skadistats.clarity.wire.common.proto.NetworkBaseTypes.CSVCMsg_GameSessionConfiguration.Builder, skadistats.clarity.wire.common.proto.NetworkBaseTypes.CSVCMsg_GameSessionConfigurationOrBuilder>(
                  getGameSessionConfig(),
                  getParentForChildren(),
                  isClean());
          gameSessionConfig_ = null;
        }
        return gameSessionConfigBuilder_;
      }

      private com.google.protobuf.ByteString gameSessionManifest_ = com.google.protobuf.ByteString.EMPTY;
      /**
       * optional bytes game_session_manifest = 20;
       */
      public boolean hasGameSessionManifest() {
        return ((bitField0_ & 0x00080000) == 0x00080000);
      }
      /**
       * optional bytes game_session_manifest = 20;
       */
      public com.google.protobuf.ByteString getGameSessionManifest() {
        return gameSessionManifest_;
      }
      /**
       * optional bytes game_session_manifest = 20;
       */
      public Builder setGameSessionManifest(com.google.protobuf.ByteString value) {
        if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00080000;
        gameSessionManifest_ = value;
        onChanged();
        return this;
      }
      /**
       * optional bytes game_session_manifest = 20;
       */
      public Builder clearGameSessionManifest() {
        bitField0_ = (bitField0_ & ~0x00080000);
        gameSessionManifest_ = getDefaultInstance().getGameSessionManifest();
        onChanged();
        return this;
      }

      // @@protoc_insertion_point(builder_scope:CSVCMsg_ServerInfo)
    }

    static {
      defaultInstance = new CSVCMsg_ServerInfo(true);
      defaultInstance.initFields();
    }

    // @@protoc_insertion_point(class_scope:CSVCMsg_ServerInfo)
  }

  public interface CSVCMsg_ClassInfoOrBuilder extends
      // @@protoc_insertion_point(interface_extends:CSVCMsg_ClassInfo)
      com.google.protobuf.MessageOrBuilder {

    /**
     * optional bool create_on_client = 1;
     */
    boolean hasCreateOnClient();
    /**
     * optional bool create_on_client = 1;
     */
    boolean getCreateOnClient();

    /**
     * repeated .CSVCMsg_ClassInfo.class_t classes = 2;
     */
    java.util.List 
        getClassesList();
    /**
     * repeated .CSVCMsg_ClassInfo.class_t classes = 2;
     */
    skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t getClasses(int index);
    /**
     * repeated .CSVCMsg_ClassInfo.class_t classes = 2;
     */
    int getClassesCount();
    /**
     * repeated .CSVCMsg_ClassInfo.class_t classes = 2;
     */
    java.util.List 
        getClassesOrBuilderList();
    /**
     * repeated .CSVCMsg_ClassInfo.class_t classes = 2;
     */
    skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_tOrBuilder getClassesOrBuilder(
        int index);
  }
  /**
   * Protobuf type {@code CSVCMsg_ClassInfo}
   */
  public static final class CSVCMsg_ClassInfo extends
      com.google.protobuf.GeneratedMessage implements
      // @@protoc_insertion_point(message_implements:CSVCMsg_ClassInfo)
      CSVCMsg_ClassInfoOrBuilder {
    // Use CSVCMsg_ClassInfo.newBuilder() to construct.
    private CSVCMsg_ClassInfo(com.google.protobuf.GeneratedMessage.Builder builder) {
      super(builder);
      this.unknownFields = builder.getUnknownFields();
    }
    private CSVCMsg_ClassInfo(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }

    private static final CSVCMsg_ClassInfo defaultInstance;
    public static CSVCMsg_ClassInfo getDefaultInstance() {
      return defaultInstance;
    }

    public CSVCMsg_ClassInfo getDefaultInstanceForType() {
      return defaultInstance;
    }

    private final com.google.protobuf.UnknownFieldSet unknownFields;
    @java.lang.Override
    public final com.google.protobuf.UnknownFieldSet
        getUnknownFields() {
      return this.unknownFields;
    }
    private CSVCMsg_ClassInfo(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      initFields();
      int mutable_bitField0_ = 0;
      com.google.protobuf.UnknownFieldSet.Builder unknownFields =
          com.google.protobuf.UnknownFieldSet.newBuilder();
      try {
        boolean done = false;
        while (!done) {
          int tag = input.readTag();
          switch (tag) {
            case 0:
              done = true;
              break;
            default: {
              if (!parseUnknownField(input, unknownFields,
                                     extensionRegistry, tag)) {
                done = true;
              }
              break;
            }
            case 8: {
              bitField0_ |= 0x00000001;
              createOnClient_ = input.readBool();
              break;
            }
            case 18: {
              if (!((mutable_bitField0_ & 0x00000002) == 0x00000002)) {
                classes_ = new java.util.ArrayList();
                mutable_bitField0_ |= 0x00000002;
              }
              classes_.add(input.readMessage(skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t.PARSER, extensionRegistry));
              break;
            }
          }
        }
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        throw e.setUnfinishedMessage(this);
      } catch (java.io.IOException e) {
        throw new com.google.protobuf.InvalidProtocolBufferException(
            e.getMessage()).setUnfinishedMessage(this);
      } finally {
        if (((mutable_bitField0_ & 0x00000002) == 0x00000002)) {
          classes_ = java.util.Collections.unmodifiableList(classes_);
        }
        this.unknownFields = unknownFields.build();
        makeExtensionsImmutable();
      }
    }
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_ClassInfo_descriptor;
    }

    protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_ClassInfo_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.Builder.class);
    }

    public static com.google.protobuf.Parser PARSER =
        new com.google.protobuf.AbstractParser() {
      public CSVCMsg_ClassInfo parsePartialFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return new CSVCMsg_ClassInfo(input, extensionRegistry);
      }
    };

    @java.lang.Override
    public com.google.protobuf.Parser getParserForType() {
      return PARSER;
    }

    public interface class_tOrBuilder extends
        // @@protoc_insertion_point(interface_extends:CSVCMsg_ClassInfo.class_t)
        com.google.protobuf.MessageOrBuilder {

      /**
       * optional int32 class_id = 1;
       */
      boolean hasClassId();
      /**
       * optional int32 class_id = 1;
       */
      int getClassId();

      /**
       * optional string data_table_name = 2;
       */
      boolean hasDataTableName();
      /**
       * optional string data_table_name = 2;
       */
      java.lang.String getDataTableName();
      /**
       * optional string data_table_name = 2;
       */
      com.google.protobuf.ByteString
          getDataTableNameBytes();

      /**
       * optional string class_name = 3;
       */
      boolean hasClassName();
      /**
       * optional string class_name = 3;
       */
      java.lang.String getClassName();
      /**
       * optional string class_name = 3;
       */
      com.google.protobuf.ByteString
          getClassNameBytes();
    }
    /**
     * Protobuf type {@code CSVCMsg_ClassInfo.class_t}
     */
    public static final class class_t extends
        com.google.protobuf.GeneratedMessage implements
        // @@protoc_insertion_point(message_implements:CSVCMsg_ClassInfo.class_t)
        class_tOrBuilder {
      // Use class_t.newBuilder() to construct.
      private class_t(com.google.protobuf.GeneratedMessage.Builder builder) {
        super(builder);
        this.unknownFields = builder.getUnknownFields();
      }
      private class_t(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }

      private static final class_t defaultInstance;
      public static class_t getDefaultInstance() {
        return defaultInstance;
      }

      public class_t getDefaultInstanceForType() {
        return defaultInstance;
      }

      private final com.google.protobuf.UnknownFieldSet unknownFields;
      @java.lang.Override
      public final com.google.protobuf.UnknownFieldSet
          getUnknownFields() {
        return this.unknownFields;
      }
      private class_t(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        initFields();
        int mutable_bitField0_ = 0;
        com.google.protobuf.UnknownFieldSet.Builder unknownFields =
            com.google.protobuf.UnknownFieldSet.newBuilder();
        try {
          boolean done = false;
          while (!done) {
            int tag = input.readTag();
            switch (tag) {
              case 0:
                done = true;
                break;
              default: {
                if (!parseUnknownField(input, unknownFields,
                                       extensionRegistry, tag)) {
                  done = true;
                }
                break;
              }
              case 8: {
                bitField0_ |= 0x00000001;
                classId_ = input.readInt32();
                break;
              }
              case 18: {
                com.google.protobuf.ByteString bs = input.readBytes();
                bitField0_ |= 0x00000002;
                dataTableName_ = bs;
                break;
              }
              case 26: {
                com.google.protobuf.ByteString bs = input.readBytes();
                bitField0_ |= 0x00000004;
                className_ = bs;
                break;
              }
            }
          }
        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
          throw e.setUnfinishedMessage(this);
        } catch (java.io.IOException e) {
          throw new com.google.protobuf.InvalidProtocolBufferException(
              e.getMessage()).setUnfinishedMessage(this);
        } finally {
          this.unknownFields = unknownFields.build();
          makeExtensionsImmutable();
        }
      }
      public static final com.google.protobuf.Descriptors.Descriptor
          getDescriptor() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_ClassInfo_class_t_descriptor;
      }

      protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
          internalGetFieldAccessorTable() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_ClassInfo_class_t_fieldAccessorTable
            .ensureFieldAccessorsInitialized(
                skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t.class, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t.Builder.class);
      }

      public static com.google.protobuf.Parser PARSER =
          new com.google.protobuf.AbstractParser() {
        public class_t parsePartialFrom(
            com.google.protobuf.CodedInputStream input,
            com.google.protobuf.ExtensionRegistryLite extensionRegistry)
            throws com.google.protobuf.InvalidProtocolBufferException {
          return new class_t(input, extensionRegistry);
        }
      };

      @java.lang.Override
      public com.google.protobuf.Parser getParserForType() {
        return PARSER;
      }

      private int bitField0_;
      public static final int CLASS_ID_FIELD_NUMBER = 1;
      private int classId_;
      /**
       * optional int32 class_id = 1;
       */
      public boolean hasClassId() {
        return ((bitField0_ & 0x00000001) == 0x00000001);
      }
      /**
       * optional int32 class_id = 1;
       */
      public int getClassId() {
        return classId_;
      }

      public static final int DATA_TABLE_NAME_FIELD_NUMBER = 2;
      private java.lang.Object dataTableName_;
      /**
       * optional string data_table_name = 2;
       */
      public boolean hasDataTableName() {
        return ((bitField0_ & 0x00000002) == 0x00000002);
      }
      /**
       * optional string data_table_name = 2;
       */
      public java.lang.String getDataTableName() {
        java.lang.Object ref = dataTableName_;
        if (ref instanceof java.lang.String) {
          return (java.lang.String) ref;
        } else {
          com.google.protobuf.ByteString bs = 
              (com.google.protobuf.ByteString) ref;
          java.lang.String s = bs.toStringUtf8();
          if (bs.isValidUtf8()) {
            dataTableName_ = s;
          }
          return s;
        }
      }
      /**
       * optional string data_table_name = 2;
       */
      public com.google.protobuf.ByteString
          getDataTableNameBytes() {
        java.lang.Object ref = dataTableName_;
        if (ref instanceof java.lang.String) {
          com.google.protobuf.ByteString b = 
              com.google.protobuf.ByteString.copyFromUtf8(
                  (java.lang.String) ref);
          dataTableName_ = b;
          return b;
        } else {
          return (com.google.protobuf.ByteString) ref;
        }
      }

      public static final int CLASS_NAME_FIELD_NUMBER = 3;
      private java.lang.Object className_;
      /**
       * optional string class_name = 3;
       */
      public boolean hasClassName() {
        return ((bitField0_ & 0x00000004) == 0x00000004);
      }
      /**
       * optional string class_name = 3;
       */
      public java.lang.String getClassName() {
        java.lang.Object ref = className_;
        if (ref instanceof java.lang.String) {
          return (java.lang.String) ref;
        } else {
          com.google.protobuf.ByteString bs = 
              (com.google.protobuf.ByteString) ref;
          java.lang.String s = bs.toStringUtf8();
          if (bs.isValidUtf8()) {
            className_ = s;
          }
          return s;
        }
      }
      /**
       * optional string class_name = 3;
       */
      public com.google.protobuf.ByteString
          getClassNameBytes() {
        java.lang.Object ref = className_;
        if (ref instanceof java.lang.String) {
          com.google.protobuf.ByteString b = 
              com.google.protobuf.ByteString.copyFromUtf8(
                  (java.lang.String) ref);
          className_ = b;
          return b;
        } else {
          return (com.google.protobuf.ByteString) ref;
        }
      }

      private void initFields() {
        classId_ = 0;
        dataTableName_ = "";
        className_ = "";
      }
      private byte memoizedIsInitialized = -1;
      public final boolean isInitialized() {
        byte isInitialized = memoizedIsInitialized;
        if (isInitialized == 1) return true;
        if (isInitialized == 0) return false;

        memoizedIsInitialized = 1;
        return true;
      }

      public void writeTo(com.google.protobuf.CodedOutputStream output)
                          throws java.io.IOException {
        getSerializedSize();
        if (((bitField0_ & 0x00000001) == 0x00000001)) {
          output.writeInt32(1, classId_);
        }
        if (((bitField0_ & 0x00000002) == 0x00000002)) {
          output.writeBytes(2, getDataTableNameBytes());
        }
        if (((bitField0_ & 0x00000004) == 0x00000004)) {
          output.writeBytes(3, getClassNameBytes());
        }
        getUnknownFields().writeTo(output);
      }

      private int memoizedSerializedSize = -1;
      public int getSerializedSize() {
        int size = memoizedSerializedSize;
        if (size != -1) return size;

        size = 0;
        if (((bitField0_ & 0x00000001) == 0x00000001)) {
          size += com.google.protobuf.CodedOutputStream
            .computeInt32Size(1, classId_);
        }
        if (((bitField0_ & 0x00000002) == 0x00000002)) {
          size += com.google.protobuf.CodedOutputStream
            .computeBytesSize(2, getDataTableNameBytes());
        }
        if (((bitField0_ & 0x00000004) == 0x00000004)) {
          size += com.google.protobuf.CodedOutputStream
            .computeBytesSize(3, getClassNameBytes());
        }
        size += getUnknownFields().getSerializedSize();
        memoizedSerializedSize = size;
        return size;
      }

      private static final long serialVersionUID = 0L;
      @java.lang.Override
      protected java.lang.Object writeReplace()
          throws java.io.ObjectStreamException {
        return super.writeReplace();
      }

      public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t parseFrom(
          com.google.protobuf.ByteString data)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return PARSER.parseFrom(data);
      }
      public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t parseFrom(
          com.google.protobuf.ByteString data,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return PARSER.parseFrom(data, extensionRegistry);
      }
      public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t parseFrom(byte[] data)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return PARSER.parseFrom(data);
      }
      public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t parseFrom(
          byte[] data,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return PARSER.parseFrom(data, extensionRegistry);
      }
      public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t parseFrom(java.io.InputStream input)
          throws java.io.IOException {
        return PARSER.parseFrom(input);
      }
      public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t parseFrom(
          java.io.InputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        return PARSER.parseFrom(input, extensionRegistry);
      }
      public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t parseDelimitedFrom(java.io.InputStream input)
          throws java.io.IOException {
        return PARSER.parseDelimitedFrom(input);
      }
      public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t parseDelimitedFrom(
          java.io.InputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        return PARSER.parseDelimitedFrom(input, extensionRegistry);
      }
      public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t parseFrom(
          com.google.protobuf.CodedInputStream input)
          throws java.io.IOException {
        return PARSER.parseFrom(input);
      }
      public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t parseFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        return PARSER.parseFrom(input, extensionRegistry);
      }

      public static Builder newBuilder() { return Builder.create(); }
      public Builder newBuilderForType() { return newBuilder(); }
      public static Builder newBuilder(skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t prototype) {
        return newBuilder().mergeFrom(prototype);
      }
      public Builder toBuilder() { return newBuilder(this); }

      @java.lang.Override
      protected Builder newBuilderForType(
          com.google.protobuf.GeneratedMessage.BuilderParent parent) {
        Builder builder = new Builder(parent);
        return builder;
      }
      /**
       * Protobuf type {@code CSVCMsg_ClassInfo.class_t}
       */
      public static final class Builder extends
          com.google.protobuf.GeneratedMessage.Builder implements
          // @@protoc_insertion_point(builder_implements:CSVCMsg_ClassInfo.class_t)
          skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_tOrBuilder {
        public static final com.google.protobuf.Descriptors.Descriptor
            getDescriptor() {
          return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_ClassInfo_class_t_descriptor;
        }

        protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
            internalGetFieldAccessorTable() {
          return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_ClassInfo_class_t_fieldAccessorTable
              .ensureFieldAccessorsInitialized(
                  skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t.class, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t.Builder.class);
        }

        // Construct using skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t.newBuilder()
        private Builder() {
          maybeForceBuilderInitialization();
        }

        private Builder(
            com.google.protobuf.GeneratedMessage.BuilderParent parent) {
          super(parent);
          maybeForceBuilderInitialization();
        }
        private void maybeForceBuilderInitialization() {
          if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
          }
        }
        private static Builder create() {
          return new Builder();
        }

        public Builder clear() {
          super.clear();
          classId_ = 0;
          bitField0_ = (bitField0_ & ~0x00000001);
          dataTableName_ = "";
          bitField0_ = (bitField0_ & ~0x00000002);
          className_ = "";
          bitField0_ = (bitField0_ & ~0x00000004);
          return this;
        }

        public Builder clone() {
          return create().mergeFrom(buildPartial());
        }

        public com.google.protobuf.Descriptors.Descriptor
            getDescriptorForType() {
          return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_ClassInfo_class_t_descriptor;
        }

        public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t getDefaultInstanceForType() {
          return skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t.getDefaultInstance();
        }

        public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t build() {
          skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t result = buildPartial();
          if (!result.isInitialized()) {
            throw newUninitializedMessageException(result);
          }
          return result;
        }

        public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t buildPartial() {
          skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t result = new skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t(this);
          int from_bitField0_ = bitField0_;
          int to_bitField0_ = 0;
          if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
            to_bitField0_ |= 0x00000001;
          }
          result.classId_ = classId_;
          if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
            to_bitField0_ |= 0x00000002;
          }
          result.dataTableName_ = dataTableName_;
          if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
            to_bitField0_ |= 0x00000004;
          }
          result.className_ = className_;
          result.bitField0_ = to_bitField0_;
          onBuilt();
          return result;
        }

        public Builder mergeFrom(com.google.protobuf.Message other) {
          if (other instanceof skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t) {
            return mergeFrom((skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t)other);
          } else {
            super.mergeFrom(other);
            return this;
          }
        }

        public Builder mergeFrom(skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t other) {
          if (other == skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t.getDefaultInstance()) return this;
          if (other.hasClassId()) {
            setClassId(other.getClassId());
          }
          if (other.hasDataTableName()) {
            bitField0_ |= 0x00000002;
            dataTableName_ = other.dataTableName_;
            onChanged();
          }
          if (other.hasClassName()) {
            bitField0_ |= 0x00000004;
            className_ = other.className_;
            onChanged();
          }
          this.mergeUnknownFields(other.getUnknownFields());
          return this;
        }

        public final boolean isInitialized() {
          return true;
        }

        public Builder mergeFrom(
            com.google.protobuf.CodedInputStream input,
            com.google.protobuf.ExtensionRegistryLite extensionRegistry)
            throws java.io.IOException {
          skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t parsedMessage = null;
          try {
            parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
          } catch (com.google.protobuf.InvalidProtocolBufferException e) {
            parsedMessage = (skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t) e.getUnfinishedMessage();
            throw e;
          } finally {
            if (parsedMessage != null) {
              mergeFrom(parsedMessage);
            }
          }
          return this;
        }
        private int bitField0_;

        private int classId_ ;
        /**
         * optional int32 class_id = 1;
         */
        public boolean hasClassId() {
          return ((bitField0_ & 0x00000001) == 0x00000001);
        }
        /**
         * optional int32 class_id = 1;
         */
        public int getClassId() {
          return classId_;
        }
        /**
         * optional int32 class_id = 1;
         */
        public Builder setClassId(int value) {
          bitField0_ |= 0x00000001;
          classId_ = value;
          onChanged();
          return this;
        }
        /**
         * optional int32 class_id = 1;
         */
        public Builder clearClassId() {
          bitField0_ = (bitField0_ & ~0x00000001);
          classId_ = 0;
          onChanged();
          return this;
        }

        private java.lang.Object dataTableName_ = "";
        /**
         * optional string data_table_name = 2;
         */
        public boolean hasDataTableName() {
          return ((bitField0_ & 0x00000002) == 0x00000002);
        }
        /**
         * optional string data_table_name = 2;
         */
        public java.lang.String getDataTableName() {
          java.lang.Object ref = dataTableName_;
          if (!(ref instanceof java.lang.String)) {
            com.google.protobuf.ByteString bs =
                (com.google.protobuf.ByteString) ref;
            java.lang.String s = bs.toStringUtf8();
            if (bs.isValidUtf8()) {
              dataTableName_ = s;
            }
            return s;
          } else {
            return (java.lang.String) ref;
          }
        }
        /**
         * optional string data_table_name = 2;
         */
        public com.google.protobuf.ByteString
            getDataTableNameBytes() {
          java.lang.Object ref = dataTableName_;
          if (ref instanceof String) {
            com.google.protobuf.ByteString b = 
                com.google.protobuf.ByteString.copyFromUtf8(
                    (java.lang.String) ref);
            dataTableName_ = b;
            return b;
          } else {
            return (com.google.protobuf.ByteString) ref;
          }
        }
        /**
         * optional string data_table_name = 2;
         */
        public Builder setDataTableName(
            java.lang.String value) {
          if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00000002;
          dataTableName_ = value;
          onChanged();
          return this;
        }
        /**
         * optional string data_table_name = 2;
         */
        public Builder clearDataTableName() {
          bitField0_ = (bitField0_ & ~0x00000002);
          dataTableName_ = getDefaultInstance().getDataTableName();
          onChanged();
          return this;
        }
        /**
         * optional string data_table_name = 2;
         */
        public Builder setDataTableNameBytes(
            com.google.protobuf.ByteString value) {
          if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00000002;
          dataTableName_ = value;
          onChanged();
          return this;
        }

        private java.lang.Object className_ = "";
        /**
         * optional string class_name = 3;
         */
        public boolean hasClassName() {
          return ((bitField0_ & 0x00000004) == 0x00000004);
        }
        /**
         * optional string class_name = 3;
         */
        public java.lang.String getClassName() {
          java.lang.Object ref = className_;
          if (!(ref instanceof java.lang.String)) {
            com.google.protobuf.ByteString bs =
                (com.google.protobuf.ByteString) ref;
            java.lang.String s = bs.toStringUtf8();
            if (bs.isValidUtf8()) {
              className_ = s;
            }
            return s;
          } else {
            return (java.lang.String) ref;
          }
        }
        /**
         * optional string class_name = 3;
         */
        public com.google.protobuf.ByteString
            getClassNameBytes() {
          java.lang.Object ref = className_;
          if (ref instanceof String) {
            com.google.protobuf.ByteString b = 
                com.google.protobuf.ByteString.copyFromUtf8(
                    (java.lang.String) ref);
            className_ = b;
            return b;
          } else {
            return (com.google.protobuf.ByteString) ref;
          }
        }
        /**
         * optional string class_name = 3;
         */
        public Builder setClassName(
            java.lang.String value) {
          if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00000004;
          className_ = value;
          onChanged();
          return this;
        }
        /**
         * optional string class_name = 3;
         */
        public Builder clearClassName() {
          bitField0_ = (bitField0_ & ~0x00000004);
          className_ = getDefaultInstance().getClassName();
          onChanged();
          return this;
        }
        /**
         * optional string class_name = 3;
         */
        public Builder setClassNameBytes(
            com.google.protobuf.ByteString value) {
          if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00000004;
          className_ = value;
          onChanged();
          return this;
        }

        // @@protoc_insertion_point(builder_scope:CSVCMsg_ClassInfo.class_t)
      }

      static {
        defaultInstance = new class_t(true);
        defaultInstance.initFields();
      }

      // @@protoc_insertion_point(class_scope:CSVCMsg_ClassInfo.class_t)
    }

    private int bitField0_;
    public static final int CREATE_ON_CLIENT_FIELD_NUMBER = 1;
    private boolean createOnClient_;
    /**
     * optional bool create_on_client = 1;
     */
    public boolean hasCreateOnClient() {
      return ((bitField0_ & 0x00000001) == 0x00000001);
    }
    /**
     * optional bool create_on_client = 1;
     */
    public boolean getCreateOnClient() {
      return createOnClient_;
    }

    public static final int CLASSES_FIELD_NUMBER = 2;
    private java.util.List classes_;
    /**
     * repeated .CSVCMsg_ClassInfo.class_t classes = 2;
     */
    public java.util.List getClassesList() {
      return classes_;
    }
    /**
     * repeated .CSVCMsg_ClassInfo.class_t classes = 2;
     */
    public java.util.List 
        getClassesOrBuilderList() {
      return classes_;
    }
    /**
     * repeated .CSVCMsg_ClassInfo.class_t classes = 2;
     */
    public int getClassesCount() {
      return classes_.size();
    }
    /**
     * repeated .CSVCMsg_ClassInfo.class_t classes = 2;
     */
    public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t getClasses(int index) {
      return classes_.get(index);
    }
    /**
     * repeated .CSVCMsg_ClassInfo.class_t classes = 2;
     */
    public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_tOrBuilder getClassesOrBuilder(
        int index) {
      return classes_.get(index);
    }

    private void initFields() {
      createOnClient_ = false;
      classes_ = java.util.Collections.emptyList();
    }
    private byte memoizedIsInitialized = -1;
    public final boolean isInitialized() {
      byte isInitialized = memoizedIsInitialized;
      if (isInitialized == 1) return true;
      if (isInitialized == 0) return false;

      memoizedIsInitialized = 1;
      return true;
    }

    public void writeTo(com.google.protobuf.CodedOutputStream output)
                        throws java.io.IOException {
      getSerializedSize();
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        output.writeBool(1, createOnClient_);
      }
      for (int i = 0; i < classes_.size(); i++) {
        output.writeMessage(2, classes_.get(i));
      }
      getUnknownFields().writeTo(output);
    }

    private int memoizedSerializedSize = -1;
    public int getSerializedSize() {
      int size = memoizedSerializedSize;
      if (size != -1) return size;

      size = 0;
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        size += com.google.protobuf.CodedOutputStream
          .computeBoolSize(1, createOnClient_);
      }
      for (int i = 0; i < classes_.size(); i++) {
        size += com.google.protobuf.CodedOutputStream
          .computeMessageSize(2, classes_.get(i));
      }
      size += getUnknownFields().getSerializedSize();
      memoizedSerializedSize = size;
      return size;
    }

    private static final long serialVersionUID = 0L;
    @java.lang.Override
    protected java.lang.Object writeReplace()
        throws java.io.ObjectStreamException {
      return super.writeReplace();
    }

    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo parseFrom(
        com.google.protobuf.ByteString data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo parseFrom(
        com.google.protobuf.ByteString data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo parseFrom(byte[] data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo parseFrom(
        byte[] data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo parseFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo parseFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo parseDelimitedFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo parseDelimitedFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo parseFrom(
        com.google.protobuf.CodedInputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo parseFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }

    public static Builder newBuilder() { return Builder.create(); }
    public Builder newBuilderForType() { return newBuilder(); }
    public static Builder newBuilder(skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo prototype) {
      return newBuilder().mergeFrom(prototype);
    }
    public Builder toBuilder() { return newBuilder(this); }

    @java.lang.Override
    protected Builder newBuilderForType(
        com.google.protobuf.GeneratedMessage.BuilderParent parent) {
      Builder builder = new Builder(parent);
      return builder;
    }
    /**
     * Protobuf type {@code CSVCMsg_ClassInfo}
     */
    public static final class Builder extends
        com.google.protobuf.GeneratedMessage.Builder implements
        // @@protoc_insertion_point(builder_implements:CSVCMsg_ClassInfo)
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfoOrBuilder {
      public static final com.google.protobuf.Descriptors.Descriptor
          getDescriptor() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_ClassInfo_descriptor;
      }

      protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
          internalGetFieldAccessorTable() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_ClassInfo_fieldAccessorTable
            .ensureFieldAccessorsInitialized(
                skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.Builder.class);
      }

      // Construct using skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.newBuilder()
      private Builder() {
        maybeForceBuilderInitialization();
      }

      private Builder(
          com.google.protobuf.GeneratedMessage.BuilderParent parent) {
        super(parent);
        maybeForceBuilderInitialization();
      }
      private void maybeForceBuilderInitialization() {
        if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
          getClassesFieldBuilder();
        }
      }
      private static Builder create() {
        return new Builder();
      }

      public Builder clear() {
        super.clear();
        createOnClient_ = false;
        bitField0_ = (bitField0_ & ~0x00000001);
        if (classesBuilder_ == null) {
          classes_ = java.util.Collections.emptyList();
          bitField0_ = (bitField0_ & ~0x00000002);
        } else {
          classesBuilder_.clear();
        }
        return this;
      }

      public Builder clone() {
        return create().mergeFrom(buildPartial());
      }

      public com.google.protobuf.Descriptors.Descriptor
          getDescriptorForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_ClassInfo_descriptor;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo getDefaultInstanceForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.getDefaultInstance();
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo build() {
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo result = buildPartial();
        if (!result.isInitialized()) {
          throw newUninitializedMessageException(result);
        }
        return result;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo buildPartial() {
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo result = new skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo(this);
        int from_bitField0_ = bitField0_;
        int to_bitField0_ = 0;
        if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
          to_bitField0_ |= 0x00000001;
        }
        result.createOnClient_ = createOnClient_;
        if (classesBuilder_ == null) {
          if (((bitField0_ & 0x00000002) == 0x00000002)) {
            classes_ = java.util.Collections.unmodifiableList(classes_);
            bitField0_ = (bitField0_ & ~0x00000002);
          }
          result.classes_ = classes_;
        } else {
          result.classes_ = classesBuilder_.build();
        }
        result.bitField0_ = to_bitField0_;
        onBuilt();
        return result;
      }

      public Builder mergeFrom(com.google.protobuf.Message other) {
        if (other instanceof skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo) {
          return mergeFrom((skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo)other);
        } else {
          super.mergeFrom(other);
          return this;
        }
      }

      public Builder mergeFrom(skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo other) {
        if (other == skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.getDefaultInstance()) return this;
        if (other.hasCreateOnClient()) {
          setCreateOnClient(other.getCreateOnClient());
        }
        if (classesBuilder_ == null) {
          if (!other.classes_.isEmpty()) {
            if (classes_.isEmpty()) {
              classes_ = other.classes_;
              bitField0_ = (bitField0_ & ~0x00000002);
            } else {
              ensureClassesIsMutable();
              classes_.addAll(other.classes_);
            }
            onChanged();
          }
        } else {
          if (!other.classes_.isEmpty()) {
            if (classesBuilder_.isEmpty()) {
              classesBuilder_.dispose();
              classesBuilder_ = null;
              classes_ = other.classes_;
              bitField0_ = (bitField0_ & ~0x00000002);
              classesBuilder_ = 
                com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ?
                   getClassesFieldBuilder() : null;
            } else {
              classesBuilder_.addAllMessages(other.classes_);
            }
          }
        }
        this.mergeUnknownFields(other.getUnknownFields());
        return this;
      }

      public final boolean isInitialized() {
        return true;
      }

      public Builder mergeFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo parsedMessage = null;
        try {
          parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
          parsedMessage = (skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo) e.getUnfinishedMessage();
          throw e;
        } finally {
          if (parsedMessage != null) {
            mergeFrom(parsedMessage);
          }
        }
        return this;
      }
      private int bitField0_;

      private boolean createOnClient_ ;
      /**
       * optional bool create_on_client = 1;
       */
      public boolean hasCreateOnClient() {
        return ((bitField0_ & 0x00000001) == 0x00000001);
      }
      /**
       * optional bool create_on_client = 1;
       */
      public boolean getCreateOnClient() {
        return createOnClient_;
      }
      /**
       * optional bool create_on_client = 1;
       */
      public Builder setCreateOnClient(boolean value) {
        bitField0_ |= 0x00000001;
        createOnClient_ = value;
        onChanged();
        return this;
      }
      /**
       * optional bool create_on_client = 1;
       */
      public Builder clearCreateOnClient() {
        bitField0_ = (bitField0_ & ~0x00000001);
        createOnClient_ = false;
        onChanged();
        return this;
      }

      private java.util.List classes_ =
        java.util.Collections.emptyList();
      private void ensureClassesIsMutable() {
        if (!((bitField0_ & 0x00000002) == 0x00000002)) {
          classes_ = new java.util.ArrayList(classes_);
          bitField0_ |= 0x00000002;
         }
      }

      private com.google.protobuf.RepeatedFieldBuilder<
          skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t.Builder, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_tOrBuilder> classesBuilder_;

      /**
       * repeated .CSVCMsg_ClassInfo.class_t classes = 2;
       */
      public java.util.List getClassesList() {
        if (classesBuilder_ == null) {
          return java.util.Collections.unmodifiableList(classes_);
        } else {
          return classesBuilder_.getMessageList();
        }
      }
      /**
       * repeated .CSVCMsg_ClassInfo.class_t classes = 2;
       */
      public int getClassesCount() {
        if (classesBuilder_ == null) {
          return classes_.size();
        } else {
          return classesBuilder_.getCount();
        }
      }
      /**
       * repeated .CSVCMsg_ClassInfo.class_t classes = 2;
       */
      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t getClasses(int index) {
        if (classesBuilder_ == null) {
          return classes_.get(index);
        } else {
          return classesBuilder_.getMessage(index);
        }
      }
      /**
       * repeated .CSVCMsg_ClassInfo.class_t classes = 2;
       */
      public Builder setClasses(
          int index, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t value) {
        if (classesBuilder_ == null) {
          if (value == null) {
            throw new NullPointerException();
          }
          ensureClassesIsMutable();
          classes_.set(index, value);
          onChanged();
        } else {
          classesBuilder_.setMessage(index, value);
        }
        return this;
      }
      /**
       * repeated .CSVCMsg_ClassInfo.class_t classes = 2;
       */
      public Builder setClasses(
          int index, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t.Builder builderForValue) {
        if (classesBuilder_ == null) {
          ensureClassesIsMutable();
          classes_.set(index, builderForValue.build());
          onChanged();
        } else {
          classesBuilder_.setMessage(index, builderForValue.build());
        }
        return this;
      }
      /**
       * repeated .CSVCMsg_ClassInfo.class_t classes = 2;
       */
      public Builder addClasses(skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t value) {
        if (classesBuilder_ == null) {
          if (value == null) {
            throw new NullPointerException();
          }
          ensureClassesIsMutable();
          classes_.add(value);
          onChanged();
        } else {
          classesBuilder_.addMessage(value);
        }
        return this;
      }
      /**
       * repeated .CSVCMsg_ClassInfo.class_t classes = 2;
       */
      public Builder addClasses(
          int index, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t value) {
        if (classesBuilder_ == null) {
          if (value == null) {
            throw new NullPointerException();
          }
          ensureClassesIsMutable();
          classes_.add(index, value);
          onChanged();
        } else {
          classesBuilder_.addMessage(index, value);
        }
        return this;
      }
      /**
       * repeated .CSVCMsg_ClassInfo.class_t classes = 2;
       */
      public Builder addClasses(
          skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t.Builder builderForValue) {
        if (classesBuilder_ == null) {
          ensureClassesIsMutable();
          classes_.add(builderForValue.build());
          onChanged();
        } else {
          classesBuilder_.addMessage(builderForValue.build());
        }
        return this;
      }
      /**
       * repeated .CSVCMsg_ClassInfo.class_t classes = 2;
       */
      public Builder addClasses(
          int index, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t.Builder builderForValue) {
        if (classesBuilder_ == null) {
          ensureClassesIsMutable();
          classes_.add(index, builderForValue.build());
          onChanged();
        } else {
          classesBuilder_.addMessage(index, builderForValue.build());
        }
        return this;
      }
      /**
       * repeated .CSVCMsg_ClassInfo.class_t classes = 2;
       */
      public Builder addAllClasses(
          java.lang.Iterable values) {
        if (classesBuilder_ == null) {
          ensureClassesIsMutable();
          com.google.protobuf.AbstractMessageLite.Builder.addAll(
              values, classes_);
          onChanged();
        } else {
          classesBuilder_.addAllMessages(values);
        }
        return this;
      }
      /**
       * repeated .CSVCMsg_ClassInfo.class_t classes = 2;
       */
      public Builder clearClasses() {
        if (classesBuilder_ == null) {
          classes_ = java.util.Collections.emptyList();
          bitField0_ = (bitField0_ & ~0x00000002);
          onChanged();
        } else {
          classesBuilder_.clear();
        }
        return this;
      }
      /**
       * repeated .CSVCMsg_ClassInfo.class_t classes = 2;
       */
      public Builder removeClasses(int index) {
        if (classesBuilder_ == null) {
          ensureClassesIsMutable();
          classes_.remove(index);
          onChanged();
        } else {
          classesBuilder_.remove(index);
        }
        return this;
      }
      /**
       * repeated .CSVCMsg_ClassInfo.class_t classes = 2;
       */
      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t.Builder getClassesBuilder(
          int index) {
        return getClassesFieldBuilder().getBuilder(index);
      }
      /**
       * repeated .CSVCMsg_ClassInfo.class_t classes = 2;
       */
      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_tOrBuilder getClassesOrBuilder(
          int index) {
        if (classesBuilder_ == null) {
          return classes_.get(index);  } else {
          return classesBuilder_.getMessageOrBuilder(index);
        }
      }
      /**
       * repeated .CSVCMsg_ClassInfo.class_t classes = 2;
       */
      public java.util.List 
           getClassesOrBuilderList() {
        if (classesBuilder_ != null) {
          return classesBuilder_.getMessageOrBuilderList();
        } else {
          return java.util.Collections.unmodifiableList(classes_);
        }
      }
      /**
       * repeated .CSVCMsg_ClassInfo.class_t classes = 2;
       */
      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t.Builder addClassesBuilder() {
        return getClassesFieldBuilder().addBuilder(
            skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t.getDefaultInstance());
      }
      /**
       * repeated .CSVCMsg_ClassInfo.class_t classes = 2;
       */
      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t.Builder addClassesBuilder(
          int index) {
        return getClassesFieldBuilder().addBuilder(
            index, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t.getDefaultInstance());
      }
      /**
       * repeated .CSVCMsg_ClassInfo.class_t classes = 2;
       */
      public java.util.List 
           getClassesBuilderList() {
        return getClassesFieldBuilder().getBuilderList();
      }
      private com.google.protobuf.RepeatedFieldBuilder<
          skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t.Builder, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_tOrBuilder> 
          getClassesFieldBuilder() {
        if (classesBuilder_ == null) {
          classesBuilder_ = new com.google.protobuf.RepeatedFieldBuilder<
              skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_t.Builder, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_ClassInfo.class_tOrBuilder>(
                  classes_,
                  ((bitField0_ & 0x00000002) == 0x00000002),
                  getParentForChildren(),
                  isClean());
          classes_ = null;
        }
        return classesBuilder_;
      }

      // @@protoc_insertion_point(builder_scope:CSVCMsg_ClassInfo)
    }

    static {
      defaultInstance = new CSVCMsg_ClassInfo(true);
      defaultInstance.initFields();
    }

    // @@protoc_insertion_point(class_scope:CSVCMsg_ClassInfo)
  }

  public interface CSVCMsg_SetViewOrBuilder extends
      // @@protoc_insertion_point(interface_extends:CSVCMsg_SetView)
      com.google.protobuf.MessageOrBuilder {

    /**
     * optional int32 entity_index = 1;
     */
    boolean hasEntityIndex();
    /**
     * optional int32 entity_index = 1;
     */
    int getEntityIndex();

    /**
     * optional int32 slot = 2;
     */
    boolean hasSlot();
    /**
     * optional int32 slot = 2;
     */
    int getSlot();
  }
  /**
   * Protobuf type {@code CSVCMsg_SetView}
   */
  public static final class CSVCMsg_SetView extends
      com.google.protobuf.GeneratedMessage implements
      // @@protoc_insertion_point(message_implements:CSVCMsg_SetView)
      CSVCMsg_SetViewOrBuilder {
    // Use CSVCMsg_SetView.newBuilder() to construct.
    private CSVCMsg_SetView(com.google.protobuf.GeneratedMessage.Builder builder) {
      super(builder);
      this.unknownFields = builder.getUnknownFields();
    }
    private CSVCMsg_SetView(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }

    private static final CSVCMsg_SetView defaultInstance;
    public static CSVCMsg_SetView getDefaultInstance() {
      return defaultInstance;
    }

    public CSVCMsg_SetView getDefaultInstanceForType() {
      return defaultInstance;
    }

    private final com.google.protobuf.UnknownFieldSet unknownFields;
    @java.lang.Override
    public final com.google.protobuf.UnknownFieldSet
        getUnknownFields() {
      return this.unknownFields;
    }
    private CSVCMsg_SetView(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      initFields();
      int mutable_bitField0_ = 0;
      com.google.protobuf.UnknownFieldSet.Builder unknownFields =
          com.google.protobuf.UnknownFieldSet.newBuilder();
      try {
        boolean done = false;
        while (!done) {
          int tag = input.readTag();
          switch (tag) {
            case 0:
              done = true;
              break;
            default: {
              if (!parseUnknownField(input, unknownFields,
                                     extensionRegistry, tag)) {
                done = true;
              }
              break;
            }
            case 8: {
              bitField0_ |= 0x00000001;
              entityIndex_ = input.readInt32();
              break;
            }
            case 16: {
              bitField0_ |= 0x00000002;
              slot_ = input.readInt32();
              break;
            }
          }
        }
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        throw e.setUnfinishedMessage(this);
      } catch (java.io.IOException e) {
        throw new com.google.protobuf.InvalidProtocolBufferException(
            e.getMessage()).setUnfinishedMessage(this);
      } finally {
        this.unknownFields = unknownFields.build();
        makeExtensionsImmutable();
      }
    }
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_SetView_descriptor;
    }

    protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_SetView_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_SetView.class, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_SetView.Builder.class);
    }

    public static com.google.protobuf.Parser PARSER =
        new com.google.protobuf.AbstractParser() {
      public CSVCMsg_SetView parsePartialFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return new CSVCMsg_SetView(input, extensionRegistry);
      }
    };

    @java.lang.Override
    public com.google.protobuf.Parser getParserForType() {
      return PARSER;
    }

    private int bitField0_;
    public static final int ENTITY_INDEX_FIELD_NUMBER = 1;
    private int entityIndex_;
    /**
     * optional int32 entity_index = 1;
     */
    public boolean hasEntityIndex() {
      return ((bitField0_ & 0x00000001) == 0x00000001);
    }
    /**
     * optional int32 entity_index = 1;
     */
    public int getEntityIndex() {
      return entityIndex_;
    }

    public static final int SLOT_FIELD_NUMBER = 2;
    private int slot_;
    /**
     * optional int32 slot = 2;
     */
    public boolean hasSlot() {
      return ((bitField0_ & 0x00000002) == 0x00000002);
    }
    /**
     * optional int32 slot = 2;
     */
    public int getSlot() {
      return slot_;
    }

    private void initFields() {
      entityIndex_ = 0;
      slot_ = 0;
    }
    private byte memoizedIsInitialized = -1;
    public final boolean isInitialized() {
      byte isInitialized = memoizedIsInitialized;
      if (isInitialized == 1) return true;
      if (isInitialized == 0) return false;

      memoizedIsInitialized = 1;
      return true;
    }

    public void writeTo(com.google.protobuf.CodedOutputStream output)
                        throws java.io.IOException {
      getSerializedSize();
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        output.writeInt32(1, entityIndex_);
      }
      if (((bitField0_ & 0x00000002) == 0x00000002)) {
        output.writeInt32(2, slot_);
      }
      getUnknownFields().writeTo(output);
    }

    private int memoizedSerializedSize = -1;
    public int getSerializedSize() {
      int size = memoizedSerializedSize;
      if (size != -1) return size;

      size = 0;
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        size += com.google.protobuf.CodedOutputStream
          .computeInt32Size(1, entityIndex_);
      }
      if (((bitField0_ & 0x00000002) == 0x00000002)) {
        size += com.google.protobuf.CodedOutputStream
          .computeInt32Size(2, slot_);
      }
      size += getUnknownFields().getSerializedSize();
      memoizedSerializedSize = size;
      return size;
    }

    private static final long serialVersionUID = 0L;
    @java.lang.Override
    protected java.lang.Object writeReplace()
        throws java.io.ObjectStreamException {
      return super.writeReplace();
    }

    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_SetView parseFrom(
        com.google.protobuf.ByteString data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_SetView parseFrom(
        com.google.protobuf.ByteString data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_SetView parseFrom(byte[] data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_SetView parseFrom(
        byte[] data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_SetView parseFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_SetView parseFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_SetView parseDelimitedFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_SetView parseDelimitedFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_SetView parseFrom(
        com.google.protobuf.CodedInputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_SetView parseFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }

    public static Builder newBuilder() { return Builder.create(); }
    public Builder newBuilderForType() { return newBuilder(); }
    public static Builder newBuilder(skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_SetView prototype) {
      return newBuilder().mergeFrom(prototype);
    }
    public Builder toBuilder() { return newBuilder(this); }

    @java.lang.Override
    protected Builder newBuilderForType(
        com.google.protobuf.GeneratedMessage.BuilderParent parent) {
      Builder builder = new Builder(parent);
      return builder;
    }
    /**
     * Protobuf type {@code CSVCMsg_SetView}
     */
    public static final class Builder extends
        com.google.protobuf.GeneratedMessage.Builder implements
        // @@protoc_insertion_point(builder_implements:CSVCMsg_SetView)
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_SetViewOrBuilder {
      public static final com.google.protobuf.Descriptors.Descriptor
          getDescriptor() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_SetView_descriptor;
      }

      protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
          internalGetFieldAccessorTable() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_SetView_fieldAccessorTable
            .ensureFieldAccessorsInitialized(
                skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_SetView.class, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_SetView.Builder.class);
      }

      // Construct using skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_SetView.newBuilder()
      private Builder() {
        maybeForceBuilderInitialization();
      }

      private Builder(
          com.google.protobuf.GeneratedMessage.BuilderParent parent) {
        super(parent);
        maybeForceBuilderInitialization();
      }
      private void maybeForceBuilderInitialization() {
        if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
        }
      }
      private static Builder create() {
        return new Builder();
      }

      public Builder clear() {
        super.clear();
        entityIndex_ = 0;
        bitField0_ = (bitField0_ & ~0x00000001);
        slot_ = 0;
        bitField0_ = (bitField0_ & ~0x00000002);
        return this;
      }

      public Builder clone() {
        return create().mergeFrom(buildPartial());
      }

      public com.google.protobuf.Descriptors.Descriptor
          getDescriptorForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_SetView_descriptor;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_SetView getDefaultInstanceForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_SetView.getDefaultInstance();
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_SetView build() {
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_SetView result = buildPartial();
        if (!result.isInitialized()) {
          throw newUninitializedMessageException(result);
        }
        return result;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_SetView buildPartial() {
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_SetView result = new skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_SetView(this);
        int from_bitField0_ = bitField0_;
        int to_bitField0_ = 0;
        if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
          to_bitField0_ |= 0x00000001;
        }
        result.entityIndex_ = entityIndex_;
        if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
          to_bitField0_ |= 0x00000002;
        }
        result.slot_ = slot_;
        result.bitField0_ = to_bitField0_;
        onBuilt();
        return result;
      }

      public Builder mergeFrom(com.google.protobuf.Message other) {
        if (other instanceof skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_SetView) {
          return mergeFrom((skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_SetView)other);
        } else {
          super.mergeFrom(other);
          return this;
        }
      }

      public Builder mergeFrom(skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_SetView other) {
        if (other == skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_SetView.getDefaultInstance()) return this;
        if (other.hasEntityIndex()) {
          setEntityIndex(other.getEntityIndex());
        }
        if (other.hasSlot()) {
          setSlot(other.getSlot());
        }
        this.mergeUnknownFields(other.getUnknownFields());
        return this;
      }

      public final boolean isInitialized() {
        return true;
      }

      public Builder mergeFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_SetView parsedMessage = null;
        try {
          parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
          parsedMessage = (skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_SetView) e.getUnfinishedMessage();
          throw e;
        } finally {
          if (parsedMessage != null) {
            mergeFrom(parsedMessage);
          }
        }
        return this;
      }
      private int bitField0_;

      private int entityIndex_ ;
      /**
       * optional int32 entity_index = 1;
       */
      public boolean hasEntityIndex() {
        return ((bitField0_ & 0x00000001) == 0x00000001);
      }
      /**
       * optional int32 entity_index = 1;
       */
      public int getEntityIndex() {
        return entityIndex_;
      }
      /**
       * optional int32 entity_index = 1;
       */
      public Builder setEntityIndex(int value) {
        bitField0_ |= 0x00000001;
        entityIndex_ = value;
        onChanged();
        return this;
      }
      /**
       * optional int32 entity_index = 1;
       */
      public Builder clearEntityIndex() {
        bitField0_ = (bitField0_ & ~0x00000001);
        entityIndex_ = 0;
        onChanged();
        return this;
      }

      private int slot_ ;
      /**
       * optional int32 slot = 2;
       */
      public boolean hasSlot() {
        return ((bitField0_ & 0x00000002) == 0x00000002);
      }
      /**
       * optional int32 slot = 2;
       */
      public int getSlot() {
        return slot_;
      }
      /**
       * optional int32 slot = 2;
       */
      public Builder setSlot(int value) {
        bitField0_ |= 0x00000002;
        slot_ = value;
        onChanged();
        return this;
      }
      /**
       * optional int32 slot = 2;
       */
      public Builder clearSlot() {
        bitField0_ = (bitField0_ & ~0x00000002);
        slot_ = 0;
        onChanged();
        return this;
      }

      // @@protoc_insertion_point(builder_scope:CSVCMsg_SetView)
    }

    static {
      defaultInstance = new CSVCMsg_SetView(true);
      defaultInstance.initFields();
    }

    // @@protoc_insertion_point(class_scope:CSVCMsg_SetView)
  }

  public interface CSVCMsg_PrintOrBuilder extends
      // @@protoc_insertion_point(interface_extends:CSVCMsg_Print)
      com.google.protobuf.MessageOrBuilder {

    /**
     * optional string text = 1;
     */
    boolean hasText();
    /**
     * optional string text = 1;
     */
    java.lang.String getText();
    /**
     * optional string text = 1;
     */
    com.google.protobuf.ByteString
        getTextBytes();
  }
  /**
   * Protobuf type {@code CSVCMsg_Print}
   */
  public static final class CSVCMsg_Print extends
      com.google.protobuf.GeneratedMessage implements
      // @@protoc_insertion_point(message_implements:CSVCMsg_Print)
      CSVCMsg_PrintOrBuilder {
    // Use CSVCMsg_Print.newBuilder() to construct.
    private CSVCMsg_Print(com.google.protobuf.GeneratedMessage.Builder builder) {
      super(builder);
      this.unknownFields = builder.getUnknownFields();
    }
    private CSVCMsg_Print(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }

    private static final CSVCMsg_Print defaultInstance;
    public static CSVCMsg_Print getDefaultInstance() {
      return defaultInstance;
    }

    public CSVCMsg_Print getDefaultInstanceForType() {
      return defaultInstance;
    }

    private final com.google.protobuf.UnknownFieldSet unknownFields;
    @java.lang.Override
    public final com.google.protobuf.UnknownFieldSet
        getUnknownFields() {
      return this.unknownFields;
    }
    private CSVCMsg_Print(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      initFields();
      int mutable_bitField0_ = 0;
      com.google.protobuf.UnknownFieldSet.Builder unknownFields =
          com.google.protobuf.UnknownFieldSet.newBuilder();
      try {
        boolean done = false;
        while (!done) {
          int tag = input.readTag();
          switch (tag) {
            case 0:
              done = true;
              break;
            default: {
              if (!parseUnknownField(input, unknownFields,
                                     extensionRegistry, tag)) {
                done = true;
              }
              break;
            }
            case 10: {
              com.google.protobuf.ByteString bs = input.readBytes();
              bitField0_ |= 0x00000001;
              text_ = bs;
              break;
            }
          }
        }
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        throw e.setUnfinishedMessage(this);
      } catch (java.io.IOException e) {
        throw new com.google.protobuf.InvalidProtocolBufferException(
            e.getMessage()).setUnfinishedMessage(this);
      } finally {
        this.unknownFields = unknownFields.build();
        makeExtensionsImmutable();
      }
    }
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_Print_descriptor;
    }

    protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_Print_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Print.class, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Print.Builder.class);
    }

    public static com.google.protobuf.Parser PARSER =
        new com.google.protobuf.AbstractParser() {
      public CSVCMsg_Print parsePartialFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return new CSVCMsg_Print(input, extensionRegistry);
      }
    };

    @java.lang.Override
    public com.google.protobuf.Parser getParserForType() {
      return PARSER;
    }

    private int bitField0_;
    public static final int TEXT_FIELD_NUMBER = 1;
    private java.lang.Object text_;
    /**
     * optional string text = 1;
     */
    public boolean hasText() {
      return ((bitField0_ & 0x00000001) == 0x00000001);
    }
    /**
     * optional string text = 1;
     */
    public java.lang.String getText() {
      java.lang.Object ref = text_;
      if (ref instanceof java.lang.String) {
        return (java.lang.String) ref;
      } else {
        com.google.protobuf.ByteString bs = 
            (com.google.protobuf.ByteString) ref;
        java.lang.String s = bs.toStringUtf8();
        if (bs.isValidUtf8()) {
          text_ = s;
        }
        return s;
      }
    }
    /**
     * optional string text = 1;
     */
    public com.google.protobuf.ByteString
        getTextBytes() {
      java.lang.Object ref = text_;
      if (ref instanceof java.lang.String) {
        com.google.protobuf.ByteString b = 
            com.google.protobuf.ByteString.copyFromUtf8(
                (java.lang.String) ref);
        text_ = b;
        return b;
      } else {
        return (com.google.protobuf.ByteString) ref;
      }
    }

    private void initFields() {
      text_ = "";
    }
    private byte memoizedIsInitialized = -1;
    public final boolean isInitialized() {
      byte isInitialized = memoizedIsInitialized;
      if (isInitialized == 1) return true;
      if (isInitialized == 0) return false;

      memoizedIsInitialized = 1;
      return true;
    }

    public void writeTo(com.google.protobuf.CodedOutputStream output)
                        throws java.io.IOException {
      getSerializedSize();
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        output.writeBytes(1, getTextBytes());
      }
      getUnknownFields().writeTo(output);
    }

    private int memoizedSerializedSize = -1;
    public int getSerializedSize() {
      int size = memoizedSerializedSize;
      if (size != -1) return size;

      size = 0;
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        size += com.google.protobuf.CodedOutputStream
          .computeBytesSize(1, getTextBytes());
      }
      size += getUnknownFields().getSerializedSize();
      memoizedSerializedSize = size;
      return size;
    }

    private static final long serialVersionUID = 0L;
    @java.lang.Override
    protected java.lang.Object writeReplace()
        throws java.io.ObjectStreamException {
      return super.writeReplace();
    }

    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Print parseFrom(
        com.google.protobuf.ByteString data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Print parseFrom(
        com.google.protobuf.ByteString data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Print parseFrom(byte[] data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Print parseFrom(
        byte[] data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Print parseFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Print parseFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Print parseDelimitedFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Print parseDelimitedFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Print parseFrom(
        com.google.protobuf.CodedInputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Print parseFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }

    public static Builder newBuilder() { return Builder.create(); }
    public Builder newBuilderForType() { return newBuilder(); }
    public static Builder newBuilder(skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Print prototype) {
      return newBuilder().mergeFrom(prototype);
    }
    public Builder toBuilder() { return newBuilder(this); }

    @java.lang.Override
    protected Builder newBuilderForType(
        com.google.protobuf.GeneratedMessage.BuilderParent parent) {
      Builder builder = new Builder(parent);
      return builder;
    }
    /**
     * Protobuf type {@code CSVCMsg_Print}
     */
    public static final class Builder extends
        com.google.protobuf.GeneratedMessage.Builder implements
        // @@protoc_insertion_point(builder_implements:CSVCMsg_Print)
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_PrintOrBuilder {
      public static final com.google.protobuf.Descriptors.Descriptor
          getDescriptor() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_Print_descriptor;
      }

      protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
          internalGetFieldAccessorTable() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_Print_fieldAccessorTable
            .ensureFieldAccessorsInitialized(
                skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Print.class, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Print.Builder.class);
      }

      // Construct using skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Print.newBuilder()
      private Builder() {
        maybeForceBuilderInitialization();
      }

      private Builder(
          com.google.protobuf.GeneratedMessage.BuilderParent parent) {
        super(parent);
        maybeForceBuilderInitialization();
      }
      private void maybeForceBuilderInitialization() {
        if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
        }
      }
      private static Builder create() {
        return new Builder();
      }

      public Builder clear() {
        super.clear();
        text_ = "";
        bitField0_ = (bitField0_ & ~0x00000001);
        return this;
      }

      public Builder clone() {
        return create().mergeFrom(buildPartial());
      }

      public com.google.protobuf.Descriptors.Descriptor
          getDescriptorForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_Print_descriptor;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Print getDefaultInstanceForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Print.getDefaultInstance();
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Print build() {
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Print result = buildPartial();
        if (!result.isInitialized()) {
          throw newUninitializedMessageException(result);
        }
        return result;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Print buildPartial() {
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Print result = new skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Print(this);
        int from_bitField0_ = bitField0_;
        int to_bitField0_ = 0;
        if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
          to_bitField0_ |= 0x00000001;
        }
        result.text_ = text_;
        result.bitField0_ = to_bitField0_;
        onBuilt();
        return result;
      }

      public Builder mergeFrom(com.google.protobuf.Message other) {
        if (other instanceof skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Print) {
          return mergeFrom((skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Print)other);
        } else {
          super.mergeFrom(other);
          return this;
        }
      }

      public Builder mergeFrom(skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Print other) {
        if (other == skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Print.getDefaultInstance()) return this;
        if (other.hasText()) {
          bitField0_ |= 0x00000001;
          text_ = other.text_;
          onChanged();
        }
        this.mergeUnknownFields(other.getUnknownFields());
        return this;
      }

      public final boolean isInitialized() {
        return true;
      }

      public Builder mergeFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Print parsedMessage = null;
        try {
          parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
          parsedMessage = (skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Print) e.getUnfinishedMessage();
          throw e;
        } finally {
          if (parsedMessage != null) {
            mergeFrom(parsedMessage);
          }
        }
        return this;
      }
      private int bitField0_;

      private java.lang.Object text_ = "";
      /**
       * optional string text = 1;
       */
      public boolean hasText() {
        return ((bitField0_ & 0x00000001) == 0x00000001);
      }
      /**
       * optional string text = 1;
       */
      public java.lang.String getText() {
        java.lang.Object ref = text_;
        if (!(ref instanceof java.lang.String)) {
          com.google.protobuf.ByteString bs =
              (com.google.protobuf.ByteString) ref;
          java.lang.String s = bs.toStringUtf8();
          if (bs.isValidUtf8()) {
            text_ = s;
          }
          return s;
        } else {
          return (java.lang.String) ref;
        }
      }
      /**
       * optional string text = 1;
       */
      public com.google.protobuf.ByteString
          getTextBytes() {
        java.lang.Object ref = text_;
        if (ref instanceof String) {
          com.google.protobuf.ByteString b = 
              com.google.protobuf.ByteString.copyFromUtf8(
                  (java.lang.String) ref);
          text_ = b;
          return b;
        } else {
          return (com.google.protobuf.ByteString) ref;
        }
      }
      /**
       * optional string text = 1;
       */
      public Builder setText(
          java.lang.String value) {
        if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00000001;
        text_ = value;
        onChanged();
        return this;
      }
      /**
       * optional string text = 1;
       */
      public Builder clearText() {
        bitField0_ = (bitField0_ & ~0x00000001);
        text_ = getDefaultInstance().getText();
        onChanged();
        return this;
      }
      /**
       * optional string text = 1;
       */
      public Builder setTextBytes(
          com.google.protobuf.ByteString value) {
        if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00000001;
        text_ = value;
        onChanged();
        return this;
      }

      // @@protoc_insertion_point(builder_scope:CSVCMsg_Print)
    }

    static {
      defaultInstance = new CSVCMsg_Print(true);
      defaultInstance.initFields();
    }

    // @@protoc_insertion_point(class_scope:CSVCMsg_Print)
  }

  public interface CSVCMsg_VoiceInitOrBuilder extends
      // @@protoc_insertion_point(interface_extends:CSVCMsg_VoiceInit)
      com.google.protobuf.MessageOrBuilder {

    /**
     * optional int32 quality = 1;
     */
    boolean hasQuality();
    /**
     * optional int32 quality = 1;
     */
    int getQuality();

    /**
     * optional string codec = 2;
     */
    boolean hasCodec();
    /**
     * optional string codec = 2;
     */
    java.lang.String getCodec();
    /**
     * optional string codec = 2;
     */
    com.google.protobuf.ByteString
        getCodecBytes();

    /**
     * optional int32 version = 3 [default = 0];
     */
    boolean hasVersion();
    /**
     * optional int32 version = 3 [default = 0];
     */
    int getVersion();
  }
  /**
   * Protobuf type {@code CSVCMsg_VoiceInit}
   */
  public static final class CSVCMsg_VoiceInit extends
      com.google.protobuf.GeneratedMessage implements
      // @@protoc_insertion_point(message_implements:CSVCMsg_VoiceInit)
      CSVCMsg_VoiceInitOrBuilder {
    // Use CSVCMsg_VoiceInit.newBuilder() to construct.
    private CSVCMsg_VoiceInit(com.google.protobuf.GeneratedMessage.Builder builder) {
      super(builder);
      this.unknownFields = builder.getUnknownFields();
    }
    private CSVCMsg_VoiceInit(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }

    private static final CSVCMsg_VoiceInit defaultInstance;
    public static CSVCMsg_VoiceInit getDefaultInstance() {
      return defaultInstance;
    }

    public CSVCMsg_VoiceInit getDefaultInstanceForType() {
      return defaultInstance;
    }

    private final com.google.protobuf.UnknownFieldSet unknownFields;
    @java.lang.Override
    public final com.google.protobuf.UnknownFieldSet
        getUnknownFields() {
      return this.unknownFields;
    }
    private CSVCMsg_VoiceInit(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      initFields();
      int mutable_bitField0_ = 0;
      com.google.protobuf.UnknownFieldSet.Builder unknownFields =
          com.google.protobuf.UnknownFieldSet.newBuilder();
      try {
        boolean done = false;
        while (!done) {
          int tag = input.readTag();
          switch (tag) {
            case 0:
              done = true;
              break;
            default: {
              if (!parseUnknownField(input, unknownFields,
                                     extensionRegistry, tag)) {
                done = true;
              }
              break;
            }
            case 8: {
              bitField0_ |= 0x00000001;
              quality_ = input.readInt32();
              break;
            }
            case 18: {
              com.google.protobuf.ByteString bs = input.readBytes();
              bitField0_ |= 0x00000002;
              codec_ = bs;
              break;
            }
            case 24: {
              bitField0_ |= 0x00000004;
              version_ = input.readInt32();
              break;
            }
          }
        }
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        throw e.setUnfinishedMessage(this);
      } catch (java.io.IOException e) {
        throw new com.google.protobuf.InvalidProtocolBufferException(
            e.getMessage()).setUnfinishedMessage(this);
      } finally {
        this.unknownFields = unknownFields.build();
        makeExtensionsImmutable();
      }
    }
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_VoiceInit_descriptor;
    }

    protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_VoiceInit_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_VoiceInit.class, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_VoiceInit.Builder.class);
    }

    public static com.google.protobuf.Parser PARSER =
        new com.google.protobuf.AbstractParser() {
      public CSVCMsg_VoiceInit parsePartialFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return new CSVCMsg_VoiceInit(input, extensionRegistry);
      }
    };

    @java.lang.Override
    public com.google.protobuf.Parser getParserForType() {
      return PARSER;
    }

    private int bitField0_;
    public static final int QUALITY_FIELD_NUMBER = 1;
    private int quality_;
    /**
     * optional int32 quality = 1;
     */
    public boolean hasQuality() {
      return ((bitField0_ & 0x00000001) == 0x00000001);
    }
    /**
     * optional int32 quality = 1;
     */
    public int getQuality() {
      return quality_;
    }

    public static final int CODEC_FIELD_NUMBER = 2;
    private java.lang.Object codec_;
    /**
     * optional string codec = 2;
     */
    public boolean hasCodec() {
      return ((bitField0_ & 0x00000002) == 0x00000002);
    }
    /**
     * optional string codec = 2;
     */
    public java.lang.String getCodec() {
      java.lang.Object ref = codec_;
      if (ref instanceof java.lang.String) {
        return (java.lang.String) ref;
      } else {
        com.google.protobuf.ByteString bs = 
            (com.google.protobuf.ByteString) ref;
        java.lang.String s = bs.toStringUtf8();
        if (bs.isValidUtf8()) {
          codec_ = s;
        }
        return s;
      }
    }
    /**
     * optional string codec = 2;
     */
    public com.google.protobuf.ByteString
        getCodecBytes() {
      java.lang.Object ref = codec_;
      if (ref instanceof java.lang.String) {
        com.google.protobuf.ByteString b = 
            com.google.protobuf.ByteString.copyFromUtf8(
                (java.lang.String) ref);
        codec_ = b;
        return b;
      } else {
        return (com.google.protobuf.ByteString) ref;
      }
    }

    public static final int VERSION_FIELD_NUMBER = 3;
    private int version_;
    /**
     * optional int32 version = 3 [default = 0];
     */
    public boolean hasVersion() {
      return ((bitField0_ & 0x00000004) == 0x00000004);
    }
    /**
     * optional int32 version = 3 [default = 0];
     */
    public int getVersion() {
      return version_;
    }

    private void initFields() {
      quality_ = 0;
      codec_ = "";
      version_ = 0;
    }
    private byte memoizedIsInitialized = -1;
    public final boolean isInitialized() {
      byte isInitialized = memoizedIsInitialized;
      if (isInitialized == 1) return true;
      if (isInitialized == 0) return false;

      memoizedIsInitialized = 1;
      return true;
    }

    public void writeTo(com.google.protobuf.CodedOutputStream output)
                        throws java.io.IOException {
      getSerializedSize();
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        output.writeInt32(1, quality_);
      }
      if (((bitField0_ & 0x00000002) == 0x00000002)) {
        output.writeBytes(2, getCodecBytes());
      }
      if (((bitField0_ & 0x00000004) == 0x00000004)) {
        output.writeInt32(3, version_);
      }
      getUnknownFields().writeTo(output);
    }

    private int memoizedSerializedSize = -1;
    public int getSerializedSize() {
      int size = memoizedSerializedSize;
      if (size != -1) return size;

      size = 0;
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        size += com.google.protobuf.CodedOutputStream
          .computeInt32Size(1, quality_);
      }
      if (((bitField0_ & 0x00000002) == 0x00000002)) {
        size += com.google.protobuf.CodedOutputStream
          .computeBytesSize(2, getCodecBytes());
      }
      if (((bitField0_ & 0x00000004) == 0x00000004)) {
        size += com.google.protobuf.CodedOutputStream
          .computeInt32Size(3, version_);
      }
      size += getUnknownFields().getSerializedSize();
      memoizedSerializedSize = size;
      return size;
    }

    private static final long serialVersionUID = 0L;
    @java.lang.Override
    protected java.lang.Object writeReplace()
        throws java.io.ObjectStreamException {
      return super.writeReplace();
    }

    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_VoiceInit parseFrom(
        com.google.protobuf.ByteString data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_VoiceInit parseFrom(
        com.google.protobuf.ByteString data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_VoiceInit parseFrom(byte[] data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_VoiceInit parseFrom(
        byte[] data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_VoiceInit parseFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_VoiceInit parseFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_VoiceInit parseDelimitedFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_VoiceInit parseDelimitedFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_VoiceInit parseFrom(
        com.google.protobuf.CodedInputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_VoiceInit parseFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }

    public static Builder newBuilder() { return Builder.create(); }
    public Builder newBuilderForType() { return newBuilder(); }
    public static Builder newBuilder(skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_VoiceInit prototype) {
      return newBuilder().mergeFrom(prototype);
    }
    public Builder toBuilder() { return newBuilder(this); }

    @java.lang.Override
    protected Builder newBuilderForType(
        com.google.protobuf.GeneratedMessage.BuilderParent parent) {
      Builder builder = new Builder(parent);
      return builder;
    }
    /**
     * Protobuf type {@code CSVCMsg_VoiceInit}
     */
    public static final class Builder extends
        com.google.protobuf.GeneratedMessage.Builder implements
        // @@protoc_insertion_point(builder_implements:CSVCMsg_VoiceInit)
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_VoiceInitOrBuilder {
      public static final com.google.protobuf.Descriptors.Descriptor
          getDescriptor() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_VoiceInit_descriptor;
      }

      protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
          internalGetFieldAccessorTable() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_VoiceInit_fieldAccessorTable
            .ensureFieldAccessorsInitialized(
                skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_VoiceInit.class, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_VoiceInit.Builder.class);
      }

      // Construct using skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_VoiceInit.newBuilder()
      private Builder() {
        maybeForceBuilderInitialization();
      }

      private Builder(
          com.google.protobuf.GeneratedMessage.BuilderParent parent) {
        super(parent);
        maybeForceBuilderInitialization();
      }
      private void maybeForceBuilderInitialization() {
        if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
        }
      }
      private static Builder create() {
        return new Builder();
      }

      public Builder clear() {
        super.clear();
        quality_ = 0;
        bitField0_ = (bitField0_ & ~0x00000001);
        codec_ = "";
        bitField0_ = (bitField0_ & ~0x00000002);
        version_ = 0;
        bitField0_ = (bitField0_ & ~0x00000004);
        return this;
      }

      public Builder clone() {
        return create().mergeFrom(buildPartial());
      }

      public com.google.protobuf.Descriptors.Descriptor
          getDescriptorForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_VoiceInit_descriptor;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_VoiceInit getDefaultInstanceForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_VoiceInit.getDefaultInstance();
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_VoiceInit build() {
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_VoiceInit result = buildPartial();
        if (!result.isInitialized()) {
          throw newUninitializedMessageException(result);
        }
        return result;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_VoiceInit buildPartial() {
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_VoiceInit result = new skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_VoiceInit(this);
        int from_bitField0_ = bitField0_;
        int to_bitField0_ = 0;
        if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
          to_bitField0_ |= 0x00000001;
        }
        result.quality_ = quality_;
        if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
          to_bitField0_ |= 0x00000002;
        }
        result.codec_ = codec_;
        if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
          to_bitField0_ |= 0x00000004;
        }
        result.version_ = version_;
        result.bitField0_ = to_bitField0_;
        onBuilt();
        return result;
      }

      public Builder mergeFrom(com.google.protobuf.Message other) {
        if (other instanceof skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_VoiceInit) {
          return mergeFrom((skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_VoiceInit)other);
        } else {
          super.mergeFrom(other);
          return this;
        }
      }

      public Builder mergeFrom(skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_VoiceInit other) {
        if (other == skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_VoiceInit.getDefaultInstance()) return this;
        if (other.hasQuality()) {
          setQuality(other.getQuality());
        }
        if (other.hasCodec()) {
          bitField0_ |= 0x00000002;
          codec_ = other.codec_;
          onChanged();
        }
        if (other.hasVersion()) {
          setVersion(other.getVersion());
        }
        this.mergeUnknownFields(other.getUnknownFields());
        return this;
      }

      public final boolean isInitialized() {
        return true;
      }

      public Builder mergeFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_VoiceInit parsedMessage = null;
        try {
          parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
          parsedMessage = (skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_VoiceInit) e.getUnfinishedMessage();
          throw e;
        } finally {
          if (parsedMessage != null) {
            mergeFrom(parsedMessage);
          }
        }
        return this;
      }
      private int bitField0_;

      private int quality_ ;
      /**
       * optional int32 quality = 1;
       */
      public boolean hasQuality() {
        return ((bitField0_ & 0x00000001) == 0x00000001);
      }
      /**
       * optional int32 quality = 1;
       */
      public int getQuality() {
        return quality_;
      }
      /**
       * optional int32 quality = 1;
       */
      public Builder setQuality(int value) {
        bitField0_ |= 0x00000001;
        quality_ = value;
        onChanged();
        return this;
      }
      /**
       * optional int32 quality = 1;
       */
      public Builder clearQuality() {
        bitField0_ = (bitField0_ & ~0x00000001);
        quality_ = 0;
        onChanged();
        return this;
      }

      private java.lang.Object codec_ = "";
      /**
       * optional string codec = 2;
       */
      public boolean hasCodec() {
        return ((bitField0_ & 0x00000002) == 0x00000002);
      }
      /**
       * optional string codec = 2;
       */
      public java.lang.String getCodec() {
        java.lang.Object ref = codec_;
        if (!(ref instanceof java.lang.String)) {
          com.google.protobuf.ByteString bs =
              (com.google.protobuf.ByteString) ref;
          java.lang.String s = bs.toStringUtf8();
          if (bs.isValidUtf8()) {
            codec_ = s;
          }
          return s;
        } else {
          return (java.lang.String) ref;
        }
      }
      /**
       * optional string codec = 2;
       */
      public com.google.protobuf.ByteString
          getCodecBytes() {
        java.lang.Object ref = codec_;
        if (ref instanceof String) {
          com.google.protobuf.ByteString b = 
              com.google.protobuf.ByteString.copyFromUtf8(
                  (java.lang.String) ref);
          codec_ = b;
          return b;
        } else {
          return (com.google.protobuf.ByteString) ref;
        }
      }
      /**
       * optional string codec = 2;
       */
      public Builder setCodec(
          java.lang.String value) {
        if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00000002;
        codec_ = value;
        onChanged();
        return this;
      }
      /**
       * optional string codec = 2;
       */
      public Builder clearCodec() {
        bitField0_ = (bitField0_ & ~0x00000002);
        codec_ = getDefaultInstance().getCodec();
        onChanged();
        return this;
      }
      /**
       * optional string codec = 2;
       */
      public Builder setCodecBytes(
          com.google.protobuf.ByteString value) {
        if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00000002;
        codec_ = value;
        onChanged();
        return this;
      }

      private int version_ ;
      /**
       * optional int32 version = 3 [default = 0];
       */
      public boolean hasVersion() {
        return ((bitField0_ & 0x00000004) == 0x00000004);
      }
      /**
       * optional int32 version = 3 [default = 0];
       */
      public int getVersion() {
        return version_;
      }
      /**
       * optional int32 version = 3 [default = 0];
       */
      public Builder setVersion(int value) {
        bitField0_ |= 0x00000004;
        version_ = value;
        onChanged();
        return this;
      }
      /**
       * optional int32 version = 3 [default = 0];
       */
      public Builder clearVersion() {
        bitField0_ = (bitField0_ & ~0x00000004);
        version_ = 0;
        onChanged();
        return this;
      }

      // @@protoc_insertion_point(builder_scope:CSVCMsg_VoiceInit)
    }

    static {
      defaultInstance = new CSVCMsg_VoiceInit(true);
      defaultInstance.initFields();
    }

    // @@protoc_insertion_point(class_scope:CSVCMsg_VoiceInit)
  }

  public interface CSVCMsg_SoundsOrBuilder extends
      // @@protoc_insertion_point(interface_extends:CSVCMsg_Sounds)
      com.google.protobuf.MessageOrBuilder {

    /**
     * optional bool reliable_sound = 1;
     */
    boolean hasReliableSound();
    /**
     * optional bool reliable_sound = 1;
     */
    boolean getReliableSound();

    /**
     * repeated .CSVCMsg_Sounds.sounddata_t sounds = 2;
     */
    java.util.List 
        getSoundsList();
    /**
     * repeated .CSVCMsg_Sounds.sounddata_t sounds = 2;
     */
    skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t getSounds(int index);
    /**
     * repeated .CSVCMsg_Sounds.sounddata_t sounds = 2;
     */
    int getSoundsCount();
    /**
     * repeated .CSVCMsg_Sounds.sounddata_t sounds = 2;
     */
    java.util.List 
        getSoundsOrBuilderList();
    /**
     * repeated .CSVCMsg_Sounds.sounddata_t sounds = 2;
     */
    skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_tOrBuilder getSoundsOrBuilder(
        int index);
  }
  /**
   * Protobuf type {@code CSVCMsg_Sounds}
   */
  public static final class CSVCMsg_Sounds extends
      com.google.protobuf.GeneratedMessage implements
      // @@protoc_insertion_point(message_implements:CSVCMsg_Sounds)
      CSVCMsg_SoundsOrBuilder {
    // Use CSVCMsg_Sounds.newBuilder() to construct.
    private CSVCMsg_Sounds(com.google.protobuf.GeneratedMessage.Builder builder) {
      super(builder);
      this.unknownFields = builder.getUnknownFields();
    }
    private CSVCMsg_Sounds(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }

    private static final CSVCMsg_Sounds defaultInstance;
    public static CSVCMsg_Sounds getDefaultInstance() {
      return defaultInstance;
    }

    public CSVCMsg_Sounds getDefaultInstanceForType() {
      return defaultInstance;
    }

    private final com.google.protobuf.UnknownFieldSet unknownFields;
    @java.lang.Override
    public final com.google.protobuf.UnknownFieldSet
        getUnknownFields() {
      return this.unknownFields;
    }
    private CSVCMsg_Sounds(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      initFields();
      int mutable_bitField0_ = 0;
      com.google.protobuf.UnknownFieldSet.Builder unknownFields =
          com.google.protobuf.UnknownFieldSet.newBuilder();
      try {
        boolean done = false;
        while (!done) {
          int tag = input.readTag();
          switch (tag) {
            case 0:
              done = true;
              break;
            default: {
              if (!parseUnknownField(input, unknownFields,
                                     extensionRegistry, tag)) {
                done = true;
              }
              break;
            }
            case 8: {
              bitField0_ |= 0x00000001;
              reliableSound_ = input.readBool();
              break;
            }
            case 18: {
              if (!((mutable_bitField0_ & 0x00000002) == 0x00000002)) {
                sounds_ = new java.util.ArrayList();
                mutable_bitField0_ |= 0x00000002;
              }
              sounds_.add(input.readMessage(skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t.PARSER, extensionRegistry));
              break;
            }
          }
        }
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        throw e.setUnfinishedMessage(this);
      } catch (java.io.IOException e) {
        throw new com.google.protobuf.InvalidProtocolBufferException(
            e.getMessage()).setUnfinishedMessage(this);
      } finally {
        if (((mutable_bitField0_ & 0x00000002) == 0x00000002)) {
          sounds_ = java.util.Collections.unmodifiableList(sounds_);
        }
        this.unknownFields = unknownFields.build();
        makeExtensionsImmutable();
      }
    }
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_Sounds_descriptor;
    }

    protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_Sounds_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.class, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.Builder.class);
    }

    public static com.google.protobuf.Parser PARSER =
        new com.google.protobuf.AbstractParser() {
      public CSVCMsg_Sounds parsePartialFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return new CSVCMsg_Sounds(input, extensionRegistry);
      }
    };

    @java.lang.Override
    public com.google.protobuf.Parser getParserForType() {
      return PARSER;
    }

    public interface sounddata_tOrBuilder extends
        // @@protoc_insertion_point(interface_extends:CSVCMsg_Sounds.sounddata_t)
        com.google.protobuf.MessageOrBuilder {

      /**
       * optional sint32 origin_x = 1;
       */
      boolean hasOriginX();
      /**
       * optional sint32 origin_x = 1;
       */
      int getOriginX();

      /**
       * optional sint32 origin_y = 2;
       */
      boolean hasOriginY();
      /**
       * optional sint32 origin_y = 2;
       */
      int getOriginY();

      /**
       * optional sint32 origin_z = 3;
       */
      boolean hasOriginZ();
      /**
       * optional sint32 origin_z = 3;
       */
      int getOriginZ();

      /**
       * optional uint32 volume = 4;
       */
      boolean hasVolume();
      /**
       * optional uint32 volume = 4;
       */
      int getVolume();

      /**
       * optional float delay_value = 5;
       */
      boolean hasDelayValue();
      /**
       * optional float delay_value = 5;
       */
      float getDelayValue();

      /**
       * optional int32 sequence_number = 6;
       */
      boolean hasSequenceNumber();
      /**
       * optional int32 sequence_number = 6;
       */
      int getSequenceNumber();

      /**
       * optional int32 entity_index = 7;
       */
      boolean hasEntityIndex();
      /**
       * optional int32 entity_index = 7;
       */
      int getEntityIndex();

      /**
       * optional int32 channel = 8;
       */
      boolean hasChannel();
      /**
       * optional int32 channel = 8;
       */
      int getChannel();

      /**
       * optional int32 pitch = 9;
       */
      boolean hasPitch();
      /**
       * optional int32 pitch = 9;
       */
      int getPitch();

      /**
       * optional int32 flags = 10;
       */
      boolean hasFlags();
      /**
       * optional int32 flags = 10;
       */
      int getFlags();

      /**
       * optional uint32 sound_num = 11;
       */
      boolean hasSoundNum();
      /**
       * optional uint32 sound_num = 11;
       */
      int getSoundNum();

      /**
       * optional fixed32 sound_num_handle = 12;
       */
      boolean hasSoundNumHandle();
      /**
       * optional fixed32 sound_num_handle = 12;
       */
      int getSoundNumHandle();

      /**
       * optional int32 speaker_entity = 13;
       */
      boolean hasSpeakerEntity();
      /**
       * optional int32 speaker_entity = 13;
       */
      int getSpeakerEntity();

      /**
       * optional int32 random_seed = 14;
       */
      boolean hasRandomSeed();
      /**
       * optional int32 random_seed = 14;
       */
      int getRandomSeed();

      /**
       * optional int32 sound_level = 15;
       */
      boolean hasSoundLevel();
      /**
       * optional int32 sound_level = 15;
       */
      int getSoundLevel();

      /**
       * optional bool is_sentence = 16;
       */
      boolean hasIsSentence();
      /**
       * optional bool is_sentence = 16;
       */
      boolean getIsSentence();

      /**
       * optional bool is_ambient = 17;
       */
      boolean hasIsAmbient();
      /**
       * optional bool is_ambient = 17;
       */
      boolean getIsAmbient();

      /**
       * optional uint32 guid = 18;
       */
      boolean hasGuid();
      /**
       * optional uint32 guid = 18;
       */
      int getGuid();

      /**
       * optional fixed64 sound_resource_id = 19;
       */
      boolean hasSoundResourceId();
      /**
       * optional fixed64 sound_resource_id = 19;
       */
      long getSoundResourceId();
    }
    /**
     * Protobuf type {@code CSVCMsg_Sounds.sounddata_t}
     */
    public static final class sounddata_t extends
        com.google.protobuf.GeneratedMessage implements
        // @@protoc_insertion_point(message_implements:CSVCMsg_Sounds.sounddata_t)
        sounddata_tOrBuilder {
      // Use sounddata_t.newBuilder() to construct.
      private sounddata_t(com.google.protobuf.GeneratedMessage.Builder builder) {
        super(builder);
        this.unknownFields = builder.getUnknownFields();
      }
      private sounddata_t(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }

      private static final sounddata_t defaultInstance;
      public static sounddata_t getDefaultInstance() {
        return defaultInstance;
      }

      public sounddata_t getDefaultInstanceForType() {
        return defaultInstance;
      }

      private final com.google.protobuf.UnknownFieldSet unknownFields;
      @java.lang.Override
      public final com.google.protobuf.UnknownFieldSet
          getUnknownFields() {
        return this.unknownFields;
      }
      private sounddata_t(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        initFields();
        int mutable_bitField0_ = 0;
        com.google.protobuf.UnknownFieldSet.Builder unknownFields =
            com.google.protobuf.UnknownFieldSet.newBuilder();
        try {
          boolean done = false;
          while (!done) {
            int tag = input.readTag();
            switch (tag) {
              case 0:
                done = true;
                break;
              default: {
                if (!parseUnknownField(input, unknownFields,
                                       extensionRegistry, tag)) {
                  done = true;
                }
                break;
              }
              case 8: {
                bitField0_ |= 0x00000001;
                originX_ = input.readSInt32();
                break;
              }
              case 16: {
                bitField0_ |= 0x00000002;
                originY_ = input.readSInt32();
                break;
              }
              case 24: {
                bitField0_ |= 0x00000004;
                originZ_ = input.readSInt32();
                break;
              }
              case 32: {
                bitField0_ |= 0x00000008;
                volume_ = input.readUInt32();
                break;
              }
              case 45: {
                bitField0_ |= 0x00000010;
                delayValue_ = input.readFloat();
                break;
              }
              case 48: {
                bitField0_ |= 0x00000020;
                sequenceNumber_ = input.readInt32();
                break;
              }
              case 56: {
                bitField0_ |= 0x00000040;
                entityIndex_ = input.readInt32();
                break;
              }
              case 64: {
                bitField0_ |= 0x00000080;
                channel_ = input.readInt32();
                break;
              }
              case 72: {
                bitField0_ |= 0x00000100;
                pitch_ = input.readInt32();
                break;
              }
              case 80: {
                bitField0_ |= 0x00000200;
                flags_ = input.readInt32();
                break;
              }
              case 88: {
                bitField0_ |= 0x00000400;
                soundNum_ = input.readUInt32();
                break;
              }
              case 101: {
                bitField0_ |= 0x00000800;
                soundNumHandle_ = input.readFixed32();
                break;
              }
              case 104: {
                bitField0_ |= 0x00001000;
                speakerEntity_ = input.readInt32();
                break;
              }
              case 112: {
                bitField0_ |= 0x00002000;
                randomSeed_ = input.readInt32();
                break;
              }
              case 120: {
                bitField0_ |= 0x00004000;
                soundLevel_ = input.readInt32();
                break;
              }
              case 128: {
                bitField0_ |= 0x00008000;
                isSentence_ = input.readBool();
                break;
              }
              case 136: {
                bitField0_ |= 0x00010000;
                isAmbient_ = input.readBool();
                break;
              }
              case 144: {
                bitField0_ |= 0x00020000;
                guid_ = input.readUInt32();
                break;
              }
              case 153: {
                bitField0_ |= 0x00040000;
                soundResourceId_ = input.readFixed64();
                break;
              }
            }
          }
        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
          throw e.setUnfinishedMessage(this);
        } catch (java.io.IOException e) {
          throw new com.google.protobuf.InvalidProtocolBufferException(
              e.getMessage()).setUnfinishedMessage(this);
        } finally {
          this.unknownFields = unknownFields.build();
          makeExtensionsImmutable();
        }
      }
      public static final com.google.protobuf.Descriptors.Descriptor
          getDescriptor() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_Sounds_sounddata_t_descriptor;
      }

      protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
          internalGetFieldAccessorTable() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_Sounds_sounddata_t_fieldAccessorTable
            .ensureFieldAccessorsInitialized(
                skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t.class, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t.Builder.class);
      }

      public static com.google.protobuf.Parser PARSER =
          new com.google.protobuf.AbstractParser() {
        public sounddata_t parsePartialFrom(
            com.google.protobuf.CodedInputStream input,
            com.google.protobuf.ExtensionRegistryLite extensionRegistry)
            throws com.google.protobuf.InvalidProtocolBufferException {
          return new sounddata_t(input, extensionRegistry);
        }
      };

      @java.lang.Override
      public com.google.protobuf.Parser getParserForType() {
        return PARSER;
      }

      private int bitField0_;
      public static final int ORIGIN_X_FIELD_NUMBER = 1;
      private int originX_;
      /**
       * optional sint32 origin_x = 1;
       */
      public boolean hasOriginX() {
        return ((bitField0_ & 0x00000001) == 0x00000001);
      }
      /**
       * optional sint32 origin_x = 1;
       */
      public int getOriginX() {
        return originX_;
      }

      public static final int ORIGIN_Y_FIELD_NUMBER = 2;
      private int originY_;
      /**
       * optional sint32 origin_y = 2;
       */
      public boolean hasOriginY() {
        return ((bitField0_ & 0x00000002) == 0x00000002);
      }
      /**
       * optional sint32 origin_y = 2;
       */
      public int getOriginY() {
        return originY_;
      }

      public static final int ORIGIN_Z_FIELD_NUMBER = 3;
      private int originZ_;
      /**
       * optional sint32 origin_z = 3;
       */
      public boolean hasOriginZ() {
        return ((bitField0_ & 0x00000004) == 0x00000004);
      }
      /**
       * optional sint32 origin_z = 3;
       */
      public int getOriginZ() {
        return originZ_;
      }

      public static final int VOLUME_FIELD_NUMBER = 4;
      private int volume_;
      /**
       * optional uint32 volume = 4;
       */
      public boolean hasVolume() {
        return ((bitField0_ & 0x00000008) == 0x00000008);
      }
      /**
       * optional uint32 volume = 4;
       */
      public int getVolume() {
        return volume_;
      }

      public static final int DELAY_VALUE_FIELD_NUMBER = 5;
      private float delayValue_;
      /**
       * optional float delay_value = 5;
       */
      public boolean hasDelayValue() {
        return ((bitField0_ & 0x00000010) == 0x00000010);
      }
      /**
       * optional float delay_value = 5;
       */
      public float getDelayValue() {
        return delayValue_;
      }

      public static final int SEQUENCE_NUMBER_FIELD_NUMBER = 6;
      private int sequenceNumber_;
      /**
       * optional int32 sequence_number = 6;
       */
      public boolean hasSequenceNumber() {
        return ((bitField0_ & 0x00000020) == 0x00000020);
      }
      /**
       * optional int32 sequence_number = 6;
       */
      public int getSequenceNumber() {
        return sequenceNumber_;
      }

      public static final int ENTITY_INDEX_FIELD_NUMBER = 7;
      private int entityIndex_;
      /**
       * optional int32 entity_index = 7;
       */
      public boolean hasEntityIndex() {
        return ((bitField0_ & 0x00000040) == 0x00000040);
      }
      /**
       * optional int32 entity_index = 7;
       */
      public int getEntityIndex() {
        return entityIndex_;
      }

      public static final int CHANNEL_FIELD_NUMBER = 8;
      private int channel_;
      /**
       * optional int32 channel = 8;
       */
      public boolean hasChannel() {
        return ((bitField0_ & 0x00000080) == 0x00000080);
      }
      /**
       * optional int32 channel = 8;
       */
      public int getChannel() {
        return channel_;
      }

      public static final int PITCH_FIELD_NUMBER = 9;
      private int pitch_;
      /**
       * optional int32 pitch = 9;
       */
      public boolean hasPitch() {
        return ((bitField0_ & 0x00000100) == 0x00000100);
      }
      /**
       * optional int32 pitch = 9;
       */
      public int getPitch() {
        return pitch_;
      }

      public static final int FLAGS_FIELD_NUMBER = 10;
      private int flags_;
      /**
       * optional int32 flags = 10;
       */
      public boolean hasFlags() {
        return ((bitField0_ & 0x00000200) == 0x00000200);
      }
      /**
       * optional int32 flags = 10;
       */
      public int getFlags() {
        return flags_;
      }

      public static final int SOUND_NUM_FIELD_NUMBER = 11;
      private int soundNum_;
      /**
       * optional uint32 sound_num = 11;
       */
      public boolean hasSoundNum() {
        return ((bitField0_ & 0x00000400) == 0x00000400);
      }
      /**
       * optional uint32 sound_num = 11;
       */
      public int getSoundNum() {
        return soundNum_;
      }

      public static final int SOUND_NUM_HANDLE_FIELD_NUMBER = 12;
      private int soundNumHandle_;
      /**
       * optional fixed32 sound_num_handle = 12;
       */
      public boolean hasSoundNumHandle() {
        return ((bitField0_ & 0x00000800) == 0x00000800);
      }
      /**
       * optional fixed32 sound_num_handle = 12;
       */
      public int getSoundNumHandle() {
        return soundNumHandle_;
      }

      public static final int SPEAKER_ENTITY_FIELD_NUMBER = 13;
      private int speakerEntity_;
      /**
       * optional int32 speaker_entity = 13;
       */
      public boolean hasSpeakerEntity() {
        return ((bitField0_ & 0x00001000) == 0x00001000);
      }
      /**
       * optional int32 speaker_entity = 13;
       */
      public int getSpeakerEntity() {
        return speakerEntity_;
      }

      public static final int RANDOM_SEED_FIELD_NUMBER = 14;
      private int randomSeed_;
      /**
       * optional int32 random_seed = 14;
       */
      public boolean hasRandomSeed() {
        return ((bitField0_ & 0x00002000) == 0x00002000);
      }
      /**
       * optional int32 random_seed = 14;
       */
      public int getRandomSeed() {
        return randomSeed_;
      }

      public static final int SOUND_LEVEL_FIELD_NUMBER = 15;
      private int soundLevel_;
      /**
       * optional int32 sound_level = 15;
       */
      public boolean hasSoundLevel() {
        return ((bitField0_ & 0x00004000) == 0x00004000);
      }
      /**
       * optional int32 sound_level = 15;
       */
      public int getSoundLevel() {
        return soundLevel_;
      }

      public static final int IS_SENTENCE_FIELD_NUMBER = 16;
      private boolean isSentence_;
      /**
       * optional bool is_sentence = 16;
       */
      public boolean hasIsSentence() {
        return ((bitField0_ & 0x00008000) == 0x00008000);
      }
      /**
       * optional bool is_sentence = 16;
       */
      public boolean getIsSentence() {
        return isSentence_;
      }

      public static final int IS_AMBIENT_FIELD_NUMBER = 17;
      private boolean isAmbient_;
      /**
       * optional bool is_ambient = 17;
       */
      public boolean hasIsAmbient() {
        return ((bitField0_ & 0x00010000) == 0x00010000);
      }
      /**
       * optional bool is_ambient = 17;
       */
      public boolean getIsAmbient() {
        return isAmbient_;
      }

      public static final int GUID_FIELD_NUMBER = 18;
      private int guid_;
      /**
       * optional uint32 guid = 18;
       */
      public boolean hasGuid() {
        return ((bitField0_ & 0x00020000) == 0x00020000);
      }
      /**
       * optional uint32 guid = 18;
       */
      public int getGuid() {
        return guid_;
      }

      public static final int SOUND_RESOURCE_ID_FIELD_NUMBER = 19;
      private long soundResourceId_;
      /**
       * optional fixed64 sound_resource_id = 19;
       */
      public boolean hasSoundResourceId() {
        return ((bitField0_ & 0x00040000) == 0x00040000);
      }
      /**
       * optional fixed64 sound_resource_id = 19;
       */
      public long getSoundResourceId() {
        return soundResourceId_;
      }

      private void initFields() {
        originX_ = 0;
        originY_ = 0;
        originZ_ = 0;
        volume_ = 0;
        delayValue_ = 0F;
        sequenceNumber_ = 0;
        entityIndex_ = 0;
        channel_ = 0;
        pitch_ = 0;
        flags_ = 0;
        soundNum_ = 0;
        soundNumHandle_ = 0;
        speakerEntity_ = 0;
        randomSeed_ = 0;
        soundLevel_ = 0;
        isSentence_ = false;
        isAmbient_ = false;
        guid_ = 0;
        soundResourceId_ = 0L;
      }
      private byte memoizedIsInitialized = -1;
      public final boolean isInitialized() {
        byte isInitialized = memoizedIsInitialized;
        if (isInitialized == 1) return true;
        if (isInitialized == 0) return false;

        memoizedIsInitialized = 1;
        return true;
      }

      public void writeTo(com.google.protobuf.CodedOutputStream output)
                          throws java.io.IOException {
        getSerializedSize();
        if (((bitField0_ & 0x00000001) == 0x00000001)) {
          output.writeSInt32(1, originX_);
        }
        if (((bitField0_ & 0x00000002) == 0x00000002)) {
          output.writeSInt32(2, originY_);
        }
        if (((bitField0_ & 0x00000004) == 0x00000004)) {
          output.writeSInt32(3, originZ_);
        }
        if (((bitField0_ & 0x00000008) == 0x00000008)) {
          output.writeUInt32(4, volume_);
        }
        if (((bitField0_ & 0x00000010) == 0x00000010)) {
          output.writeFloat(5, delayValue_);
        }
        if (((bitField0_ & 0x00000020) == 0x00000020)) {
          output.writeInt32(6, sequenceNumber_);
        }
        if (((bitField0_ & 0x00000040) == 0x00000040)) {
          output.writeInt32(7, entityIndex_);
        }
        if (((bitField0_ & 0x00000080) == 0x00000080)) {
          output.writeInt32(8, channel_);
        }
        if (((bitField0_ & 0x00000100) == 0x00000100)) {
          output.writeInt32(9, pitch_);
        }
        if (((bitField0_ & 0x00000200) == 0x00000200)) {
          output.writeInt32(10, flags_);
        }
        if (((bitField0_ & 0x00000400) == 0x00000400)) {
          output.writeUInt32(11, soundNum_);
        }
        if (((bitField0_ & 0x00000800) == 0x00000800)) {
          output.writeFixed32(12, soundNumHandle_);
        }
        if (((bitField0_ & 0x00001000) == 0x00001000)) {
          output.writeInt32(13, speakerEntity_);
        }
        if (((bitField0_ & 0x00002000) == 0x00002000)) {
          output.writeInt32(14, randomSeed_);
        }
        if (((bitField0_ & 0x00004000) == 0x00004000)) {
          output.writeInt32(15, soundLevel_);
        }
        if (((bitField0_ & 0x00008000) == 0x00008000)) {
          output.writeBool(16, isSentence_);
        }
        if (((bitField0_ & 0x00010000) == 0x00010000)) {
          output.writeBool(17, isAmbient_);
        }
        if (((bitField0_ & 0x00020000) == 0x00020000)) {
          output.writeUInt32(18, guid_);
        }
        if (((bitField0_ & 0x00040000) == 0x00040000)) {
          output.writeFixed64(19, soundResourceId_);
        }
        getUnknownFields().writeTo(output);
      }

      private int memoizedSerializedSize = -1;
      public int getSerializedSize() {
        int size = memoizedSerializedSize;
        if (size != -1) return size;

        size = 0;
        if (((bitField0_ & 0x00000001) == 0x00000001)) {
          size += com.google.protobuf.CodedOutputStream
            .computeSInt32Size(1, originX_);
        }
        if (((bitField0_ & 0x00000002) == 0x00000002)) {
          size += com.google.protobuf.CodedOutputStream
            .computeSInt32Size(2, originY_);
        }
        if (((bitField0_ & 0x00000004) == 0x00000004)) {
          size += com.google.protobuf.CodedOutputStream
            .computeSInt32Size(3, originZ_);
        }
        if (((bitField0_ & 0x00000008) == 0x00000008)) {
          size += com.google.protobuf.CodedOutputStream
            .computeUInt32Size(4, volume_);
        }
        if (((bitField0_ & 0x00000010) == 0x00000010)) {
          size += com.google.protobuf.CodedOutputStream
            .computeFloatSize(5, delayValue_);
        }
        if (((bitField0_ & 0x00000020) == 0x00000020)) {
          size += com.google.protobuf.CodedOutputStream
            .computeInt32Size(6, sequenceNumber_);
        }
        if (((bitField0_ & 0x00000040) == 0x00000040)) {
          size += com.google.protobuf.CodedOutputStream
            .computeInt32Size(7, entityIndex_);
        }
        if (((bitField0_ & 0x00000080) == 0x00000080)) {
          size += com.google.protobuf.CodedOutputStream
            .computeInt32Size(8, channel_);
        }
        if (((bitField0_ & 0x00000100) == 0x00000100)) {
          size += com.google.protobuf.CodedOutputStream
            .computeInt32Size(9, pitch_);
        }
        if (((bitField0_ & 0x00000200) == 0x00000200)) {
          size += com.google.protobuf.CodedOutputStream
            .computeInt32Size(10, flags_);
        }
        if (((bitField0_ & 0x00000400) == 0x00000400)) {
          size += com.google.protobuf.CodedOutputStream
            .computeUInt32Size(11, soundNum_);
        }
        if (((bitField0_ & 0x00000800) == 0x00000800)) {
          size += com.google.protobuf.CodedOutputStream
            .computeFixed32Size(12, soundNumHandle_);
        }
        if (((bitField0_ & 0x00001000) == 0x00001000)) {
          size += com.google.protobuf.CodedOutputStream
            .computeInt32Size(13, speakerEntity_);
        }
        if (((bitField0_ & 0x00002000) == 0x00002000)) {
          size += com.google.protobuf.CodedOutputStream
            .computeInt32Size(14, randomSeed_);
        }
        if (((bitField0_ & 0x00004000) == 0x00004000)) {
          size += com.google.protobuf.CodedOutputStream
            .computeInt32Size(15, soundLevel_);
        }
        if (((bitField0_ & 0x00008000) == 0x00008000)) {
          size += com.google.protobuf.CodedOutputStream
            .computeBoolSize(16, isSentence_);
        }
        if (((bitField0_ & 0x00010000) == 0x00010000)) {
          size += com.google.protobuf.CodedOutputStream
            .computeBoolSize(17, isAmbient_);
        }
        if (((bitField0_ & 0x00020000) == 0x00020000)) {
          size += com.google.protobuf.CodedOutputStream
            .computeUInt32Size(18, guid_);
        }
        if (((bitField0_ & 0x00040000) == 0x00040000)) {
          size += com.google.protobuf.CodedOutputStream
            .computeFixed64Size(19, soundResourceId_);
        }
        size += getUnknownFields().getSerializedSize();
        memoizedSerializedSize = size;
        return size;
      }

      private static final long serialVersionUID = 0L;
      @java.lang.Override
      protected java.lang.Object writeReplace()
          throws java.io.ObjectStreamException {
        return super.writeReplace();
      }

      public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t parseFrom(
          com.google.protobuf.ByteString data)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return PARSER.parseFrom(data);
      }
      public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t parseFrom(
          com.google.protobuf.ByteString data,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return PARSER.parseFrom(data, extensionRegistry);
      }
      public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t parseFrom(byte[] data)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return PARSER.parseFrom(data);
      }
      public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t parseFrom(
          byte[] data,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return PARSER.parseFrom(data, extensionRegistry);
      }
      public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t parseFrom(java.io.InputStream input)
          throws java.io.IOException {
        return PARSER.parseFrom(input);
      }
      public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t parseFrom(
          java.io.InputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        return PARSER.parseFrom(input, extensionRegistry);
      }
      public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t parseDelimitedFrom(java.io.InputStream input)
          throws java.io.IOException {
        return PARSER.parseDelimitedFrom(input);
      }
      public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t parseDelimitedFrom(
          java.io.InputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        return PARSER.parseDelimitedFrom(input, extensionRegistry);
      }
      public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t parseFrom(
          com.google.protobuf.CodedInputStream input)
          throws java.io.IOException {
        return PARSER.parseFrom(input);
      }
      public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t parseFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        return PARSER.parseFrom(input, extensionRegistry);
      }

      public static Builder newBuilder() { return Builder.create(); }
      public Builder newBuilderForType() { return newBuilder(); }
      public static Builder newBuilder(skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t prototype) {
        return newBuilder().mergeFrom(prototype);
      }
      public Builder toBuilder() { return newBuilder(this); }

      @java.lang.Override
      protected Builder newBuilderForType(
          com.google.protobuf.GeneratedMessage.BuilderParent parent) {
        Builder builder = new Builder(parent);
        return builder;
      }
      /**
       * Protobuf type {@code CSVCMsg_Sounds.sounddata_t}
       */
      public static final class Builder extends
          com.google.protobuf.GeneratedMessage.Builder implements
          // @@protoc_insertion_point(builder_implements:CSVCMsg_Sounds.sounddata_t)
          skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_tOrBuilder {
        public static final com.google.protobuf.Descriptors.Descriptor
            getDescriptor() {
          return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_Sounds_sounddata_t_descriptor;
        }

        protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
            internalGetFieldAccessorTable() {
          return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_Sounds_sounddata_t_fieldAccessorTable
              .ensureFieldAccessorsInitialized(
                  skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t.class, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t.Builder.class);
        }

        // Construct using skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t.newBuilder()
        private Builder() {
          maybeForceBuilderInitialization();
        }

        private Builder(
            com.google.protobuf.GeneratedMessage.BuilderParent parent) {
          super(parent);
          maybeForceBuilderInitialization();
        }
        private void maybeForceBuilderInitialization() {
          if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
          }
        }
        private static Builder create() {
          return new Builder();
        }

        public Builder clear() {
          super.clear();
          originX_ = 0;
          bitField0_ = (bitField0_ & ~0x00000001);
          originY_ = 0;
          bitField0_ = (bitField0_ & ~0x00000002);
          originZ_ = 0;
          bitField0_ = (bitField0_ & ~0x00000004);
          volume_ = 0;
          bitField0_ = (bitField0_ & ~0x00000008);
          delayValue_ = 0F;
          bitField0_ = (bitField0_ & ~0x00000010);
          sequenceNumber_ = 0;
          bitField0_ = (bitField0_ & ~0x00000020);
          entityIndex_ = 0;
          bitField0_ = (bitField0_ & ~0x00000040);
          channel_ = 0;
          bitField0_ = (bitField0_ & ~0x00000080);
          pitch_ = 0;
          bitField0_ = (bitField0_ & ~0x00000100);
          flags_ = 0;
          bitField0_ = (bitField0_ & ~0x00000200);
          soundNum_ = 0;
          bitField0_ = (bitField0_ & ~0x00000400);
          soundNumHandle_ = 0;
          bitField0_ = (bitField0_ & ~0x00000800);
          speakerEntity_ = 0;
          bitField0_ = (bitField0_ & ~0x00001000);
          randomSeed_ = 0;
          bitField0_ = (bitField0_ & ~0x00002000);
          soundLevel_ = 0;
          bitField0_ = (bitField0_ & ~0x00004000);
          isSentence_ = false;
          bitField0_ = (bitField0_ & ~0x00008000);
          isAmbient_ = false;
          bitField0_ = (bitField0_ & ~0x00010000);
          guid_ = 0;
          bitField0_ = (bitField0_ & ~0x00020000);
          soundResourceId_ = 0L;
          bitField0_ = (bitField0_ & ~0x00040000);
          return this;
        }

        public Builder clone() {
          return create().mergeFrom(buildPartial());
        }

        public com.google.protobuf.Descriptors.Descriptor
            getDescriptorForType() {
          return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_Sounds_sounddata_t_descriptor;
        }

        public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t getDefaultInstanceForType() {
          return skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t.getDefaultInstance();
        }

        public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t build() {
          skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t result = buildPartial();
          if (!result.isInitialized()) {
            throw newUninitializedMessageException(result);
          }
          return result;
        }

        public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t buildPartial() {
          skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t result = new skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t(this);
          int from_bitField0_ = bitField0_;
          int to_bitField0_ = 0;
          if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
            to_bitField0_ |= 0x00000001;
          }
          result.originX_ = originX_;
          if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
            to_bitField0_ |= 0x00000002;
          }
          result.originY_ = originY_;
          if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
            to_bitField0_ |= 0x00000004;
          }
          result.originZ_ = originZ_;
          if (((from_bitField0_ & 0x00000008) == 0x00000008)) {
            to_bitField0_ |= 0x00000008;
          }
          result.volume_ = volume_;
          if (((from_bitField0_ & 0x00000010) == 0x00000010)) {
            to_bitField0_ |= 0x00000010;
          }
          result.delayValue_ = delayValue_;
          if (((from_bitField0_ & 0x00000020) == 0x00000020)) {
            to_bitField0_ |= 0x00000020;
          }
          result.sequenceNumber_ = sequenceNumber_;
          if (((from_bitField0_ & 0x00000040) == 0x00000040)) {
            to_bitField0_ |= 0x00000040;
          }
          result.entityIndex_ = entityIndex_;
          if (((from_bitField0_ & 0x00000080) == 0x00000080)) {
            to_bitField0_ |= 0x00000080;
          }
          result.channel_ = channel_;
          if (((from_bitField0_ & 0x00000100) == 0x00000100)) {
            to_bitField0_ |= 0x00000100;
          }
          result.pitch_ = pitch_;
          if (((from_bitField0_ & 0x00000200) == 0x00000200)) {
            to_bitField0_ |= 0x00000200;
          }
          result.flags_ = flags_;
          if (((from_bitField0_ & 0x00000400) == 0x00000400)) {
            to_bitField0_ |= 0x00000400;
          }
          result.soundNum_ = soundNum_;
          if (((from_bitField0_ & 0x00000800) == 0x00000800)) {
            to_bitField0_ |= 0x00000800;
          }
          result.soundNumHandle_ = soundNumHandle_;
          if (((from_bitField0_ & 0x00001000) == 0x00001000)) {
            to_bitField0_ |= 0x00001000;
          }
          result.speakerEntity_ = speakerEntity_;
          if (((from_bitField0_ & 0x00002000) == 0x00002000)) {
            to_bitField0_ |= 0x00002000;
          }
          result.randomSeed_ = randomSeed_;
          if (((from_bitField0_ & 0x00004000) == 0x00004000)) {
            to_bitField0_ |= 0x00004000;
          }
          result.soundLevel_ = soundLevel_;
          if (((from_bitField0_ & 0x00008000) == 0x00008000)) {
            to_bitField0_ |= 0x00008000;
          }
          result.isSentence_ = isSentence_;
          if (((from_bitField0_ & 0x00010000) == 0x00010000)) {
            to_bitField0_ |= 0x00010000;
          }
          result.isAmbient_ = isAmbient_;
          if (((from_bitField0_ & 0x00020000) == 0x00020000)) {
            to_bitField0_ |= 0x00020000;
          }
          result.guid_ = guid_;
          if (((from_bitField0_ & 0x00040000) == 0x00040000)) {
            to_bitField0_ |= 0x00040000;
          }
          result.soundResourceId_ = soundResourceId_;
          result.bitField0_ = to_bitField0_;
          onBuilt();
          return result;
        }

        public Builder mergeFrom(com.google.protobuf.Message other) {
          if (other instanceof skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t) {
            return mergeFrom((skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t)other);
          } else {
            super.mergeFrom(other);
            return this;
          }
        }

        public Builder mergeFrom(skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t other) {
          if (other == skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t.getDefaultInstance()) return this;
          if (other.hasOriginX()) {
            setOriginX(other.getOriginX());
          }
          if (other.hasOriginY()) {
            setOriginY(other.getOriginY());
          }
          if (other.hasOriginZ()) {
            setOriginZ(other.getOriginZ());
          }
          if (other.hasVolume()) {
            setVolume(other.getVolume());
          }
          if (other.hasDelayValue()) {
            setDelayValue(other.getDelayValue());
          }
          if (other.hasSequenceNumber()) {
            setSequenceNumber(other.getSequenceNumber());
          }
          if (other.hasEntityIndex()) {
            setEntityIndex(other.getEntityIndex());
          }
          if (other.hasChannel()) {
            setChannel(other.getChannel());
          }
          if (other.hasPitch()) {
            setPitch(other.getPitch());
          }
          if (other.hasFlags()) {
            setFlags(other.getFlags());
          }
          if (other.hasSoundNum()) {
            setSoundNum(other.getSoundNum());
          }
          if (other.hasSoundNumHandle()) {
            setSoundNumHandle(other.getSoundNumHandle());
          }
          if (other.hasSpeakerEntity()) {
            setSpeakerEntity(other.getSpeakerEntity());
          }
          if (other.hasRandomSeed()) {
            setRandomSeed(other.getRandomSeed());
          }
          if (other.hasSoundLevel()) {
            setSoundLevel(other.getSoundLevel());
          }
          if (other.hasIsSentence()) {
            setIsSentence(other.getIsSentence());
          }
          if (other.hasIsAmbient()) {
            setIsAmbient(other.getIsAmbient());
          }
          if (other.hasGuid()) {
            setGuid(other.getGuid());
          }
          if (other.hasSoundResourceId()) {
            setSoundResourceId(other.getSoundResourceId());
          }
          this.mergeUnknownFields(other.getUnknownFields());
          return this;
        }

        public final boolean isInitialized() {
          return true;
        }

        public Builder mergeFrom(
            com.google.protobuf.CodedInputStream input,
            com.google.protobuf.ExtensionRegistryLite extensionRegistry)
            throws java.io.IOException {
          skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t parsedMessage = null;
          try {
            parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
          } catch (com.google.protobuf.InvalidProtocolBufferException e) {
            parsedMessage = (skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t) e.getUnfinishedMessage();
            throw e;
          } finally {
            if (parsedMessage != null) {
              mergeFrom(parsedMessage);
            }
          }
          return this;
        }
        private int bitField0_;

        private int originX_ ;
        /**
         * optional sint32 origin_x = 1;
         */
        public boolean hasOriginX() {
          return ((bitField0_ & 0x00000001) == 0x00000001);
        }
        /**
         * optional sint32 origin_x = 1;
         */
        public int getOriginX() {
          return originX_;
        }
        /**
         * optional sint32 origin_x = 1;
         */
        public Builder setOriginX(int value) {
          bitField0_ |= 0x00000001;
          originX_ = value;
          onChanged();
          return this;
        }
        /**
         * optional sint32 origin_x = 1;
         */
        public Builder clearOriginX() {
          bitField0_ = (bitField0_ & ~0x00000001);
          originX_ = 0;
          onChanged();
          return this;
        }

        private int originY_ ;
        /**
         * optional sint32 origin_y = 2;
         */
        public boolean hasOriginY() {
          return ((bitField0_ & 0x00000002) == 0x00000002);
        }
        /**
         * optional sint32 origin_y = 2;
         */
        public int getOriginY() {
          return originY_;
        }
        /**
         * optional sint32 origin_y = 2;
         */
        public Builder setOriginY(int value) {
          bitField0_ |= 0x00000002;
          originY_ = value;
          onChanged();
          return this;
        }
        /**
         * optional sint32 origin_y = 2;
         */
        public Builder clearOriginY() {
          bitField0_ = (bitField0_ & ~0x00000002);
          originY_ = 0;
          onChanged();
          return this;
        }

        private int originZ_ ;
        /**
         * optional sint32 origin_z = 3;
         */
        public boolean hasOriginZ() {
          return ((bitField0_ & 0x00000004) == 0x00000004);
        }
        /**
         * optional sint32 origin_z = 3;
         */
        public int getOriginZ() {
          return originZ_;
        }
        /**
         * optional sint32 origin_z = 3;
         */
        public Builder setOriginZ(int value) {
          bitField0_ |= 0x00000004;
          originZ_ = value;
          onChanged();
          return this;
        }
        /**
         * optional sint32 origin_z = 3;
         */
        public Builder clearOriginZ() {
          bitField0_ = (bitField0_ & ~0x00000004);
          originZ_ = 0;
          onChanged();
          return this;
        }

        private int volume_ ;
        /**
         * optional uint32 volume = 4;
         */
        public boolean hasVolume() {
          return ((bitField0_ & 0x00000008) == 0x00000008);
        }
        /**
         * optional uint32 volume = 4;
         */
        public int getVolume() {
          return volume_;
        }
        /**
         * optional uint32 volume = 4;
         */
        public Builder setVolume(int value) {
          bitField0_ |= 0x00000008;
          volume_ = value;
          onChanged();
          return this;
        }
        /**
         * optional uint32 volume = 4;
         */
        public Builder clearVolume() {
          bitField0_ = (bitField0_ & ~0x00000008);
          volume_ = 0;
          onChanged();
          return this;
        }

        private float delayValue_ ;
        /**
         * optional float delay_value = 5;
         */
        public boolean hasDelayValue() {
          return ((bitField0_ & 0x00000010) == 0x00000010);
        }
        /**
         * optional float delay_value = 5;
         */
        public float getDelayValue() {
          return delayValue_;
        }
        /**
         * optional float delay_value = 5;
         */
        public Builder setDelayValue(float value) {
          bitField0_ |= 0x00000010;
          delayValue_ = value;
          onChanged();
          return this;
        }
        /**
         * optional float delay_value = 5;
         */
        public Builder clearDelayValue() {
          bitField0_ = (bitField0_ & ~0x00000010);
          delayValue_ = 0F;
          onChanged();
          return this;
        }

        private int sequenceNumber_ ;
        /**
         * optional int32 sequence_number = 6;
         */
        public boolean hasSequenceNumber() {
          return ((bitField0_ & 0x00000020) == 0x00000020);
        }
        /**
         * optional int32 sequence_number = 6;
         */
        public int getSequenceNumber() {
          return sequenceNumber_;
        }
        /**
         * optional int32 sequence_number = 6;
         */
        public Builder setSequenceNumber(int value) {
          bitField0_ |= 0x00000020;
          sequenceNumber_ = value;
          onChanged();
          return this;
        }
        /**
         * optional int32 sequence_number = 6;
         */
        public Builder clearSequenceNumber() {
          bitField0_ = (bitField0_ & ~0x00000020);
          sequenceNumber_ = 0;
          onChanged();
          return this;
        }

        private int entityIndex_ ;
        /**
         * optional int32 entity_index = 7;
         */
        public boolean hasEntityIndex() {
          return ((bitField0_ & 0x00000040) == 0x00000040);
        }
        /**
         * optional int32 entity_index = 7;
         */
        public int getEntityIndex() {
          return entityIndex_;
        }
        /**
         * optional int32 entity_index = 7;
         */
        public Builder setEntityIndex(int value) {
          bitField0_ |= 0x00000040;
          entityIndex_ = value;
          onChanged();
          return this;
        }
        /**
         * optional int32 entity_index = 7;
         */
        public Builder clearEntityIndex() {
          bitField0_ = (bitField0_ & ~0x00000040);
          entityIndex_ = 0;
          onChanged();
          return this;
        }

        private int channel_ ;
        /**
         * optional int32 channel = 8;
         */
        public boolean hasChannel() {
          return ((bitField0_ & 0x00000080) == 0x00000080);
        }
        /**
         * optional int32 channel = 8;
         */
        public int getChannel() {
          return channel_;
        }
        /**
         * optional int32 channel = 8;
         */
        public Builder setChannel(int value) {
          bitField0_ |= 0x00000080;
          channel_ = value;
          onChanged();
          return this;
        }
        /**
         * optional int32 channel = 8;
         */
        public Builder clearChannel() {
          bitField0_ = (bitField0_ & ~0x00000080);
          channel_ = 0;
          onChanged();
          return this;
        }

        private int pitch_ ;
        /**
         * optional int32 pitch = 9;
         */
        public boolean hasPitch() {
          return ((bitField0_ & 0x00000100) == 0x00000100);
        }
        /**
         * optional int32 pitch = 9;
         */
        public int getPitch() {
          return pitch_;
        }
        /**
         * optional int32 pitch = 9;
         */
        public Builder setPitch(int value) {
          bitField0_ |= 0x00000100;
          pitch_ = value;
          onChanged();
          return this;
        }
        /**
         * optional int32 pitch = 9;
         */
        public Builder clearPitch() {
          bitField0_ = (bitField0_ & ~0x00000100);
          pitch_ = 0;
          onChanged();
          return this;
        }

        private int flags_ ;
        /**
         * optional int32 flags = 10;
         */
        public boolean hasFlags() {
          return ((bitField0_ & 0x00000200) == 0x00000200);
        }
        /**
         * optional int32 flags = 10;
         */
        public int getFlags() {
          return flags_;
        }
        /**
         * optional int32 flags = 10;
         */
        public Builder setFlags(int value) {
          bitField0_ |= 0x00000200;
          flags_ = value;
          onChanged();
          return this;
        }
        /**
         * optional int32 flags = 10;
         */
        public Builder clearFlags() {
          bitField0_ = (bitField0_ & ~0x00000200);
          flags_ = 0;
          onChanged();
          return this;
        }

        private int soundNum_ ;
        /**
         * optional uint32 sound_num = 11;
         */
        public boolean hasSoundNum() {
          return ((bitField0_ & 0x00000400) == 0x00000400);
        }
        /**
         * optional uint32 sound_num = 11;
         */
        public int getSoundNum() {
          return soundNum_;
        }
        /**
         * optional uint32 sound_num = 11;
         */
        public Builder setSoundNum(int value) {
          bitField0_ |= 0x00000400;
          soundNum_ = value;
          onChanged();
          return this;
        }
        /**
         * optional uint32 sound_num = 11;
         */
        public Builder clearSoundNum() {
          bitField0_ = (bitField0_ & ~0x00000400);
          soundNum_ = 0;
          onChanged();
          return this;
        }

        private int soundNumHandle_ ;
        /**
         * optional fixed32 sound_num_handle = 12;
         */
        public boolean hasSoundNumHandle() {
          return ((bitField0_ & 0x00000800) == 0x00000800);
        }
        /**
         * optional fixed32 sound_num_handle = 12;
         */
        public int getSoundNumHandle() {
          return soundNumHandle_;
        }
        /**
         * optional fixed32 sound_num_handle = 12;
         */
        public Builder setSoundNumHandle(int value) {
          bitField0_ |= 0x00000800;
          soundNumHandle_ = value;
          onChanged();
          return this;
        }
        /**
         * optional fixed32 sound_num_handle = 12;
         */
        public Builder clearSoundNumHandle() {
          bitField0_ = (bitField0_ & ~0x00000800);
          soundNumHandle_ = 0;
          onChanged();
          return this;
        }

        private int speakerEntity_ ;
        /**
         * optional int32 speaker_entity = 13;
         */
        public boolean hasSpeakerEntity() {
          return ((bitField0_ & 0x00001000) == 0x00001000);
        }
        /**
         * optional int32 speaker_entity = 13;
         */
        public int getSpeakerEntity() {
          return speakerEntity_;
        }
        /**
         * optional int32 speaker_entity = 13;
         */
        public Builder setSpeakerEntity(int value) {
          bitField0_ |= 0x00001000;
          speakerEntity_ = value;
          onChanged();
          return this;
        }
        /**
         * optional int32 speaker_entity = 13;
         */
        public Builder clearSpeakerEntity() {
          bitField0_ = (bitField0_ & ~0x00001000);
          speakerEntity_ = 0;
          onChanged();
          return this;
        }

        private int randomSeed_ ;
        /**
         * optional int32 random_seed = 14;
         */
        public boolean hasRandomSeed() {
          return ((bitField0_ & 0x00002000) == 0x00002000);
        }
        /**
         * optional int32 random_seed = 14;
         */
        public int getRandomSeed() {
          return randomSeed_;
        }
        /**
         * optional int32 random_seed = 14;
         */
        public Builder setRandomSeed(int value) {
          bitField0_ |= 0x00002000;
          randomSeed_ = value;
          onChanged();
          return this;
        }
        /**
         * optional int32 random_seed = 14;
         */
        public Builder clearRandomSeed() {
          bitField0_ = (bitField0_ & ~0x00002000);
          randomSeed_ = 0;
          onChanged();
          return this;
        }

        private int soundLevel_ ;
        /**
         * optional int32 sound_level = 15;
         */
        public boolean hasSoundLevel() {
          return ((bitField0_ & 0x00004000) == 0x00004000);
        }
        /**
         * optional int32 sound_level = 15;
         */
        public int getSoundLevel() {
          return soundLevel_;
        }
        /**
         * optional int32 sound_level = 15;
         */
        public Builder setSoundLevel(int value) {
          bitField0_ |= 0x00004000;
          soundLevel_ = value;
          onChanged();
          return this;
        }
        /**
         * optional int32 sound_level = 15;
         */
        public Builder clearSoundLevel() {
          bitField0_ = (bitField0_ & ~0x00004000);
          soundLevel_ = 0;
          onChanged();
          return this;
        }

        private boolean isSentence_ ;
        /**
         * optional bool is_sentence = 16;
         */
        public boolean hasIsSentence() {
          return ((bitField0_ & 0x00008000) == 0x00008000);
        }
        /**
         * optional bool is_sentence = 16;
         */
        public boolean getIsSentence() {
          return isSentence_;
        }
        /**
         * optional bool is_sentence = 16;
         */
        public Builder setIsSentence(boolean value) {
          bitField0_ |= 0x00008000;
          isSentence_ = value;
          onChanged();
          return this;
        }
        /**
         * optional bool is_sentence = 16;
         */
        public Builder clearIsSentence() {
          bitField0_ = (bitField0_ & ~0x00008000);
          isSentence_ = false;
          onChanged();
          return this;
        }

        private boolean isAmbient_ ;
        /**
         * optional bool is_ambient = 17;
         */
        public boolean hasIsAmbient() {
          return ((bitField0_ & 0x00010000) == 0x00010000);
        }
        /**
         * optional bool is_ambient = 17;
         */
        public boolean getIsAmbient() {
          return isAmbient_;
        }
        /**
         * optional bool is_ambient = 17;
         */
        public Builder setIsAmbient(boolean value) {
          bitField0_ |= 0x00010000;
          isAmbient_ = value;
          onChanged();
          return this;
        }
        /**
         * optional bool is_ambient = 17;
         */
        public Builder clearIsAmbient() {
          bitField0_ = (bitField0_ & ~0x00010000);
          isAmbient_ = false;
          onChanged();
          return this;
        }

        private int guid_ ;
        /**
         * optional uint32 guid = 18;
         */
        public boolean hasGuid() {
          return ((bitField0_ & 0x00020000) == 0x00020000);
        }
        /**
         * optional uint32 guid = 18;
         */
        public int getGuid() {
          return guid_;
        }
        /**
         * optional uint32 guid = 18;
         */
        public Builder setGuid(int value) {
          bitField0_ |= 0x00020000;
          guid_ = value;
          onChanged();
          return this;
        }
        /**
         * optional uint32 guid = 18;
         */
        public Builder clearGuid() {
          bitField0_ = (bitField0_ & ~0x00020000);
          guid_ = 0;
          onChanged();
          return this;
        }

        private long soundResourceId_ ;
        /**
         * optional fixed64 sound_resource_id = 19;
         */
        public boolean hasSoundResourceId() {
          return ((bitField0_ & 0x00040000) == 0x00040000);
        }
        /**
         * optional fixed64 sound_resource_id = 19;
         */
        public long getSoundResourceId() {
          return soundResourceId_;
        }
        /**
         * optional fixed64 sound_resource_id = 19;
         */
        public Builder setSoundResourceId(long value) {
          bitField0_ |= 0x00040000;
          soundResourceId_ = value;
          onChanged();
          return this;
        }
        /**
         * optional fixed64 sound_resource_id = 19;
         */
        public Builder clearSoundResourceId() {
          bitField0_ = (bitField0_ & ~0x00040000);
          soundResourceId_ = 0L;
          onChanged();
          return this;
        }

        // @@protoc_insertion_point(builder_scope:CSVCMsg_Sounds.sounddata_t)
      }

      static {
        defaultInstance = new sounddata_t(true);
        defaultInstance.initFields();
      }

      // @@protoc_insertion_point(class_scope:CSVCMsg_Sounds.sounddata_t)
    }

    private int bitField0_;
    public static final int RELIABLE_SOUND_FIELD_NUMBER = 1;
    private boolean reliableSound_;
    /**
     * optional bool reliable_sound = 1;
     */
    public boolean hasReliableSound() {
      return ((bitField0_ & 0x00000001) == 0x00000001);
    }
    /**
     * optional bool reliable_sound = 1;
     */
    public boolean getReliableSound() {
      return reliableSound_;
    }

    public static final int SOUNDS_FIELD_NUMBER = 2;
    private java.util.List sounds_;
    /**
     * repeated .CSVCMsg_Sounds.sounddata_t sounds = 2;
     */
    public java.util.List getSoundsList() {
      return sounds_;
    }
    /**
     * repeated .CSVCMsg_Sounds.sounddata_t sounds = 2;
     */
    public java.util.List 
        getSoundsOrBuilderList() {
      return sounds_;
    }
    /**
     * repeated .CSVCMsg_Sounds.sounddata_t sounds = 2;
     */
    public int getSoundsCount() {
      return sounds_.size();
    }
    /**
     * repeated .CSVCMsg_Sounds.sounddata_t sounds = 2;
     */
    public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t getSounds(int index) {
      return sounds_.get(index);
    }
    /**
     * repeated .CSVCMsg_Sounds.sounddata_t sounds = 2;
     */
    public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_tOrBuilder getSoundsOrBuilder(
        int index) {
      return sounds_.get(index);
    }

    private void initFields() {
      reliableSound_ = false;
      sounds_ = java.util.Collections.emptyList();
    }
    private byte memoizedIsInitialized = -1;
    public final boolean isInitialized() {
      byte isInitialized = memoizedIsInitialized;
      if (isInitialized == 1) return true;
      if (isInitialized == 0) return false;

      memoizedIsInitialized = 1;
      return true;
    }

    public void writeTo(com.google.protobuf.CodedOutputStream output)
                        throws java.io.IOException {
      getSerializedSize();
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        output.writeBool(1, reliableSound_);
      }
      for (int i = 0; i < sounds_.size(); i++) {
        output.writeMessage(2, sounds_.get(i));
      }
      getUnknownFields().writeTo(output);
    }

    private int memoizedSerializedSize = -1;
    public int getSerializedSize() {
      int size = memoizedSerializedSize;
      if (size != -1) return size;

      size = 0;
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        size += com.google.protobuf.CodedOutputStream
          .computeBoolSize(1, reliableSound_);
      }
      for (int i = 0; i < sounds_.size(); i++) {
        size += com.google.protobuf.CodedOutputStream
          .computeMessageSize(2, sounds_.get(i));
      }
      size += getUnknownFields().getSerializedSize();
      memoizedSerializedSize = size;
      return size;
    }

    private static final long serialVersionUID = 0L;
    @java.lang.Override
    protected java.lang.Object writeReplace()
        throws java.io.ObjectStreamException {
      return super.writeReplace();
    }

    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds parseFrom(
        com.google.protobuf.ByteString data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds parseFrom(
        com.google.protobuf.ByteString data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds parseFrom(byte[] data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds parseFrom(
        byte[] data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds parseFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds parseFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds parseDelimitedFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds parseDelimitedFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds parseFrom(
        com.google.protobuf.CodedInputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds parseFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }

    public static Builder newBuilder() { return Builder.create(); }
    public Builder newBuilderForType() { return newBuilder(); }
    public static Builder newBuilder(skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds prototype) {
      return newBuilder().mergeFrom(prototype);
    }
    public Builder toBuilder() { return newBuilder(this); }

    @java.lang.Override
    protected Builder newBuilderForType(
        com.google.protobuf.GeneratedMessage.BuilderParent parent) {
      Builder builder = new Builder(parent);
      return builder;
    }
    /**
     * Protobuf type {@code CSVCMsg_Sounds}
     */
    public static final class Builder extends
        com.google.protobuf.GeneratedMessage.Builder implements
        // @@protoc_insertion_point(builder_implements:CSVCMsg_Sounds)
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_SoundsOrBuilder {
      public static final com.google.protobuf.Descriptors.Descriptor
          getDescriptor() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_Sounds_descriptor;
      }

      protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
          internalGetFieldAccessorTable() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_Sounds_fieldAccessorTable
            .ensureFieldAccessorsInitialized(
                skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.class, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.Builder.class);
      }

      // Construct using skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.newBuilder()
      private Builder() {
        maybeForceBuilderInitialization();
      }

      private Builder(
          com.google.protobuf.GeneratedMessage.BuilderParent parent) {
        super(parent);
        maybeForceBuilderInitialization();
      }
      private void maybeForceBuilderInitialization() {
        if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
          getSoundsFieldBuilder();
        }
      }
      private static Builder create() {
        return new Builder();
      }

      public Builder clear() {
        super.clear();
        reliableSound_ = false;
        bitField0_ = (bitField0_ & ~0x00000001);
        if (soundsBuilder_ == null) {
          sounds_ = java.util.Collections.emptyList();
          bitField0_ = (bitField0_ & ~0x00000002);
        } else {
          soundsBuilder_.clear();
        }
        return this;
      }

      public Builder clone() {
        return create().mergeFrom(buildPartial());
      }

      public com.google.protobuf.Descriptors.Descriptor
          getDescriptorForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_Sounds_descriptor;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds getDefaultInstanceForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.getDefaultInstance();
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds build() {
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds result = buildPartial();
        if (!result.isInitialized()) {
          throw newUninitializedMessageException(result);
        }
        return result;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds buildPartial() {
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds result = new skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds(this);
        int from_bitField0_ = bitField0_;
        int to_bitField0_ = 0;
        if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
          to_bitField0_ |= 0x00000001;
        }
        result.reliableSound_ = reliableSound_;
        if (soundsBuilder_ == null) {
          if (((bitField0_ & 0x00000002) == 0x00000002)) {
            sounds_ = java.util.Collections.unmodifiableList(sounds_);
            bitField0_ = (bitField0_ & ~0x00000002);
          }
          result.sounds_ = sounds_;
        } else {
          result.sounds_ = soundsBuilder_.build();
        }
        result.bitField0_ = to_bitField0_;
        onBuilt();
        return result;
      }

      public Builder mergeFrom(com.google.protobuf.Message other) {
        if (other instanceof skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds) {
          return mergeFrom((skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds)other);
        } else {
          super.mergeFrom(other);
          return this;
        }
      }

      public Builder mergeFrom(skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds other) {
        if (other == skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.getDefaultInstance()) return this;
        if (other.hasReliableSound()) {
          setReliableSound(other.getReliableSound());
        }
        if (soundsBuilder_ == null) {
          if (!other.sounds_.isEmpty()) {
            if (sounds_.isEmpty()) {
              sounds_ = other.sounds_;
              bitField0_ = (bitField0_ & ~0x00000002);
            } else {
              ensureSoundsIsMutable();
              sounds_.addAll(other.sounds_);
            }
            onChanged();
          }
        } else {
          if (!other.sounds_.isEmpty()) {
            if (soundsBuilder_.isEmpty()) {
              soundsBuilder_.dispose();
              soundsBuilder_ = null;
              sounds_ = other.sounds_;
              bitField0_ = (bitField0_ & ~0x00000002);
              soundsBuilder_ = 
                com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders ?
                   getSoundsFieldBuilder() : null;
            } else {
              soundsBuilder_.addAllMessages(other.sounds_);
            }
          }
        }
        this.mergeUnknownFields(other.getUnknownFields());
        return this;
      }

      public final boolean isInitialized() {
        return true;
      }

      public Builder mergeFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds parsedMessage = null;
        try {
          parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
          parsedMessage = (skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds) e.getUnfinishedMessage();
          throw e;
        } finally {
          if (parsedMessage != null) {
            mergeFrom(parsedMessage);
          }
        }
        return this;
      }
      private int bitField0_;

      private boolean reliableSound_ ;
      /**
       * optional bool reliable_sound = 1;
       */
      public boolean hasReliableSound() {
        return ((bitField0_ & 0x00000001) == 0x00000001);
      }
      /**
       * optional bool reliable_sound = 1;
       */
      public boolean getReliableSound() {
        return reliableSound_;
      }
      /**
       * optional bool reliable_sound = 1;
       */
      public Builder setReliableSound(boolean value) {
        bitField0_ |= 0x00000001;
        reliableSound_ = value;
        onChanged();
        return this;
      }
      /**
       * optional bool reliable_sound = 1;
       */
      public Builder clearReliableSound() {
        bitField0_ = (bitField0_ & ~0x00000001);
        reliableSound_ = false;
        onChanged();
        return this;
      }

      private java.util.List sounds_ =
        java.util.Collections.emptyList();
      private void ensureSoundsIsMutable() {
        if (!((bitField0_ & 0x00000002) == 0x00000002)) {
          sounds_ = new java.util.ArrayList(sounds_);
          bitField0_ |= 0x00000002;
         }
      }

      private com.google.protobuf.RepeatedFieldBuilder<
          skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t.Builder, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_tOrBuilder> soundsBuilder_;

      /**
       * repeated .CSVCMsg_Sounds.sounddata_t sounds = 2;
       */
      public java.util.List getSoundsList() {
        if (soundsBuilder_ == null) {
          return java.util.Collections.unmodifiableList(sounds_);
        } else {
          return soundsBuilder_.getMessageList();
        }
      }
      /**
       * repeated .CSVCMsg_Sounds.sounddata_t sounds = 2;
       */
      public int getSoundsCount() {
        if (soundsBuilder_ == null) {
          return sounds_.size();
        } else {
          return soundsBuilder_.getCount();
        }
      }
      /**
       * repeated .CSVCMsg_Sounds.sounddata_t sounds = 2;
       */
      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t getSounds(int index) {
        if (soundsBuilder_ == null) {
          return sounds_.get(index);
        } else {
          return soundsBuilder_.getMessage(index);
        }
      }
      /**
       * repeated .CSVCMsg_Sounds.sounddata_t sounds = 2;
       */
      public Builder setSounds(
          int index, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t value) {
        if (soundsBuilder_ == null) {
          if (value == null) {
            throw new NullPointerException();
          }
          ensureSoundsIsMutable();
          sounds_.set(index, value);
          onChanged();
        } else {
          soundsBuilder_.setMessage(index, value);
        }
        return this;
      }
      /**
       * repeated .CSVCMsg_Sounds.sounddata_t sounds = 2;
       */
      public Builder setSounds(
          int index, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t.Builder builderForValue) {
        if (soundsBuilder_ == null) {
          ensureSoundsIsMutable();
          sounds_.set(index, builderForValue.build());
          onChanged();
        } else {
          soundsBuilder_.setMessage(index, builderForValue.build());
        }
        return this;
      }
      /**
       * repeated .CSVCMsg_Sounds.sounddata_t sounds = 2;
       */
      public Builder addSounds(skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t value) {
        if (soundsBuilder_ == null) {
          if (value == null) {
            throw new NullPointerException();
          }
          ensureSoundsIsMutable();
          sounds_.add(value);
          onChanged();
        } else {
          soundsBuilder_.addMessage(value);
        }
        return this;
      }
      /**
       * repeated .CSVCMsg_Sounds.sounddata_t sounds = 2;
       */
      public Builder addSounds(
          int index, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t value) {
        if (soundsBuilder_ == null) {
          if (value == null) {
            throw new NullPointerException();
          }
          ensureSoundsIsMutable();
          sounds_.add(index, value);
          onChanged();
        } else {
          soundsBuilder_.addMessage(index, value);
        }
        return this;
      }
      /**
       * repeated .CSVCMsg_Sounds.sounddata_t sounds = 2;
       */
      public Builder addSounds(
          skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t.Builder builderForValue) {
        if (soundsBuilder_ == null) {
          ensureSoundsIsMutable();
          sounds_.add(builderForValue.build());
          onChanged();
        } else {
          soundsBuilder_.addMessage(builderForValue.build());
        }
        return this;
      }
      /**
       * repeated .CSVCMsg_Sounds.sounddata_t sounds = 2;
       */
      public Builder addSounds(
          int index, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t.Builder builderForValue) {
        if (soundsBuilder_ == null) {
          ensureSoundsIsMutable();
          sounds_.add(index, builderForValue.build());
          onChanged();
        } else {
          soundsBuilder_.addMessage(index, builderForValue.build());
        }
        return this;
      }
      /**
       * repeated .CSVCMsg_Sounds.sounddata_t sounds = 2;
       */
      public Builder addAllSounds(
          java.lang.Iterable values) {
        if (soundsBuilder_ == null) {
          ensureSoundsIsMutable();
          com.google.protobuf.AbstractMessageLite.Builder.addAll(
              values, sounds_);
          onChanged();
        } else {
          soundsBuilder_.addAllMessages(values);
        }
        return this;
      }
      /**
       * repeated .CSVCMsg_Sounds.sounddata_t sounds = 2;
       */
      public Builder clearSounds() {
        if (soundsBuilder_ == null) {
          sounds_ = java.util.Collections.emptyList();
          bitField0_ = (bitField0_ & ~0x00000002);
          onChanged();
        } else {
          soundsBuilder_.clear();
        }
        return this;
      }
      /**
       * repeated .CSVCMsg_Sounds.sounddata_t sounds = 2;
       */
      public Builder removeSounds(int index) {
        if (soundsBuilder_ == null) {
          ensureSoundsIsMutable();
          sounds_.remove(index);
          onChanged();
        } else {
          soundsBuilder_.remove(index);
        }
        return this;
      }
      /**
       * repeated .CSVCMsg_Sounds.sounddata_t sounds = 2;
       */
      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t.Builder getSoundsBuilder(
          int index) {
        return getSoundsFieldBuilder().getBuilder(index);
      }
      /**
       * repeated .CSVCMsg_Sounds.sounddata_t sounds = 2;
       */
      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_tOrBuilder getSoundsOrBuilder(
          int index) {
        if (soundsBuilder_ == null) {
          return sounds_.get(index);  } else {
          return soundsBuilder_.getMessageOrBuilder(index);
        }
      }
      /**
       * repeated .CSVCMsg_Sounds.sounddata_t sounds = 2;
       */
      public java.util.List 
           getSoundsOrBuilderList() {
        if (soundsBuilder_ != null) {
          return soundsBuilder_.getMessageOrBuilderList();
        } else {
          return java.util.Collections.unmodifiableList(sounds_);
        }
      }
      /**
       * repeated .CSVCMsg_Sounds.sounddata_t sounds = 2;
       */
      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t.Builder addSoundsBuilder() {
        return getSoundsFieldBuilder().addBuilder(
            skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t.getDefaultInstance());
      }
      /**
       * repeated .CSVCMsg_Sounds.sounddata_t sounds = 2;
       */
      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t.Builder addSoundsBuilder(
          int index) {
        return getSoundsFieldBuilder().addBuilder(
            index, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t.getDefaultInstance());
      }
      /**
       * repeated .CSVCMsg_Sounds.sounddata_t sounds = 2;
       */
      public java.util.List 
           getSoundsBuilderList() {
        return getSoundsFieldBuilder().getBuilderList();
      }
      private com.google.protobuf.RepeatedFieldBuilder<
          skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t.Builder, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_tOrBuilder> 
          getSoundsFieldBuilder() {
        if (soundsBuilder_ == null) {
          soundsBuilder_ = new com.google.protobuf.RepeatedFieldBuilder<
              skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_t.Builder, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_Sounds.sounddata_tOrBuilder>(
                  sounds_,
                  ((bitField0_ & 0x00000002) == 0x00000002),
                  getParentForChildren(),
                  isClean());
          sounds_ = null;
        }
        return soundsBuilder_;
      }

      // @@protoc_insertion_point(builder_scope:CSVCMsg_Sounds)
    }

    static {
      defaultInstance = new CSVCMsg_Sounds(true);
      defaultInstance.initFields();
    }

    // @@protoc_insertion_point(class_scope:CSVCMsg_Sounds)
  }

  public interface CSVCMsg_UpdateStringTableOrBuilder extends
      // @@protoc_insertion_point(interface_extends:CSVCMsg_UpdateStringTable)
      com.google.protobuf.MessageOrBuilder {

    /**
     * optional int32 table_id = 1;
     */
    boolean hasTableId();
    /**
     * optional int32 table_id = 1;
     */
    int getTableId();

    /**
     * optional int32 num_changed_entries = 2;
     */
    boolean hasNumChangedEntries();
    /**
     * optional int32 num_changed_entries = 2;
     */
    int getNumChangedEntries();

    /**
     * optional bytes string_data = 3;
     */
    boolean hasStringData();
    /**
     * optional bytes string_data = 3;
     */
    com.google.protobuf.ByteString getStringData();
  }
  /**
   * Protobuf type {@code CSVCMsg_UpdateStringTable}
   */
  public static final class CSVCMsg_UpdateStringTable extends
      com.google.protobuf.GeneratedMessage implements
      // @@protoc_insertion_point(message_implements:CSVCMsg_UpdateStringTable)
      CSVCMsg_UpdateStringTableOrBuilder {
    // Use CSVCMsg_UpdateStringTable.newBuilder() to construct.
    private CSVCMsg_UpdateStringTable(com.google.protobuf.GeneratedMessage.Builder builder) {
      super(builder);
      this.unknownFields = builder.getUnknownFields();
    }
    private CSVCMsg_UpdateStringTable(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }

    private static final CSVCMsg_UpdateStringTable defaultInstance;
    public static CSVCMsg_UpdateStringTable getDefaultInstance() {
      return defaultInstance;
    }

    public CSVCMsg_UpdateStringTable getDefaultInstanceForType() {
      return defaultInstance;
    }

    private final com.google.protobuf.UnknownFieldSet unknownFields;
    @java.lang.Override
    public final com.google.protobuf.UnknownFieldSet
        getUnknownFields() {
      return this.unknownFields;
    }
    private CSVCMsg_UpdateStringTable(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      initFields();
      int mutable_bitField0_ = 0;
      com.google.protobuf.UnknownFieldSet.Builder unknownFields =
          com.google.protobuf.UnknownFieldSet.newBuilder();
      try {
        boolean done = false;
        while (!done) {
          int tag = input.readTag();
          switch (tag) {
            case 0:
              done = true;
              break;
            default: {
              if (!parseUnknownField(input, unknownFields,
                                     extensionRegistry, tag)) {
                done = true;
              }
              break;
            }
            case 8: {
              bitField0_ |= 0x00000001;
              tableId_ = input.readInt32();
              break;
            }
            case 16: {
              bitField0_ |= 0x00000002;
              numChangedEntries_ = input.readInt32();
              break;
            }
            case 26: {
              bitField0_ |= 0x00000004;
              stringData_ = input.readBytes();
              break;
            }
          }
        }
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        throw e.setUnfinishedMessage(this);
      } catch (java.io.IOException e) {
        throw new com.google.protobuf.InvalidProtocolBufferException(
            e.getMessage()).setUnfinishedMessage(this);
      } finally {
        this.unknownFields = unknownFields.build();
        makeExtensionsImmutable();
      }
    }
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_UpdateStringTable_descriptor;
    }

    protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_UpdateStringTable_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_UpdateStringTable.class, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_UpdateStringTable.Builder.class);
    }

    public static com.google.protobuf.Parser PARSER =
        new com.google.protobuf.AbstractParser() {
      public CSVCMsg_UpdateStringTable parsePartialFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return new CSVCMsg_UpdateStringTable(input, extensionRegistry);
      }
    };

    @java.lang.Override
    public com.google.protobuf.Parser getParserForType() {
      return PARSER;
    }

    private int bitField0_;
    public static final int TABLE_ID_FIELD_NUMBER = 1;
    private int tableId_;
    /**
     * optional int32 table_id = 1;
     */
    public boolean hasTableId() {
      return ((bitField0_ & 0x00000001) == 0x00000001);
    }
    /**
     * optional int32 table_id = 1;
     */
    public int getTableId() {
      return tableId_;
    }

    public static final int NUM_CHANGED_ENTRIES_FIELD_NUMBER = 2;
    private int numChangedEntries_;
    /**
     * optional int32 num_changed_entries = 2;
     */
    public boolean hasNumChangedEntries() {
      return ((bitField0_ & 0x00000002) == 0x00000002);
    }
    /**
     * optional int32 num_changed_entries = 2;
     */
    public int getNumChangedEntries() {
      return numChangedEntries_;
    }

    public static final int STRING_DATA_FIELD_NUMBER = 3;
    private com.google.protobuf.ByteString stringData_;
    /**
     * optional bytes string_data = 3;
     */
    public boolean hasStringData() {
      return ((bitField0_ & 0x00000004) == 0x00000004);
    }
    /**
     * optional bytes string_data = 3;
     */
    public com.google.protobuf.ByteString getStringData() {
      return stringData_;
    }

    private void initFields() {
      tableId_ = 0;
      numChangedEntries_ = 0;
      stringData_ = com.google.protobuf.ByteString.EMPTY;
    }
    private byte memoizedIsInitialized = -1;
    public final boolean isInitialized() {
      byte isInitialized = memoizedIsInitialized;
      if (isInitialized == 1) return true;
      if (isInitialized == 0) return false;

      memoizedIsInitialized = 1;
      return true;
    }

    public void writeTo(com.google.protobuf.CodedOutputStream output)
                        throws java.io.IOException {
      getSerializedSize();
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        output.writeInt32(1, tableId_);
      }
      if (((bitField0_ & 0x00000002) == 0x00000002)) {
        output.writeInt32(2, numChangedEntries_);
      }
      if (((bitField0_ & 0x00000004) == 0x00000004)) {
        output.writeBytes(3, stringData_);
      }
      getUnknownFields().writeTo(output);
    }

    private int memoizedSerializedSize = -1;
    public int getSerializedSize() {
      int size = memoizedSerializedSize;
      if (size != -1) return size;

      size = 0;
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        size += com.google.protobuf.CodedOutputStream
          .computeInt32Size(1, tableId_);
      }
      if (((bitField0_ & 0x00000002) == 0x00000002)) {
        size += com.google.protobuf.CodedOutputStream
          .computeInt32Size(2, numChangedEntries_);
      }
      if (((bitField0_ & 0x00000004) == 0x00000004)) {
        size += com.google.protobuf.CodedOutputStream
          .computeBytesSize(3, stringData_);
      }
      size += getUnknownFields().getSerializedSize();
      memoizedSerializedSize = size;
      return size;
    }

    private static final long serialVersionUID = 0L;
    @java.lang.Override
    protected java.lang.Object writeReplace()
        throws java.io.ObjectStreamException {
      return super.writeReplace();
    }

    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_UpdateStringTable parseFrom(
        com.google.protobuf.ByteString data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_UpdateStringTable parseFrom(
        com.google.protobuf.ByteString data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_UpdateStringTable parseFrom(byte[] data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_UpdateStringTable parseFrom(
        byte[] data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_UpdateStringTable parseFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_UpdateStringTable parseFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_UpdateStringTable parseDelimitedFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_UpdateStringTable parseDelimitedFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_UpdateStringTable parseFrom(
        com.google.protobuf.CodedInputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_UpdateStringTable parseFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }

    public static Builder newBuilder() { return Builder.create(); }
    public Builder newBuilderForType() { return newBuilder(); }
    public static Builder newBuilder(skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_UpdateStringTable prototype) {
      return newBuilder().mergeFrom(prototype);
    }
    public Builder toBuilder() { return newBuilder(this); }

    @java.lang.Override
    protected Builder newBuilderForType(
        com.google.protobuf.GeneratedMessage.BuilderParent parent) {
      Builder builder = new Builder(parent);
      return builder;
    }
    /**
     * Protobuf type {@code CSVCMsg_UpdateStringTable}
     */
    public static final class Builder extends
        com.google.protobuf.GeneratedMessage.Builder implements
        // @@protoc_insertion_point(builder_implements:CSVCMsg_UpdateStringTable)
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_UpdateStringTableOrBuilder {
      public static final com.google.protobuf.Descriptors.Descriptor
          getDescriptor() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_UpdateStringTable_descriptor;
      }

      protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
          internalGetFieldAccessorTable() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_UpdateStringTable_fieldAccessorTable
            .ensureFieldAccessorsInitialized(
                skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_UpdateStringTable.class, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_UpdateStringTable.Builder.class);
      }

      // Construct using skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_UpdateStringTable.newBuilder()
      private Builder() {
        maybeForceBuilderInitialization();
      }

      private Builder(
          com.google.protobuf.GeneratedMessage.BuilderParent parent) {
        super(parent);
        maybeForceBuilderInitialization();
      }
      private void maybeForceBuilderInitialization() {
        if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
        }
      }
      private static Builder create() {
        return new Builder();
      }

      public Builder clear() {
        super.clear();
        tableId_ = 0;
        bitField0_ = (bitField0_ & ~0x00000001);
        numChangedEntries_ = 0;
        bitField0_ = (bitField0_ & ~0x00000002);
        stringData_ = com.google.protobuf.ByteString.EMPTY;
        bitField0_ = (bitField0_ & ~0x00000004);
        return this;
      }

      public Builder clone() {
        return create().mergeFrom(buildPartial());
      }

      public com.google.protobuf.Descriptors.Descriptor
          getDescriptorForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_UpdateStringTable_descriptor;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_UpdateStringTable getDefaultInstanceForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_UpdateStringTable.getDefaultInstance();
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_UpdateStringTable build() {
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_UpdateStringTable result = buildPartial();
        if (!result.isInitialized()) {
          throw newUninitializedMessageException(result);
        }
        return result;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_UpdateStringTable buildPartial() {
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_UpdateStringTable result = new skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_UpdateStringTable(this);
        int from_bitField0_ = bitField0_;
        int to_bitField0_ = 0;
        if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
          to_bitField0_ |= 0x00000001;
        }
        result.tableId_ = tableId_;
        if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
          to_bitField0_ |= 0x00000002;
        }
        result.numChangedEntries_ = numChangedEntries_;
        if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
          to_bitField0_ |= 0x00000004;
        }
        result.stringData_ = stringData_;
        result.bitField0_ = to_bitField0_;
        onBuilt();
        return result;
      }

      public Builder mergeFrom(com.google.protobuf.Message other) {
        if (other instanceof skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_UpdateStringTable) {
          return mergeFrom((skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_UpdateStringTable)other);
        } else {
          super.mergeFrom(other);
          return this;
        }
      }

      public Builder mergeFrom(skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_UpdateStringTable other) {
        if (other == skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_UpdateStringTable.getDefaultInstance()) return this;
        if (other.hasTableId()) {
          setTableId(other.getTableId());
        }
        if (other.hasNumChangedEntries()) {
          setNumChangedEntries(other.getNumChangedEntries());
        }
        if (other.hasStringData()) {
          setStringData(other.getStringData());
        }
        this.mergeUnknownFields(other.getUnknownFields());
        return this;
      }

      public final boolean isInitialized() {
        return true;
      }

      public Builder mergeFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_UpdateStringTable parsedMessage = null;
        try {
          parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
          parsedMessage = (skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_UpdateStringTable) e.getUnfinishedMessage();
          throw e;
        } finally {
          if (parsedMessage != null) {
            mergeFrom(parsedMessage);
          }
        }
        return this;
      }
      private int bitField0_;

      private int tableId_ ;
      /**
       * optional int32 table_id = 1;
       */
      public boolean hasTableId() {
        return ((bitField0_ & 0x00000001) == 0x00000001);
      }
      /**
       * optional int32 table_id = 1;
       */
      public int getTableId() {
        return tableId_;
      }
      /**
       * optional int32 table_id = 1;
       */
      public Builder setTableId(int value) {
        bitField0_ |= 0x00000001;
        tableId_ = value;
        onChanged();
        return this;
      }
      /**
       * optional int32 table_id = 1;
       */
      public Builder clearTableId() {
        bitField0_ = (bitField0_ & ~0x00000001);
        tableId_ = 0;
        onChanged();
        return this;
      }

      private int numChangedEntries_ ;
      /**
       * optional int32 num_changed_entries = 2;
       */
      public boolean hasNumChangedEntries() {
        return ((bitField0_ & 0x00000002) == 0x00000002);
      }
      /**
       * optional int32 num_changed_entries = 2;
       */
      public int getNumChangedEntries() {
        return numChangedEntries_;
      }
      /**
       * optional int32 num_changed_entries = 2;
       */
      public Builder setNumChangedEntries(int value) {
        bitField0_ |= 0x00000002;
        numChangedEntries_ = value;
        onChanged();
        return this;
      }
      /**
       * optional int32 num_changed_entries = 2;
       */
      public Builder clearNumChangedEntries() {
        bitField0_ = (bitField0_ & ~0x00000002);
        numChangedEntries_ = 0;
        onChanged();
        return this;
      }

      private com.google.protobuf.ByteString stringData_ = com.google.protobuf.ByteString.EMPTY;
      /**
       * optional bytes string_data = 3;
       */
      public boolean hasStringData() {
        return ((bitField0_ & 0x00000004) == 0x00000004);
      }
      /**
       * optional bytes string_data = 3;
       */
      public com.google.protobuf.ByteString getStringData() {
        return stringData_;
      }
      /**
       * optional bytes string_data = 3;
       */
      public Builder setStringData(com.google.protobuf.ByteString value) {
        if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00000004;
        stringData_ = value;
        onChanged();
        return this;
      }
      /**
       * optional bytes string_data = 3;
       */
      public Builder clearStringData() {
        bitField0_ = (bitField0_ & ~0x00000004);
        stringData_ = getDefaultInstance().getStringData();
        onChanged();
        return this;
      }

      // @@protoc_insertion_point(builder_scope:CSVCMsg_UpdateStringTable)
    }

    static {
      defaultInstance = new CSVCMsg_UpdateStringTable(true);
      defaultInstance.initFields();
    }

    // @@protoc_insertion_point(class_scope:CSVCMsg_UpdateStringTable)
  }

  public interface CSVCMsg_FullFrameSplitOrBuilder extends
      // @@protoc_insertion_point(interface_extends:CSVCMsg_FullFrameSplit)
      com.google.protobuf.MessageOrBuilder {

    /**
     * optional int32 tick = 1;
     */
    boolean hasTick();
    /**
     * optional int32 tick = 1;
     */
    int getTick();

    /**
     * optional int32 section = 2;
     */
    boolean hasSection();
    /**
     * optional int32 section = 2;
     */
    int getSection();

    /**
     * optional int32 total = 3;
     */
    boolean hasTotal();
    /**
     * optional int32 total = 3;
     */
    int getTotal();

    /**
     * optional bytes data = 4;
     */
    boolean hasData();
    /**
     * optional bytes data = 4;
     */
    com.google.protobuf.ByteString getData();
  }
  /**
   * Protobuf type {@code CSVCMsg_FullFrameSplit}
   */
  public static final class CSVCMsg_FullFrameSplit extends
      com.google.protobuf.GeneratedMessage implements
      // @@protoc_insertion_point(message_implements:CSVCMsg_FullFrameSplit)
      CSVCMsg_FullFrameSplitOrBuilder {
    // Use CSVCMsg_FullFrameSplit.newBuilder() to construct.
    private CSVCMsg_FullFrameSplit(com.google.protobuf.GeneratedMessage.Builder builder) {
      super(builder);
      this.unknownFields = builder.getUnknownFields();
    }
    private CSVCMsg_FullFrameSplit(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }

    private static final CSVCMsg_FullFrameSplit defaultInstance;
    public static CSVCMsg_FullFrameSplit getDefaultInstance() {
      return defaultInstance;
    }

    public CSVCMsg_FullFrameSplit getDefaultInstanceForType() {
      return defaultInstance;
    }

    private final com.google.protobuf.UnknownFieldSet unknownFields;
    @java.lang.Override
    public final com.google.protobuf.UnknownFieldSet
        getUnknownFields() {
      return this.unknownFields;
    }
    private CSVCMsg_FullFrameSplit(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      initFields();
      int mutable_bitField0_ = 0;
      com.google.protobuf.UnknownFieldSet.Builder unknownFields =
          com.google.protobuf.UnknownFieldSet.newBuilder();
      try {
        boolean done = false;
        while (!done) {
          int tag = input.readTag();
          switch (tag) {
            case 0:
              done = true;
              break;
            default: {
              if (!parseUnknownField(input, unknownFields,
                                     extensionRegistry, tag)) {
                done = true;
              }
              break;
            }
            case 8: {
              bitField0_ |= 0x00000001;
              tick_ = input.readInt32();
              break;
            }
            case 16: {
              bitField0_ |= 0x00000002;
              section_ = input.readInt32();
              break;
            }
            case 24: {
              bitField0_ |= 0x00000004;
              total_ = input.readInt32();
              break;
            }
            case 34: {
              bitField0_ |= 0x00000008;
              data_ = input.readBytes();
              break;
            }
          }
        }
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        throw e.setUnfinishedMessage(this);
      } catch (java.io.IOException e) {
        throw new com.google.protobuf.InvalidProtocolBufferException(
            e.getMessage()).setUnfinishedMessage(this);
      } finally {
        this.unknownFields = unknownFields.build();
        makeExtensionsImmutable();
      }
    }
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_FullFrameSplit_descriptor;
    }

    protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_FullFrameSplit_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_FullFrameSplit.class, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_FullFrameSplit.Builder.class);
    }

    public static com.google.protobuf.Parser PARSER =
        new com.google.protobuf.AbstractParser() {
      public CSVCMsg_FullFrameSplit parsePartialFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return new CSVCMsg_FullFrameSplit(input, extensionRegistry);
      }
    };

    @java.lang.Override
    public com.google.protobuf.Parser getParserForType() {
      return PARSER;
    }

    private int bitField0_;
    public static final int TICK_FIELD_NUMBER = 1;
    private int tick_;
    /**
     * optional int32 tick = 1;
     */
    public boolean hasTick() {
      return ((bitField0_ & 0x00000001) == 0x00000001);
    }
    /**
     * optional int32 tick = 1;
     */
    public int getTick() {
      return tick_;
    }

    public static final int SECTION_FIELD_NUMBER = 2;
    private int section_;
    /**
     * optional int32 section = 2;
     */
    public boolean hasSection() {
      return ((bitField0_ & 0x00000002) == 0x00000002);
    }
    /**
     * optional int32 section = 2;
     */
    public int getSection() {
      return section_;
    }

    public static final int TOTAL_FIELD_NUMBER = 3;
    private int total_;
    /**
     * optional int32 total = 3;
     */
    public boolean hasTotal() {
      return ((bitField0_ & 0x00000004) == 0x00000004);
    }
    /**
     * optional int32 total = 3;
     */
    public int getTotal() {
      return total_;
    }

    public static final int DATA_FIELD_NUMBER = 4;
    private com.google.protobuf.ByteString data_;
    /**
     * optional bytes data = 4;
     */
    public boolean hasData() {
      return ((bitField0_ & 0x00000008) == 0x00000008);
    }
    /**
     * optional bytes data = 4;
     */
    public com.google.protobuf.ByteString getData() {
      return data_;
    }

    private void initFields() {
      tick_ = 0;
      section_ = 0;
      total_ = 0;
      data_ = com.google.protobuf.ByteString.EMPTY;
    }
    private byte memoizedIsInitialized = -1;
    public final boolean isInitialized() {
      byte isInitialized = memoizedIsInitialized;
      if (isInitialized == 1) return true;
      if (isInitialized == 0) return false;

      memoizedIsInitialized = 1;
      return true;
    }

    public void writeTo(com.google.protobuf.CodedOutputStream output)
                        throws java.io.IOException {
      getSerializedSize();
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        output.writeInt32(1, tick_);
      }
      if (((bitField0_ & 0x00000002) == 0x00000002)) {
        output.writeInt32(2, section_);
      }
      if (((bitField0_ & 0x00000004) == 0x00000004)) {
        output.writeInt32(3, total_);
      }
      if (((bitField0_ & 0x00000008) == 0x00000008)) {
        output.writeBytes(4, data_);
      }
      getUnknownFields().writeTo(output);
    }

    private int memoizedSerializedSize = -1;
    public int getSerializedSize() {
      int size = memoizedSerializedSize;
      if (size != -1) return size;

      size = 0;
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        size += com.google.protobuf.CodedOutputStream
          .computeInt32Size(1, tick_);
      }
      if (((bitField0_ & 0x00000002) == 0x00000002)) {
        size += com.google.protobuf.CodedOutputStream
          .computeInt32Size(2, section_);
      }
      if (((bitField0_ & 0x00000004) == 0x00000004)) {
        size += com.google.protobuf.CodedOutputStream
          .computeInt32Size(3, total_);
      }
      if (((bitField0_ & 0x00000008) == 0x00000008)) {
        size += com.google.protobuf.CodedOutputStream
          .computeBytesSize(4, data_);
      }
      size += getUnknownFields().getSerializedSize();
      memoizedSerializedSize = size;
      return size;
    }

    private static final long serialVersionUID = 0L;
    @java.lang.Override
    protected java.lang.Object writeReplace()
        throws java.io.ObjectStreamException {
      return super.writeReplace();
    }

    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_FullFrameSplit parseFrom(
        com.google.protobuf.ByteString data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_FullFrameSplit parseFrom(
        com.google.protobuf.ByteString data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_FullFrameSplit parseFrom(byte[] data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_FullFrameSplit parseFrom(
        byte[] data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_FullFrameSplit parseFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_FullFrameSplit parseFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_FullFrameSplit parseDelimitedFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_FullFrameSplit parseDelimitedFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_FullFrameSplit parseFrom(
        com.google.protobuf.CodedInputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_FullFrameSplit parseFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }

    public static Builder newBuilder() { return Builder.create(); }
    public Builder newBuilderForType() { return newBuilder(); }
    public static Builder newBuilder(skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_FullFrameSplit prototype) {
      return newBuilder().mergeFrom(prototype);
    }
    public Builder toBuilder() { return newBuilder(this); }

    @java.lang.Override
    protected Builder newBuilderForType(
        com.google.protobuf.GeneratedMessage.BuilderParent parent) {
      Builder builder = new Builder(parent);
      return builder;
    }
    /**
     * Protobuf type {@code CSVCMsg_FullFrameSplit}
     */
    public static final class Builder extends
        com.google.protobuf.GeneratedMessage.Builder implements
        // @@protoc_insertion_point(builder_implements:CSVCMsg_FullFrameSplit)
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_FullFrameSplitOrBuilder {
      public static final com.google.protobuf.Descriptors.Descriptor
          getDescriptor() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_FullFrameSplit_descriptor;
      }

      protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
          internalGetFieldAccessorTable() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_FullFrameSplit_fieldAccessorTable
            .ensureFieldAccessorsInitialized(
                skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_FullFrameSplit.class, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_FullFrameSplit.Builder.class);
      }

      // Construct using skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_FullFrameSplit.newBuilder()
      private Builder() {
        maybeForceBuilderInitialization();
      }

      private Builder(
          com.google.protobuf.GeneratedMessage.BuilderParent parent) {
        super(parent);
        maybeForceBuilderInitialization();
      }
      private void maybeForceBuilderInitialization() {
        if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
        }
      }
      private static Builder create() {
        return new Builder();
      }

      public Builder clear() {
        super.clear();
        tick_ = 0;
        bitField0_ = (bitField0_ & ~0x00000001);
        section_ = 0;
        bitField0_ = (bitField0_ & ~0x00000002);
        total_ = 0;
        bitField0_ = (bitField0_ & ~0x00000004);
        data_ = com.google.protobuf.ByteString.EMPTY;
        bitField0_ = (bitField0_ & ~0x00000008);
        return this;
      }

      public Builder clone() {
        return create().mergeFrom(buildPartial());
      }

      public com.google.protobuf.Descriptors.Descriptor
          getDescriptorForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_FullFrameSplit_descriptor;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_FullFrameSplit getDefaultInstanceForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_FullFrameSplit.getDefaultInstance();
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_FullFrameSplit build() {
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_FullFrameSplit result = buildPartial();
        if (!result.isInitialized()) {
          throw newUninitializedMessageException(result);
        }
        return result;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_FullFrameSplit buildPartial() {
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_FullFrameSplit result = new skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_FullFrameSplit(this);
        int from_bitField0_ = bitField0_;
        int to_bitField0_ = 0;
        if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
          to_bitField0_ |= 0x00000001;
        }
        result.tick_ = tick_;
        if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
          to_bitField0_ |= 0x00000002;
        }
        result.section_ = section_;
        if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
          to_bitField0_ |= 0x00000004;
        }
        result.total_ = total_;
        if (((from_bitField0_ & 0x00000008) == 0x00000008)) {
          to_bitField0_ |= 0x00000008;
        }
        result.data_ = data_;
        result.bitField0_ = to_bitField0_;
        onBuilt();
        return result;
      }

      public Builder mergeFrom(com.google.protobuf.Message other) {
        if (other instanceof skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_FullFrameSplit) {
          return mergeFrom((skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_FullFrameSplit)other);
        } else {
          super.mergeFrom(other);
          return this;
        }
      }

      public Builder mergeFrom(skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_FullFrameSplit other) {
        if (other == skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_FullFrameSplit.getDefaultInstance()) return this;
        if (other.hasTick()) {
          setTick(other.getTick());
        }
        if (other.hasSection()) {
          setSection(other.getSection());
        }
        if (other.hasTotal()) {
          setTotal(other.getTotal());
        }
        if (other.hasData()) {
          setData(other.getData());
        }
        this.mergeUnknownFields(other.getUnknownFields());
        return this;
      }

      public final boolean isInitialized() {
        return true;
      }

      public Builder mergeFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_FullFrameSplit parsedMessage = null;
        try {
          parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
          parsedMessage = (skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_FullFrameSplit) e.getUnfinishedMessage();
          throw e;
        } finally {
          if (parsedMessage != null) {
            mergeFrom(parsedMessage);
          }
        }
        return this;
      }
      private int bitField0_;

      private int tick_ ;
      /**
       * optional int32 tick = 1;
       */
      public boolean hasTick() {
        return ((bitField0_ & 0x00000001) == 0x00000001);
      }
      /**
       * optional int32 tick = 1;
       */
      public int getTick() {
        return tick_;
      }
      /**
       * optional int32 tick = 1;
       */
      public Builder setTick(int value) {
        bitField0_ |= 0x00000001;
        tick_ = value;
        onChanged();
        return this;
      }
      /**
       * optional int32 tick = 1;
       */
      public Builder clearTick() {
        bitField0_ = (bitField0_ & ~0x00000001);
        tick_ = 0;
        onChanged();
        return this;
      }

      private int section_ ;
      /**
       * optional int32 section = 2;
       */
      public boolean hasSection() {
        return ((bitField0_ & 0x00000002) == 0x00000002);
      }
      /**
       * optional int32 section = 2;
       */
      public int getSection() {
        return section_;
      }
      /**
       * optional int32 section = 2;
       */
      public Builder setSection(int value) {
        bitField0_ |= 0x00000002;
        section_ = value;
        onChanged();
        return this;
      }
      /**
       * optional int32 section = 2;
       */
      public Builder clearSection() {
        bitField0_ = (bitField0_ & ~0x00000002);
        section_ = 0;
        onChanged();
        return this;
      }

      private int total_ ;
      /**
       * optional int32 total = 3;
       */
      public boolean hasTotal() {
        return ((bitField0_ & 0x00000004) == 0x00000004);
      }
      /**
       * optional int32 total = 3;
       */
      public int getTotal() {
        return total_;
      }
      /**
       * optional int32 total = 3;
       */
      public Builder setTotal(int value) {
        bitField0_ |= 0x00000004;
        total_ = value;
        onChanged();
        return this;
      }
      /**
       * optional int32 total = 3;
       */
      public Builder clearTotal() {
        bitField0_ = (bitField0_ & ~0x00000004);
        total_ = 0;
        onChanged();
        return this;
      }

      private com.google.protobuf.ByteString data_ = com.google.protobuf.ByteString.EMPTY;
      /**
       * optional bytes data = 4;
       */
      public boolean hasData() {
        return ((bitField0_ & 0x00000008) == 0x00000008);
      }
      /**
       * optional bytes data = 4;
       */
      public com.google.protobuf.ByteString getData() {
        return data_;
      }
      /**
       * optional bytes data = 4;
       */
      public Builder setData(com.google.protobuf.ByteString value) {
        if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00000008;
        data_ = value;
        onChanged();
        return this;
      }
      /**
       * optional bytes data = 4;
       */
      public Builder clearData() {
        bitField0_ = (bitField0_ & ~0x00000008);
        data_ = getDefaultInstance().getData();
        onChanged();
        return this;
      }

      // @@protoc_insertion_point(builder_scope:CSVCMsg_FullFrameSplit)
    }

    static {
      defaultInstance = new CSVCMsg_FullFrameSplit(true);
      defaultInstance.initFields();
    }

    // @@protoc_insertion_point(class_scope:CSVCMsg_FullFrameSplit)
  }

  public interface CSVCMsg_BSPDecalOrBuilder extends
      // @@protoc_insertion_point(interface_extends:CSVCMsg_BSPDecal)
      com.google.protobuf.MessageOrBuilder {

    /**
     * optional .CMsgVector pos = 1;
     */
    boolean hasPos();
    /**
     * optional .CMsgVector pos = 1;
     */
    skadistats.clarity.wire.common.proto.NetworkBaseTypes.CMsgVector getPos();
    /**
     * optional .CMsgVector pos = 1;
     */
    skadistats.clarity.wire.common.proto.NetworkBaseTypes.CMsgVectorOrBuilder getPosOrBuilder();

    /**
     * optional int32 decal_texture_index = 2;
     */
    boolean hasDecalTextureIndex();
    /**
     * optional int32 decal_texture_index = 2;
     */
    int getDecalTextureIndex();

    /**
     * optional int32 entity_index = 3;
     */
    boolean hasEntityIndex();
    /**
     * optional int32 entity_index = 3;
     */
    int getEntityIndex();

    /**
     * optional int32 model_index = 4;
     */
    boolean hasModelIndex();
    /**
     * optional int32 model_index = 4;
     */
    int getModelIndex();

    /**
     * optional bool low_priority = 5;
     */
    boolean hasLowPriority();
    /**
     * optional bool low_priority = 5;
     */
    boolean getLowPriority();
  }
  /**
   * Protobuf type {@code CSVCMsg_BSPDecal}
   */
  public static final class CSVCMsg_BSPDecal extends
      com.google.protobuf.GeneratedMessage implements
      // @@protoc_insertion_point(message_implements:CSVCMsg_BSPDecal)
      CSVCMsg_BSPDecalOrBuilder {
    // Use CSVCMsg_BSPDecal.newBuilder() to construct.
    private CSVCMsg_BSPDecal(com.google.protobuf.GeneratedMessage.Builder builder) {
      super(builder);
      this.unknownFields = builder.getUnknownFields();
    }
    private CSVCMsg_BSPDecal(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }

    private static final CSVCMsg_BSPDecal defaultInstance;
    public static CSVCMsg_BSPDecal getDefaultInstance() {
      return defaultInstance;
    }

    public CSVCMsg_BSPDecal getDefaultInstanceForType() {
      return defaultInstance;
    }

    private final com.google.protobuf.UnknownFieldSet unknownFields;
    @java.lang.Override
    public final com.google.protobuf.UnknownFieldSet
        getUnknownFields() {
      return this.unknownFields;
    }
    private CSVCMsg_BSPDecal(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      initFields();
      int mutable_bitField0_ = 0;
      com.google.protobuf.UnknownFieldSet.Builder unknownFields =
          com.google.protobuf.UnknownFieldSet.newBuilder();
      try {
        boolean done = false;
        while (!done) {
          int tag = input.readTag();
          switch (tag) {
            case 0:
              done = true;
              break;
            default: {
              if (!parseUnknownField(input, unknownFields,
                                     extensionRegistry, tag)) {
                done = true;
              }
              break;
            }
            case 10: {
              skadistats.clarity.wire.common.proto.NetworkBaseTypes.CMsgVector.Builder subBuilder = null;
              if (((bitField0_ & 0x00000001) == 0x00000001)) {
                subBuilder = pos_.toBuilder();
              }
              pos_ = input.readMessage(skadistats.clarity.wire.common.proto.NetworkBaseTypes.CMsgVector.PARSER, extensionRegistry);
              if (subBuilder != null) {
                subBuilder.mergeFrom(pos_);
                pos_ = subBuilder.buildPartial();
              }
              bitField0_ |= 0x00000001;
              break;
            }
            case 16: {
              bitField0_ |= 0x00000002;
              decalTextureIndex_ = input.readInt32();
              break;
            }
            case 24: {
              bitField0_ |= 0x00000004;
              entityIndex_ = input.readInt32();
              break;
            }
            case 32: {
              bitField0_ |= 0x00000008;
              modelIndex_ = input.readInt32();
              break;
            }
            case 40: {
              bitField0_ |= 0x00000010;
              lowPriority_ = input.readBool();
              break;
            }
          }
        }
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        throw e.setUnfinishedMessage(this);
      } catch (java.io.IOException e) {
        throw new com.google.protobuf.InvalidProtocolBufferException(
            e.getMessage()).setUnfinishedMessage(this);
      } finally {
        this.unknownFields = unknownFields.build();
        makeExtensionsImmutable();
      }
    }
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_BSPDecal_descriptor;
    }

    protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_BSPDecal_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_BSPDecal.class, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_BSPDecal.Builder.class);
    }

    public static com.google.protobuf.Parser PARSER =
        new com.google.protobuf.AbstractParser() {
      public CSVCMsg_BSPDecal parsePartialFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return new CSVCMsg_BSPDecal(input, extensionRegistry);
      }
    };

    @java.lang.Override
    public com.google.protobuf.Parser getParserForType() {
      return PARSER;
    }

    private int bitField0_;
    public static final int POS_FIELD_NUMBER = 1;
    private skadistats.clarity.wire.common.proto.NetworkBaseTypes.CMsgVector pos_;
    /**
     * optional .CMsgVector pos = 1;
     */
    public boolean hasPos() {
      return ((bitField0_ & 0x00000001) == 0x00000001);
    }
    /**
     * optional .CMsgVector pos = 1;
     */
    public skadistats.clarity.wire.common.proto.NetworkBaseTypes.CMsgVector getPos() {
      return pos_;
    }
    /**
     * optional .CMsgVector pos = 1;
     */
    public skadistats.clarity.wire.common.proto.NetworkBaseTypes.CMsgVectorOrBuilder getPosOrBuilder() {
      return pos_;
    }

    public static final int DECAL_TEXTURE_INDEX_FIELD_NUMBER = 2;
    private int decalTextureIndex_;
    /**
     * optional int32 decal_texture_index = 2;
     */
    public boolean hasDecalTextureIndex() {
      return ((bitField0_ & 0x00000002) == 0x00000002);
    }
    /**
     * optional int32 decal_texture_index = 2;
     */
    public int getDecalTextureIndex() {
      return decalTextureIndex_;
    }

    public static final int ENTITY_INDEX_FIELD_NUMBER = 3;
    private int entityIndex_;
    /**
     * optional int32 entity_index = 3;
     */
    public boolean hasEntityIndex() {
      return ((bitField0_ & 0x00000004) == 0x00000004);
    }
    /**
     * optional int32 entity_index = 3;
     */
    public int getEntityIndex() {
      return entityIndex_;
    }

    public static final int MODEL_INDEX_FIELD_NUMBER = 4;
    private int modelIndex_;
    /**
     * optional int32 model_index = 4;
     */
    public boolean hasModelIndex() {
      return ((bitField0_ & 0x00000008) == 0x00000008);
    }
    /**
     * optional int32 model_index = 4;
     */
    public int getModelIndex() {
      return modelIndex_;
    }

    public static final int LOW_PRIORITY_FIELD_NUMBER = 5;
    private boolean lowPriority_;
    /**
     * optional bool low_priority = 5;
     */
    public boolean hasLowPriority() {
      return ((bitField0_ & 0x00000010) == 0x00000010);
    }
    /**
     * optional bool low_priority = 5;
     */
    public boolean getLowPriority() {
      return lowPriority_;
    }

    private void initFields() {
      pos_ = skadistats.clarity.wire.common.proto.NetworkBaseTypes.CMsgVector.getDefaultInstance();
      decalTextureIndex_ = 0;
      entityIndex_ = 0;
      modelIndex_ = 0;
      lowPriority_ = false;
    }
    private byte memoizedIsInitialized = -1;
    public final boolean isInitialized() {
      byte isInitialized = memoizedIsInitialized;
      if (isInitialized == 1) return true;
      if (isInitialized == 0) return false;

      memoizedIsInitialized = 1;
      return true;
    }

    public void writeTo(com.google.protobuf.CodedOutputStream output)
                        throws java.io.IOException {
      getSerializedSize();
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        output.writeMessage(1, pos_);
      }
      if (((bitField0_ & 0x00000002) == 0x00000002)) {
        output.writeInt32(2, decalTextureIndex_);
      }
      if (((bitField0_ & 0x00000004) == 0x00000004)) {
        output.writeInt32(3, entityIndex_);
      }
      if (((bitField0_ & 0x00000008) == 0x00000008)) {
        output.writeInt32(4, modelIndex_);
      }
      if (((bitField0_ & 0x00000010) == 0x00000010)) {
        output.writeBool(5, lowPriority_);
      }
      getUnknownFields().writeTo(output);
    }

    private int memoizedSerializedSize = -1;
    public int getSerializedSize() {
      int size = memoizedSerializedSize;
      if (size != -1) return size;

      size = 0;
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        size += com.google.protobuf.CodedOutputStream
          .computeMessageSize(1, pos_);
      }
      if (((bitField0_ & 0x00000002) == 0x00000002)) {
        size += com.google.protobuf.CodedOutputStream
          .computeInt32Size(2, decalTextureIndex_);
      }
      if (((bitField0_ & 0x00000004) == 0x00000004)) {
        size += com.google.protobuf.CodedOutputStream
          .computeInt32Size(3, entityIndex_);
      }
      if (((bitField0_ & 0x00000008) == 0x00000008)) {
        size += com.google.protobuf.CodedOutputStream
          .computeInt32Size(4, modelIndex_);
      }
      if (((bitField0_ & 0x00000010) == 0x00000010)) {
        size += com.google.protobuf.CodedOutputStream
          .computeBoolSize(5, lowPriority_);
      }
      size += getUnknownFields().getSerializedSize();
      memoizedSerializedSize = size;
      return size;
    }

    private static final long serialVersionUID = 0L;
    @java.lang.Override
    protected java.lang.Object writeReplace()
        throws java.io.ObjectStreamException {
      return super.writeReplace();
    }

    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_BSPDecal parseFrom(
        com.google.protobuf.ByteString data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_BSPDecal parseFrom(
        com.google.protobuf.ByteString data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_BSPDecal parseFrom(byte[] data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_BSPDecal parseFrom(
        byte[] data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_BSPDecal parseFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_BSPDecal parseFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_BSPDecal parseDelimitedFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_BSPDecal parseDelimitedFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_BSPDecal parseFrom(
        com.google.protobuf.CodedInputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_BSPDecal parseFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }

    public static Builder newBuilder() { return Builder.create(); }
    public Builder newBuilderForType() { return newBuilder(); }
    public static Builder newBuilder(skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_BSPDecal prototype) {
      return newBuilder().mergeFrom(prototype);
    }
    public Builder toBuilder() { return newBuilder(this); }

    @java.lang.Override
    protected Builder newBuilderForType(
        com.google.protobuf.GeneratedMessage.BuilderParent parent) {
      Builder builder = new Builder(parent);
      return builder;
    }
    /**
     * Protobuf type {@code CSVCMsg_BSPDecal}
     */
    public static final class Builder extends
        com.google.protobuf.GeneratedMessage.Builder implements
        // @@protoc_insertion_point(builder_implements:CSVCMsg_BSPDecal)
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_BSPDecalOrBuilder {
      public static final com.google.protobuf.Descriptors.Descriptor
          getDescriptor() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_BSPDecal_descriptor;
      }

      protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
          internalGetFieldAccessorTable() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_BSPDecal_fieldAccessorTable
            .ensureFieldAccessorsInitialized(
                skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_BSPDecal.class, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_BSPDecal.Builder.class);
      }

      // Construct using skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_BSPDecal.newBuilder()
      private Builder() {
        maybeForceBuilderInitialization();
      }

      private Builder(
          com.google.protobuf.GeneratedMessage.BuilderParent parent) {
        super(parent);
        maybeForceBuilderInitialization();
      }
      private void maybeForceBuilderInitialization() {
        if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
          getPosFieldBuilder();
        }
      }
      private static Builder create() {
        return new Builder();
      }

      public Builder clear() {
        super.clear();
        if (posBuilder_ == null) {
          pos_ = skadistats.clarity.wire.common.proto.NetworkBaseTypes.CMsgVector.getDefaultInstance();
        } else {
          posBuilder_.clear();
        }
        bitField0_ = (bitField0_ & ~0x00000001);
        decalTextureIndex_ = 0;
        bitField0_ = (bitField0_ & ~0x00000002);
        entityIndex_ = 0;
        bitField0_ = (bitField0_ & ~0x00000004);
        modelIndex_ = 0;
        bitField0_ = (bitField0_ & ~0x00000008);
        lowPriority_ = false;
        bitField0_ = (bitField0_ & ~0x00000010);
        return this;
      }

      public Builder clone() {
        return create().mergeFrom(buildPartial());
      }

      public com.google.protobuf.Descriptors.Descriptor
          getDescriptorForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_BSPDecal_descriptor;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_BSPDecal getDefaultInstanceForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_BSPDecal.getDefaultInstance();
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_BSPDecal build() {
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_BSPDecal result = buildPartial();
        if (!result.isInitialized()) {
          throw newUninitializedMessageException(result);
        }
        return result;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_BSPDecal buildPartial() {
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_BSPDecal result = new skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_BSPDecal(this);
        int from_bitField0_ = bitField0_;
        int to_bitField0_ = 0;
        if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
          to_bitField0_ |= 0x00000001;
        }
        if (posBuilder_ == null) {
          result.pos_ = pos_;
        } else {
          result.pos_ = posBuilder_.build();
        }
        if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
          to_bitField0_ |= 0x00000002;
        }
        result.decalTextureIndex_ = decalTextureIndex_;
        if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
          to_bitField0_ |= 0x00000004;
        }
        result.entityIndex_ = entityIndex_;
        if (((from_bitField0_ & 0x00000008) == 0x00000008)) {
          to_bitField0_ |= 0x00000008;
        }
        result.modelIndex_ = modelIndex_;
        if (((from_bitField0_ & 0x00000010) == 0x00000010)) {
          to_bitField0_ |= 0x00000010;
        }
        result.lowPriority_ = lowPriority_;
        result.bitField0_ = to_bitField0_;
        onBuilt();
        return result;
      }

      public Builder mergeFrom(com.google.protobuf.Message other) {
        if (other instanceof skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_BSPDecal) {
          return mergeFrom((skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_BSPDecal)other);
        } else {
          super.mergeFrom(other);
          return this;
        }
      }

      public Builder mergeFrom(skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_BSPDecal other) {
        if (other == skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_BSPDecal.getDefaultInstance()) return this;
        if (other.hasPos()) {
          mergePos(other.getPos());
        }
        if (other.hasDecalTextureIndex()) {
          setDecalTextureIndex(other.getDecalTextureIndex());
        }
        if (other.hasEntityIndex()) {
          setEntityIndex(other.getEntityIndex());
        }
        if (other.hasModelIndex()) {
          setModelIndex(other.getModelIndex());
        }
        if (other.hasLowPriority()) {
          setLowPriority(other.getLowPriority());
        }
        this.mergeUnknownFields(other.getUnknownFields());
        return this;
      }

      public final boolean isInitialized() {
        return true;
      }

      public Builder mergeFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_BSPDecal parsedMessage = null;
        try {
          parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
          parsedMessage = (skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_BSPDecal) e.getUnfinishedMessage();
          throw e;
        } finally {
          if (parsedMessage != null) {
            mergeFrom(parsedMessage);
          }
        }
        return this;
      }
      private int bitField0_;

      private skadistats.clarity.wire.common.proto.NetworkBaseTypes.CMsgVector pos_ = skadistats.clarity.wire.common.proto.NetworkBaseTypes.CMsgVector.getDefaultInstance();
      private com.google.protobuf.SingleFieldBuilder<
          skadistats.clarity.wire.common.proto.NetworkBaseTypes.CMsgVector, skadistats.clarity.wire.common.proto.NetworkBaseTypes.CMsgVector.Builder, skadistats.clarity.wire.common.proto.NetworkBaseTypes.CMsgVectorOrBuilder> posBuilder_;
      /**
       * optional .CMsgVector pos = 1;
       */
      public boolean hasPos() {
        return ((bitField0_ & 0x00000001) == 0x00000001);
      }
      /**
       * optional .CMsgVector pos = 1;
       */
      public skadistats.clarity.wire.common.proto.NetworkBaseTypes.CMsgVector getPos() {
        if (posBuilder_ == null) {
          return pos_;
        } else {
          return posBuilder_.getMessage();
        }
      }
      /**
       * optional .CMsgVector pos = 1;
       */
      public Builder setPos(skadistats.clarity.wire.common.proto.NetworkBaseTypes.CMsgVector value) {
        if (posBuilder_ == null) {
          if (value == null) {
            throw new NullPointerException();
          }
          pos_ = value;
          onChanged();
        } else {
          posBuilder_.setMessage(value);
        }
        bitField0_ |= 0x00000001;
        return this;
      }
      /**
       * optional .CMsgVector pos = 1;
       */
      public Builder setPos(
          skadistats.clarity.wire.common.proto.NetworkBaseTypes.CMsgVector.Builder builderForValue) {
        if (posBuilder_ == null) {
          pos_ = builderForValue.build();
          onChanged();
        } else {
          posBuilder_.setMessage(builderForValue.build());
        }
        bitField0_ |= 0x00000001;
        return this;
      }
      /**
       * optional .CMsgVector pos = 1;
       */
      public Builder mergePos(skadistats.clarity.wire.common.proto.NetworkBaseTypes.CMsgVector value) {
        if (posBuilder_ == null) {
          if (((bitField0_ & 0x00000001) == 0x00000001) &&
              pos_ != skadistats.clarity.wire.common.proto.NetworkBaseTypes.CMsgVector.getDefaultInstance()) {
            pos_ =
              skadistats.clarity.wire.common.proto.NetworkBaseTypes.CMsgVector.newBuilder(pos_).mergeFrom(value).buildPartial();
          } else {
            pos_ = value;
          }
          onChanged();
        } else {
          posBuilder_.mergeFrom(value);
        }
        bitField0_ |= 0x00000001;
        return this;
      }
      /**
       * optional .CMsgVector pos = 1;
       */
      public Builder clearPos() {
        if (posBuilder_ == null) {
          pos_ = skadistats.clarity.wire.common.proto.NetworkBaseTypes.CMsgVector.getDefaultInstance();
          onChanged();
        } else {
          posBuilder_.clear();
        }
        bitField0_ = (bitField0_ & ~0x00000001);
        return this;
      }
      /**
       * optional .CMsgVector pos = 1;
       */
      public skadistats.clarity.wire.common.proto.NetworkBaseTypes.CMsgVector.Builder getPosBuilder() {
        bitField0_ |= 0x00000001;
        onChanged();
        return getPosFieldBuilder().getBuilder();
      }
      /**
       * optional .CMsgVector pos = 1;
       */
      public skadistats.clarity.wire.common.proto.NetworkBaseTypes.CMsgVectorOrBuilder getPosOrBuilder() {
        if (posBuilder_ != null) {
          return posBuilder_.getMessageOrBuilder();
        } else {
          return pos_;
        }
      }
      /**
       * optional .CMsgVector pos = 1;
       */
      private com.google.protobuf.SingleFieldBuilder<
          skadistats.clarity.wire.common.proto.NetworkBaseTypes.CMsgVector, skadistats.clarity.wire.common.proto.NetworkBaseTypes.CMsgVector.Builder, skadistats.clarity.wire.common.proto.NetworkBaseTypes.CMsgVectorOrBuilder> 
          getPosFieldBuilder() {
        if (posBuilder_ == null) {
          posBuilder_ = new com.google.protobuf.SingleFieldBuilder<
              skadistats.clarity.wire.common.proto.NetworkBaseTypes.CMsgVector, skadistats.clarity.wire.common.proto.NetworkBaseTypes.CMsgVector.Builder, skadistats.clarity.wire.common.proto.NetworkBaseTypes.CMsgVectorOrBuilder>(
                  getPos(),
                  getParentForChildren(),
                  isClean());
          pos_ = null;
        }
        return posBuilder_;
      }

      private int decalTextureIndex_ ;
      /**
       * optional int32 decal_texture_index = 2;
       */
      public boolean hasDecalTextureIndex() {
        return ((bitField0_ & 0x00000002) == 0x00000002);
      }
      /**
       * optional int32 decal_texture_index = 2;
       */
      public int getDecalTextureIndex() {
        return decalTextureIndex_;
      }
      /**
       * optional int32 decal_texture_index = 2;
       */
      public Builder setDecalTextureIndex(int value) {
        bitField0_ |= 0x00000002;
        decalTextureIndex_ = value;
        onChanged();
        return this;
      }
      /**
       * optional int32 decal_texture_index = 2;
       */
      public Builder clearDecalTextureIndex() {
        bitField0_ = (bitField0_ & ~0x00000002);
        decalTextureIndex_ = 0;
        onChanged();
        return this;
      }

      private int entityIndex_ ;
      /**
       * optional int32 entity_index = 3;
       */
      public boolean hasEntityIndex() {
        return ((bitField0_ & 0x00000004) == 0x00000004);
      }
      /**
       * optional int32 entity_index = 3;
       */
      public int getEntityIndex() {
        return entityIndex_;
      }
      /**
       * optional int32 entity_index = 3;
       */
      public Builder setEntityIndex(int value) {
        bitField0_ |= 0x00000004;
        entityIndex_ = value;
        onChanged();
        return this;
      }
      /**
       * optional int32 entity_index = 3;
       */
      public Builder clearEntityIndex() {
        bitField0_ = (bitField0_ & ~0x00000004);
        entityIndex_ = 0;
        onChanged();
        return this;
      }

      private int modelIndex_ ;
      /**
       * optional int32 model_index = 4;
       */
      public boolean hasModelIndex() {
        return ((bitField0_ & 0x00000008) == 0x00000008);
      }
      /**
       * optional int32 model_index = 4;
       */
      public int getModelIndex() {
        return modelIndex_;
      }
      /**
       * optional int32 model_index = 4;
       */
      public Builder setModelIndex(int value) {
        bitField0_ |= 0x00000008;
        modelIndex_ = value;
        onChanged();
        return this;
      }
      /**
       * optional int32 model_index = 4;
       */
      public Builder clearModelIndex() {
        bitField0_ = (bitField0_ & ~0x00000008);
        modelIndex_ = 0;
        onChanged();
        return this;
      }

      private boolean lowPriority_ ;
      /**
       * optional bool low_priority = 5;
       */
      public boolean hasLowPriority() {
        return ((bitField0_ & 0x00000010) == 0x00000010);
      }
      /**
       * optional bool low_priority = 5;
       */
      public boolean getLowPriority() {
        return lowPriority_;
      }
      /**
       * optional bool low_priority = 5;
       */
      public Builder setLowPriority(boolean value) {
        bitField0_ |= 0x00000010;
        lowPriority_ = value;
        onChanged();
        return this;
      }
      /**
       * optional bool low_priority = 5;
       */
      public Builder clearLowPriority() {
        bitField0_ = (bitField0_ & ~0x00000010);
        lowPriority_ = false;
        onChanged();
        return this;
      }

      // @@protoc_insertion_point(builder_scope:CSVCMsg_BSPDecal)
    }

    static {
      defaultInstance = new CSVCMsg_BSPDecal(true);
      defaultInstance.initFields();
    }

    // @@protoc_insertion_point(class_scope:CSVCMsg_BSPDecal)
  }

  public interface CSVCMsg_GetCvarValueOrBuilder extends
      // @@protoc_insertion_point(interface_extends:CSVCMsg_GetCvarValue)
      com.google.protobuf.MessageOrBuilder {

    /**
     * optional int32 cookie = 1;
     */
    boolean hasCookie();
    /**
     * optional int32 cookie = 1;
     */
    int getCookie();

    /**
     * optional string cvar_name = 2;
     */
    boolean hasCvarName();
    /**
     * optional string cvar_name = 2;
     */
    java.lang.String getCvarName();
    /**
     * optional string cvar_name = 2;
     */
    com.google.protobuf.ByteString
        getCvarNameBytes();
  }
  /**
   * Protobuf type {@code CSVCMsg_GetCvarValue}
   */
  public static final class CSVCMsg_GetCvarValue extends
      com.google.protobuf.GeneratedMessage implements
      // @@protoc_insertion_point(message_implements:CSVCMsg_GetCvarValue)
      CSVCMsg_GetCvarValueOrBuilder {
    // Use CSVCMsg_GetCvarValue.newBuilder() to construct.
    private CSVCMsg_GetCvarValue(com.google.protobuf.GeneratedMessage.Builder builder) {
      super(builder);
      this.unknownFields = builder.getUnknownFields();
    }
    private CSVCMsg_GetCvarValue(boolean noInit) { this.unknownFields = com.google.protobuf.UnknownFieldSet.getDefaultInstance(); }

    private static final CSVCMsg_GetCvarValue defaultInstance;
    public static CSVCMsg_GetCvarValue getDefaultInstance() {
      return defaultInstance;
    }

    public CSVCMsg_GetCvarValue getDefaultInstanceForType() {
      return defaultInstance;
    }

    private final com.google.protobuf.UnknownFieldSet unknownFields;
    @java.lang.Override
    public final com.google.protobuf.UnknownFieldSet
        getUnknownFields() {
      return this.unknownFields;
    }
    private CSVCMsg_GetCvarValue(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      initFields();
      int mutable_bitField0_ = 0;
      com.google.protobuf.UnknownFieldSet.Builder unknownFields =
          com.google.protobuf.UnknownFieldSet.newBuilder();
      try {
        boolean done = false;
        while (!done) {
          int tag = input.readTag();
          switch (tag) {
            case 0:
              done = true;
              break;
            default: {
              if (!parseUnknownField(input, unknownFields,
                                     extensionRegistry, tag)) {
                done = true;
              }
              break;
            }
            case 8: {
              bitField0_ |= 0x00000001;
              cookie_ = input.readInt32();
              break;
            }
            case 18: {
              com.google.protobuf.ByteString bs = input.readBytes();
              bitField0_ |= 0x00000002;
              cvarName_ = bs;
              break;
            }
          }
        }
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        throw e.setUnfinishedMessage(this);
      } catch (java.io.IOException e) {
        throw new com.google.protobuf.InvalidProtocolBufferException(
            e.getMessage()).setUnfinishedMessage(this);
      } finally {
        this.unknownFields = unknownFields.build();
        makeExtensionsImmutable();
      }
    }
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_GetCvarValue_descriptor;
    }

    protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_GetCvarValue_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GetCvarValue.class, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GetCvarValue.Builder.class);
    }

    public static com.google.protobuf.Parser PARSER =
        new com.google.protobuf.AbstractParser() {
      public CSVCMsg_GetCvarValue parsePartialFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return new CSVCMsg_GetCvarValue(input, extensionRegistry);
      }
    };

    @java.lang.Override
    public com.google.protobuf.Parser getParserForType() {
      return PARSER;
    }

    private int bitField0_;
    public static final int COOKIE_FIELD_NUMBER = 1;
    private int cookie_;
    /**
     * optional int32 cookie = 1;
     */
    public boolean hasCookie() {
      return ((bitField0_ & 0x00000001) == 0x00000001);
    }
    /**
     * optional int32 cookie = 1;
     */
    public int getCookie() {
      return cookie_;
    }

    public static final int CVAR_NAME_FIELD_NUMBER = 2;
    private java.lang.Object cvarName_;
    /**
     * optional string cvar_name = 2;
     */
    public boolean hasCvarName() {
      return ((bitField0_ & 0x00000002) == 0x00000002);
    }
    /**
     * optional string cvar_name = 2;
     */
    public java.lang.String getCvarName() {
      java.lang.Object ref = cvarName_;
      if (ref instanceof java.lang.String) {
        return (java.lang.String) ref;
      } else {
        com.google.protobuf.ByteString bs = 
            (com.google.protobuf.ByteString) ref;
        java.lang.String s = bs.toStringUtf8();
        if (bs.isValidUtf8()) {
          cvarName_ = s;
        }
        return s;
      }
    }
    /**
     * optional string cvar_name = 2;
     */
    public com.google.protobuf.ByteString
        getCvarNameBytes() {
      java.lang.Object ref = cvarName_;
      if (ref instanceof java.lang.String) {
        com.google.protobuf.ByteString b = 
            com.google.protobuf.ByteString.copyFromUtf8(
                (java.lang.String) ref);
        cvarName_ = b;
        return b;
      } else {
        return (com.google.protobuf.ByteString) ref;
      }
    }

    private void initFields() {
      cookie_ = 0;
      cvarName_ = "";
    }
    private byte memoizedIsInitialized = -1;
    public final boolean isInitialized() {
      byte isInitialized = memoizedIsInitialized;
      if (isInitialized == 1) return true;
      if (isInitialized == 0) return false;

      memoizedIsInitialized = 1;
      return true;
    }

    public void writeTo(com.google.protobuf.CodedOutputStream output)
                        throws java.io.IOException {
      getSerializedSize();
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        output.writeInt32(1, cookie_);
      }
      if (((bitField0_ & 0x00000002) == 0x00000002)) {
        output.writeBytes(2, getCvarNameBytes());
      }
      getUnknownFields().writeTo(output);
    }

    private int memoizedSerializedSize = -1;
    public int getSerializedSize() {
      int size = memoizedSerializedSize;
      if (size != -1) return size;

      size = 0;
      if (((bitField0_ & 0x00000001) == 0x00000001)) {
        size += com.google.protobuf.CodedOutputStream
          .computeInt32Size(1, cookie_);
      }
      if (((bitField0_ & 0x00000002) == 0x00000002)) {
        size += com.google.protobuf.CodedOutputStream
          .computeBytesSize(2, getCvarNameBytes());
      }
      size += getUnknownFields().getSerializedSize();
      memoizedSerializedSize = size;
      return size;
    }

    private static final long serialVersionUID = 0L;
    @java.lang.Override
    protected java.lang.Object writeReplace()
        throws java.io.ObjectStreamException {
      return super.writeReplace();
    }

    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GetCvarValue parseFrom(
        com.google.protobuf.ByteString data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GetCvarValue parseFrom(
        com.google.protobuf.ByteString data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GetCvarValue parseFrom(byte[] data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GetCvarValue parseFrom(
        byte[] data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GetCvarValue parseFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GetCvarValue parseFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GetCvarValue parseDelimitedFrom(java.io.InputStream input)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GetCvarValue parseDelimitedFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseDelimitedFrom(input, extensionRegistry);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GetCvarValue parseFrom(
        com.google.protobuf.CodedInputStream input)
        throws java.io.IOException {
      return PARSER.parseFrom(input);
    }
    public static skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GetCvarValue parseFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return PARSER.parseFrom(input, extensionRegistry);
    }

    public static Builder newBuilder() { return Builder.create(); }
    public Builder newBuilderForType() { return newBuilder(); }
    public static Builder newBuilder(skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GetCvarValue prototype) {
      return newBuilder().mergeFrom(prototype);
    }
    public Builder toBuilder() { return newBuilder(this); }

    @java.lang.Override
    protected Builder newBuilderForType(
        com.google.protobuf.GeneratedMessage.BuilderParent parent) {
      Builder builder = new Builder(parent);
      return builder;
    }
    /**
     * Protobuf type {@code CSVCMsg_GetCvarValue}
     */
    public static final class Builder extends
        com.google.protobuf.GeneratedMessage.Builder implements
        // @@protoc_insertion_point(builder_implements:CSVCMsg_GetCvarValue)
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GetCvarValueOrBuilder {
      public static final com.google.protobuf.Descriptors.Descriptor
          getDescriptor() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_GetCvarValue_descriptor;
      }

      protected com.google.protobuf.GeneratedMessage.FieldAccessorTable
          internalGetFieldAccessorTable() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_GetCvarValue_fieldAccessorTable
            .ensureFieldAccessorsInitialized(
                skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GetCvarValue.class, skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GetCvarValue.Builder.class);
      }

      // Construct using skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GetCvarValue.newBuilder()
      private Builder() {
        maybeForceBuilderInitialization();
      }

      private Builder(
          com.google.protobuf.GeneratedMessage.BuilderParent parent) {
        super(parent);
        maybeForceBuilderInitialization();
      }
      private void maybeForceBuilderInitialization() {
        if (com.google.protobuf.GeneratedMessage.alwaysUseFieldBuilders) {
        }
      }
      private static Builder create() {
        return new Builder();
      }

      public Builder clear() {
        super.clear();
        cookie_ = 0;
        bitField0_ = (bitField0_ & ~0x00000001);
        cvarName_ = "";
        bitField0_ = (bitField0_ & ~0x00000002);
        return this;
      }

      public Builder clone() {
        return create().mergeFrom(buildPartial());
      }

      public com.google.protobuf.Descriptors.Descriptor
          getDescriptorForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.internal_static_CSVCMsg_GetCvarValue_descriptor;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GetCvarValue getDefaultInstanceForType() {
        return skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GetCvarValue.getDefaultInstance();
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GetCvarValue build() {
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GetCvarValue result = buildPartial();
        if (!result.isInitialized()) {
          throw newUninitializedMessageException(result);
        }
        return result;
      }

      public skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GetCvarValue buildPartial() {
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GetCvarValue result = new skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GetCvarValue(this);
        int from_bitField0_ = bitField0_;
        int to_bitField0_ = 0;
        if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
          to_bitField0_ |= 0x00000001;
        }
        result.cookie_ = cookie_;
        if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
          to_bitField0_ |= 0x00000002;
        }
        result.cvarName_ = cvarName_;
        result.bitField0_ = to_bitField0_;
        onBuilt();
        return result;
      }

      public Builder mergeFrom(com.google.protobuf.Message other) {
        if (other instanceof skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GetCvarValue) {
          return mergeFrom((skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GetCvarValue)other);
        } else {
          super.mergeFrom(other);
          return this;
        }
      }

      public Builder mergeFrom(skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GetCvarValue other) {
        if (other == skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GetCvarValue.getDefaultInstance()) return this;
        if (other.hasCookie()) {
          setCookie(other.getCookie());
        }
        if (other.hasCvarName()) {
          bitField0_ |= 0x00000002;
          cvarName_ = other.cvarName_;
          onChanged();
        }
        this.mergeUnknownFields(other.getUnknownFields());
        return this;
      }

      public final boolean isInitialized() {
        return true;
      }

      public Builder mergeFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GetCvarValue parsedMessage = null;
        try {
          parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
          parsedMessage = (skadistats.clarity.wire.common.proto.NetMessages.CSVCMsg_GetCvarValue) e.getUnfinishedMessage();
          throw e;
        } finally {
          if (parsedMessage != null) {
            mergeFrom(parsedMessage);
          }
        }
        return this;
      }
      private int bitField0_;

      private int cookie_ ;
      /**
       * optional int32 cookie = 1;
       */
      public boolean hasCookie() {
        return ((bitField0_ & 0x00000001) == 0x00000001);
      }
      /**
       * optional int32 cookie = 1;
       */
      public int getCookie() {
        return cookie_;
      }
      /**
       * optional int32 cookie = 1;
       */
      public Builder setCookie(int value) {
        bitField0_ |= 0x00000001;
        cookie_ = value;
        onChanged();
        return this;
      }
      /**
       * optional int32 cookie = 1;
       */
      public Builder clearCookie() {
        bitField0_ = (bitField0_ & ~0x00000001);
        cookie_ = 0;
        onChanged();
        return this;
      }

      private java.lang.Object cvarName_ = "";
      /**
       * optional string cvar_name = 2;
       */
      public boolean hasCvarName() {
        return ((bitField0_ & 0x00000002) == 0x00000002);
      }
      /**
       * optional string cvar_name = 2;
       */
      public java.lang.String getCvarName() {
        java.lang.Object ref = cvarName_;
        if (!(ref instanceof java.lang.String)) {
          com.google.protobuf.ByteString bs =
              (com.google.protobuf.ByteString) ref;
          java.lang.String s = bs.toStringUtf8();
          if (bs.isValidUtf8()) {
            cvarName_ = s;
          }
          return s;
        } else {
          return (java.lang.String) ref;
        }
      }
      /**
       * optional string cvar_name = 2;
       */
      public com.google.protobuf.ByteString
          getCvarNameBytes() {
        java.lang.Object ref = cvarName_;
        if (ref instanceof String) {
          com.google.protobuf.ByteString b = 
              com.google.protobuf.ByteString.copyFromUtf8(
                  (java.lang.String) ref);
          cvarName_ = b;
          return b;
        } else {
          return (com.google.protobuf.ByteString) ref;
        }
      }
      /**
       * optional string cvar_name = 2;
       */
      public Builder setCvarName(
          java.lang.String value) {
        if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00000002;
        cvarName_ = value;
        onChanged();
        return this;
      }
      /**
       * optional string cvar_name = 2;
       */
      public Builder clearCvarName() {
        bitField0_ = (bitField0_ & ~0x00000002);
        cvarName_ = getDefaultInstance().getCvarName();
        onChanged();
        return this;
      }
      /**
       * optional string cvar_name = 2;
       */
      public Builder setCvarNameBytes(
          com.google.protobuf.ByteString value) {
        if (value == null) {
    throw new NullPointerException();
  }
  bitField0_ |= 0x00000002;
        cvarName_ = value;
        onChanged();
        return this;
      }

      // @@protoc_insertion_point(builder_scope:CSVCMsg_GetCvarValue)
    }

    static {
      defaultInstance = new CSVCMsg_GetCvarValue(true);
      defaultInstance.initFields();
    }

    // @@protoc_insertion_point(class_scope:CSVCMsg_GetCvarValue)
  }

  private static final com.google.protobuf.Descriptors.Descriptor
    internal_static_CCLCMsg_ClientInfo_descriptor;
  private static
    com.google.protobuf.GeneratedMessage.FieldAccessorTable
      internal_static_CCLCMsg_ClientInfo_fieldAccessorTable;
  private static final com.google.protobuf.Descriptors.Descriptor
    internal_static_CCLCMsg_Move_descriptor;
  private static
    com.google.protobuf.GeneratedMessage.FieldAccessorTable
      internal_static_CCLCMsg_Move_fieldAccessorTable;
  private static final com.google.protobuf.Descriptors.Descriptor
    internal_static_CMsgVoiceAudio_descriptor;
  private static
    com.google.protobuf.GeneratedMessage.FieldAccessorTable
      internal_static_CMsgVoiceAudio_fieldAccessorTable;
  private static final com.google.protobuf.Descriptors.Descriptor
    internal_static_CCLCMsg_VoiceData_descriptor;
  private static
    com.google.protobuf.GeneratedMessage.FieldAccessorTable
      internal_static_CCLCMsg_VoiceData_fieldAccessorTable;
  private static final com.google.protobuf.Descriptors.Descriptor
    internal_static_CCLCMsg_BaselineAck_descriptor;
  private static
    com.google.protobuf.GeneratedMessage.FieldAccessorTable
      internal_static_CCLCMsg_BaselineAck_fieldAccessorTable;
  private static final com.google.protobuf.Descriptors.Descriptor
    internal_static_CCLCMsg_ListenEvents_descriptor;
  private static
    com.google.protobuf.GeneratedMessage.FieldAccessorTable
      internal_static_CCLCMsg_ListenEvents_fieldAccessorTable;
  private static final com.google.protobuf.Descriptors.Descriptor
    internal_static_CCLCMsg_RespondCvarValue_descriptor;
  private static
    com.google.protobuf.GeneratedMessage.FieldAccessorTable
      internal_static_CCLCMsg_RespondCvarValue_fieldAccessorTable;
  private static final com.google.protobuf.Descriptors.Descriptor
    internal_static_CCLCMsg_FileCRCCheck_descriptor;
  private static
    com.google.protobuf.GeneratedMessage.FieldAccessorTable
      internal_static_CCLCMsg_FileCRCCheck_fieldAccessorTable;
  private static final com.google.protobuf.Descriptors.Descriptor
    internal_static_CCLCMsg_LoadingProgress_descriptor;
  private static
    com.google.protobuf.GeneratedMessage.FieldAccessorTable
      internal_static_CCLCMsg_LoadingProgress_fieldAccessorTable;
  private static final com.google.protobuf.Descriptors.Descriptor
    internal_static_CCLCMsg_SplitPlayerConnect_descriptor;
  private static
    com.google.protobuf.GeneratedMessage.FieldAccessorTable
      internal_static_CCLCMsg_SplitPlayerConnect_fieldAccessorTable;
  private static final com.google.protobuf.Descriptors.Descriptor
    internal_static_CCLCMsg_ClientMessage_descriptor;
  private static
    com.google.protobuf.GeneratedMessage.FieldAccessorTable
      internal_static_CCLCMsg_ClientMessage_fieldAccessorTable;
  private static final com.google.protobuf.Descriptors.Descriptor
    internal_static_CCLCMsg_SplitPlayerDisconnect_descriptor;
  private static
    com.google.protobuf.GeneratedMessage.FieldAccessorTable
      internal_static_CCLCMsg_SplitPlayerDisconnect_fieldAccessorTable;
  private static final com.google.protobuf.Descriptors.Descriptor
    internal_static_CCLCMsg_ServerStatus_descriptor;
  private static
    com.google.protobuf.GeneratedMessage.FieldAccessorTable
      internal_static_CCLCMsg_ServerStatus_fieldAccessorTable;
  private static final com.google.protobuf.Descriptors.Descriptor
    internal_static_CCLCMsg_ServerPing_descriptor;
  private static
    com.google.protobuf.GeneratedMessage.FieldAccessorTable
      internal_static_CCLCMsg_ServerPing_fieldAccessorTable;
  private static final com.google.protobuf.Descriptors.Descriptor
    internal_static_CCLCMsg_RequestPause_descriptor;
  private static
    com.google.protobuf.GeneratedMessage.FieldAccessorTable
      internal_static_CCLCMsg_RequestPause_fieldAccessorTable;
  private static final com.google.protobuf.Descriptors.Descriptor
    internal_static_CCLCMsg_CmdKeyValues_descriptor;
  private static
    com.google.protobuf.GeneratedMessage.FieldAccessorTable
      internal_static_CCLCMsg_CmdKeyValues_fieldAccessorTable;
  private static final com.google.protobuf.Descriptors.Descriptor
    internal_static_CSVCMsg_GameEventList_descriptor;
  private static
    com.google.protobuf.GeneratedMessage.FieldAccessorTable
      internal_static_CSVCMsg_GameEventList_fieldAccessorTable;
  private static final com.google.protobuf.Descriptors.Descriptor
    internal_static_CSVCMsg_GameEventList_key_t_descriptor;
  private static
    com.google.protobuf.GeneratedMessage.FieldAccessorTable
      internal_static_CSVCMsg_GameEventList_key_t_fieldAccessorTable;
  private static final com.google.protobuf.Descriptors.Descriptor
    internal_static_CSVCMsg_GameEventList_descriptor_t_descriptor;
  private static
    com.google.protobuf.GeneratedMessage.FieldAccessorTable
      internal_static_CSVCMsg_GameEventList_descriptor_t_fieldAccessorTable;
  private static final com.google.protobuf.Descriptors.Descriptor
    internal_static_CSVCMsg_PacketEntities_descriptor;
  private static
    com.google.protobuf.GeneratedMessage.FieldAccessorTable
      internal_static_CSVCMsg_PacketEntities_fieldAccessorTable;
  private static final com.google.protobuf.Descriptors.Descriptor
    internal_static_CSVCMsg_ServerInfo_descriptor;
  private static
    com.google.protobuf.GeneratedMessage.FieldAccessorTable
      internal_static_CSVCMsg_ServerInfo_fieldAccessorTable;
  private static final com.google.protobuf.Descriptors.Descriptor
    internal_static_CSVCMsg_ClassInfo_descriptor;
  private static
    com.google.protobuf.GeneratedMessage.FieldAccessorTable
      internal_static_CSVCMsg_ClassInfo_fieldAccessorTable;
  private static final com.google.protobuf.Descriptors.Descriptor
    internal_static_CSVCMsg_ClassInfo_class_t_descriptor;
  private static
    com.google.protobuf.GeneratedMessage.FieldAccessorTable
      internal_static_CSVCMsg_ClassInfo_class_t_fieldAccessorTable;
  private static final com.google.protobuf.Descriptors.Descriptor
    internal_static_CSVCMsg_SetView_descriptor;
  private static
    com.google.protobuf.GeneratedMessage.FieldAccessorTable
      internal_static_CSVCMsg_SetView_fieldAccessorTable;
  private static final com.google.protobuf.Descriptors.Descriptor
    internal_static_CSVCMsg_Print_descriptor;
  private static
    com.google.protobuf.GeneratedMessage.FieldAccessorTable
      internal_static_CSVCMsg_Print_fieldAccessorTable;
  private static final com.google.protobuf.Descriptors.Descriptor
    internal_static_CSVCMsg_VoiceInit_descriptor;
  private static
    com.google.protobuf.GeneratedMessage.FieldAccessorTable
      internal_static_CSVCMsg_VoiceInit_fieldAccessorTable;
  private static final com.google.protobuf.Descriptors.Descriptor
    internal_static_CSVCMsg_Sounds_descriptor;
  private static
    com.google.protobuf.GeneratedMessage.FieldAccessorTable
      internal_static_CSVCMsg_Sounds_fieldAccessorTable;
  private static final com.google.protobuf.Descriptors.Descriptor
    internal_static_CSVCMsg_Sounds_sounddata_t_descriptor;
  private static
    com.google.protobuf.GeneratedMessage.FieldAccessorTable
      internal_static_CSVCMsg_Sounds_sounddata_t_fieldAccessorTable;
  private static final com.google.protobuf.Descriptors.Descriptor
    internal_static_CSVCMsg_UpdateStringTable_descriptor;
  private static
    com.google.protobuf.GeneratedMessage.FieldAccessorTable
      internal_static_CSVCMsg_UpdateStringTable_fieldAccessorTable;
  private static final com.google.protobuf.Descriptors.Descriptor
    internal_static_CSVCMsg_FullFrameSplit_descriptor;
  private static
    com.google.protobuf.GeneratedMessage.FieldAccessorTable
      internal_static_CSVCMsg_FullFrameSplit_fieldAccessorTable;
  private static final com.google.protobuf.Descriptors.Descriptor
    internal_static_CSVCMsg_BSPDecal_descriptor;
  private static
    com.google.protobuf.GeneratedMessage.FieldAccessorTable
      internal_static_CSVCMsg_BSPDecal_fieldAccessorTable;
  private static final com.google.protobuf.Descriptors.Descriptor
    internal_static_CSVCMsg_GetCvarValue_descriptor;
  private static
    com.google.protobuf.GeneratedMessage.FieldAccessorTable
      internal_static_CSVCMsg_GetCvarValue_fieldAccessorTable;

  public static com.google.protobuf.Descriptors.FileDescriptor
      getDescriptor() {
    return descriptor;
  }
  private static com.google.protobuf.Descriptors.FileDescriptor
      descriptor;
  static {
    java.lang.String[] descriptorData = {
      "\n\021netmessages.proto\032\026networkbasetypes.pr" +
      "oto\"\220\001\n\022CCLCMsg_ClientInfo\022\026\n\016send_table" +
      "_crc\030\001 \001(\007\022\024\n\014server_count\030\002 \001(\r\022\017\n\007is_h" +
      "ltv\030\003 \001(\010\022\021\n\tis_replay\030\004 \001(\010\022\022\n\nfriends_" +
      "id\030\005 \001(\r\022\024\n\014friends_name\030\006 \001(\t\"\201\001\n\014CCLCM" +
      "sg_Move\022\033\n\023num_backup_commands\030\001 \001(\r\022\030\n\020" +
      "num_new_commands\030\002 \001(\r\022\014\n\004data\030\003 \001(\014\022\026\n\016" +
      "command_number\030\004 \001(\r\022\024\n\014num_commands\030\005 \001" +
      "(\r\"\311\001\n\016CMsgVoiceAudio\022:\n\006format\030\001 \001(\0162\022." +
      "VoiceDataFormat_t:\026VOICEDATA_FORMAT_STEA",
      "M\022\022\n\nvoice_data\030\002 \001(\014\022\026\n\016sequence_bytes\030" +
      "\003 \001(\005\022\026\n\016section_number\030\004 \001(\r\022\023\n\013sample_" +
      "rate\030\005 \001(\r\022\"\n\032uncompressed_sample_offset" +
      "\030\006 \001(\r\"O\n\021CCLCMsg_VoiceData\022\036\n\005audio\030\001 \001" +
      "(\0132\017.CMsgVoiceAudio\022\014\n\004xuid\030\002 \001(\006\022\014\n\004tic" +
      "k\030\003 \001(\r\"A\n\023CCLCMsg_BaselineAck\022\025\n\rbaseli" +
      "ne_tick\030\001 \001(\005\022\023\n\013baseline_nr\030\002 \001(\005\"*\n\024CC" +
      "LCMsg_ListenEvents\022\022\n\nevent_mask\030\001 \003(\007\"\\" +
      "\n\030CCLCMsg_RespondCvarValue\022\016\n\006cookie\030\001 \001" +
      "(\005\022\023\n\013status_code\030\002 \001(\005\022\014\n\004name\030\003 \001(\t\022\r\n",
      "\005value\030\004 \001(\t\"m\n\024CCLCMsg_FileCRCCheck\022\021\n\t" +
      "code_path\030\001 \001(\005\022\014\n\004path\030\002 \001(\t\022\025\n\rcode_fi" +
      "lename\030\003 \001(\005\022\020\n\010filename\030\004 \001(\t\022\013\n\003crc\030\005 " +
      "\001(\007\"+\n\027CCLCMsg_LoadingProgress\022\020\n\010progre" +
      "ss\030\001 \001(\005\"0\n\032CCLCMsg_SplitPlayerConnect\022\022" +
      "\n\nplayername\030\001 \001(\t\"7\n\025CCLCMsg_ClientMess" +
      "age\022\020\n\010msg_type\030\001 \001(\005\022\014\n\004data\030\002 \001(\014\"-\n\035C" +
      "CLCMsg_SplitPlayerDisconnect\022\014\n\004slot\030\001 \001" +
      "(\005\"*\n\024CCLCMsg_ServerStatus\022\022\n\nsimplified" +
      "\030\001 \001(\010\"\024\n\022CCLCMsg_ServerPing\"Z\n\024CCLCMsg_",
      "RequestPause\022-\n\npause_type\030\001 \001(\0162\017.Reque" +
      "stPause_t:\010RP_PAUSE\022\023\n\013pause_group\030\002 \001(\005" +
      "\"$\n\024CCLCMsg_CmdKeyValues\022\014\n\004data\030\001 \001(\014\"\321" +
      "\001\n\025CSVCMsg_GameEventList\0228\n\013descriptors\030" +
      "\001 \003(\0132#.CSVCMsg_GameEventList.descriptor" +
      "_t\032#\n\005key_t\022\014\n\004type\030\001 \001(\005\022\014\n\004name\030\002 \001(\t\032" +
      "Y\n\014descriptor_t\022\017\n\007eventid\030\001 \001(\005\022\014\n\004name" +
      "\030\002 \001(\t\022*\n\004keys\030\003 \003(\0132\034.CSVCMsg_GameEvent" +
      "List.key_t\"\254\002\n\026CSVCMsg_PacketEntities\022\023\n" +
      "\013max_entries\030\001 \001(\005\022\027\n\017updated_entries\030\002 ",
      "\001(\005\022\020\n\010is_delta\030\003 \001(\010\022\027\n\017update_baseline" +
      "\030\004 \001(\010\022\020\n\010baseline\030\005 \001(\005\022\022\n\ndelta_from\030\006" +
      " \001(\005\022\023\n\013entity_data\030\007 \001(\014\022\032\n\022pending_ful" +
      "l_frame\030\010 \001(\010\022 \n\030active_spawngroup_handl" +
      "e\030\t \001(\r\022\'\n\037max_spawngroup_creationsequen" +
      "ce\030\n \001(\r\022\027\n\017last_cmd_number\030\013 \001(\r\"\325\003\n\022CS" +
      "VCMsg_ServerInfo\022\020\n\010protocol\030\001 \001(\005\022\024\n\014se" +
      "rver_count\030\002 \001(\005\022\024\n\014is_dedicated\030\003 \001(\010\022\017" +
      "\n\007is_hltv\030\004 \001(\010\022\021\n\tis_replay\030\005 \001(\010\022\014\n\004c_" +
      "os\030\006 \001(\005\022\017\n\007map_crc\030\007 \001(\007\022\022\n\nclient_crc\030",
      "\010 \001(\007\022\030\n\020string_table_crc\030\t \001(\007\022\023\n\013max_c" +
      "lients\030\n \001(\005\022\023\n\013max_classes\030\013 \001(\005\022\023\n\013pla" +
      "yer_slot\030\014 \001(\005\022\025\n\rtick_interval\030\r \001(\002\022\020\n" +
      "\010game_dir\030\016 \001(\t\022\020\n\010map_name\030\017 \001(\t\022\020\n\010sky" +
      "_name\030\020 \001(\t\022\021\n\thost_name\030\021 \001(\t\022\022\n\naddon_" +
      "name\030\022 \001(\t\022>\n\023game_session_config\030\023 \001(\0132" +
      "!.CSVCMsg_GameSessionConfiguration\022\035\n\025ga" +
      "me_session_manifest\030\024 \001(\014\"\244\001\n\021CSVCMsg_Cl" +
      "assInfo\022\030\n\020create_on_client\030\001 \001(\010\022+\n\007cla" +
      "sses\030\002 \003(\0132\032.CSVCMsg_ClassInfo.class_t\032H",
      "\n\007class_t\022\020\n\010class_id\030\001 \001(\005\022\027\n\017data_tabl" +
      "e_name\030\002 \001(\t\022\022\n\nclass_name\030\003 \001(\t\"5\n\017CSVC" +
      "Msg_SetView\022\024\n\014entity_index\030\001 \001(\005\022\014\n\004slo" +
      "t\030\002 \001(\005\"\035\n\rCSVCMsg_Print\022\014\n\004text\030\001 \001(\t\"G" +
      "\n\021CSVCMsg_VoiceInit\022\017\n\007quality\030\001 \001(\005\022\r\n\005" +
      "codec\030\002 \001(\t\022\022\n\007version\030\003 \001(\005:\0010\"\337\003\n\016CSVC" +
      "Msg_Sounds\022\026\n\016reliable_sound\030\001 \001(\010\022+\n\006so" +
      "unds\030\002 \003(\0132\033.CSVCMsg_Sounds.sounddata_t\032" +
      "\207\003\n\013sounddata_t\022\020\n\010origin_x\030\001 \001(\021\022\020\n\010ori" +
      "gin_y\030\002 \001(\021\022\020\n\010origin_z\030\003 \001(\021\022\016\n\006volume\030",
      "\004 \001(\r\022\023\n\013delay_value\030\005 \001(\002\022\027\n\017sequence_n" +
      "umber\030\006 \001(\005\022\024\n\014entity_index\030\007 \001(\005\022\017\n\007cha" +
      "nnel\030\010 \001(\005\022\r\n\005pitch\030\t \001(\005\022\r\n\005flags\030\n \001(\005" +
      "\022\021\n\tsound_num\030\013 \001(\r\022\030\n\020sound_num_handle\030" +
      "\014 \001(\007\022\026\n\016speaker_entity\030\r \001(\005\022\023\n\013random_" +
      "seed\030\016 \001(\005\022\023\n\013sound_level\030\017 \001(\005\022\023\n\013is_se" +
      "ntence\030\020 \001(\010\022\022\n\nis_ambient\030\021 \001(\010\022\014\n\004guid" +
      "\030\022 \001(\r\022\031\n\021sound_resource_id\030\023 \001(\006\"_\n\031CSV" +
      "CMsg_UpdateStringTable\022\020\n\010table_id\030\001 \001(\005" +
      "\022\033\n\023num_changed_entries\030\002 \001(\005\022\023\n\013string_",
      "data\030\003 \001(\014\"T\n\026CSVCMsg_FullFrameSplit\022\014\n\004" +
      "tick\030\001 \001(\005\022\017\n\007section\030\002 \001(\005\022\r\n\005total\030\003 \001" +
      "(\005\022\014\n\004data\030\004 \001(\014\"\212\001\n\020CSVCMsg_BSPDecal\022\030\n" +
      "\003pos\030\001 \001(\0132\013.CMsgVector\022\033\n\023decal_texture" +
      "_index\030\002 \001(\005\022\024\n\014entity_index\030\003 \001(\005\022\023\n\013mo" +
      "del_index\030\004 \001(\005\022\024\n\014low_priority\030\005 \001(\010\"9\n" +
      "\024CSVCMsg_GetCvarValue\022\016\n\006cookie\030\001 \001(\005\022\021\n" +
      "\tcvar_name\030\002 \001(\t*L\n\021VoiceDataFormat_t\022\032\n" +
      "\026VOICEDATA_FORMAT_STEAM\020\000\022\033\n\027VOICEDATA_F" +
      "ORMAT_ENGINE\020\001*B\n\016RequestPause_t\022\014\n\010RP_P",
      "AUSE\020\000\022\016\n\nRP_UNPAUSE\020\001\022\022\n\016RP_TOGGLEPAUSE" +
      "\020\002B6\n$skadistats.clarity.wire.common.pro" +
      "toB\013NetMessages\200\001\000"
    };
    com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner =
        new com.google.protobuf.Descriptors.FileDescriptor.    InternalDescriptorAssigner() {
          public com.google.protobuf.ExtensionRegistry assignDescriptors(
              com.google.protobuf.Descriptors.FileDescriptor root) {
            descriptor = root;
            return null;
          }
        };
    com.google.protobuf.Descriptors.FileDescriptor
      .internalBuildGeneratedFileFrom(descriptorData,
        new com.google.protobuf.Descriptors.FileDescriptor[] {
          skadistats.clarity.wire.common.proto.NetworkBaseTypes.getDescriptor(),
        }, assigner);
    internal_static_CCLCMsg_ClientInfo_descriptor =
      getDescriptor().getMessageTypes().get(0);
    internal_static_CCLCMsg_ClientInfo_fieldAccessorTable = new
      com.google.protobuf.GeneratedMessage.FieldAccessorTable(
        internal_static_CCLCMsg_ClientInfo_descriptor,
        new java.lang.String[] { "SendTableCrc", "ServerCount", "IsHltv", "IsReplay", "FriendsId", "FriendsName", });
    internal_static_CCLCMsg_Move_descriptor =
      getDescriptor().getMessageTypes().get(1);
    internal_static_CCLCMsg_Move_fieldAccessorTable = new
      com.google.protobuf.GeneratedMessage.FieldAccessorTable(
        internal_static_CCLCMsg_Move_descriptor,
        new java.lang.String[] { "NumBackupCommands", "NumNewCommands", "Data", "CommandNumber", "NumCommands", });
    internal_static_CMsgVoiceAudio_descriptor =
      getDescriptor().getMessageTypes().get(2);
    internal_static_CMsgVoiceAudio_fieldAccessorTable = new
      com.google.protobuf.GeneratedMessage.FieldAccessorTable(
        internal_static_CMsgVoiceAudio_descriptor,
        new java.lang.String[] { "Format", "VoiceData", "SequenceBytes", "SectionNumber", "SampleRate", "UncompressedSampleOffset", });
    internal_static_CCLCMsg_VoiceData_descriptor =
      getDescriptor().getMessageTypes().get(3);
    internal_static_CCLCMsg_VoiceData_fieldAccessorTable = new
      com.google.protobuf.GeneratedMessage.FieldAccessorTable(
        internal_static_CCLCMsg_VoiceData_descriptor,
        new java.lang.String[] { "Audio", "Xuid", "Tick", });
    internal_static_CCLCMsg_BaselineAck_descriptor =
      getDescriptor().getMessageTypes().get(4);
    internal_static_CCLCMsg_BaselineAck_fieldAccessorTable = new
      com.google.protobuf.GeneratedMessage.FieldAccessorTable(
        internal_static_CCLCMsg_BaselineAck_descriptor,
        new java.lang.String[] { "BaselineTick", "BaselineNr", });
    internal_static_CCLCMsg_ListenEvents_descriptor =
      getDescriptor().getMessageTypes().get(5);
    internal_static_CCLCMsg_ListenEvents_fieldAccessorTable = new
      com.google.protobuf.GeneratedMessage.FieldAccessorTable(
        internal_static_CCLCMsg_ListenEvents_descriptor,
        new java.lang.String[] { "EventMask", });
    internal_static_CCLCMsg_RespondCvarValue_descriptor =
      getDescriptor().getMessageTypes().get(6);
    internal_static_CCLCMsg_RespondCvarValue_fieldAccessorTable = new
      com.google.protobuf.GeneratedMessage.FieldAccessorTable(
        internal_static_CCLCMsg_RespondCvarValue_descriptor,
        new java.lang.String[] { "Cookie", "StatusCode", "Name", "Value", });
    internal_static_CCLCMsg_FileCRCCheck_descriptor =
      getDescriptor().getMessageTypes().get(7);
    internal_static_CCLCMsg_FileCRCCheck_fieldAccessorTable = new
      com.google.protobuf.GeneratedMessage.FieldAccessorTable(
        internal_static_CCLCMsg_FileCRCCheck_descriptor,
        new java.lang.String[] { "CodePath", "Path", "CodeFilename", "Filename", "Crc", });
    internal_static_CCLCMsg_LoadingProgress_descriptor =
      getDescriptor().getMessageTypes().get(8);
    internal_static_CCLCMsg_LoadingProgress_fieldAccessorTable = new
      com.google.protobuf.GeneratedMessage.FieldAccessorTable(
        internal_static_CCLCMsg_LoadingProgress_descriptor,
        new java.lang.String[] { "Progress", });
    internal_static_CCLCMsg_SplitPlayerConnect_descriptor =
      getDescriptor().getMessageTypes().get(9);
    internal_static_CCLCMsg_SplitPlayerConnect_fieldAccessorTable = new
      com.google.protobuf.GeneratedMessage.FieldAccessorTable(
        internal_static_CCLCMsg_SplitPlayerConnect_descriptor,
        new java.lang.String[] { "Playername", });
    internal_static_CCLCMsg_ClientMessage_descriptor =
      getDescriptor().getMessageTypes().get(10);
    internal_static_CCLCMsg_ClientMessage_fieldAccessorTable = new
      com.google.protobuf.GeneratedMessage.FieldAccessorTable(
        internal_static_CCLCMsg_ClientMessage_descriptor,
        new java.lang.String[] { "MsgType", "Data", });
    internal_static_CCLCMsg_SplitPlayerDisconnect_descriptor =
      getDescriptor().getMessageTypes().get(11);
    internal_static_CCLCMsg_SplitPlayerDisconnect_fieldAccessorTable = new
      com.google.protobuf.GeneratedMessage.FieldAccessorTable(
        internal_static_CCLCMsg_SplitPlayerDisconnect_descriptor,
        new java.lang.String[] { "Slot", });
    internal_static_CCLCMsg_ServerStatus_descriptor =
      getDescriptor().getMessageTypes().get(12);
    internal_static_CCLCMsg_ServerStatus_fieldAccessorTable = new
      com.google.protobuf.GeneratedMessage.FieldAccessorTable(
        internal_static_CCLCMsg_ServerStatus_descriptor,
        new java.lang.String[] { "Simplified", });
    internal_static_CCLCMsg_ServerPing_descriptor =
      getDescriptor().getMessageTypes().get(13);
    internal_static_CCLCMsg_ServerPing_fieldAccessorTable = new
      com.google.protobuf.GeneratedMessage.FieldAccessorTable(
        internal_static_CCLCMsg_ServerPing_descriptor,
        new java.lang.String[] { });
    internal_static_CCLCMsg_RequestPause_descriptor =
      getDescriptor().getMessageTypes().get(14);
    internal_static_CCLCMsg_RequestPause_fieldAccessorTable = new
      com.google.protobuf.GeneratedMessage.FieldAccessorTable(
        internal_static_CCLCMsg_RequestPause_descriptor,
        new java.lang.String[] { "PauseType", "PauseGroup", });
    internal_static_CCLCMsg_CmdKeyValues_descriptor =
      getDescriptor().getMessageTypes().get(15);
    internal_static_CCLCMsg_CmdKeyValues_fieldAccessorTable = new
      com.google.protobuf.GeneratedMessage.FieldAccessorTable(
        internal_static_CCLCMsg_CmdKeyValues_descriptor,
        new java.lang.String[] { "Data", });
    internal_static_CSVCMsg_GameEventList_descriptor =
      getDescriptor().getMessageTypes().get(16);
    internal_static_CSVCMsg_GameEventList_fieldAccessorTable = new
      com.google.protobuf.GeneratedMessage.FieldAccessorTable(
        internal_static_CSVCMsg_GameEventList_descriptor,
        new java.lang.String[] { "Descriptors", });
    internal_static_CSVCMsg_GameEventList_key_t_descriptor =
      internal_static_CSVCMsg_GameEventList_descriptor.getNestedTypes().get(0);
    internal_static_CSVCMsg_GameEventList_key_t_fieldAccessorTable = new
      com.google.protobuf.GeneratedMessage.FieldAccessorTable(
        internal_static_CSVCMsg_GameEventList_key_t_descriptor,
        new java.lang.String[] { "Type", "Name", });
    internal_static_CSVCMsg_GameEventList_descriptor_t_descriptor =
      internal_static_CSVCMsg_GameEventList_descriptor.getNestedTypes().get(1);
    internal_static_CSVCMsg_GameEventList_descriptor_t_fieldAccessorTable = new
      com.google.protobuf.GeneratedMessage.FieldAccessorTable(
        internal_static_CSVCMsg_GameEventList_descriptor_t_descriptor,
        new java.lang.String[] { "Eventid", "Name", "Keys", });
    internal_static_CSVCMsg_PacketEntities_descriptor =
      getDescriptor().getMessageTypes().get(17);
    internal_static_CSVCMsg_PacketEntities_fieldAccessorTable = new
      com.google.protobuf.GeneratedMessage.FieldAccessorTable(
        internal_static_CSVCMsg_PacketEntities_descriptor,
        new java.lang.String[] { "MaxEntries", "UpdatedEntries", "IsDelta", "UpdateBaseline", "Baseline", "DeltaFrom", "EntityData", "PendingFullFrame", "ActiveSpawngroupHandle", "MaxSpawngroupCreationsequence", "LastCmdNumber", });
    internal_static_CSVCMsg_ServerInfo_descriptor =
      getDescriptor().getMessageTypes().get(18);
    internal_static_CSVCMsg_ServerInfo_fieldAccessorTable = new
      com.google.protobuf.GeneratedMessage.FieldAccessorTable(
        internal_static_CSVCMsg_ServerInfo_descriptor,
        new java.lang.String[] { "Protocol", "ServerCount", "IsDedicated", "IsHltv", "IsReplay", "COs", "MapCrc", "ClientCrc", "StringTableCrc", "MaxClients", "MaxClasses", "PlayerSlot", "TickInterval", "GameDir", "MapName", "SkyName", "HostName", "AddonName", "GameSessionConfig", "GameSessionManifest", });
    internal_static_CSVCMsg_ClassInfo_descriptor =
      getDescriptor().getMessageTypes().get(19);
    internal_static_CSVCMsg_ClassInfo_fieldAccessorTable = new
      com.google.protobuf.GeneratedMessage.FieldAccessorTable(
        internal_static_CSVCMsg_ClassInfo_descriptor,
        new java.lang.String[] { "CreateOnClient", "Classes", });
    internal_static_CSVCMsg_ClassInfo_class_t_descriptor =
      internal_static_CSVCMsg_ClassInfo_descriptor.getNestedTypes().get(0);
    internal_static_CSVCMsg_ClassInfo_class_t_fieldAccessorTable = new
      com.google.protobuf.GeneratedMessage.FieldAccessorTable(
        internal_static_CSVCMsg_ClassInfo_class_t_descriptor,
        new java.lang.String[] { "ClassId", "DataTableName", "ClassName", });
    internal_static_CSVCMsg_SetView_descriptor =
      getDescriptor().getMessageTypes().get(20);
    internal_static_CSVCMsg_SetView_fieldAccessorTable = new
      com.google.protobuf.GeneratedMessage.FieldAccessorTable(
        internal_static_CSVCMsg_SetView_descriptor,
        new java.lang.String[] { "EntityIndex", "Slot", });
    internal_static_CSVCMsg_Print_descriptor =
      getDescriptor().getMessageTypes().get(21);
    internal_static_CSVCMsg_Print_fieldAccessorTable = new
      com.google.protobuf.GeneratedMessage.FieldAccessorTable(
        internal_static_CSVCMsg_Print_descriptor,
        new java.lang.String[] { "Text", });
    internal_static_CSVCMsg_VoiceInit_descriptor =
      getDescriptor().getMessageTypes().get(22);
    internal_static_CSVCMsg_VoiceInit_fieldAccessorTable = new
      com.google.protobuf.GeneratedMessage.FieldAccessorTable(
        internal_static_CSVCMsg_VoiceInit_descriptor,
        new java.lang.String[] { "Quality", "Codec", "Version", });
    internal_static_CSVCMsg_Sounds_descriptor =
      getDescriptor().getMessageTypes().get(23);
    internal_static_CSVCMsg_Sounds_fieldAccessorTable = new
      com.google.protobuf.GeneratedMessage.FieldAccessorTable(
        internal_static_CSVCMsg_Sounds_descriptor,
        new java.lang.String[] { "ReliableSound", "Sounds", });
    internal_static_CSVCMsg_Sounds_sounddata_t_descriptor =
      internal_static_CSVCMsg_Sounds_descriptor.getNestedTypes().get(0);
    internal_static_CSVCMsg_Sounds_sounddata_t_fieldAccessorTable = new
      com.google.protobuf.GeneratedMessage.FieldAccessorTable(
        internal_static_CSVCMsg_Sounds_sounddata_t_descriptor,
        new java.lang.String[] { "OriginX", "OriginY", "OriginZ", "Volume", "DelayValue", "SequenceNumber", "EntityIndex", "Channel", "Pitch", "Flags", "SoundNum", "SoundNumHandle", "SpeakerEntity", "RandomSeed", "SoundLevel", "IsSentence", "IsAmbient", "Guid", "SoundResourceId", });
    internal_static_CSVCMsg_UpdateStringTable_descriptor =
      getDescriptor().getMessageTypes().get(24);
    internal_static_CSVCMsg_UpdateStringTable_fieldAccessorTable = new
      com.google.protobuf.GeneratedMessage.FieldAccessorTable(
        internal_static_CSVCMsg_UpdateStringTable_descriptor,
        new java.lang.String[] { "TableId", "NumChangedEntries", "StringData", });
    internal_static_CSVCMsg_FullFrameSplit_descriptor =
      getDescriptor().getMessageTypes().get(25);
    internal_static_CSVCMsg_FullFrameSplit_fieldAccessorTable = new
      com.google.protobuf.GeneratedMessage.FieldAccessorTable(
        internal_static_CSVCMsg_FullFrameSplit_descriptor,
        new java.lang.String[] { "Tick", "Section", "Total", "Data", });
    internal_static_CSVCMsg_BSPDecal_descriptor =
      getDescriptor().getMessageTypes().get(26);
    internal_static_CSVCMsg_BSPDecal_fieldAccessorTable = new
      com.google.protobuf.GeneratedMessage.FieldAccessorTable(
        internal_static_CSVCMsg_BSPDecal_descriptor,
        new java.lang.String[] { "Pos", "DecalTextureIndex", "EntityIndex", "ModelIndex", "LowPriority", });
    internal_static_CSVCMsg_GetCvarValue_descriptor =
      getDescriptor().getMessageTypes().get(27);
    internal_static_CSVCMsg_GetCvarValue_fieldAccessorTable = new
      com.google.protobuf.GeneratedMessage.FieldAccessorTable(
        internal_static_CSVCMsg_GetCvarValue_descriptor,
        new java.lang.String[] { "Cookie", "CvarName", });
    skadistats.clarity.wire.common.proto.NetworkBaseTypes.getDescriptor();
  }

  // @@protoc_insertion_point(outer_class_scope)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy