Files
rr3-apk/decompiled/sources/com/applovin/impl/e3.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

92 lines
2.9 KiB
Java

package com.applovin.impl;
import android.os.Parcel;
import android.os.Parcelable;
import com.ironsource.mediationsdk.logger.IronSourceError;
import com.mbridge.msdk.playercommon.exoplayer2.metadata.id3.ChapterFrame;
import java.util.Arrays;
/* loaded from: classes.dex */
public final class e3 extends ya {
public static final Parcelable.Creator<e3> CREATOR = new a();
public final String b;
public final int c;
public final int d;
public final long f;
public final long g;
private final ya[] h;
@Override // com.applovin.impl.ya, android.os.Parcelable
public int describeContents() {
return 0;
}
public e3(Parcel parcel) {
super(ChapterFrame.ID);
this.b = (String) xp.a((Object) parcel.readString());
this.c = parcel.readInt();
this.d = parcel.readInt();
this.f = parcel.readLong();
this.g = parcel.readLong();
int readInt = parcel.readInt();
this.h = new ya[readInt];
for (int i = 0; i < readInt; i++) {
this.h[i] = (ya) parcel.readParcelable(ya.class.getClassLoader());
}
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || e3.class != obj.getClass()) {
return false;
}
e3 e3Var = (e3) obj;
return this.c == e3Var.c && this.d == e3Var.d && this.f == e3Var.f && this.g == e3Var.g && xp.a((Object) this.b, (Object) e3Var.b) && Arrays.equals(this.h, e3Var.h);
}
public int hashCode() {
int i = (((((((this.c + IronSourceError.ERROR_NON_EXISTENT_INSTANCE) * 31) + this.d) * 31) + ((int) this.f)) * 31) + ((int) this.g)) * 31;
String str = this.b;
return i + (str != null ? str.hashCode() : 0);
}
@Override // android.os.Parcelable
public void writeToParcel(Parcel parcel, int i) {
parcel.writeString(this.b);
parcel.writeInt(this.c);
parcel.writeInt(this.d);
parcel.writeLong(this.f);
parcel.writeLong(this.g);
parcel.writeInt(this.h.length);
for (ya yaVar : this.h) {
parcel.writeParcelable(yaVar, 0);
}
}
public e3(String str, int i, int i2, long j, long j2, ya[] yaVarArr) {
super(ChapterFrame.ID);
this.b = str;
this.c = i;
this.d = i2;
this.f = j;
this.g = j2;
this.h = yaVarArr;
}
public class a implements Parcelable.Creator {
@Override // android.os.Parcelable.Creator
/* renamed from: a, reason: merged with bridge method [inline-methods] */
public e3[] newArray(int i) {
return new e3[i];
}
@Override // android.os.Parcelable.Creator
/* renamed from: a, reason: merged with bridge method [inline-methods] */
public e3 createFromParcel(Parcel parcel) {
return new e3(parcel);
}
}
}