package o; import com.google.gson.annotations.SerializedName; import java.util.List; /* loaded from: classes3.dex */ public class F { @SerializedName("answers") public List e; public F(List list) { this.e = list; } public boolean equals(Object obj) { if (obj instanceof F) { List list = ((F) obj).e; if (this.e.size() != list.size()) { return false; } for (int i = 0; i < this.e.size(); i++) { if (!this.e.get(i).equals(list.get(i))) { return false; } } return true; } return super.equals(obj); } public int hashCode() { List list = this.e; if (list != null) { return list.hashCode(); } return 0; } }