package o; import android.os.Parcel; import android.os.Parcelable; /* renamed from: o.Li, reason: case insensitive filesystem */ /* loaded from: classes3.dex */ public final class C0649Li implements Parcelable { public static final Parcelable.Creator CREATOR = new Parcelable.Creator() { // from class: o.Li.3 @Override // android.os.Parcelable.Creator public final /* synthetic */ C0649Li createFromParcel(Parcel parcel) { return new C0649Li(parcel); } @Override // android.os.Parcelable.Creator public final /* bridge */ /* synthetic */ C0649Li[] newArray(int i) { return new C0649Li[i]; } }; public String a; public String b; private int c; public String d; public String e; @Override // android.os.Parcelable public final int describeContents() { return 0; } public C0649Li(String str, int i, String str2, String str3, String str4) { this.d = str; this.c = i; this.a = str2; this.b = str3; this.e = str4; } protected C0649Li(Parcel parcel) { this.d = parcel.readString(); this.c = parcel.readInt(); this.a = parcel.readString(); this.b = parcel.readString(); this.e = parcel.readString(); } @Override // android.os.Parcelable public final void writeToParcel(Parcel parcel, int i) { parcel.writeString(this.d); parcel.writeInt(this.c); parcel.writeString(this.a); parcel.writeString(this.b); parcel.writeString(this.e); } public final boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof C0649Li)) { return false; } C0649Li c0649Li = (C0649Li) obj; if (this.c != c0649Li.c) { return false; } String str = this.d; if (str == null ? c0649Li.d != null : !str.equals(c0649Li.d)) { return false; } String str2 = this.a; if (str2 == null ? c0649Li.a != null : !str2.equals(c0649Li.a)) { return false; } String str3 = this.b; if (str3 == null ? c0649Li.b != null : !str3.equals(c0649Li.b)) { return false; } String str4 = this.e; if (str4 != null) { return str4.equals(c0649Li.e); } return c0649Li.e == null; } public final int hashCode() { String str = this.d; int hashCode = str != null ? str.hashCode() : 0; int i = this.c; String str2 = this.a; int hashCode2 = str2 != null ? str2.hashCode() : 0; String str3 = this.b; int hashCode3 = str3 != null ? str3.hashCode() : 0; String str4 = this.e; return (((((((hashCode * 31) + i) * 31) + hashCode2) * 31) + hashCode3) * 31) + (str4 != null ? str4.hashCode() : 0); } }