package o; import android.os.Parcel; import android.os.Parcelable; /* loaded from: classes3.dex */ public class WO implements Parcelable { public static final Parcelable.Creator CREATOR = new Parcelable.Creator() { // from class: o.WO.4 @Override // android.os.Parcelable.Creator public final /* synthetic */ WO createFromParcel(Parcel parcel) { return new WO(parcel); } @Override // android.os.Parcelable.Creator public final /* bridge */ /* synthetic */ WO[] newArray(int i) { return new WO[i]; } }; public String a; public String b; public String c; public String d; public String e; public String f; public String g; public String h; public String i; public String j; private String l; public String m; @Override // android.os.Parcelable public int describeContents() { return 0; } public WO() { } protected WO(Parcel parcel) { this.m = parcel.readString(); this.c = parcel.readString(); this.j = parcel.readString(); this.h = parcel.readString(); this.f = parcel.readString(); this.g = parcel.readString(); this.d = parcel.readString(); this.a = parcel.readString(); this.i = parcel.readString(); this.b = parcel.readString(); this.e = parcel.readString(); this.l = parcel.readString(); } @Override // android.os.Parcelable public void writeToParcel(Parcel parcel, int i) { parcel.writeString(this.m); parcel.writeString(this.c); parcel.writeString(this.j); parcel.writeString(this.h); parcel.writeString(this.f); parcel.writeString(this.g); parcel.writeString(this.d); parcel.writeString(this.a); parcel.writeString(this.i); parcel.writeString(this.b); parcel.writeString(this.e); parcel.writeString(this.l); } public static WO c() { return new WO(); } public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null || getClass() != obj.getClass()) { return false; } WO wo = (WO) obj; String str = this.m; if (str == null ? wo.m != null : !str.equals(wo.m)) { return false; } String str2 = this.c; if (str2 == null ? wo.c != null : !str2.equals(wo.c)) { return false; } String str3 = this.j; if (str3 == null ? wo.j != null : !str3.equals(wo.j)) { return false; } String str4 = this.h; if (str4 == null ? wo.h != null : !str4.equals(wo.h)) { return false; } String str5 = this.f; if (str5 == null ? wo.f != null : !str5.equals(wo.f)) { return false; } String str6 = this.g; if (str6 == null ? wo.g != null : !str6.equals(wo.g)) { return false; } String str7 = this.d; if (str7 == null ? wo.d != null : !str7.equals(wo.d)) { return false; } String str8 = this.a; if (str8 == null ? wo.a != null : !str8.equals(wo.a)) { return false; } String str9 = this.i; if (str9 == null ? wo.i != null : !str9.equals(wo.i)) { return false; } String str10 = this.b; if (str10 == null ? wo.b != null : !str10.equals(wo.b)) { return false; } String str11 = this.e; if (str11 == null ? wo.e != null : !str11.equals(wo.e)) { return false; } String str12 = this.l; String str13 = wo.l; return str12 != null ? str12.equals(str13) : str13 == null; } public int hashCode() { String str = this.m; int hashCode = str != null ? str.hashCode() : 0; String str2 = this.c; int hashCode2 = str2 != null ? str2.hashCode() : 0; String str3 = this.j; int hashCode3 = str3 != null ? str3.hashCode() : 0; String str4 = this.h; int hashCode4 = str4 != null ? str4.hashCode() : 0; String str5 = this.f; int hashCode5 = str5 != null ? str5.hashCode() : 0; String str6 = this.g; int hashCode6 = str6 != null ? str6.hashCode() : 0; String str7 = this.d; int hashCode7 = str7 != null ? str7.hashCode() : 0; String str8 = this.a; int hashCode8 = str8 != null ? str8.hashCode() : 0; String str9 = this.i; int hashCode9 = str9 != null ? str9.hashCode() : 0; String str10 = this.b; int hashCode10 = str10 != null ? str10.hashCode() : 0; String str11 = this.e; int hashCode11 = str11 != null ? str11.hashCode() : 0; String str12 = this.l; return (((((((((((((((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + hashCode7) * 31) + hashCode8) * 31) + hashCode9) * 31) + hashCode10) * 31) + hashCode11) * 31) + (str12 != null ? str12.hashCode() : 0); } }