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,40 @@
package com.google.zxing.pdf417.encoder;
import java.lang.reflect.Array;
/* loaded from: classes3.dex */
public final class BarcodeMatrix {
public int currentRow;
public final int height;
public final BarcodeRow[] matrix;
public final int width;
public void startRow() {
this.currentRow++;
}
public BarcodeMatrix(int i, int i2) {
BarcodeRow[] barcodeRowArr = new BarcodeRow[i];
this.matrix = barcodeRowArr;
int length = barcodeRowArr.length;
for (int i3 = 0; i3 < length; i3++) {
this.matrix[i3] = new BarcodeRow(((i2 + 4) * 17) + 1);
}
this.width = i2 * 17;
this.height = i;
this.currentRow = -1;
}
public BarcodeRow getCurrentRow() {
return this.matrix[this.currentRow];
}
public byte[][] getScaledMatrix(int i, int i2) {
byte[][] bArr = (byte[][]) Array.newInstance((Class<?>) Byte.TYPE, this.height * i2, this.width * i);
int i3 = this.height * i2;
for (int i4 = 0; i4 < i3; i4++) {
bArr[(i3 - i4) - 1] = this.matrix[i4 / i2].getScaledRow(i);
}
return bArr;
}
}