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,52 @@
package com.google.firebase;
/* loaded from: classes3.dex */
public final class AutoValue_StartupTime extends StartupTime {
public final long elapsedRealtime;
public final long epochMillis;
public final long uptimeMillis;
@Override // com.google.firebase.StartupTime
public long getElapsedRealtime() {
return this.elapsedRealtime;
}
@Override // com.google.firebase.StartupTime
public long getEpochMillis() {
return this.epochMillis;
}
@Override // com.google.firebase.StartupTime
public long getUptimeMillis() {
return this.uptimeMillis;
}
public int hashCode() {
long j = this.epochMillis;
long j2 = this.elapsedRealtime;
int i = (((((int) (j ^ (j >>> 32))) ^ 1000003) * 1000003) ^ ((int) (j2 ^ (j2 >>> 32)))) * 1000003;
long j3 = this.uptimeMillis;
return i ^ ((int) ((j3 >>> 32) ^ j3));
}
public AutoValue_StartupTime(long j, long j2, long j3) {
this.epochMillis = j;
this.elapsedRealtime = j2;
this.uptimeMillis = j3;
}
public String toString() {
return "StartupTime{epochMillis=" + this.epochMillis + ", elapsedRealtime=" + this.elapsedRealtime + ", uptimeMillis=" + this.uptimeMillis + "}";
}
public boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof StartupTime)) {
return false;
}
StartupTime startupTime = (StartupTime) obj;
return this.epochMillis == startupTime.getEpochMillis() && this.elapsedRealtime == startupTime.getElapsedRealtime() && this.uptimeMillis == startupTime.getUptimeMillis();
}
}