Files
rr3-apk/decompiled-community/sources/com/applovin/impl/yd.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

68 lines
1.6 KiB
Java

package com.applovin.impl;
import com.ironsource.mediationsdk.logger.IronSourceError;
/* loaded from: classes.dex */
public class yd {
public final Object a;
public final int b;
public final int c;
public final long d;
public final int e;
public boolean a() {
return this.b != -1;
}
public yd(yd ydVar) {
this.a = ydVar.a;
this.b = ydVar.b;
this.c = ydVar.c;
this.d = ydVar.d;
this.e = ydVar.e;
}
public yd a(Object obj) {
return this.a.equals(obj) ? this : new yd(obj, this.b, this.c, this.d, this.e);
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof yd)) {
return false;
}
yd ydVar = (yd) obj;
return this.a.equals(ydVar.a) && this.b == ydVar.b && this.c == ydVar.c && this.d == ydVar.d && this.e == ydVar.e;
}
public int hashCode() {
return ((((((((this.a.hashCode() + IronSourceError.ERROR_NON_EXISTENT_INSTANCE) * 31) + this.b) * 31) + this.c) * 31) + ((int) this.d)) * 31) + this.e;
}
public yd(Object obj) {
this(obj, -1L);
}
public yd(Object obj, int i, int i2, long j) {
this(obj, i, i2, j, -1);
}
private yd(Object obj, int i, int i2, long j, int i3) {
this.a = obj;
this.b = i;
this.c = i2;
this.d = j;
this.e = i3;
}
public yd(Object obj, long j) {
this(obj, -1, -1, j, -1);
}
public yd(Object obj, long j, int i) {
this(obj, -1, -1, j, i);
}
}