package xyz.stream.view.databinding;

import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.constraintlayout.widget.ConstraintLayout;
import v3.a;
import v3.b;
import xyz.stream.view.R;

/* JADX INFO: loaded from: classes3.dex */
public final class ViewPasswordBinding implements a {

    /* JADX INFO: renamed from: a, reason: collision with root package name */
    public final ConstraintLayout f36490a;

    @NonNull
    public final TextView tvPwd1;

    @NonNull
    public final TextView tvPwd2;

    @NonNull
    public final TextView tvPwd3;

    @NonNull
    public final TextView tvPwd4;

    @NonNull
    public final TextView tvPwd5;

    @NonNull
    public final TextView tvPwd6;

    public ViewPasswordBinding(ConstraintLayout constraintLayout, TextView textView, TextView textView2, TextView textView3, TextView textView4, TextView textView5, TextView textView6) {
        this.f36490a = constraintLayout;
        this.tvPwd1 = textView;
        this.tvPwd2 = textView2;
        this.tvPwd3 = textView3;
        this.tvPwd4 = textView4;
        this.tvPwd5 = textView5;
        this.tvPwd6 = textView6;
    }

    @NonNull
    public static ViewPasswordBinding bind(@NonNull View view) {
        int i10 = R.id.tv_pwd_1;
        TextView textView = (TextView) b.findChildViewById(view, i10);
        if (textView != null) {
            i10 = R.id.tv_pwd_2;
            TextView textView2 = (TextView) b.findChildViewById(view, i10);
            if (textView2 != null) {
                i10 = R.id.tv_pwd_3;
                TextView textView3 = (TextView) b.findChildViewById(view, i10);
                if (textView3 != null) {
                    i10 = R.id.tv_pwd_4;
                    TextView textView4 = (TextView) b.findChildViewById(view, i10);
                    if (textView4 != null) {
                        i10 = R.id.tv_pwd_5;
                        TextView textView5 = (TextView) b.findChildViewById(view, i10);
                        if (textView5 != null) {
                            i10 = R.id.tv_pwd_6;
                            TextView textView6 = (TextView) b.findChildViewById(view, i10);
                            if (textView6 != null) {
                                return new ViewPasswordBinding((ConstraintLayout) view, textView, textView2, textView3, textView4, textView5, textView6);
                            }
                        }
                    }
                }
            }
        }
        throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i10)));
    }

    @NonNull
    public static ViewPasswordBinding inflate(@NonNull LayoutInflater layoutInflater) {
        return inflate(layoutInflater, null, false);
    }

    @Override // v3.a
    @NonNull
    public ConstraintLayout getRoot() {
        return this.f36490a;
    }

    @NonNull
    public static ViewPasswordBinding inflate(@NonNull LayoutInflater layoutInflater, @Nullable ViewGroup viewGroup, boolean z10) {
        View viewInflate = layoutInflater.inflate(R.layout.view_password, viewGroup, false);
        if (z10) {
            viewGroup.addView(viewInflate);
        }
        return bind(viewInflate);
    }
}
