- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
383 lines
16 KiB
Java
383 lines
16 KiB
Java
package gatewayprotocol.v1;
|
|
|
|
import com.google.protobuf.ByteString;
|
|
import com.google.protobuf.CodedInputStream;
|
|
import com.google.protobuf.ExtensionRegistryLite;
|
|
import com.google.protobuf.GeneratedMessageLite;
|
|
import com.google.protobuf.InvalidProtocolBufferException;
|
|
import com.google.protobuf.MessageLiteOrBuilder;
|
|
import com.google.protobuf.Parser;
|
|
import java.io.IOException;
|
|
import java.io.InputStream;
|
|
import java.nio.ByteBuffer;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public final class GetTokenEventRequestOuterClass {
|
|
|
|
public interface GetTokenEventRequestOrBuilder extends MessageLiteOrBuilder {
|
|
ByteString getBanner();
|
|
|
|
ByteString getInterstitial();
|
|
|
|
ByteString getRewarded();
|
|
|
|
ByteString getTokenId();
|
|
|
|
boolean hasBanner();
|
|
|
|
boolean hasInterstitial();
|
|
|
|
boolean hasRewarded();
|
|
}
|
|
|
|
public static void registerAllExtensions(ExtensionRegistryLite extensionRegistryLite) {
|
|
}
|
|
|
|
private GetTokenEventRequestOuterClass() {
|
|
}
|
|
|
|
public static final class GetTokenEventRequest extends GeneratedMessageLite<GetTokenEventRequest, Builder> implements GetTokenEventRequestOrBuilder {
|
|
public static final int BANNER_FIELD_NUMBER = 3;
|
|
private static final GetTokenEventRequest DEFAULT_INSTANCE;
|
|
public static final int INTERSTITIAL_FIELD_NUMBER = 2;
|
|
private static volatile Parser<GetTokenEventRequest> PARSER = null;
|
|
public static final int REWARDED_FIELD_NUMBER = 1;
|
|
public static final int TOKEN_ID_FIELD_NUMBER = 4;
|
|
private ByteString banner_;
|
|
private int bitField0_;
|
|
private ByteString interstitial_;
|
|
private ByteString rewarded_;
|
|
private ByteString tokenId_;
|
|
|
|
public static GetTokenEventRequest getDefaultInstance() {
|
|
return DEFAULT_INSTANCE;
|
|
}
|
|
|
|
@Override // gatewayprotocol.v1.GetTokenEventRequestOuterClass.GetTokenEventRequestOrBuilder
|
|
public ByteString getBanner() {
|
|
return this.banner_;
|
|
}
|
|
|
|
@Override // gatewayprotocol.v1.GetTokenEventRequestOuterClass.GetTokenEventRequestOrBuilder
|
|
public ByteString getInterstitial() {
|
|
return this.interstitial_;
|
|
}
|
|
|
|
@Override // gatewayprotocol.v1.GetTokenEventRequestOuterClass.GetTokenEventRequestOrBuilder
|
|
public ByteString getRewarded() {
|
|
return this.rewarded_;
|
|
}
|
|
|
|
@Override // gatewayprotocol.v1.GetTokenEventRequestOuterClass.GetTokenEventRequestOrBuilder
|
|
public ByteString getTokenId() {
|
|
return this.tokenId_;
|
|
}
|
|
|
|
@Override // gatewayprotocol.v1.GetTokenEventRequestOuterClass.GetTokenEventRequestOrBuilder
|
|
public boolean hasBanner() {
|
|
return (this.bitField0_ & 4) != 0;
|
|
}
|
|
|
|
@Override // gatewayprotocol.v1.GetTokenEventRequestOuterClass.GetTokenEventRequestOrBuilder
|
|
public boolean hasInterstitial() {
|
|
return (this.bitField0_ & 2) != 0;
|
|
}
|
|
|
|
@Override // gatewayprotocol.v1.GetTokenEventRequestOuterClass.GetTokenEventRequestOrBuilder
|
|
public boolean hasRewarded() {
|
|
return (this.bitField0_ & 1) != 0;
|
|
}
|
|
|
|
private GetTokenEventRequest() {
|
|
ByteString byteString = ByteString.EMPTY;
|
|
this.rewarded_ = byteString;
|
|
this.interstitial_ = byteString;
|
|
this.banner_ = byteString;
|
|
this.tokenId_ = byteString;
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void setRewarded(ByteString byteString) {
|
|
byteString.getClass();
|
|
this.bitField0_ |= 1;
|
|
this.rewarded_ = byteString;
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void clearRewarded() {
|
|
this.bitField0_ &= -2;
|
|
this.rewarded_ = getDefaultInstance().getRewarded();
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void setInterstitial(ByteString byteString) {
|
|
byteString.getClass();
|
|
this.bitField0_ |= 2;
|
|
this.interstitial_ = byteString;
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void clearInterstitial() {
|
|
this.bitField0_ &= -3;
|
|
this.interstitial_ = getDefaultInstance().getInterstitial();
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void setBanner(ByteString byteString) {
|
|
byteString.getClass();
|
|
this.bitField0_ |= 4;
|
|
this.banner_ = byteString;
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void clearBanner() {
|
|
this.bitField0_ &= -5;
|
|
this.banner_ = getDefaultInstance().getBanner();
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void setTokenId(ByteString byteString) {
|
|
byteString.getClass();
|
|
this.tokenId_ = byteString;
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public void clearTokenId() {
|
|
this.tokenId_ = getDefaultInstance().getTokenId();
|
|
}
|
|
|
|
public static GetTokenEventRequest parseFrom(ByteBuffer byteBuffer) throws InvalidProtocolBufferException {
|
|
return (GetTokenEventRequest) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, byteBuffer);
|
|
}
|
|
|
|
public static GetTokenEventRequest parseFrom(ByteBuffer byteBuffer, ExtensionRegistryLite extensionRegistryLite) throws InvalidProtocolBufferException {
|
|
return (GetTokenEventRequest) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, byteBuffer, extensionRegistryLite);
|
|
}
|
|
|
|
public static GetTokenEventRequest parseFrom(ByteString byteString) throws InvalidProtocolBufferException {
|
|
return (GetTokenEventRequest) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, byteString);
|
|
}
|
|
|
|
public static GetTokenEventRequest parseFrom(ByteString byteString, ExtensionRegistryLite extensionRegistryLite) throws InvalidProtocolBufferException {
|
|
return (GetTokenEventRequest) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, byteString, extensionRegistryLite);
|
|
}
|
|
|
|
public static GetTokenEventRequest parseFrom(byte[] bArr) throws InvalidProtocolBufferException {
|
|
return (GetTokenEventRequest) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, bArr);
|
|
}
|
|
|
|
public static GetTokenEventRequest parseFrom(byte[] bArr, ExtensionRegistryLite extensionRegistryLite) throws InvalidProtocolBufferException {
|
|
return (GetTokenEventRequest) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, bArr, extensionRegistryLite);
|
|
}
|
|
|
|
public static GetTokenEventRequest parseFrom(InputStream inputStream) throws IOException {
|
|
return (GetTokenEventRequest) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, inputStream);
|
|
}
|
|
|
|
public static GetTokenEventRequest parseFrom(InputStream inputStream, ExtensionRegistryLite extensionRegistryLite) throws IOException {
|
|
return (GetTokenEventRequest) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, inputStream, extensionRegistryLite);
|
|
}
|
|
|
|
public static GetTokenEventRequest parseDelimitedFrom(InputStream inputStream) throws IOException {
|
|
return (GetTokenEventRequest) GeneratedMessageLite.parseDelimitedFrom(DEFAULT_INSTANCE, inputStream);
|
|
}
|
|
|
|
public static GetTokenEventRequest parseDelimitedFrom(InputStream inputStream, ExtensionRegistryLite extensionRegistryLite) throws IOException {
|
|
return (GetTokenEventRequest) GeneratedMessageLite.parseDelimitedFrom(DEFAULT_INSTANCE, inputStream, extensionRegistryLite);
|
|
}
|
|
|
|
public static GetTokenEventRequest parseFrom(CodedInputStream codedInputStream) throws IOException {
|
|
return (GetTokenEventRequest) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, codedInputStream);
|
|
}
|
|
|
|
public static GetTokenEventRequest parseFrom(CodedInputStream codedInputStream, ExtensionRegistryLite extensionRegistryLite) throws IOException {
|
|
return (GetTokenEventRequest) GeneratedMessageLite.parseFrom(DEFAULT_INSTANCE, codedInputStream, extensionRegistryLite);
|
|
}
|
|
|
|
public static Builder newBuilder() {
|
|
return DEFAULT_INSTANCE.createBuilder();
|
|
}
|
|
|
|
public static Builder newBuilder(GetTokenEventRequest getTokenEventRequest) {
|
|
return DEFAULT_INSTANCE.createBuilder(getTokenEventRequest);
|
|
}
|
|
|
|
public static final class Builder extends GeneratedMessageLite.Builder<GetTokenEventRequest, Builder> implements GetTokenEventRequestOrBuilder {
|
|
public /* synthetic */ Builder(AnonymousClass1 anonymousClass1) {
|
|
this();
|
|
}
|
|
|
|
private Builder() {
|
|
super(GetTokenEventRequest.DEFAULT_INSTANCE);
|
|
}
|
|
|
|
@Override // gatewayprotocol.v1.GetTokenEventRequestOuterClass.GetTokenEventRequestOrBuilder
|
|
public boolean hasRewarded() {
|
|
return ((GetTokenEventRequest) this.instance).hasRewarded();
|
|
}
|
|
|
|
@Override // gatewayprotocol.v1.GetTokenEventRequestOuterClass.GetTokenEventRequestOrBuilder
|
|
public ByteString getRewarded() {
|
|
return ((GetTokenEventRequest) this.instance).getRewarded();
|
|
}
|
|
|
|
public Builder setRewarded(ByteString byteString) {
|
|
copyOnWrite();
|
|
((GetTokenEventRequest) this.instance).setRewarded(byteString);
|
|
return this;
|
|
}
|
|
|
|
public Builder clearRewarded() {
|
|
copyOnWrite();
|
|
((GetTokenEventRequest) this.instance).clearRewarded();
|
|
return this;
|
|
}
|
|
|
|
@Override // gatewayprotocol.v1.GetTokenEventRequestOuterClass.GetTokenEventRequestOrBuilder
|
|
public boolean hasInterstitial() {
|
|
return ((GetTokenEventRequest) this.instance).hasInterstitial();
|
|
}
|
|
|
|
@Override // gatewayprotocol.v1.GetTokenEventRequestOuterClass.GetTokenEventRequestOrBuilder
|
|
public ByteString getInterstitial() {
|
|
return ((GetTokenEventRequest) this.instance).getInterstitial();
|
|
}
|
|
|
|
public Builder setInterstitial(ByteString byteString) {
|
|
copyOnWrite();
|
|
((GetTokenEventRequest) this.instance).setInterstitial(byteString);
|
|
return this;
|
|
}
|
|
|
|
public Builder clearInterstitial() {
|
|
copyOnWrite();
|
|
((GetTokenEventRequest) this.instance).clearInterstitial();
|
|
return this;
|
|
}
|
|
|
|
@Override // gatewayprotocol.v1.GetTokenEventRequestOuterClass.GetTokenEventRequestOrBuilder
|
|
public boolean hasBanner() {
|
|
return ((GetTokenEventRequest) this.instance).hasBanner();
|
|
}
|
|
|
|
@Override // gatewayprotocol.v1.GetTokenEventRequestOuterClass.GetTokenEventRequestOrBuilder
|
|
public ByteString getBanner() {
|
|
return ((GetTokenEventRequest) this.instance).getBanner();
|
|
}
|
|
|
|
public Builder setBanner(ByteString byteString) {
|
|
copyOnWrite();
|
|
((GetTokenEventRequest) this.instance).setBanner(byteString);
|
|
return this;
|
|
}
|
|
|
|
public Builder clearBanner() {
|
|
copyOnWrite();
|
|
((GetTokenEventRequest) this.instance).clearBanner();
|
|
return this;
|
|
}
|
|
|
|
@Override // gatewayprotocol.v1.GetTokenEventRequestOuterClass.GetTokenEventRequestOrBuilder
|
|
public ByteString getTokenId() {
|
|
return ((GetTokenEventRequest) this.instance).getTokenId();
|
|
}
|
|
|
|
public Builder setTokenId(ByteString byteString) {
|
|
copyOnWrite();
|
|
((GetTokenEventRequest) this.instance).setTokenId(byteString);
|
|
return this;
|
|
}
|
|
|
|
public Builder clearTokenId() {
|
|
copyOnWrite();
|
|
((GetTokenEventRequest) this.instance).clearTokenId();
|
|
return this;
|
|
}
|
|
}
|
|
|
|
@Override // com.google.protobuf.GeneratedMessageLite
|
|
public final Object dynamicMethod(GeneratedMessageLite.MethodToInvoke methodToInvoke, Object obj, Object obj2) {
|
|
AnonymousClass1 anonymousClass1 = null;
|
|
switch (AnonymousClass1.$SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[methodToInvoke.ordinal()]) {
|
|
case 1:
|
|
return new GetTokenEventRequest();
|
|
case 2:
|
|
return new Builder(anonymousClass1);
|
|
case 3:
|
|
return GeneratedMessageLite.newMessageInfo(DEFAULT_INSTANCE, "\u0000\u0004\u0000\u0001\u0001\u0004\u0004\u0000\u0000\u0000\u0001ည\u0000\u0002ည\u0001\u0003ည\u0002\u0004\n", new Object[]{"bitField0_", "rewarded_", "interstitial_", "banner_", "tokenId_"});
|
|
case 4:
|
|
return DEFAULT_INSTANCE;
|
|
case 5:
|
|
Parser<GetTokenEventRequest> parser = PARSER;
|
|
if (parser == null) {
|
|
synchronized (GetTokenEventRequest.class) {
|
|
try {
|
|
parser = PARSER;
|
|
if (parser == null) {
|
|
parser = new GeneratedMessageLite.DefaultInstanceBasedParser<>(DEFAULT_INSTANCE);
|
|
PARSER = parser;
|
|
}
|
|
} finally {
|
|
}
|
|
}
|
|
}
|
|
return parser;
|
|
case 6:
|
|
return (byte) 1;
|
|
case 7:
|
|
return null;
|
|
default:
|
|
throw new UnsupportedOperationException();
|
|
}
|
|
}
|
|
|
|
static {
|
|
GetTokenEventRequest getTokenEventRequest = new GetTokenEventRequest();
|
|
DEFAULT_INSTANCE = getTokenEventRequest;
|
|
GeneratedMessageLite.registerDefaultInstance(GetTokenEventRequest.class, getTokenEventRequest);
|
|
}
|
|
|
|
public static Parser<GetTokenEventRequest> parser() {
|
|
return DEFAULT_INSTANCE.getParserForType();
|
|
}
|
|
}
|
|
|
|
/* renamed from: gatewayprotocol.v1.GetTokenEventRequestOuterClass$1, reason: invalid class name */
|
|
public static /* synthetic */ class AnonymousClass1 {
|
|
public static final /* synthetic */ int[] $SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke;
|
|
|
|
static {
|
|
int[] iArr = new int[GeneratedMessageLite.MethodToInvoke.values().length];
|
|
$SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke = iArr;
|
|
try {
|
|
iArr[GeneratedMessageLite.MethodToInvoke.NEW_MUTABLE_INSTANCE.ordinal()] = 1;
|
|
} catch (NoSuchFieldError unused) {
|
|
}
|
|
try {
|
|
$SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[GeneratedMessageLite.MethodToInvoke.NEW_BUILDER.ordinal()] = 2;
|
|
} catch (NoSuchFieldError unused2) {
|
|
}
|
|
try {
|
|
$SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[GeneratedMessageLite.MethodToInvoke.BUILD_MESSAGE_INFO.ordinal()] = 3;
|
|
} catch (NoSuchFieldError unused3) {
|
|
}
|
|
try {
|
|
$SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[GeneratedMessageLite.MethodToInvoke.GET_DEFAULT_INSTANCE.ordinal()] = 4;
|
|
} catch (NoSuchFieldError unused4) {
|
|
}
|
|
try {
|
|
$SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[GeneratedMessageLite.MethodToInvoke.GET_PARSER.ordinal()] = 5;
|
|
} catch (NoSuchFieldError unused5) {
|
|
}
|
|
try {
|
|
$SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[GeneratedMessageLite.MethodToInvoke.GET_MEMOIZED_IS_INITIALIZED.ordinal()] = 6;
|
|
} catch (NoSuchFieldError unused6) {
|
|
}
|
|
try {
|
|
$SwitchMap$com$google$protobuf$GeneratedMessageLite$MethodToInvoke[GeneratedMessageLite.MethodToInvoke.SET_MEMOIZED_IS_INITIALIZED.ordinal()] = 7;
|
|
} catch (NoSuchFieldError unused7) {
|
|
}
|
|
}
|
|
}
|
|
}
|