package o; import java.util.List; /* loaded from: classes3.dex */ public final class WL { public String a; private boolean c = false; public WP d; public List e; public final boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null || getClass() != obj.getClass()) { return false; } WL wl = (WL) obj; String str = this.a; if (str == null ? wl.a != null : !str.equals(wl.a)) { return false; } List list = this.e; if (list == null ? wl.e != null : !list.equals(wl.e)) { return false; } WP wp = this.d; WP wp2 = wl.d; return wp != null ? wp.equals(wp2) : wp2 == null; } public final int hashCode() { String str = this.a; int hashCode = str != null ? str.hashCode() : 0; List list = this.e; int hashCode2 = list != null ? list.hashCode() : 0; WP wp = this.d; return (((hashCode * 31) + hashCode2) * 31) + (wp != null ? wp.hashCode() : 0); } }