160 lines
4.3 KiB
Java
160 lines
4.3 KiB
Java
package o;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public class IV implements Parcelable {
|
|
public static final Parcelable.Creator<IV> CREATOR = new Parcelable.Creator<IV>() { // from class: o.IV.1
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* synthetic */ IV createFromParcel(Parcel parcel) {
|
|
return new IV(parcel);
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* bridge */ /* synthetic */ IV[] newArray(int i) {
|
|
return new IV[i];
|
|
}
|
|
};
|
|
public String a;
|
|
public List<Sts> b;
|
|
public boolean c;
|
|
public String d;
|
|
public Boolean e;
|
|
public int f;
|
|
public int g;
|
|
public String h;
|
|
public String i;
|
|
public int j;
|
|
private boolean n;
|
|
|
|
@Override // android.os.Parcelable
|
|
public int describeContents() {
|
|
return 0;
|
|
}
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static class Sts implements Parcelable {
|
|
public static final Parcelable.Creator<Sts> CREATOR = new Parcelable.Creator<Sts>() { // from class: o.IV.Sts.2
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* synthetic */ Sts createFromParcel(Parcel parcel) {
|
|
return new Sts(parcel);
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* bridge */ /* synthetic */ Sts[] newArray(int i) {
|
|
return new Sts[i];
|
|
}
|
|
};
|
|
public String b;
|
|
public int c;
|
|
public int d;
|
|
public String e;
|
|
|
|
@Override // android.os.Parcelable
|
|
public final int describeContents() {
|
|
return 0;
|
|
}
|
|
|
|
protected Sts(Parcel parcel) {
|
|
this.c = 16;
|
|
this.b = parcel.readString();
|
|
this.e = parcel.readString();
|
|
this.d = parcel.readInt();
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public final void writeToParcel(Parcel parcel, int i) {
|
|
parcel.writeString(this.b);
|
|
parcel.writeString(this.e);
|
|
parcel.writeInt(this.d);
|
|
}
|
|
|
|
public Sts(String str) {
|
|
this.c = 16;
|
|
this.b = str;
|
|
this.e = "normal";
|
|
}
|
|
|
|
public Sts(String str, int i) {
|
|
this.c = 16;
|
|
this.b = str;
|
|
this.e = "normal";
|
|
this.d = i;
|
|
}
|
|
}
|
|
|
|
public IV(String str, String str2, List<Sts> list) {
|
|
this.a = "overview";
|
|
this.n = false;
|
|
this.c = true;
|
|
this.e = Boolean.FALSE;
|
|
this.h = str;
|
|
this.i = str2;
|
|
this.b = list;
|
|
}
|
|
|
|
public IV(String str, List<Sts> list) {
|
|
this(str, "", list);
|
|
}
|
|
|
|
public IV(String str, String str2, int i, int i2) {
|
|
this.a = "overview";
|
|
this.n = false;
|
|
this.c = true;
|
|
this.e = Boolean.FALSE;
|
|
this.h = str;
|
|
this.i = str2;
|
|
this.f = i;
|
|
this.j = i2;
|
|
}
|
|
|
|
public IV(int i, String str, String str2) {
|
|
this.a = "overview";
|
|
this.n = false;
|
|
this.c = true;
|
|
this.e = Boolean.FALSE;
|
|
this.h = str;
|
|
this.i = str2;
|
|
this.f = i;
|
|
this.g = i;
|
|
}
|
|
|
|
protected IV(Parcel parcel) {
|
|
this.a = "overview";
|
|
this.n = false;
|
|
this.c = true;
|
|
this.e = Boolean.FALSE;
|
|
this.n = parcel.readByte() != 0;
|
|
this.h = parcel.readString();
|
|
this.i = parcel.readString();
|
|
this.d = parcel.readString();
|
|
this.b = parcel.createTypedArrayList(Sts.CREATOR);
|
|
this.a = parcel.readString();
|
|
this.f = parcel.readInt();
|
|
this.j = parcel.readInt();
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public void writeToParcel(Parcel parcel, int i) {
|
|
parcel.writeByte(this.n ? (byte) 1 : (byte) 0);
|
|
parcel.writeString(this.h);
|
|
parcel.writeString(this.i);
|
|
parcel.writeString(this.d);
|
|
parcel.writeTypedList(this.b);
|
|
parcel.writeString(this.a);
|
|
parcel.writeInt(this.f);
|
|
parcel.writeInt(this.j);
|
|
}
|
|
|
|
public IV(String str, String str2) {
|
|
this.a = "overview";
|
|
this.n = false;
|
|
this.c = true;
|
|
this.e = Boolean.FALSE;
|
|
this.h = str;
|
|
this.i = str2;
|
|
}
|
|
}
|