package o; import android.os.Parcel; import android.os.Parcelable; /* loaded from: classes3.dex */ public final class GU implements Parcelable { public static final Parcelable.Creator CREATOR = new IeS(); public String a; public boolean b; public String c; public String d; public boolean e; @Override // android.os.Parcelable public final int describeContents() { return 0; } public GU(String str, String str2, String str3, boolean z, boolean z2) { this.c = str; this.d = str2; this.a = str3; this.b = z; this.e = z2; } public /* synthetic */ GU(byte b) { this(null, null, null, false, false); } /* loaded from: classes3.dex */ public static final class IeS implements Parcelable.Creator { @Override // android.os.Parcelable.Creator public final /* synthetic */ GU createFromParcel(Parcel parcel) { C14957gcv.e(parcel, ""); return new GU(parcel.readString(), parcel.readString(), parcel.readString(), parcel.readInt() != 0, parcel.readInt() != 0); } @Override // android.os.Parcelable.Creator public final /* bridge */ /* synthetic */ GU[] newArray(int i) { return new GU[i]; } } @Override // android.os.Parcelable public final void writeToParcel(Parcel parcel, int i) { C14957gcv.e(parcel, ""); parcel.writeString(this.c); parcel.writeString(this.d); parcel.writeString(this.a); parcel.writeInt(this.b ? 1 : 0); parcel.writeInt(this.e ? 1 : 0); } public final String toString() { String str = this.c; String str2 = this.d; String str3 = this.a; boolean z = this.b; boolean z2 = this.e; StringBuilder sb = new StringBuilder("CycleMonthDisplay(monthNumber="); sb.append(str); sb.append(", month="); sb.append(str2); sb.append(", year="); sb.append(str3); sb.append(", enabled="); sb.append(z); sb.append(", isChecked="); sb.append(z2); sb.append(")"); return sb.toString(); } /* JADX WARN: Multi-variable type inference failed */ public final int hashCode() { String str = this.c; int hashCode = str == null ? 0 : str.hashCode(); String str2 = this.d; int hashCode2 = str2 == null ? 0 : str2.hashCode(); String str3 = this.a; int hashCode3 = str3 != null ? str3.hashCode() : 0; boolean z = this.b; int i = z; if (z != 0) { i = 1; } boolean z2 = this.e; return (((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + i) * 31) + (z2 ? 1 : z2 ? 1 : 0); } public final boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof GU)) { return false; } GU gu = (GU) obj; return C14957gcv.b((Object) this.c, (Object) gu.c) && C14957gcv.b((Object) this.d, (Object) gu.d) && C14957gcv.b((Object) this.a, (Object) gu.a) && this.b == gu.b && this.e == gu.e; } public GU() { this((byte) 0); } }