- 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
78 lines
2.3 KiB
Java
78 lines
2.3 KiB
Java
package com.applovin.impl;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
import com.ironsource.mediationsdk.logger.IronSourceError;
|
|
import java.util.Arrays;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class jf extends ya {
|
|
public static final Parcelable.Creator<jf> CREATOR = new a();
|
|
public final int b;
|
|
public final int c;
|
|
public final int d;
|
|
public final int[] f;
|
|
public final int[] g;
|
|
|
|
@Override // com.applovin.impl.ya, android.os.Parcelable
|
|
public int describeContents() {
|
|
return 0;
|
|
}
|
|
|
|
public jf(int i, int i2, int i3, int[] iArr, int[] iArr2) {
|
|
super("MLLT");
|
|
this.b = i;
|
|
this.c = i2;
|
|
this.d = i3;
|
|
this.f = iArr;
|
|
this.g = iArr2;
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (obj == null || jf.class != obj.getClass()) {
|
|
return false;
|
|
}
|
|
jf jfVar = (jf) obj;
|
|
return this.b == jfVar.b && this.c == jfVar.c && this.d == jfVar.d && Arrays.equals(this.f, jfVar.f) && Arrays.equals(this.g, jfVar.g);
|
|
}
|
|
|
|
public int hashCode() {
|
|
return ((((((((this.b + IronSourceError.ERROR_NON_EXISTENT_INSTANCE) * 31) + this.c) * 31) + this.d) * 31) + Arrays.hashCode(this.f)) * 31) + Arrays.hashCode(this.g);
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public void writeToParcel(Parcel parcel, int i) {
|
|
parcel.writeInt(this.b);
|
|
parcel.writeInt(this.c);
|
|
parcel.writeInt(this.d);
|
|
parcel.writeIntArray(this.f);
|
|
parcel.writeIntArray(this.g);
|
|
}
|
|
|
|
public jf(Parcel parcel) {
|
|
super("MLLT");
|
|
this.b = parcel.readInt();
|
|
this.c = parcel.readInt();
|
|
this.d = parcel.readInt();
|
|
this.f = (int[]) xp.a(parcel.createIntArray());
|
|
this.g = (int[]) xp.a(parcel.createIntArray());
|
|
}
|
|
|
|
public class a implements Parcelable.Creator {
|
|
@Override // android.os.Parcelable.Creator
|
|
/* renamed from: a, reason: merged with bridge method [inline-methods] */
|
|
public jf[] newArray(int i) {
|
|
return new jf[i];
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
/* renamed from: a, reason: merged with bridge method [inline-methods] */
|
|
public jf createFromParcel(Parcel parcel) {
|
|
return new jf(parcel);
|
|
}
|
|
}
|
|
}
|