Initial import of ADIF API reverse-engineering toolkit

This commit is contained in:
2025-12-16 08:37:56 +01:00
commit 60388529c1
11486 changed files with 1086536 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
package s3;
/* loaded from: classes3.dex */
public abstract class b {
/* renamed from: a, reason: collision with root package name */
public static final char[] f8473a = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'};
public static final int a(char c4) {
if ('0' <= c4 && c4 < ':') {
return c4 - '0';
}
if ('a' <= c4 && c4 < 'g') {
return c4 - 'W';
}
if ('A' <= c4 && c4 < 'G') {
return c4 - '7';
}
throw new IllegalArgumentException("Unexpected hex digit: " + c4);
}
}