Files
rr3-apk/decompiled-community/sources/com/ironsource/mediationsdk/b.java
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- Added realracing3-community.apk (71.57 MB)
- Removed 32-bit support (armeabi-v7a)
- Only includes arm64-v8a libraries
- Decompiled source code included
- Added README-community.md with analysis
2026-02-18 15:48:36 -08:00

108 lines
2.5 KiB
Java

package com.ironsource.mediationsdk;
import com.ironsource.mediationsdk.s;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes4.dex */
final class b {
private final s.d a;
private final boolean b;
private final boolean c;
private final boolean d;
public b(s.d sdkState, boolean z, boolean z2, boolean z3) {
Intrinsics.checkNotNullParameter(sdkState, "sdkState");
this.a = sdkState;
this.b = z;
this.c = z2;
this.d = z3;
}
public static /* synthetic */ b a(b bVar, s.d dVar, boolean z, boolean z2, boolean z3, int i, Object obj) {
if ((i & 1) != 0) {
dVar = bVar.a;
}
if ((i & 2) != 0) {
z = bVar.b;
}
if ((i & 4) != 0) {
z2 = bVar.c;
}
if ((i & 8) != 0) {
z3 = bVar.d;
}
return bVar.a(dVar, z, z2, z3);
}
public final b a(s.d sdkState, boolean z, boolean z2, boolean z3) {
Intrinsics.checkNotNullParameter(sdkState, "sdkState");
return new b(sdkState, z, z2, z3);
}
public final s.d a() {
return this.a;
}
public final boolean b() {
return this.b;
}
public final boolean c() {
return this.c;
}
public final boolean d() {
return this.d;
}
public final s.d e() {
return this.a;
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof b)) {
return false;
}
b bVar = (b) obj;
return this.a == bVar.a && this.b == bVar.b && this.c == bVar.c && this.d == bVar.d;
}
public final boolean f() {
return this.d;
}
public final boolean g() {
return this.c;
}
public final boolean h() {
return this.b;
}
/* JADX WARN: Multi-variable type inference failed */
public int hashCode() {
int hashCode = this.a.hashCode() * 31;
boolean z = this.b;
int i = z;
if (z != 0) {
i = 1;
}
int i2 = (hashCode + i) * 31;
boolean z2 = this.c;
int i3 = z2;
if (z2 != 0) {
i3 = 1;
}
int i4 = (i2 + i3) * 31;
boolean z3 = this.d;
return i4 + (z3 ? 1 : z3 ? 1 : 0);
}
public String toString() {
return "AdUnitInitStateInfo(sdkState=" + this.a + ", isRetryForMoreThan15Secs=" + this.b + ", isDemandOnlyInitRequested=" + this.c + ", isAdUnitInitRequested=" + this.d + ')';
}
}