package o; import android.os.Parcel; import android.os.Parcelable; /* loaded from: classes3.dex */ public class XP implements Parcelable { public static final Parcelable.Creator CREATOR = new Parcelable.Creator() { // from class: o.XP.1 @Override // android.os.Parcelable.Creator public final /* synthetic */ XP createFromParcel(Parcel parcel) { return new XP(parcel); } @Override // android.os.Parcelable.Creator public final /* bridge */ /* synthetic */ XP[] newArray(int i) { return new XP[i]; } }; public String a; public String b; public String c; public String d; public Double e; public String i; @Override // android.os.Parcelable public int describeContents() { return 0; } public XP() { } protected XP(Parcel parcel) { this.i = parcel.readString(); this.d = parcel.readString(); this.a = parcel.readString(); this.b = parcel.readString(); this.c = parcel.readString(); } public static XP a() { return new XP(); } @Override // android.os.Parcelable public void writeToParcel(Parcel parcel, int i) { parcel.writeString(this.i); parcel.writeString(this.d); parcel.writeString(this.a); parcel.writeString(this.b); parcel.writeString(this.c); } public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null || getClass() != obj.getClass()) { return false; } XP xp = (XP) obj; String str = this.i; if (str == null ? xp.i != null : !str.equals(xp.i)) { return false; } String str2 = this.d; if (str2 == null ? xp.d != null : !str2.equals(xp.d)) { return false; } String str3 = this.a; if (str3 == null ? xp.a != null : !str3.equals(xp.a)) { return false; } String str4 = this.b; if (str4 == null ? xp.b != null : !str4.equals(xp.b)) { return false; } Double d = this.e; if (d == null ? xp.e != null : !d.equals(xp.e)) { return false; } String str5 = this.c; String str6 = xp.c; return str5 != null ? str5.equals(str6) : str6 == null; } public int hashCode() { String str = this.i; int hashCode = str != null ? str.hashCode() : 0; String str2 = this.d; int hashCode2 = str2 != null ? str2.hashCode() : 0; String str3 = this.a; int hashCode3 = str3 != null ? str3.hashCode() : 0; String str4 = this.b; int hashCode4 = str4 != null ? str4.hashCode() : 0; Double d = this.e; int hashCode5 = d != null ? d.hashCode() : 0; String str5 = this.c; return (((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + (str5 != null ? str5.hashCode() : 0); } }