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