package o; import android.os.Parcel; import android.os.Parcelable; /* loaded from: classes3.dex */ public final class FF implements Parcelable { public static final Parcelable.Creator CREATOR = new RVV(); public final String a; public final String b; public final boolean c; public final String d; public final boolean e; @Override // android.os.Parcelable public final int describeContents() { return 0; } public FF(boolean z, boolean z2, String str, String str2, String str3) { C14957gcv.e(str, ""); C14957gcv.e(str2, ""); this.c = z; this.e = z2; this.b = str; this.d = str2; this.a = str3; } /* loaded from: classes3.dex */ public static final class RVV implements Parcelable.Creator { @Override // android.os.Parcelable.Creator public final /* synthetic */ FF createFromParcel(Parcel parcel) { C14957gcv.e(parcel, ""); return new FF(parcel.readInt() != 0, parcel.readInt() != 0, parcel.readString(), parcel.readString(), parcel.readString()); } @Override // android.os.Parcelable.Creator public final /* bridge */ /* synthetic */ FF[] newArray(int i) { return new FF[i]; } } @Override // android.os.Parcelable public final void writeToParcel(Parcel parcel, int i) { C14957gcv.e(parcel, ""); parcel.writeInt(this.c ? 1 : 0); parcel.writeInt(this.e ? 1 : 0); parcel.writeString(this.b); parcel.writeString(this.d); parcel.writeString(this.a); } public final String toString() { boolean z = this.c; boolean z2 = this.e; String str = this.b; String str2 = this.d; String str3 = this.a; StringBuilder sb = new StringBuilder("BNPLDisplay(availableLoan="); sb.append(z); sb.append(", needTermsAndConditionAccepted="); sb.append(z2); sb.append(", tcPath="); sb.append(str); sb.append(", tcVersion="); sb.append(str2); sb.append(", introDeeplink="); sb.append(str3); sb.append(")"); return sb.toString(); } /* JADX WARN: Multi-variable type inference failed */ /* JADX WARN: Type inference failed for: r0v1, types: [int] */ /* JADX WARN: Type inference failed for: r0v10 */ /* JADX WARN: Type inference failed for: r0v11 */ public final int hashCode() { boolean z = this.c; ?? r0 = z; if (z) { r0 = 1; } boolean z2 = this.e; int i = z2 ? 1 : z2 ? 1 : 0; int hashCode = this.b.hashCode(); int hashCode2 = this.d.hashCode(); String str = this.a; return (((((((r0 * 31) + i) * 31) + hashCode) * 31) + hashCode2) * 31) + (str == null ? 0 : str.hashCode()); } public final boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof FF)) { return false; } FF ff = (FF) obj; return this.c == ff.c && this.e == ff.e && C14957gcv.b((Object) this.b, (Object) ff.b) && C14957gcv.b((Object) this.d, (Object) ff.d) && C14957gcv.b((Object) this.a, (Object) ff.a); } }