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
This commit is contained in:
2026-02-18 15:48:36 -08:00
parent c19eb3d7ff
commit c080f0d97f
26930 changed files with 2529574 additions and 0 deletions

View File

@@ -0,0 +1,114 @@
package com.ironsource;
import kotlin.jvm.internal.DefaultConstructorMarker;
/* loaded from: classes2.dex */
public final class f8 {
private final boolean a;
private final h8 b;
public /* synthetic */ class a {
public static final /* synthetic */ int[] a;
static {
int[] iArr = new int[h8.values().length];
try {
iArr[h8.Delivery.ordinal()] = 1;
} catch (NoSuchFieldError unused) {
}
try {
iArr[h8.Pacing.ordinal()] = 2;
} catch (NoSuchFieldError unused2) {
}
try {
iArr[h8.ShowCount.ordinal()] = 3;
} catch (NoSuchFieldError unused3) {
}
a = iArr;
}
}
public f8(boolean z, h8 h8Var) {
this.a = z;
this.b = h8Var;
}
public /* synthetic */ f8(boolean z, h8 h8Var, int i, DefaultConstructorMarker defaultConstructorMarker) {
this(z, (i & 2) != 0 ? null : h8Var);
}
public static /* synthetic */ f8 a(f8 f8Var, boolean z, h8 h8Var, int i, Object obj) {
if ((i & 1) != 0) {
z = f8Var.a;
}
if ((i & 2) != 0) {
h8Var = f8Var.b;
}
return f8Var.a(z, h8Var);
}
public final f8 a(boolean z, h8 h8Var) {
return new f8(z, h8Var);
}
public final boolean a() {
return this.a;
}
public final h8 b() {
return this.b;
}
public final h8 c() {
return this.b;
}
public final boolean d() {
return this.a;
}
public final String e() {
h8 h8Var = this.b;
int i = h8Var == null ? -1 : a.a[h8Var.ordinal()];
if (i == 1) {
return "Placement delivery is false";
}
if (i == 2) {
return "In pacing mode";
}
if (i != 3) {
return null;
}
return "Max ad cap reached";
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof f8)) {
return false;
}
f8 f8Var = (f8) obj;
return this.a == f8Var.a && this.b == f8Var.b;
}
/* JADX WARN: Multi-variable type inference failed */
/* JADX WARN: Type inference failed for: r0v1, types: [int] */
/* JADX WARN: Type inference failed for: r0v4 */
/* JADX WARN: Type inference failed for: r0v5 */
public int hashCode() {
boolean z = this.a;
?? r0 = z;
if (z) {
r0 = 1;
}
int i = r0 * 31;
h8 h8Var = this.b;
return i + (h8Var == null ? 0 : h8Var.hashCode());
}
public String toString() {
return "CappingStatus(isCapped=" + this.a + " reason=" + this.b + ')';
}
}