package com.applovin.impl; import android.os.Parcel; import android.os.Parcelable; import com.ironsource.mediationsdk.logger.IronSourceError; import com.mbridge.msdk.playercommon.exoplayer2.metadata.id3.CommentFrame; /* loaded from: classes.dex */ public final class u3 extends ya { public static final Parcelable.Creator CREATOR = new a(); public final String b; public final String c; public final String d; @Override // com.applovin.impl.ya public String toString() { return this.a + ": language=" + this.b + ", description=" + this.c; } public u3(Parcel parcel) { super(CommentFrame.ID); this.b = (String) xp.a((Object) parcel.readString()); this.c = (String) xp.a((Object) parcel.readString()); this.d = (String) xp.a((Object) parcel.readString()); } public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null || u3.class != obj.getClass()) { return false; } u3 u3Var = (u3) obj; return xp.a((Object) this.c, (Object) u3Var.c) && xp.a((Object) this.b, (Object) u3Var.b) && xp.a((Object) this.d, (Object) u3Var.d); } public int hashCode() { String str = this.b; int hashCode = ((str != null ? str.hashCode() : 0) + IronSourceError.ERROR_NON_EXISTENT_INSTANCE) * 31; String str2 = this.c; int hashCode2 = (hashCode + (str2 != null ? str2.hashCode() : 0)) * 31; String str3 = this.d; return hashCode2 + (str3 != null ? str3.hashCode() : 0); } @Override // android.os.Parcelable public void writeToParcel(Parcel parcel, int i) { parcel.writeString(this.a); parcel.writeString(this.b); parcel.writeString(this.d); } public u3(String str, String str2, String str3) { super(CommentFrame.ID); this.b = str; this.c = str2; this.d = str3; } public class a implements Parcelable.Creator { @Override // android.os.Parcelable.Creator /* renamed from: a, reason: merged with bridge method [inline-methods] */ public u3[] newArray(int i) { return new u3[i]; } @Override // android.os.Parcelable.Creator /* renamed from: a, reason: merged with bridge method [inline-methods] */ public u3 createFromParcel(Parcel parcel) { return new u3(parcel); } } }