EdNaven-fabric source: 377 java modules + gradle config (libs excluded)
这个提交包含在:
1 父节点
c79b1f9ef7
当前提交
49180e6342
385 file changed
+86276
-2
No files matched your search
+22
@@ -0,0 +1,22 @@
|
||||
# Gradle
|
||||
.gradle/
|
||||
build/
|
||||
out/
|
||||
|
||||
# IDE
|
||||
.idea/
|
||||
*.iml
|
||||
*.ipr
|
||||
*.iws
|
||||
.vscode/
|
||||
|
||||
# Loom / 运行目录
|
||||
run/
|
||||
.devauth/
|
||||
|
||||
# 临时文件
|
||||
_tmp*/
|
||||
*.log
|
||||
|
||||
# 本地依赖 jar(构建用,不入库;如需可放 git-lfs 或 maven 仓库)
|
||||
libs/
|
||||
@@ -1,2 +1,87 @@
|
||||
# ednaven-opensouce
|
||||
ai code
|
||||
# EdNaven_Fabric — 源码工程
|
||||
|
||||
由 `EdNaven_Fabric-3.3-LATEST.jar` 反编译整理而来的 Gradle 源码工程,结构对齐 Southside 工程
|
||||
(`settings.gradle` + `gradle.properties` + `build.gradle` + `src/main/java` + `src/main/resources`),
|
||||
目标是 `gradle build` 后产出可直接丢进 `mods/` 目录的 Fabric mod jar。
|
||||
|
||||
## 基本信息
|
||||
|
||||
| 项 | 值 |
|
||||
|---|---|
|
||||
| Mod ID | `ednaven_fabric` |
|
||||
| 版本 | 3.3-LATEST |
|
||||
| Minecraft | 1.20.6 |
|
||||
| Fabric Loader | ≥ 0.18.4 |
|
||||
| Java | **21**(mixins.json 的 compatibilityLevel 就是 JAVA_21) |
|
||||
| 入口 | `tech.naven.fabric.NavenModInitializer`(空壳,真实逻辑在 Mixin) |
|
||||
| Mixin 包 | `tech.naven.Y`(33 个 client Mixin + `x`) |
|
||||
|
||||
## 目录结构
|
||||
|
||||
```
|
||||
EdNaven-fabric/
|
||||
├── build.gradle # Fabric Loom 构建脚本
|
||||
├── settings.gradle
|
||||
├── gradle.properties # 版本变量与 JDK 21 路径
|
||||
├── libs/ # 原 jar 内嵌依赖(javacv/ffmpeg/skija/javacpp/collection)
|
||||
└── src/main/
|
||||
├── java/
|
||||
│ ├── tech/naven/ # 核心:fabric 入口 + Y(Mixin 包) + utils
|
||||
│ └── <中文包名>/ # EdNaven 的水面混淆层(anti-tamper),不可删
|
||||
└── resources/
|
||||
├── fabric.mod.json
|
||||
├── ednaven_fabric.mixins.json
|
||||
└── ednaven.accesswidener
|
||||
```
|
||||
|
||||
## 构建
|
||||
|
||||
需要 **JDK 21** 与网络(首次构建会下载 Minecraft、Intermediary 映射、Fabric Loader、Loom)。
|
||||
|
||||
```powershell
|
||||
cd "C:\Users\zh201\WorkBuddy\2026-08-26-21-28-31\EdNaven-fabric"
|
||||
|
||||
# 用本地已有的 Gradle 8.5(工程目录下没放 wrapper)
|
||||
& "C:\Users\zh201\WorkBuddy\2026-08-26-21-28-31\gradle-8.5\bin\gradle.bat" build
|
||||
|
||||
# 想生成 wrapper 的话(首次构建成功后执行)
|
||||
& "C:\Users\zh201\WorkBuddy\2026-08-26-21-28-31\gradle-8.5\bin\gradle.bat" wrapper --gradle-version 8.5
|
||||
```
|
||||
|
||||
产物:`build/libs/EdNaven_Fabric-3.3-LATEST.jar`(**用这个**,不要拿 `-dev` 或 `-sources` 的)。
|
||||
`gradle packageMod` 会额外打成 `EdNaven_Fabric.zip` 方便分发。
|
||||
|
||||
## 三个关键设计(改动前必读)
|
||||
|
||||
### 1. mappings 必须是 Intermediary,不能用 Yarn
|
||||
反编译出来的源码里 Minecraft 类全是 **Intermediary 中间名**:
|
||||
|
||||
```java
|
||||
import net.minecraft.class_310; // = Minecraft
|
||||
import net.minecraft.class_638; // = ClientWorld
|
||||
```
|
||||
|
||||
所以 `build.gradle` 里是 `mappings "net.fabricmc:intermediary:1.20.6:v2"`。
|
||||
**换成 Yarn 会导致全量编译失败**——Yarn 会把 `class_310` 命名成 `Minecraft`,源码里的 import 全部失效。
|
||||
|
||||
### 2. libs/ 里的内嵌依赖要打回 `META-INF/jars`
|
||||
`fabric.mod.json` 用 `jars` 字段声明了 9 个内嵌依赖(javacv、ffmpeg、skija、javacpp、collection),
|
||||
源码里的视频播放 / 字体渲染(`io.github.humbleui.skija.*`、`org.bytedeco.javacv.*`)都依赖它们。
|
||||
|
||||
`build.gradle` 的 `jar` 任务里已经有:
|
||||
```groovy
|
||||
from('libs') { into 'META-INF/jars' }
|
||||
```
|
||||
**删掉这行,运行时会 NoClassDefFoundError。**
|
||||
|
||||
### 3. 中文包名是混淆层,不能随手删
|
||||
`src/main/java` 下的中文包名(如 `аее`、`хаpр`)是 EdNaven 自己的水面混淆(anti-tamper),
|
||||
核心 Mixin 会引用它们。Java 允许 Unicode 标识符,编译没问题,但**必须保持 UTF-8 编码**
|
||||
(构建脚本里已设置 `options.encoding = 'UTF-8'`)。
|
||||
|
||||
## 已知限制
|
||||
|
||||
- 反编译产物可能存在个别 CFR 输出问题(不可达语句、重复局部变量、泛型擦除导致的强转缺失等)。
|
||||
首次构建若报编译错误,按错误逐条修即可,通常集中在少数几个文件。
|
||||
- 未做反混淆重命名:类名仍是 `class_310` 与中文包名。想要 Southside 那种全英文可读命名,
|
||||
需要额外做「Intermediary → Yarn」的重命名 + 中文包名重构,属于独立工作量。
|
||||
+88
@@ -0,0 +1,88 @@
|
||||
plugins {
|
||||
id 'idea'
|
||||
id 'java'
|
||||
id 'java-library'
|
||||
// 1.20.6 仍是带混淆的版本,需要使用会做重映射的 loom 插件(不是 26.1+ 的免重映射版)
|
||||
id 'fabric-loom' version '1.7-SNAPSHOT'
|
||||
}
|
||||
|
||||
group = project.maven_group
|
||||
version = project.mod_version
|
||||
base { archivesName = project.archives_base_name }
|
||||
|
||||
repositories {
|
||||
mavenLocal()
|
||||
mavenCentral()
|
||||
maven { name = 'Fabric'; url = 'https://maven.fabricmc.net/' }
|
||||
// 国内镜像兜底(mavenCentral 慢时 Gradle 会按顺序回退尝试)
|
||||
maven { url = 'https://mirrors.cloud.tencent.com/nexus/repository/maven-public/' }
|
||||
}
|
||||
|
||||
loom {
|
||||
// fabric.mod.json 里已声明 accessWidener,开发期同样要应用
|
||||
accessWidenerPath = file('src/main/resources/ednaven.accesswidener')
|
||||
}
|
||||
|
||||
dependencies {
|
||||
minecraft "com.mojang:minecraft:${project.minecraft_version}"
|
||||
|
||||
// ── 关键 ────────────────────────────────────────────────────────────
|
||||
// 反编译产出的源码里,Minecraft 类用的是 Intermediary 中间名:
|
||||
// net.minecraft.class_310 (Minecraft)、class_638 (ClientWorld) ...
|
||||
// 所以这里必须用「仅 Intermediary」映射。
|
||||
// 若换成 Yarn(net.fabricmc:yarn),class_310 会被命名成 Minecraft,
|
||||
// 源码里的 import 会全部失效,编译必然失败。
|
||||
//
|
||||
// 兜底:若该坐标解析不到,可手动下载
|
||||
// https://maven.fabricmc.net/net/fabricmc/intermediary/1.20.6/intermediary-1.20.6-v2.jar
|
||||
// 放进工程根目录的 mappings/ 文件夹,然后把下面这行改成:
|
||||
// mappings fileTree(dir: 'mappings', include: '*.jar')
|
||||
// ────────────────────────────────────────────────────────────────────
|
||||
mappings "net.fabricmc:intermediary:${project.minecraft_version}:v2"
|
||||
|
||||
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
|
||||
|
||||
// 原 jar 内嵌的依赖(javacv / ffmpeg / javacpp / skija / collection),
|
||||
// 已从 META-INF/jars 提取到 libs/。编译期使用,打包时再放回 META-INF/jars。
|
||||
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
||||
|
||||
// 下面这些 Minecraft 运行时自带,此处仅为编译期补全,不会打进产物
|
||||
compileOnly 'commons-io:commons-io:2.15.1'
|
||||
compileOnly 'org.apache.commons:commons-lang3:3.14.0'
|
||||
compileOnly 'com.google.code.gson:gson:2.10.1'
|
||||
compileOnly 'org.jetbrains:annotations:24.1.0'
|
||||
compileOnly 'com.google.errorprone:error_prone_annotations:2.23.0'
|
||||
}
|
||||
|
||||
// 源码含中文包名(EdNaven 的水面混淆层),必须显式 UTF-8
|
||||
tasks.withType(JavaCompile).configureEach {
|
||||
options.encoding = 'UTF-8'
|
||||
options.compilerArgs += ['-nowarn']
|
||||
}
|
||||
|
||||
java {
|
||||
toolchain { languageVersion = JavaLanguageVersion.of(21) }
|
||||
withSourcesJar()
|
||||
}
|
||||
|
||||
processResources {
|
||||
inputs.property 'version', project.version
|
||||
filesMatching('fabric.mod.json') { expand 'version': project.version }
|
||||
}
|
||||
|
||||
jar {
|
||||
// 把内嵌依赖放回 META-INF/jars,供 fabric.mod.json 的 jars 字段在运行时加载
|
||||
from('libs') { into 'META-INF/jars' }
|
||||
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
||||
}
|
||||
|
||||
// 分发包:把构建出的 mod jar 打成 zip(对齐 Southside 的 package 任务)
|
||||
tasks.register('packageMod', Zip) {
|
||||
dependsOn tasks.named('build')
|
||||
from("${buildDir}/libs") {
|
||||
include "${project.archives_base_name}-${project.version}.jar"
|
||||
rename { 'EdNaven_Fabric.jar' }
|
||||
}
|
||||
archiveFileName.set('EdNaven_Fabric.zip')
|
||||
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
# ===== Minecraft / Fabric =====
|
||||
minecraft_version=1.20.6
|
||||
# fabric.mod.json 声明 fabricloader >= 0.18.4
|
||||
loader_version=0.18.4
|
||||
|
||||
# ===== Mod 元信息 =====
|
||||
mod_version=3.3-LATEST
|
||||
maven_group=tech.naven
|
||||
archives_base_name=EdNaven_Fabric
|
||||
|
||||
# ===== Java =====
|
||||
# mixins.json 的 compatibilityLevel 是 JAVA_21,MC 1.20.6 同样需要 21
|
||||
java_version=21
|
||||
|
||||
# ===== Gradle =====
|
||||
# Loom 处理 MC 与合并 jar 需要较大堆内存
|
||||
org.gradle.jvmargs=-Xmx4G
|
||||
org.gradle.parallel=false
|
||||
# 指向本机 JDK 21(PATH 里的 java 是 17,编译必须用 21)
|
||||
org.gradle.java.installations.paths=C:\\Program Files\\Microsoft\\jdk-21.0.8.9-hotspot
|
||||
@@ -0,0 +1 @@
|
||||
rootProject.name = 'EdNaven_Fabric'
|
||||
@@ -0,0 +1,399 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package ao\u0430\u0441sxi;
|
||||
|
||||
import cis\u0435ia.\u0445\u0440\u0445\u0458;
|
||||
import io.github.humbleui.skija.Font;
|
||||
import java.awt.Color;
|
||||
import java.awt.image.BufferedImage;
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.lang.invoke.CallSite;
|
||||
import java.lang.invoke.ConstantCallSite;
|
||||
import java.lang.invoke.MethodHandle;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.lang.invoke.MethodType;
|
||||
import java.nio.file.CopyOption;
|
||||
import java.nio.file.LinkOption;
|
||||
import java.nio.file.Path;
|
||||
import java.nio.file.StandardCopyOption;
|
||||
import java.time.LocalDate;
|
||||
import java.time.LocalTime;
|
||||
import java.time.format.DateTimeFormatter;
|
||||
import java.time.format.TextStyle;
|
||||
import java.util.Locale;
|
||||
import jx\u043ex.\u0458x\u0456\u0456ae;
|
||||
import net.minecraft.class_1041;
|
||||
import net.minecraft.class_310;
|
||||
import net.minecraft.class_332;
|
||||
import net.minecraft.class_429;
|
||||
import net.minecraft.class_4325;
|
||||
import net.minecraft.class_437;
|
||||
import net.minecraft.class_4749;
|
||||
import net.minecraft.class_500;
|
||||
import net.minecraft.class_526;
|
||||
import oe\u043eo\u043ej.\u0458ip;
|
||||
import xs\u0441\u0445oa\u0430.exax\u04bb;
|
||||
import \u0440o\u0456\u0445o.\u0445\u0440\u0430\u0435\u0445\u043e;
|
||||
|
||||
public class pxx\u0445\u0458
|
||||
extends \u0458x\u0456\u0456ae {
|
||||
private final /* synthetic */ Font a\u0445\u043e\u04bb\u0458o\u0435;
|
||||
private final /* synthetic */ Font \u0440j\u0441\u0445\u04bb\u0458\u04bb;
|
||||
private /* synthetic */ \u0445\u0440\u0445\u0458 j\u0430\u0440\u0458\u0441j;
|
||||
private /* synthetic */ \u0445\u0440\u0445\u0458 pe\u0455j\u0455\u0455a;
|
||||
private /* synthetic */ \u0445\u0440\u0445\u0458 ajh;
|
||||
private /* synthetic */ \u0445\u0440\u0445\u0458 \u0441x\u0441joo\u04bb;
|
||||
private /* synthetic */ \u0445\u0440\u0445\u0458 o\u0435o;
|
||||
private /* synthetic */ \u0458ip[] cpea\u0445h;
|
||||
private /* synthetic */ boolean \u0430\u0445\u0430\u0430j\u043e\u0430;
|
||||
|
||||
public pxx\u0445\u0458() {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
this.a\u0445\u043e\u04bb\u0458o\u0435 = pxx\u0445\u0458.a_bsm0("\u0455iax\u0440", \u0455iax\u0440(float ), (float)41.0f);
|
||||
this.\u0440j\u0441\u0445\u04bb\u0458\u04bb = pxx\u0445\u0458.a_bsm1("haxo", haxo(float ), (float)12.0f);
|
||||
this.\u0430\u0445\u0430\u0430j\u043e\u0430 = false;
|
||||
}
|
||||
|
||||
public /* synthetic */ boolean method_25404(int n, int n2, int n3) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (n == -1813839664 + 1813839920) {
|
||||
return false;
|
||||
}
|
||||
return super.method_25404(n, n2, n3);
|
||||
}
|
||||
|
||||
public /* synthetic */ void method_25394(class_332 class_3322, int n, int n2, float f) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.reloadWallpaper();
|
||||
class_1041 class_10412 = \u0430\u0445j\u0445s\u0456\u04bb.method_22683();
|
||||
pxx\u0445\u0458.a_bsm2("\u0456\u0440\u0430\u0455i\u0455", \u0456\u0440\u0430\u0455i\u0455(java.util.function.Consumer<io.github.humbleui.skija.Canvas> ), canvas -> {
|
||||
if (true | false) {
|
||||
}
|
||||
pxx\u0445\u0458.a_bsm17("\u0441sp", \u0441sp());
|
||||
pxx\u0445\u0458.a_bsm18("a\u04bbp\u0445", a\u04bbp\u0445(float ), (float)((float)pxx\u0445\u0458.a_bsm6("method_1551", method_1551()).method_22683().method_4495()));
|
||||
((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)pxx\u0445\u0458.a_bsm4("jaa\u0435\u0445c", jaa\u0435\u0445c()))).ph\u0445().x\u043e\u0445\u0430(class_10412.method_4486(), class_10412.method_4502());
|
||||
exax\u04bb.e\u0441\u04bbpi\u043eh.\u0430c\u0455p(-109849732 + 109849740);
|
||||
pxx\u0445\u0458.a_bsm19("oa\u0440\u043e\u0445", oa\u0440\u043e\u0445(float float float float ), (float)0.0f, (float)(this.field_22790 - (-1478187365 + 1478187415)), (float)class_10412.method_4486(), (float)50.0f);
|
||||
this.j\u0430\u0440\u0458\u0441j.draw(n, n2, f);
|
||||
this.pe\u0455j\u0455\u0455a.draw(n, n2, f);
|
||||
this.\u0441x\u0441joo\u04bb.draw(n, n2, f);
|
||||
this.ajh.draw(n, n2, f);
|
||||
this.o\u0435o.draw(n, n2, f);
|
||||
CallSite callSite = pxx\u0445\u0458.a_bsm20("now", now());
|
||||
byte[] byArray = new byte[-628210342 + 628210350];
|
||||
byArray[0] = -208140054 + 208140129;
|
||||
byArray[1] = -295080423 + 295080454;
|
||||
byArray[2] = -2106798272 + 2106798319;
|
||||
byArray[3] = -155686325 + 155686411;
|
||||
byArray[4] = -1051174756 + 1051174823;
|
||||
byArray[5] = -224080296 + 224080274;
|
||||
byArray[-141859468 + 141859474] = -1816840515 + 1816840420;
|
||||
byArray[-1503141690 + 1503141697] = -1332035349 + 1332035473;
|
||||
CallSite callSite2 = pxx\u0445\u0458.a_bsm22("format", format(java.lang.String java.lang.Object[] ), (String)((Object)pxx\u0445\u0458.a_bsm9("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray, (int)(283304870 + 589254747), (int)(955000010 + 851461857))), (Object[])new Object[]{((LocalDate)((Object)callSite)).getDayOfWeek().getDisplayName(TextStyle.FULL, Locale.ENGLISH), ((LocalDate)((Object)callSite)).getMonth().getDisplayName(TextStyle.FULL, Locale.ENGLISH), pxx\u0445\u0458.a_bsm21("valueOf", valueOf(int ), (int)((LocalDate)((Object)callSite)).getDayOfMonth())});
|
||||
CallSite callSite3 = pxx\u0445\u0458.a_bsm23("now", now());
|
||||
CallSite callSite4 = pxx\u0445\u0458.a_bsm24("ofPattern", ofPattern(java.lang.String ), (String)((Object)pxx\u0445\u0458.a_bsm9("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-2083580031 + 2083579923, -208660347 + 208660434, -1285910678 + 1285910652, -881850016 + 881850037, -937172937 + 937173036}, (int)(-1268702598 + 213294749), (int)(701076492 + 832423770))));
|
||||
String string = ((LocalTime)((Object)callSite3)).format((DateTimeFormatter)((Object)callSite4));
|
||||
Runnable runnable = () -> this.lambda$render$0((String)((Object)callSite2), string);
|
||||
runnable.run();
|
||||
s\u0430\u04bb\u0458.forEach(Runnable::run);
|
||||
s\u0430\u04bb\u0458.clear();
|
||||
pxx\u0445\u0458.a_bsm25("jj\u0430c\u04bb\u0455\u0455", jj\u0430c\u04bb\u0455\u0455());
|
||||
});
|
||||
}
|
||||
|
||||
public /* synthetic */ boolean method_25402(double d, double d2, int n) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (this.cpea\u0445h == null) {
|
||||
return true;
|
||||
}
|
||||
if (n == 0) {
|
||||
for (\u0458ip \u0458ip2 : this.cpea\u0445h) {
|
||||
if (pxx\u0445\u0458.a_bsm3("\u0441\u0435a\u043ex", \u0441\u0435a\u043ex(double double double double int int ), (double)\u0458ip2.a\u0458ea\u0440c\u0441(), (double)\u0458ip2.i\u0440x\u0435\u0430hj(), (double)\u0458ip2.p\u0435\u0455(), (double)\u0458ip2.\u0455j\u0430\u0440\u0455(), (int)((int)d), (int)((int)d2)) == false) continue;
|
||||
\u0458ip2.ic\u0430();
|
||||
break;
|
||||
}
|
||||
}
|
||||
return super.method_25402(d, d2, n);
|
||||
}
|
||||
|
||||
private /* synthetic */ void reloadWallpaper() {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (pxx\u0445\u0458.a_bsm4("jaa\u0435\u0445c", jaa\u0435\u0445c()) != null && ((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)pxx\u0445\u0458.a_bsm4("jaa\u0435\u0445c", jaa\u0435\u0445c()))).ph\u0445().h\u0440h\u0440\u0445()) {
|
||||
((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)pxx\u0445\u0458.a_bsm4("jaa\u0435\u0445c", jaa\u0435\u0445c()))).ph\u0445().\u0430ai((File)((Object)pxx\u0445\u0458.a_bsm5("\u043e\u0430ei\u0455", \u043e\u0430ei\u0455())), false);
|
||||
}
|
||||
pxx\u0445\u0458.a_bsm7("glfwSetDropCallback", glfwSetDropCallback(long org.lwjgl.glfw.GLFWDropCallbackI ), (long)pxx\u0445\u0458.a_bsm6("method_1551", method_1551()).method_22683().method_4490(), (l2, n, l3) -> {
|
||||
if (true | false) {
|
||||
}
|
||||
CallSite callSite = pxx\u0445\u0458.a_bsm11("\u0456\u0455\u043e\u0430", \u0456\u0455\u043e\u0430());
|
||||
for (int i = 0; i < n; ++i) {
|
||||
CallSite callSite2 = pxx\u0445\u0458.a_bsm12("getName", getName(long int ), (long)l3, (int)i);
|
||||
if (!((String)((Object)callSite2)).toLowerCase().endsWith((String)((Object)pxx\u0445\u0458.a_bsm9("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-927190085 + 927190211, -852792134 + 852792078, -1354649594 + 1354649468, -2031040666 + 2031040634}, (int)(706957594 + 166912763), (int)(-1070790612 + 1588401837))))) {
|
||||
switch (0) {
|
||||
default: {
|
||||
break;
|
||||
}
|
||||
case 1: {
|
||||
break;
|
||||
}
|
||||
case 2: {
|
||||
break;
|
||||
}
|
||||
}
|
||||
continue;
|
||||
}
|
||||
String string = new File((String)((Object)callSite2)).getName();
|
||||
CallSite callSite3 = pxx\u0445\u0458.a_bsm13("get", get(java.lang.String java.lang.String[] ), (String)((Object)callSite2), (String[])new String[0]);
|
||||
Path path = callSite.resolve(string);
|
||||
((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)pxx\u0445\u0458.a_bsm4("jaa\u0435\u0445c", jaa\u0435\u0445c()))).ph\u0445().close();
|
||||
try {
|
||||
if (pxx\u0445\u0458.a_bsm14("exists", exists(java.nio.file.Path java.nio.file.LinkOption[] ), (Path)path, (LinkOption[])new LinkOption[0]) == false) {
|
||||
pxx\u0445\u0458.a_bsm15("copy", copy(java.nio.file.Path java.nio.file.Path java.nio.file.CopyOption[] ), (Path)((Object)callSite3), (Path)path, (CopyOption[])new CopyOption[]{StandardCopyOption.COPY_ATTRIBUTES});
|
||||
}
|
||||
pxx\u0445\u0458.a_bsm16("eo\u0445\u0441\u04bb\u0441", eo\u0445\u0441\u04bb\u0441(java.lang.String ), (String)string);
|
||||
this.\u0430\u0445\u0430\u0430j\u043e\u0430 = true;
|
||||
return;
|
||||
}
|
||||
catch (IOException iOException) {
|
||||
String string2 = string;
|
||||
byte[] byArray = new byte[-1491123308 + 1491123334];
|
||||
byArray[0] = -1558172507 + 1558172617;
|
||||
byArray[1] = -1480387417 + 1480387540;
|
||||
byArray[2] = -1794901278 + 1794901156;
|
||||
byArray[3] = -292830567 + 292830676;
|
||||
byArray[4] = -2022106911 + 2022106921;
|
||||
byArray[5] = -668670287 + 668670254;
|
||||
byArray[-1335204233 + 1335204239] = -959042249 + 959042244;
|
||||
byArray[-1667829809 + 1667829816] = -339120712 + 339120824;
|
||||
byArray[-1356229506 + 1356229514] = -1866750265 + 1866750334;
|
||||
byArray[-171100105 + 171100114] = -1710018796 + 1710018738;
|
||||
byArray[-1398823623 + 1398823633] = -1965906957 + 1965907081;
|
||||
byArray[-1786582318 + 1786582329] = -127901906 + 127901902;
|
||||
byArray[-2036838891 + 2036838903] = -1958209290 + 1958209403;
|
||||
byArray[-2020739537 + 2020739550] = -1584224079 + 1584224048;
|
||||
byArray[-868208561 + 868208575] = -1142338703 + 1142338761;
|
||||
byArray[-358674367 + 358674382] = -510905630 + 510905749;
|
||||
byArray[-506614923 + 506614939] = -1112418098 + 1112417980;
|
||||
byArray[-755414187 + 755414204] = -738783936 + 738783887;
|
||||
byArray[-35745197 + 35745215] = -230661583 + 230661509;
|
||||
byArray[-315472788 + 315472807] = -1526581924 + 1526581998;
|
||||
byArray[-1000699852 + 1000699872] = -24304682 + 24304743;
|
||||
byArray[-1896931090 + 1896931111] = 2;
|
||||
byArray[-1248651045 + 1248651067] = -1574949889 + 1574949774;
|
||||
byArray[-1713065979 + 1713066002] = -1428164206 + 1428164186;
|
||||
byArray[-996372294 + 996372318] = 2;
|
||||
byArray[-784360722 + 784360747] = -1554130918 + 1554130960;
|
||||
System.err.println((String)((Object)pxx\u0445\u0458.a_bsm9("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray, (int)(-494746593 + 1879150181), (int)(-2007442116 + 1531184735))) + string2);
|
||||
iOException.printStackTrace();
|
||||
}
|
||||
}
|
||||
});
|
||||
if (this.\u0430\u0445\u0430\u0430j\u043e\u0430) {
|
||||
CallSite callSite = pxx\u0445\u0458.a_bsm5("\u043e\u0430ei\u0455", \u043e\u0430ei\u0455());
|
||||
((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)pxx\u0445\u0458.a_bsm4("jaa\u0435\u0445c", jaa\u0435\u0445c()))).ph\u0445().\u0430ai((File)((Object)callSite), true);
|
||||
((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)pxx\u0445\u0458.a_bsm4("jaa\u0435\u0445c", jaa\u0435\u0445c()))).\u0456\u043e\u0456 = pxx\u0445\u0458.a_bsm8("kKBnbIkw", kKBnbIkw(java.awt.image.BufferedImage ), (BufferedImage)((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)pxx\u0445\u0458.a_bsm4("jaa\u0435\u0445c", jaa\u0435\u0445c()))).ph\u0445().x\u0445\u04bb\u0455\u04bb\u0458\u043e);
|
||||
this.\u0430\u0445\u0430\u0430j\u043e\u0430 = false;
|
||||
}
|
||||
}
|
||||
|
||||
protected /* synthetic */ void method_25426() {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (pxx\u0445\u0458.a_bsm4("jaa\u0435\u0445c", jaa\u0435\u0445c()) != null && ((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)pxx\u0445\u0458.a_bsm4("jaa\u0435\u0445c", jaa\u0435\u0445c()))).ph\u0445().i\u0440\u0435p()) {
|
||||
((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)pxx\u0445\u0458.a_bsm4("jaa\u0435\u0445c", jaa\u0435\u0445c()))).ph\u0445().\u0441p\u0445s\u0435\u0456();
|
||||
}
|
||||
int n = this.field_22789 / 2;
|
||||
int n2 = this.field_22790 - (-1997940761 + 1997940786);
|
||||
int n3 = -786139680 + 786139734;
|
||||
int n4 = -521809614 + 521809638;
|
||||
int n5 = -769721912 + 769721918;
|
||||
int n6 = 5;
|
||||
int n7 = n3 * n6 + n5 * (n6 - 1);
|
||||
int n8 = n - n7 / 2;
|
||||
int n9 = n2 - n4 / 2;
|
||||
byte[] byArray = new byte[-1867448412 + 1867448418];
|
||||
byArray[0] = -43457672 + 43457708;
|
||||
byArray[1] = -1949454991 + 1949455029;
|
||||
byArray[2] = -2134242203 + 2134242139;
|
||||
byArray[3] = -531556879 + 531556905;
|
||||
byArray[4] = -497515203 + 497515244;
|
||||
byArray[5] = -1913217497 + 1913217612;
|
||||
this.j\u0430\u0440\u0458\u0441j = new \u0445\u0440\u0445\u0458(n8, n9, n3, n4, () -> {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)pxx\u0445\u0458.a_bsm4("jaa\u0435\u0445c", jaa\u0435\u0445c()))).ph\u0445().\u0441p\u0445s\u0435\u0456();
|
||||
\u0430\u0445j\u0445s\u0456\u04bb.method_1507((class_437)new class_526((class_437)this));
|
||||
}, (String)((Object)pxx\u0445\u0458.a_bsm9("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray, (int)(-2089061522 + 1867546461), (int)(1624265332 + 19337090))));
|
||||
this.pe\u0455j\u0455\u0455a = new \u0445\u0440\u0445\u0458(n8 + n3 + n5, n9, n3, n4, () -> {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)pxx\u0445\u0458.a_bsm4("jaa\u0435\u0445c", jaa\u0435\u0445c()))).ph\u0445().\u0441p\u0445s\u0435\u0456();
|
||||
\u0430\u0445j\u0445s\u0456\u04bb.method_1507((class_437)(this.field_22787.field_1690.field_21840 ? new class_500((class_437)this) : new class_4749((class_437)this)));
|
||||
}, (String)((Object)pxx\u0445\u0458.a_bsm9("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-744698746 + 744698863, -325983273 + 325983206, -995591901 + 995591868, -1006661866 + 1006661768, -220146674 + 220146648}, (int)(1872789637 + 2011129594), (int)(-1102677465 + 1752411282))));
|
||||
byte[] byArray2 = new byte[-1083010934 + 1083010941];
|
||||
byArray2[0] = -627639537 + 627639530;
|
||||
byArray2[1] = -1553388943 + 1553388818;
|
||||
byArray2[2] = -446488472 + 446488580;
|
||||
byArray2[3] = -1279318715 + 1279318760;
|
||||
byArray2[4] = -323550200 + 323550211;
|
||||
byArray2[5] = -1310793263 + 1310793146;
|
||||
byArray2[-1358597699 + 1358597705] = -1490040685 + 1490040789;
|
||||
this.\u0441x\u0441joo\u04bb = new \u0445\u0440\u0445\u0458(n8 + 2 * (n3 + n5), n9, n3, n4, () -> {
|
||||
if (true | false) {
|
||||
}
|
||||
\u0430\u0445j\u0445s\u0456\u04bb.method_1507((class_437)new class_429((class_437)this, this.field_22787.field_1690));
|
||||
}, (String)((Object)pxx\u0445\u0458.a_bsm9("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray2, (int)(874307534 + 2120929977), (int)(-1050743072 + 1427449747))));
|
||||
byte[] byArray3 = new byte[-1519430482 + 1519430488];
|
||||
byArray3[0] = -677457420 + 677457472;
|
||||
byArray3[1] = -2100101519 + 2100101392;
|
||||
byArray3[2] = -1202802891 + 1202802823;
|
||||
byArray3[3] = -1328307038 + 1328306994;
|
||||
byArray3[4] = -513677770 + 513677708;
|
||||
byArray3[5] = -1880033481 + 1880033493;
|
||||
this.ajh = new \u0445\u0440\u0445\u0458(n8 + 3 * (n3 + n5), n9, n3, n4, () -> {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
\u0430\u0445j\u0445s\u0456\u04bb.method_1507((class_437)new class_4325((class_437)this));
|
||||
}, (String)((Object)pxx\u0445\u0458.a_bsm9("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray3, (int)(-2127301684 + 967821079), (int)(-1079541117 + 1755686345))));
|
||||
double d = n8 + 4 * (n3 + n5);
|
||||
double d2 = n9;
|
||||
double d3 = n3;
|
||||
double d4 = n4;
|
||||
class_310 class_3102 = \u0430\u0445j\u0445s\u0456\u04bb;
|
||||
pxx\u0445\u0458.a_bsm10("requireNonNull", requireNonNull(T ), (Object)class_3102);
|
||||
this.o\u0435o = new \u0445\u0440\u0445\u0458(d, d2, d3, d4, () -> ((class_310)class_3102).method_1592(), (String)((Object)pxx\u0445\u0458.a_bsm9("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-285990750 + 285990702, -778790014 + 778790041, -782100204 + 782100176, -70795100 + 70795148}, (int)(2144164768 + 691752295), (int)(-1516715838 + 1198992461))));
|
||||
this.cpea\u0445h = new \u0458ip[]{this.j\u0430\u0440\u0458\u0441j, this.pe\u0455j\u0455\u0455a, this.\u0441x\u0441joo\u04bb, this.ajh, this.o\u0435o};
|
||||
}
|
||||
|
||||
private /* synthetic */ void lambda$render$0(String string, String string2) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
pxx\u0445\u0458.a_bsm26("j\u0455\u0445", j\u0455\u0445(java.lang.String float float java.awt.Color io.github.humbleui.skija.Font ), (String)string, (float)((float)this.field_22789 / 2.0f), (float)((float)this.field_22790 / 13.0f), (Color)((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)pxx\u0445\u0458.a_bsm4("jaa\u0435\u0445c", jaa\u0435\u0445c()))).\u0456\u043e\u0456.\u043es\u0458i(), (Font)this.\u0440j\u0441\u0445\u04bb\u0458\u04bb);
|
||||
pxx\u0445\u0458.a_bsm26("j\u0455\u0445", j\u0455\u0445(java.lang.String float float java.awt.Color io.github.humbleui.skija.Font ), (String)string2, (float)((float)this.field_22789 / 2.0f), (float)((float)this.field_22790 / 13.0f + this.\u0440j\u0441\u0445\u04bb\u0458\u04bb.getMetrics().getHeight()), (Color)((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)pxx\u0445\u0458.a_bsm4("jaa\u0435\u0445c", jaa\u0435\u0445c()))).\u0456\u043e\u0456.\u043es\u0458i(), (Font)this.a\u0445\u043e\u04bb\u0458o\u0435);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm0(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm1(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm2(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm3(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm4(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm5(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm6(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm7(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm8(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm9(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm10(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm11(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm12(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm13(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm14(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm15(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm16(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm17(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm18(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm19(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm20(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm21(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm22(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm23(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm24(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm25(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm26(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,79 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package asp\u04bb;
|
||||
|
||||
import asp\u04bb.\u0430phj;
|
||||
import java.lang.invoke.CallSite;
|
||||
import java.lang.invoke.ConstantCallSite;
|
||||
import java.lang.invoke.MethodHandle;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.lang.invoke.MethodType;
|
||||
import \u04bb\u04bb\u0456\u0445.\u0435\u043ea\u0440\u0458;
|
||||
|
||||
@Deprecated
|
||||
public final class sij\u0445p {
|
||||
public /* synthetic */ \u0430phj \u043e\u0440\u0441;
|
||||
public /* synthetic */ \u0430phj \u04bbe\u043ec;
|
||||
public /* synthetic */ \u0430phj cc\u0430\u0440i;
|
||||
public /* synthetic */ \u0430phj coo;
|
||||
public /* synthetic */ \u0430phj \u0440\u04bb\u0441;
|
||||
public /* synthetic */ \u0430phj s\u0445\u0455\u0445a;
|
||||
|
||||
@Deprecated
|
||||
public static sij\u0445p p\u0456h\u04bbshp(int n) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return new sij\u0445p(n, false);
|
||||
}
|
||||
|
||||
@Deprecated
|
||||
public static sij\u0445p \u0441p\u0440(int n) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return new sij\u0445p(n, true);
|
||||
}
|
||||
|
||||
private sij\u0445p(int n, boolean bl) {
|
||||
if (true | false) {
|
||||
}
|
||||
CallSite callSite = sij\u0445p.a_bsm0("h\u043ec\u0430\u043eo", h\u043ec\u0430\u043eo(int ), (int)n);
|
||||
double d = ((\u0435\u043ea\u0440\u0458)((Object)callSite)).\u0440os\u043eo();
|
||||
double d2 = ((\u0435\u043ea\u0440\u0458)((Object)callSite)).\u04bbeis\u0430();
|
||||
if (bl) {
|
||||
this.\u043e\u0440\u0441 = sij\u0445p.a_bsm1("oipa\u0455j", oipa\u0455j(double double ), (double)d, (double)d2);
|
||||
this.\u04bbe\u043ec = sij\u0445p.a_bsm1("oipa\u0455j", oipa\u0455j(double double ), (double)d, (double)(d2 / 3.0));
|
||||
this.cc\u0430\u0440i = sij\u0445p.a_bsm1("oipa\u0455j", oipa\u0455j(double double ), (double)(d + 60.0), (double)(d2 / 2.0));
|
||||
this.coo = sij\u0445p.a_bsm1("oipa\u0455j", oipa\u0455j(double double ), (double)d, (double)sij\u0445p.a_bsm2("min", min(double double ), (double)(d2 / 12.0), (double)4.0));
|
||||
this.\u0440\u04bb\u0441 = sij\u0445p.a_bsm1("oipa\u0455j", oipa\u0455j(double double ), (double)d, (double)sij\u0445p.a_bsm2("min", min(double double ), (double)(d2 / 6.0), (double)8.0));
|
||||
} else {
|
||||
this.\u043e\u0440\u0441 = sij\u0445p.a_bsm1("oipa\u0455j", oipa\u0455j(double double ), (double)d, (double)sij\u0445p.a_bsm3("max", max(double double ), (double)48.0, (double)d2));
|
||||
this.\u04bbe\u043ec = sij\u0445p.a_bsm1("oipa\u0455j", oipa\u0455j(double double ), (double)d, (double)16.0);
|
||||
this.cc\u0430\u0440i = sij\u0445p.a_bsm1("oipa\u0455j", oipa\u0455j(double double ), (double)(d + 60.0), (double)24.0);
|
||||
this.coo = sij\u0445p.a_bsm1("oipa\u0455j", oipa\u0455j(double double ), (double)d, (double)4.0);
|
||||
this.\u0440\u04bb\u0441 = sij\u0445p.a_bsm1("oipa\u0455j", oipa\u0455j(double double ), (double)d, (double)8.0);
|
||||
}
|
||||
this.s\u0445\u0455\u0445a = sij\u0445p.a_bsm1("oipa\u0455j", oipa\u0455j(double double ), (double)25.0, (double)84.0);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm0(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm1(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm2(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm3(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,141 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package asp\u04bb;
|
||||
|
||||
import asp\u04bb.\u0456\u0458\u0455xp;
|
||||
import java.lang.invoke.CallSite;
|
||||
import java.lang.invoke.ConstantCallSite;
|
||||
import java.lang.invoke.MethodHandle;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.lang.invoke.MethodType;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
import \u04bb\u04bb\u0456\u0445.\u0435\u043ea\u0440\u0458;
|
||||
|
||||
public final class \u0430phj {
|
||||
/* synthetic */ Map<Integer, Integer> \u0430\u0441\u0455\u043e\u0441hs;
|
||||
/* synthetic */ \u0435\u043ea\u0440\u0458 \u0456x\u043e\u0456\u0458\u04bb;
|
||||
/* synthetic */ double \u0445\u0435xho\u04bb\u0456;
|
||||
/* synthetic */ double \u0430\u0430\u0441;
|
||||
|
||||
public static /* synthetic */ \u0430phj h\u043ec\u0430\u043eo(int n) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return \u0430phj.\u0435\u0441x\u0435\u0440\u0435((\u0435\u043ea\u0440\u0458)((Object)\u0430phj.a_bsm0("h\u043ec\u0430\u043eo", h\u043ec\u0430\u043eo(int ), (int)n)));
|
||||
}
|
||||
|
||||
public static /* synthetic */ \u0430phj \u0435\u0441x\u0435\u0440\u0435(\u0435\u043ea\u0440\u0458 \u0435\u043ea\u0440\u04582) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return new \u0430phj(\u0435\u043ea\u0440\u04582.\u0440os\u043eo(), \u0435\u043ea\u0440\u04582.\u04bbeis\u0430(), \u0435\u043ea\u0440\u04582);
|
||||
}
|
||||
|
||||
public static /* synthetic */ \u0430phj oipa\u0455j(double d, double d2) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
\u0435\u043ea\u0440\u0458 \u0435\u043ea\u0440\u04582 = new \u0456\u0458\u0455xp(d, d2).x\u0441o();
|
||||
return new \u0430phj(d, d2, \u0435\u043ea\u0440\u04582);
|
||||
}
|
||||
|
||||
private \u0430phj(double d, double d2, \u0435\u043ea\u0440\u0458 \u0435\u043ea\u0440\u04582) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
this.\u0430\u0441\u0455\u043e\u0441hs = new HashMap<Integer, Integer>();
|
||||
this.\u0445\u0435xho\u04bb\u0456 = d;
|
||||
this.\u0430\u0430\u0441 = d2;
|
||||
this.\u0456x\u043e\u0456\u0458\u04bb = \u0435\u043ea\u0440\u04582;
|
||||
}
|
||||
|
||||
public /* synthetic */ int \u0456x\u0456\u0440\u0445p\u0445(int n) {
|
||||
Object object;
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if ((object = this.\u0430\u0441\u0455\u043e\u0441hs.get(\u0430phj.a_bsm1("valueOf", valueOf(int ), (int)n))) == null) {
|
||||
object = n == -600250593 + 600250692 && \u0430phj.a_bsm2("c\u0445h\u043eps\u0445", c\u0445h\u043eps\u0445(double ), (double)this.\u0445\u0435xho\u04bb\u0456) != false ? \u0430phj.a_bsm1("valueOf", valueOf(int ), (int)this.i\u0456c(this.\u0456x\u0456\u0440\u0445p\u0445(-144746967 + 144747065), this.\u0456x\u0456\u0440\u0445p\u0445(-296232317 + 296232417))) : \u0430phj.a_bsm1("valueOf", valueOf(int ), (int)((\u0435\u043ea\u0440\u0458)((Object)\u0430phj.a_bsm3("\u043e\u0455\u043e", \u043e\u0455\u043e(double double double ), (double)this.\u0445\u0435xho\u04bb\u0456, (double)this.\u0430\u0430\u0441, (double)n))).e\u0456c\u04bb\u0456\u0430());
|
||||
this.\u0430\u0441\u0455\u043e\u0441hs.put((Integer)((Object)\u0430phj.a_bsm1("valueOf", valueOf(int ), (int)n)), (Integer)object);
|
||||
}
|
||||
return (Integer)object;
|
||||
}
|
||||
|
||||
public /* synthetic */ \u0435\u043ea\u0440\u0458 a\u0458h\u0445p(double d) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (d == 99.0 && \u0430phj.a_bsm2("c\u0445h\u043eps\u0445", c\u0445h\u043eps\u0445(double ), (double)this.\u0445\u0435xho\u04bb\u0456) != false) {
|
||||
return \u0430phj.a_bsm0("h\u043ec\u0430\u043eo", h\u043ec\u0430\u043eo(int ), (int)this.\u0456x\u0456\u0440\u0445p\u0445(-159856100 + 159856199));
|
||||
}
|
||||
return \u0430phj.a_bsm3("\u043e\u0455\u043e", \u043e\u0455\u043e(double double double ), (double)this.\u0445\u0435xho\u04bb\u0456, (double)this.\u0430\u0430\u0441, (double)d);
|
||||
}
|
||||
|
||||
public /* synthetic */ double \u04bbeis\u0430() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.\u0430\u0430\u0441;
|
||||
}
|
||||
|
||||
public /* synthetic */ double \u0440os\u043eo() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.\u0445\u0435xho\u04bb\u0456;
|
||||
}
|
||||
|
||||
public /* synthetic */ \u0435\u043ea\u0440\u0458 \u0440aeo\u0445() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.\u0456x\u043e\u0456\u0458\u04bb;
|
||||
}
|
||||
|
||||
private /* synthetic */ int i\u0456c(int n, int n2) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
int n3 = n >>> -1806428707 + 1806428723 & -899526426 + 899526681;
|
||||
int n4 = n >>> -815858920 + 815858928 & -1045559443 + 1045559698;
|
||||
int n5 = n & -925443288 + 925443543;
|
||||
int n6 = n2 >>> -1287382601 + 1287382617 & -945629705 + 945629960;
|
||||
int n7 = n2 >>> -804814064 + 804814072 & -1689739434 + 1689739689;
|
||||
int n8 = n2 & -261053644 + 261053899;
|
||||
CallSite callSite = \u0430phj.a_bsm4("round", round(float ), (float)((float)(n3 + n6) / 2.0f));
|
||||
CallSite callSite2 = \u0430phj.a_bsm4("round", round(float ), (float)((float)(n4 + n7) / 2.0f));
|
||||
CallSite callSite3 = \u0430phj.a_bsm4("round", round(float ), (float)((float)(n5 + n8) / 2.0f));
|
||||
return (-1429977694 + 1413200478 | (callSite & -690047616 + 690047871) << -1630513451 + 1630513467 | (callSite2 & -2112419938 + 2112420193) << -1931665248 + 1931665256 | callSite3 & -1160033533 + 1160033788) >>> 0;
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm0(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm1(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm2(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm3(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm4(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package asp\u04bb;
|
||||
|
||||
import asp\u04bb.\u0430phj;
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
|
||||
public final class \u04bb\u0440o\u0456 {
|
||||
public /* synthetic */ \u0430phj \u0441o\u0445i\u0455\u0456\u0456;
|
||||
public /* synthetic */ \u0430phj j\u0441x\u043e;
|
||||
public /* synthetic */ \u0430phj cexce;
|
||||
public /* synthetic */ \u0430phj \u0430ppe;
|
||||
public /* synthetic */ \u0430phj x\u0441\u04bb\u0445\u043ea\u0440;
|
||||
|
||||
public \u04bb\u0440o\u0456(\u0430phj \u0430phj2, \u0430phj \u0430phj3, \u0430phj \u0430phj4, \u0430phj \u0430phj5, \u0430phj \u0430phj6) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
this.\u0441o\u0445i\u0455\u0456\u0456 = \u0430phj2;
|
||||
this.j\u0441x\u043e = \u0430phj3;
|
||||
this.cexce = \u0430phj4;
|
||||
this.\u0430ppe = \u0430phj5;
|
||||
this.x\u0441\u04bb\u0445\u043ea\u0440 = \u0430phj6;
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,420 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package a\u0435\u0445a;
|
||||
|
||||
import a\u0435\u0445a.jipx\u0455xa;
|
||||
import a\u0435\u0445a.\u0445a\u043e\u0456\u0435;
|
||||
import ie\u0441\u0430ej.pjxx;
|
||||
import java.lang.invoke.CallSite;
|
||||
import java.lang.invoke.ConstantCallSite;
|
||||
import java.lang.invoke.MethodHandle;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.lang.invoke.MethodType;
|
||||
import net.minecraft.class_2338;
|
||||
import net.minecraft.class_2350;
|
||||
import net.minecraft.class_243;
|
||||
import net.minecraft.class_3965;
|
||||
import net.minecraft.class_636;
|
||||
import net.minecraft.class_638;
|
||||
import net.minecraft.class_746;
|
||||
import r.II.C3UAq1QzkmtZmYNnTSp73SYgo;
|
||||
import r.LZ.CDjMYjTNesAiy3UBEtCcTblSt;
|
||||
import r.Rv.CeNxGb2ovmRWcH3Z1Au3ZkrsB;
|
||||
import r.X8.CcYJrux4L7ZFBBRQV6S2PONen;
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
import r.pI.CPw6HcipH0friQ8uHGJ8BC7la;
|
||||
import r.qv.CKBLrNlh2D4S5F6egPBaf2u9Z;
|
||||
import r.s8.CsBcakRpaOppwJzcUFjYdgNdj;
|
||||
import \u0458\u0458\u0458o\u0430\u0456.e\u0445\u0440\u0440a;
|
||||
|
||||
public final class \u0430\u043ec\u0458\u0458
|
||||
implements pjxx {
|
||||
private /* synthetic */ jipx\u0455xa se\u0458p\u0435;
|
||||
private /* synthetic */ int hi\u0430iphh;
|
||||
private /* synthetic */ int sc\u0458o\u0456;
|
||||
private /* synthetic */ class_3965 \u0430\u0430\u04bbcpo;
|
||||
private /* synthetic */ class_2338 icai\u0445p;
|
||||
private /* synthetic */ int \u0440\u0458\u0455ss;
|
||||
private static /* synthetic */ int __js_dispatch_state = 0;
|
||||
|
||||
public \u0430\u043ec\u0458\u0458() {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (\u0430\u043ec\u0458\u0458.$_h1wrsjec1ngan17li5((long)\u0430\u043ec\u0458\u0458.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0430\u043ec\u0458\u0458.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
this.se\u0458p\u0435 = jipx\u0455xa.\u043ec\u0440;
|
||||
this.sc\u0458o\u0456 = -1;
|
||||
}
|
||||
|
||||
public /* synthetic */ boolean \u0430\u0441shei(boolean bl) {
|
||||
int n = 1976985010;
|
||||
n += 1263712673;
|
||||
n += -1515627305;
|
||||
n += 1389670001;
|
||||
n += -1452648650;
|
||||
n += -726324323;
|
||||
n += -363162149;
|
||||
n += 1965902570;
|
||||
return (Boolean)C1a946c5246ca0949bfd0e13d.m_7dd473f102f12607(8881791329811357167L, new Object[]{this, bl});
|
||||
}
|
||||
|
||||
public /* synthetic */ boolean cjxco\u0430a() {
|
||||
int n = 452073640;
|
||||
n += 1263712673;
|
||||
n += -1515627305;
|
||||
n += 1389670001;
|
||||
n += -1452648650;
|
||||
n += -726324323;
|
||||
n += -363162149;
|
||||
n += 1965902570;
|
||||
return (Boolean)C1a946c5246ca0949bfd0e13d.m_7dd473f102f12607(-1683146324284533985L, new Object[]{this});
|
||||
}
|
||||
|
||||
public /* synthetic */ void c\u0440je\u0458(boolean bl) {
|
||||
int n = 597976659;
|
||||
n += 1263712673;
|
||||
n += -1515627305;
|
||||
n += 1389670001;
|
||||
n += -1452648650;
|
||||
n += -726324323;
|
||||
n += -363162149;
|
||||
n += 1965902570;
|
||||
C1a946c5246ca0949bfd0e13d.m_7dd473f102f12607(7574564414382087015L, new Object[]{this, bl});
|
||||
}
|
||||
|
||||
public /* synthetic */ void \u0441\u0458e() {
|
||||
int n = -776369604;
|
||||
n += 1263712673;
|
||||
n += -1515627305;
|
||||
n += 1389670001;
|
||||
n += -1452648650;
|
||||
n += -726324323;
|
||||
n += -363162149;
|
||||
n += 1965902570;
|
||||
C1a946c5246ca0949bfd0e13d.m_7dd473f102f12607(-570067469784843942L, new Object[]{this});
|
||||
}
|
||||
|
||||
private /* synthetic */ void p\u0440oic(class_746 class_7462) {
|
||||
int n = 1381892385;
|
||||
n += 1263712673;
|
||||
n += -1515627305;
|
||||
n += 1389670001;
|
||||
n += -1452648650;
|
||||
n += -726324323;
|
||||
n += -363162149;
|
||||
n += 1965902570;
|
||||
if (false) {
|
||||
CKBLrNlh2D4S5F6egPBaf2u9Z.SHbQyJ((long)0L, (String)new String(new char[]{(char)(-44852 + 44929), (char)(-45664 + 45733), (char)(-40065 + 40149), (char)(-28270 + 28335), (char)(-51422 + 51467), (char)(-10724 + 10797), (char)(-48803 + 48881), (char)(-30136 + 30206), (char)(-23132 + 23179), (char)(-64783 + 64859), (char)(-20399 + 20452), (char)(-49544 + 49591), (char)(-46646 + 46698), (char)(-44824 + 44913), (char)(-58815 + 58924), (char)(-49941 + 50062), (char)(-7347 + 7394), (char)(-31824 + 31924), (char)(-53749 + 53830), (char)(-13174 + 13278), (char)(-62513 + 62620), (char)(-26306 + 26420), (char)(-32053 + 32166), (char)(-54461 + 54582), (char)(-29719 + 29820), (char)(-20639 + 20727), (char)(-1555 + 1612), (char)(-55141 + 55197), (char)(-28695 + 28813), (char)(-43766 + 43884), (char)(-21113 + 21193), (char)(-34475 + 34558), (char)(-9220 + 9274), (char)(-5145 + 5267), (char)(-4931 + 5017), (char)(-26824 + 26870), (char)(-27995 + 28111), (char)(-19904 + 20024), (char)(-9234 + 9350)}), (Object[])new Object[0]);
|
||||
}
|
||||
C1a946c5246ca0949bfd0e13d.m_7dd473f102f12607(-8024280139077806204L, new Object[]{this, class_7462});
|
||||
}
|
||||
|
||||
private /* synthetic */ boolean h\u0456\u0455\u0441a(class_746 class_7462, class_638 class_6382, class_2338 class_23382) {
|
||||
int n = -1471478693;
|
||||
n += 1263712673;
|
||||
n += -1515627305;
|
||||
n += 1389670001;
|
||||
n += -1452648650;
|
||||
n += -726324323;
|
||||
n += -363162149;
|
||||
n += 1965902570;
|
||||
return (Boolean)C1a946c5246ca0949bfd0e13d.m_7dd473f102f12607(8095578007133831632L, new Object[]{this, class_7462, class_6382, class_23382});
|
||||
}
|
||||
|
||||
private /* synthetic */ void \u0455i\u0458\u0440\u04bb\u043e\u0440(class_746 class_7462, class_636 class_6362) {
|
||||
int n = -1219601396;
|
||||
n += 1263712673;
|
||||
n += -1515627305;
|
||||
n += 1389670001;
|
||||
n += -1452648650;
|
||||
n += -726324323;
|
||||
n += -363162149;
|
||||
n += 1965902570;
|
||||
C1a946c5246ca0949bfd0e13d.m_7dd473f102f12607(-5298070372873015470L, new Object[]{this, class_7462, class_6362});
|
||||
}
|
||||
|
||||
private /* synthetic */ void c\u0458ai\u0441(class_746 class_7462, class_638 class_6382, class_636 class_6362) {
|
||||
int n = 2097743570;
|
||||
n += 1263712673;
|
||||
n += -1515627305;
|
||||
n += 1389670001;
|
||||
n += -1452648650;
|
||||
n += -726324323;
|
||||
n += -363162149;
|
||||
n += 1965902570;
|
||||
if (false) {
|
||||
CDjMYjTNesAiy3UBEtCcTblSt.fqOdgR((long)0L, (String)new String(new char[]{(char)(-16759 + 16836), (char)(-5487 + 5556), (char)(-44508 + 44592), (char)(-29427 + 29492), (char)(-20789 + 20834), (char)(-56260 + 56333), (char)(-45793 + 45871), (char)(-42016 + 42086), (char)(-28673 + 28720), (char)(-33098 + 33166), (char)(-36713 + 36824), (char)(-30584 + 30631), (char)(-63433 + 63503), (char)(-31109 + 31195), (char)(-25571 + 25681), (char)(-16577 + 16665), (char)(-26459 + 26506), (char)(-61041 + 61161), (char)(-13267 + 13333), (char)(-43957 + 44007), (char)(-21610 + 21696), (char)(-3741 + 3842), (char)(-51141 + 51246), (char)(-2323 + 2424), (char)(-21467 + 21564), (char)(-37464 + 37572), (char)(-31707 + 31810), (char)(-49405 + 49484), (char)(-47266 + 47372), (char)(-50516 + 50620), (char)(-16016 + 16083), (char)(-2942 + 2996), (char)(-30120 + 30173), (char)(-65251 + 65332), (char)(-65041 + 65094), (char)(-40044 + 40090), (char)(-13538 + 13637), (char)(-20702 + 20804), (char)(-29600 + 29703)}), (Object[])new Object[0]);
|
||||
}
|
||||
C1a946c5246ca0949bfd0e13d.m_7dd473f102f12607(3148029732918579961L, new Object[]{this, class_7462, class_6382, class_6362});
|
||||
}
|
||||
|
||||
private static /* synthetic */ class_243 \u0458\u0455h\u0445iia(class_2338 class_23382, class_2350 class_23502) {
|
||||
int n = -98256160;
|
||||
n += 1263712673;
|
||||
n += -1515627305;
|
||||
n += 1389670001;
|
||||
n += -1452648650;
|
||||
n += -726324323;
|
||||
n += -363162149;
|
||||
n += 1965902570;
|
||||
if (false) {
|
||||
CeNxGb2ovmRWcH3Z1Au3ZkrsB.EE5gH6((long)0L, (String)new String(new char[]{(char)(-25308 + 25385), (char)(-59389 + 59458), (char)(-34782 + 34866), (char)(-40994 + 41059), (char)(-5743 + 5788), (char)(-40154 + 40227), (char)(-9372 + 9450), (char)(-64458 + 64528), (char)(-11820 + 11867), (char)(-26908 + 26980), (char)(-5300 + 5376), (char)(-30551 + 30598), (char)(-3617 + 3702), (char)(-29653 + 29730), (char)(-42791 + 42872), (char)(-20064 + 20130), (char)(-265 + 312), (char)(-59439 + 59536), (char)(-52179 + 52253), (char)(-19575 + 19656), (char)(-60879 + 60951), (char)(-22348 + 22405), (char)(-31838 + 31927), (char)(-39190 + 39299), (char)(-35559 + 35667), (char)(-28082 + 28199), (char)(-60750 + 60822), (char)(-43976 + 44062), (char)(-55749 + 55859), (char)(-17790 + 17910), (char)(-21372 + 21449), (char)(-27533 + 27581), (char)(-17068 + 17125), (char)(-27065 + 27163), (char)(-3219 + 3304), (char)(-33719 + 33765), (char)(-57081 + 57180), (char)(-26306 + 26417), (char)(-54101 + 54211), (char)(-5322 + 5424)}), (Object[])new Object[0]);
|
||||
}
|
||||
return (class_243)C1a946c5246ca0949bfd0e13d.m_7dd473f102f12607(-2088024814463959405L, new Object[]{class_23382, class_23502});
|
||||
}
|
||||
|
||||
private /* synthetic */ \u0445a\u043e\u0456\u0435 i\u0435\u0440i\u0455e(class_746 class_7462, class_638 class_6382, class_2338 class_23382) {
|
||||
int n = -2062281887;
|
||||
n += 1263712673;
|
||||
n += -1515627305;
|
||||
n += 1389670001;
|
||||
n += -1452648650;
|
||||
n += -726324323;
|
||||
n += -363162149;
|
||||
n += 1965902570;
|
||||
return (\u0445a\u043e\u0456\u0435)C1a946c5246ca0949bfd0e13d.m_7dd473f102f12607(-7645930664080282793L, new Object[]{this, class_7462, class_6382, class_23382});
|
||||
}
|
||||
|
||||
private /* synthetic */ class_2338 \u0458ocp(class_746 class_7462, class_638 class_6382) {
|
||||
int n = -2085714;
|
||||
n += 1263712673;
|
||||
n += -1515627305;
|
||||
n += 1389670001;
|
||||
n += -1452648650;
|
||||
n += -726324323;
|
||||
n += -363162149;
|
||||
n += 1965902570;
|
||||
if (false) {
|
||||
CcYJrux4L7ZFBBRQV6S2PONen.YlH0Dz((long)0L, (String)new String(new char[]{(char)(-38384 + 38461), (char)(-6169 + 6238), (char)(-47310 + 47394), (char)(-28748 + 28813), (char)(-34549 + 34594), (char)(-31619 + 31692), (char)(-53946 + 54024), (char)(-48093 + 48163), (char)(-19825 + 19872), (char)(-61576 + 61660), (char)(-60299 + 60403), (char)(-21524 + 21571), (char)(-39169 + 39266), (char)(-73 + 158), (char)(-31728 + 31829), (char)(-38475 + 38563), (char)(-37570 + 37617), (char)(-28865 + 28965), (char)(-53364 + 53482), (char)(-25993 + 26105), (char)(-31472 + 31562), (char)(-58844 + 58913), (char)(-65480 + 65533), (char)(-56468 + 56577), (char)(-3857 + 3963), (char)(-31526 + 31610), (char)(-21585 + 21707), (char)(-33148 + 33218), (char)(-25954 + 26044), (char)(-49809 + 49915), (char)(-48686 + 48795), (char)(-43298 + 43385), (char)(-56004 + 56092), (char)(-22889 + 22956), (char)(-45136 + 45201), (char)(-57711 + 57757), (char)(-52520 + 52625), (char)(-4142 + 4252), (char)(-52614 + 52719)}), (Object[])new Object[0]);
|
||||
}
|
||||
return (class_2338)C1a946c5246ca0949bfd0e13d.m_7dd473f102f12607(4462829292519187038L, new Object[]{this, class_7462, class_6382});
|
||||
}
|
||||
|
||||
private /* synthetic */ boolean o\u0430x(class_746 class_7462, class_638 class_6382) {
|
||||
int n = -881682037;
|
||||
n += 1263712673;
|
||||
n += -1515627305;
|
||||
n += 1389670001;
|
||||
n += -1452648650;
|
||||
n += -726324323;
|
||||
n += -363162149;
|
||||
n += 1965902570;
|
||||
return (Boolean)C1a946c5246ca0949bfd0e13d.m_7dd473f102f12607(-4654965474623959321L, new Object[]{this, class_7462, class_6382});
|
||||
}
|
||||
|
||||
private /* synthetic */ int \u0458\u04bba\u04bb(class_746 class_7462) {
|
||||
int n = 1487655897;
|
||||
n += 1263712673;
|
||||
n += -1515627305;
|
||||
n += 1389670001;
|
||||
n += -1452648650;
|
||||
n += -726324323;
|
||||
n += -363162149;
|
||||
n += 1965902570;
|
||||
if (false) {
|
||||
CPw6HcipH0friQ8uHGJ8BC7la.rOvDgm((long)0L, (String)new String(new char[]{(char)(-64155 + 64232), (char)(-9243 + 9312), (char)(-21563 + 21647), (char)(-12727 + 12792), (char)(-46083 + 46128), (char)(-41682 + 41755), (char)(-65178 + 65256), (char)(-7876 + 7946), (char)(-4567 + 4614), (char)(-26766 + 26814), (char)(-29742 + 29849), (char)(-50983 + 51030), (char)(-28897 + 28952), (char)(-60679 + 60763), (char)(-59798 + 59854), (char)(-30900 + 30954), (char)(-7514 + 7561), (char)(-23661 + 23762), (char)(-25286 + 25385), (char)(-62370 + 62427), (char)(-24168 + 24270), (char)(-2023 + 2088), (char)(-50029 + 50149), (char)(-33738 + 33805), (char)(-29579 + 29698), (char)(-27457 + 27532), (char)(-57503 + 57554), (char)(-12228 + 12285), (char)(-26005 + 26110), (char)(-1061 + 1132), (char)(-58358 + 58479), (char)(-9301 + 9385), (char)(-36821 + 36921), (char)(-64163 + 64274), (char)(-50647 + 50696), (char)(-4501 + 4547), (char)(-53736 + 53842), (char)(-51189 + 51304), (char)(-53948 + 54059), (char)(-16967 + 17077)}), (Object[])new Object[0]);
|
||||
}
|
||||
return (Integer)C1a946c5246ca0949bfd0e13d.m_7dd473f102f12607(-7183460615586684727L, new Object[]{this, class_7462});
|
||||
}
|
||||
|
||||
private /* synthetic */ void \u043e\u0456\u0430\u0435(class_746 class_7462, int n) {
|
||||
int n2 = 892170755;
|
||||
n2 += 1263712673;
|
||||
n2 += -1515627305;
|
||||
n2 += 1389670001;
|
||||
n2 += -1452648650;
|
||||
n2 += -726324323;
|
||||
n2 += -363162149;
|
||||
n2 += 1965902570;
|
||||
C1a946c5246ca0949bfd0e13d.m_7dd473f102f12607(5695155632861529914L, new Object[]{this, class_7462, n});
|
||||
}
|
||||
|
||||
private /* synthetic */ class_2338 hci\u04bbs(class_746 class_7462, class_638 class_6382) {
|
||||
int n = -1171737353;
|
||||
n += 1263712673;
|
||||
n += -1515627305;
|
||||
n += 1389670001;
|
||||
n += -1452648650;
|
||||
n += -726324323;
|
||||
n += -363162149;
|
||||
n += 1965902570;
|
||||
if (false) {
|
||||
CsBcakRpaOppwJzcUFjYdgNdj.HkgE24((long)0L, (String)new String(new char[]{(char)(-56792 + 56869), (char)(-26090 + 26159), (char)(-19239 + 19323), (char)(-65076 + 65141), (char)(-51486 + 51531), (char)(-41944 + 42017), (char)(-19762 + 19840), (char)(-43148 + 43218), (char)(-35641 + 35688), (char)(-31234 + 31332), (char)(-8758 + 8809), (char)(-63847 + 63894), (char)(-44478 + 44589), (char)(-5387 + 5486), (char)(-24205 + 24256), (char)(-18451 + 18500), (char)(-49600 + 49647), (char)(-53664 + 53781), (char)(-49528 + 49610), (char)(-6856 + 6939), (char)(-10023 + 10128), (char)(-11335 + 11436), (char)(-16409 + 16464), (char)(-16316 + 16386), (char)(-23950 + 24052), (char)(-43359 + 43441), (char)(-48809 + 48897), (char)(-16537 + 16657), (char)(-58256 + 58324), (char)(-62622 + 62692), (char)(-64368 + 64433), (char)(-36878 + 36995), (char)(-32831 + 32888), (char)(-60680 + 60736), (char)(-8025 + 8081), (char)(-19994 + 20040), (char)(-3351 + 3472), (char)(-47952 + 48061), (char)(-21967 + 22075)}), (Object[])new Object[0]);
|
||||
}
|
||||
return (class_2338)C1a946c5246ca0949bfd0e13d.m_7dd473f102f12607(-6906845230895679210L, new Object[]{this, class_7462, class_6382});
|
||||
}
|
||||
|
||||
private /* synthetic */ boolean \u0456\u0456\u0456a(class_746 class_7462, class_638 class_6382, e\u0445\u0440\u0440a e\u0445\u0440\u0440a2, class_2338 class_23382) {
|
||||
int n = 2027827598;
|
||||
n += 1263712673;
|
||||
n += -1515627305;
|
||||
n += 1389670001;
|
||||
n += -1452648650;
|
||||
n += -726324323;
|
||||
n += -363162149;
|
||||
n += 1965902570;
|
||||
if (false) {
|
||||
C3UAq1QzkmtZmYNnTSp73SYgo.NkCdwp((long)0L, (String)new String(new char[]{(char)(-48456 + 48533), (char)(-38452 + 38521), (char)(-54502 + 54586), (char)(-14727 + 14792), (char)(-47718 + 47763), (char)(-15784 + 15857), (char)(-1977 + 2055), (char)(-27043 + 27113), (char)(-21133 + 21180), (char)(-61222 + 61290), (char)(-19341 + 19390), (char)(-57931 + 57978), (char)(-50073 + 50121), (char)(-40966 + 41055), (char)(-28400 + 28454), (char)(-12769 + 12890), (char)(-8672 + 8719), (char)(-9534 + 9606), (char)(-21493 + 21581), (char)(-54930 + 55043), (char)(-5867 + 5954), (char)(-38438 + 38486), (char)(-9185 + 9234), (char)(-61171 + 61268), (char)(-48685 + 48763), (char)(-27835 + 27947), (char)(-63697 + 63783), (char)(-61716 + 61792), (char)(-9254 + 9320), (char)(-47871 + 47982), (char)(-16608 + 16697), (char)(-8452 + 8538), (char)(-2445 + 2556), (char)(-39875 + 39987), (char)(-60725 + 60795), (char)(-35147 + 35193), (char)(-55631 + 55743), (char)(-53498 + 53612), (char)(-21894 + 22005), (char)(-16889 + 17001), (char)(-58256 + 58357), (char)(-16018 + 16132), (char)(-60769 + 60885), (char)(-65145 + 65250), (char)(-61590 + 61691), (char)(-28599 + 28714)}), (Object[])new Object[0]);
|
||||
}
|
||||
return (Boolean)C1a946c5246ca0949bfd0e13d.m_7dd473f102f12607(-4185900478372563736L, new Object[]{this, class_7462, class_6382, e\u0445\u0440\u0440a2, class_23382});
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm0(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm1(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm2(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm3(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm4(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm5(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm6(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm7(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm8(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm9(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm10(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm11(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ int __js_lcmp_1(long l2, long l3) {
|
||||
return l2 == l3 ? 0 : (l2 < l3 ? -1 : 1);
|
||||
}
|
||||
|
||||
private static /* synthetic */ int __js_lcmp_2(long l2, long l3) {
|
||||
return l2 == l3 ? 0 : (l2 < l3 ? -1 : 1);
|
||||
}
|
||||
|
||||
private static /* synthetic */ int __js_lcmp_3(long l2, long l3) {
|
||||
return l2 == l3 ? 0 : (l2 < l3 ? -1 : 1);
|
||||
}
|
||||
|
||||
private static /* synthetic */ int __js_lcmp_4(long l2, long l3) {
|
||||
return l2 == l3 ? 0 : (l2 < l3 ? -1 : 1);
|
||||
}
|
||||
|
||||
private static /* synthetic */ int __js_lcmp_5(long l2, long l3) {
|
||||
return l2 == l3 ? 0 : (l2 < l3 ? -1 : 1);
|
||||
}
|
||||
|
||||
private static /* synthetic */ int __js_lcmp_6(long l2, long l3) {
|
||||
return l2 == l3 ? 0 : (l2 < l3 ? -1 : 1);
|
||||
}
|
||||
|
||||
private static /* synthetic */ int __js_lcmp_7(long l2, long l3) {
|
||||
return l2 == l3 ? 0 : (l2 < l3 ? -1 : 1);
|
||||
}
|
||||
|
||||
private static /* synthetic */ int __js_lcmp_8(long l2, long l3) {
|
||||
return l2 == l3 ? 0 : (l2 < l3 ? -1 : 1);
|
||||
}
|
||||
|
||||
private static /* synthetic */ int __js_lcmp_9(long l2, long l3) {
|
||||
return l2 == l3 ? 0 : (l2 < l3 ? -1 : 1);
|
||||
}
|
||||
|
||||
private static /* synthetic */ int __js_lcmp_10(long l2, long l3) {
|
||||
return l2 == l3 ? 0 : (l2 < l3 ? -1 : 1);
|
||||
}
|
||||
|
||||
private static /* synthetic */ int __js_dcmp_11(double d, double d2) {
|
||||
return d == d2 ? 0 : (d > d2 ? 1 : -1);
|
||||
}
|
||||
|
||||
private static /* synthetic */ int __js_lcmp_12(long l2, long l3) {
|
||||
return l2 == l3 ? 0 : (l2 < l3 ? -1 : 1);
|
||||
}
|
||||
|
||||
private static /* synthetic */ int __js_lcmp_13(long l2, long l3) {
|
||||
return l2 == l3 ? 0 : (l2 < l3 ? -1 : 1);
|
||||
}
|
||||
|
||||
private static /* synthetic */ int __js_lcmp_14(long l2, long l3) {
|
||||
return l2 == l3 ? 0 : (l2 < l3 ? -1 : 1);
|
||||
}
|
||||
|
||||
private static /* synthetic */ int __js_lcmp_15(long l2, long l3) {
|
||||
return l2 == l3 ? 0 : (l2 < l3 ? -1 : 1);
|
||||
}
|
||||
|
||||
private static /* synthetic */ int __js_lcmp_16(long l2, long l3) {
|
||||
return l2 == l3 ? 0 : (l2 < l3 ? -1 : 1);
|
||||
}
|
||||
|
||||
private static /* synthetic */ int __js_dcmp_17(double d, double d2) {
|
||||
return d == d2 ? 0 : (d < d2 ? -1 : 1);
|
||||
}
|
||||
|
||||
private static /* synthetic */ int __js_lcmp_18(long l2, long l3) {
|
||||
return l2 == l3 ? 0 : (l2 < l3 ? -1 : 1);
|
||||
}
|
||||
|
||||
private static /* synthetic */ int $_h1wrsje31ngan17lhw(int n) {
|
||||
return n;
|
||||
}
|
||||
|
||||
private static /* synthetic */ int $_h1wrsje41ngan17lhx(int n) {
|
||||
return n;
|
||||
}
|
||||
|
||||
private static /* synthetic */ int $_h1wrsje51ngan17lhy(int n) {
|
||||
return n;
|
||||
}
|
||||
|
||||
private static /* synthetic */ int $_h1wrsje61ngan17lhz(int n) {
|
||||
return n;
|
||||
}
|
||||
|
||||
private static /* synthetic */ int $_h1wrsje71ngan17li0(int n) {
|
||||
return n;
|
||||
}
|
||||
|
||||
private static /* synthetic */ int $_h1wrsje81ngan17li1(int n) {
|
||||
return n;
|
||||
}
|
||||
|
||||
private static /* synthetic */ int $_h1wrsje91ngan17li2(int n) {
|
||||
return n;
|
||||
}
|
||||
|
||||
private static /* synthetic */ int $_h1wrsjea1ngan17li3(int n) {
|
||||
return n;
|
||||
}
|
||||
|
||||
private static /* synthetic */ int $_h1wrsjeb1ngan17li4(int n) {
|
||||
return n;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,553 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package a\u0435\u0445a;
|
||||
|
||||
import a\u0435\u0445a.hjpxc;
|
||||
import a\u0435\u0445a.\u043e\u043e\u0440e\u0445;
|
||||
import c\u0445is.p\u0435j\u0435\u0430he;
|
||||
import ie\u0441\u0430ej.pjxx;
|
||||
import java.lang.invoke.CallSite;
|
||||
import java.lang.invoke.ConstantCallSite;
|
||||
import java.lang.invoke.MethodHandle;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.lang.invoke.MethodType;
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashSet;
|
||||
import java.util.Optional;
|
||||
import java.util.Set;
|
||||
import net.minecraft.class_1268;
|
||||
import net.minecraft.class_1269;
|
||||
import net.minecraft.class_1297;
|
||||
import net.minecraft.class_1657;
|
||||
import net.minecraft.class_1747;
|
||||
import net.minecraft.class_1792;
|
||||
import net.minecraft.class_1799;
|
||||
import net.minecraft.class_1802;
|
||||
import net.minecraft.class_2338;
|
||||
import net.minecraft.class_2350;
|
||||
import net.minecraft.class_2382;
|
||||
import net.minecraft.class_239;
|
||||
import net.minecraft.class_243;
|
||||
import net.minecraft.class_2680;
|
||||
import net.minecraft.class_3417;
|
||||
import net.minecraft.class_3486;
|
||||
import net.minecraft.class_3959;
|
||||
import net.minecraft.class_3965;
|
||||
import net.minecraft.class_636;
|
||||
import net.minecraft.class_638;
|
||||
import net.minecraft.class_746;
|
||||
import \u0441\u0445o.jax\u0458\u0435\u0458;
|
||||
import \u0441\u0445o.\u0458op\u0430\u0441;
|
||||
import \u0458\u0458\u0458o\u0430\u0456.e\u0445\u0440\u0440a;
|
||||
|
||||
public final class \u0458\u0445\u04bb\u0458\u0455x
|
||||
implements pjxx {
|
||||
private final /* synthetic */ Set<class_2338> se\u0445s;
|
||||
private /* synthetic */ \u043e\u043e\u0440e\u0445 \u0445ih;
|
||||
private /* synthetic */ class_2338 ic\u0458sopj;
|
||||
private /* synthetic */ hjpxc ia\u0435e\u0456;
|
||||
private /* synthetic */ int ep\u043e\u0435\u0430j;
|
||||
private /* synthetic */ int \u0458c\u0441px\u0440\u0445;
|
||||
private static final /* synthetic */ int \u0435\u0430op = 40;
|
||||
private static /* synthetic */ int __js_dispatch_state = 0;
|
||||
|
||||
public \u0458\u0445\u04bb\u0458\u0455x() {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
this.se\u0445s = new HashSet<class_2338>();
|
||||
this.\u0445ih = \u043e\u043e\u0440e\u0445.oj\u0455;
|
||||
this.ep\u043e\u0435\u0430j = -1;
|
||||
this.\u0458c\u0441px\u0440\u0445 = 0;
|
||||
}
|
||||
|
||||
public /* synthetic */ boolean cjxco\u0430a() {
|
||||
int n;
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
}
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (this.\u0445ih != \u043e\u043e\u0440e\u0445.oj\u0455) {
|
||||
n = 1;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
} else {
|
||||
n = 0;
|
||||
}
|
||||
return n != 0;
|
||||
}
|
||||
|
||||
public /* synthetic */ void c\u0440je\u0458(boolean bl) {
|
||||
block27: {
|
||||
class_638 class_6382;
|
||||
class_746 class_7462;
|
||||
block26: {
|
||||
block25: {
|
||||
block24: {
|
||||
block21: {
|
||||
hjpxc hjpxc2;
|
||||
class_636 class_6362;
|
||||
block23: {
|
||||
block22: {
|
||||
boolean bl2 = false;
|
||||
if (bl2) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
class_7462 = \u0458\u0445\u04bb\u0458\u0455x.\u0430\u0445j\u0445s\u0456\u04bb.field_1724;
|
||||
class_6382 = \u0458\u0445\u04bb\u0458\u0455x.\u0430\u0445j\u0445s\u0456\u04bb.field_1687;
|
||||
class_6362 = \u0458\u0445\u04bb\u0458\u0455x.\u0430\u0445j\u0445s\u0456\u04bb.field_1761;
|
||||
if (class_7462 == null || class_6382 == null || class_6362 == null) {
|
||||
this.\u0441\u0458e();
|
||||
return;
|
||||
}
|
||||
if (this.\u0445ih != \u043e\u043e\u0440e\u0445.oj\u0455) {
|
||||
++this.\u0458c\u0441px\u0440\u0445;
|
||||
if (this.\u0458c\u0441px\u0440\u0445 > -58485534 + 58485574) {
|
||||
this.\u0441\u0458e();
|
||||
return;
|
||||
}
|
||||
}
|
||||
if (bl && this.jp\u0445\u0441x(class_7462) != -1 && this.\u0440a\u0435\u043e(class_7462, class_6382, class_6362)) {
|
||||
return;
|
||||
}
|
||||
if (this.\u0445\u0440is(class_7462) == -1) {
|
||||
this.\u0441\u0458e();
|
||||
return;
|
||||
}
|
||||
hjpxc2 = this.ia\u0435e\u0456;
|
||||
if (hjpxc2 == null) break block21;
|
||||
CallSite callSite = \u0458\u0445\u04bb\u0458\u0455x.a_bsm0("\u0435ea\u0435\u0440", \u0435ea\u0435\u0440(net.minecraft.class_243 ), (class_243)hjpxc2.x\u0430o\u04bbs\u043e\u0430());
|
||||
if (callSite == null) {
|
||||
return;
|
||||
}
|
||||
\u0458\u0445\u04bb\u0458\u0455x.a_bsm1("\u0440\u0430hj", \u0440\u0430hj(\u0458\u0458\u0458o\u0430\u0456.e\u0445\u0440\u0440a double \u0441\u0445o.jax\u0458\u0435\u0458 ), (e\u0445\u0440\u0440a)((Object)callSite), (double)180.0, (jax\u0458\u0435\u0458)jax\u0458\u0435\u0458.pci\u0456);
|
||||
e\u0445\u0440\u0440a e\u0445\u0440\u0440a2 = \u0458op\u0430\u0441.ia\u04bb;
|
||||
if (e\u0445\u0440\u0440a2 == null) break block22;
|
||||
if (\u0458\u0445\u04bb\u0458\u0455x.a_bsm2("\u0456aeij", \u0456aeij(\u0458\u0458\u0458o\u0430\u0456.e\u0445\u0440\u0440a net.minecraft.class_2350 net.minecraft.class_2338 boolean ), (e\u0445\u0440\u0440a)e\u0445\u0440\u0440a2, (class_2350)hjpxc2.h\u04bbci\u0445i(), (class_2338)hjpxc2.c\u0456a\u0456(), (boolean)true) != false) break block23;
|
||||
}
|
||||
return;
|
||||
}
|
||||
boolean bl3 = this.x\u0430hpc(class_7462, class_6362, hjpxc2);
|
||||
this.ia\u0435e\u0456 = null;
|
||||
if (!bl3 || this.\u0445ih != \u043e\u043e\u0440e\u0445.eo\u0441e\u04bb\u0458) {
|
||||
this.\u0441\u0458e();
|
||||
}
|
||||
return;
|
||||
}
|
||||
int n = this.\u0445ih.ordinal();
|
||||
if (n == 0) break block24;
|
||||
if (n == 1) break block25;
|
||||
if (n == 2) break block26;
|
||||
break block27;
|
||||
}
|
||||
this.ic\u0458sopj = this.i\u0455\u043epjx(class_7462, class_6382);
|
||||
if (this.ic\u0458sopj != null) {
|
||||
this.\u0445ih = \u043e\u043e\u0440e\u0445.o\u04bbe;
|
||||
}
|
||||
break block27;
|
||||
}
|
||||
class_2338 class_23382 = this.ic\u0458sopj;
|
||||
if (class_23382 == null || !this.\u0456\u043e\u0435(class_6382, class_23382) || this.se\u0445s.contains(class_23382)) {
|
||||
this.\u0441\u0458e();
|
||||
return;
|
||||
}
|
||||
if (class_6382.method_8320(class_23382.method_10074()).method_45474() || !this.xehji(class_7462, class_6382, class_23382)) {
|
||||
this.\u0445ih = \u043e\u043e\u0440e\u0445.eo\u0441e\u04bb\u0458;
|
||||
}
|
||||
break block27;
|
||||
}
|
||||
class_2338 class_23383 = this.ic\u0458sopj;
|
||||
if (class_23383 == null || !this.\u0456\u043e\u0435(class_6382, class_23383) || this.se\u0445s.contains(class_23383)) {
|
||||
this.\u0441\u0458e();
|
||||
return;
|
||||
}
|
||||
class_2338 class_23384 = class_23383.method_10074();
|
||||
if (this.\u0445\u0440\u0430so\u0430x(class_6382, class_23384)) {
|
||||
this.\u0445ih = \u043e\u043e\u0440e\u0445.o\u04bbe;
|
||||
this.xehji(class_7462, class_6382, class_23383);
|
||||
return;
|
||||
}
|
||||
this.ia\u0435e\u0456 = this.ch\u043eix\u0456\u0455(class_7462, class_6382, class_23384).orElse(null);
|
||||
if (this.ia\u0435e\u0456 == null) {
|
||||
this.\u0441\u0458e();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public /* synthetic */ void o\u04bb\u0440(p\u0435j\u0435\u0430he p\u0435j\u0435\u0430he2) {
|
||||
class_239 class_2392;
|
||||
class_239 class_2393;
|
||||
class_638 class_6382;
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if ((class_6382 = \u0458\u0445\u04bb\u0458\u0455x.\u0430\u0445j\u0445s\u0456\u04bb.field_1687) == null || !p\u0435j\u0435\u0430he2.\u0445oxc\u0445().method_31574(class_1802.field_8187) || !((class_2393 = \u0458\u0445\u04bb\u0458\u0455x.\u0430\u0445j\u0445s\u0456\u04bb.field_1765) instanceof class_3965)) {
|
||||
return;
|
||||
}
|
||||
class_3965 class_39652 = (class_3965)class_2393;
|
||||
class_2393 = class_39652.method_17777();
|
||||
Object object = class_2392 = class_6382.method_8320((class_2338)class_2393).method_45474() ? class_2393 : class_2393.method_10093(class_39652.method_17780());
|
||||
if (!this.ih\u0441(class_6382, (class_2338)class_2392)) {
|
||||
this.se\u0445s.add(class_2392.method_10062());
|
||||
}
|
||||
}
|
||||
|
||||
public /* synthetic */ void \u0441\u0458e() {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.ic\u0458sopj = null;
|
||||
this.\u0445ih = \u043e\u043e\u0440e\u0445.oj\u0455;
|
||||
this.ia\u0435e\u0456 = null;
|
||||
class_746 class_7462 = \u0458\u0445\u04bb\u0458\u0455x.\u0430\u0445j\u0445s\u0456\u04bb.field_1724;
|
||||
if (this.ep\u043e\u0435\u0430j != -1 && class_7462 != null) {
|
||||
class_7462.method_31548().field_7545 = this.ep\u043e\u0435\u0430j;
|
||||
}
|
||||
this.ep\u043e\u0435\u0430j = -1;
|
||||
this.\u0458c\u0441px\u0440\u0445 = 0;
|
||||
}
|
||||
|
||||
public /* synthetic */ void \u043e\u043e\u0440\u0430() {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.se\u0445s.clear();
|
||||
}
|
||||
|
||||
private /* synthetic */ boolean xehji(class_746 class_7462, class_638 class_6382, class_2338 class_23382) {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.ia\u0435e\u0456 = this.ch\u043eix\u0456\u0455(class_7462, class_6382, class_23382).orElse(null);
|
||||
return (this.ia\u0435e\u0456 != null ? 1 : 0) != 0;
|
||||
}
|
||||
|
||||
private /* synthetic */ boolean x\u0430hpc(class_746 class_7462, class_636 class_6362, hjpxc hjpxc2) {
|
||||
int n;
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if ((n = this.\u0445\u0440is(class_7462)) == -1) {
|
||||
return 0 != 0;
|
||||
}
|
||||
if (this.ep\u043e\u0435\u0430j == -1) {
|
||||
this.ep\u043e\u0435\u0430j = class_7462.method_31548().field_7545;
|
||||
}
|
||||
class_7462.method_31548().field_7545 = n;
|
||||
class_3965 class_39652 = new class_3965(hjpxc2.x\u0430o\u04bbs\u043e\u0430(), hjpxc2.h\u04bbci\u0445i(), hjpxc2.c\u0456a\u0456(), false);
|
||||
class_1269 class_12692 = class_6362.method_2896(class_7462, class_1268.field_5808, class_39652);
|
||||
if (!class_12692.method_23665()) {
|
||||
return 0 != 0;
|
||||
}
|
||||
class_7462.method_6104(class_1268.field_5808);
|
||||
return 1 != 0;
|
||||
}
|
||||
|
||||
private /* synthetic */ class_2338 i\u0455\u043epjx(class_746 class_7462, class_638 class_6382) {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
class_2338 class_23383 = class_7462.method_24515();
|
||||
class_243 class_2432 = class_7462.method_33571();
|
||||
ArrayList<class_2338> arrayList = new ArrayList<class_2338>();
|
||||
for (int i = -227118906 + 227118903; i <= 3; ++i) {
|
||||
for (int j = -869231568 + 869231566; j <= 2; ++j) {
|
||||
for (int k = -1347888070 + 1347888067; k <= 3; ++k) {
|
||||
class_2338 class_23384 = class_23383.method_10069(i, j, k);
|
||||
if (\u0458\u0445\u04bb\u0458\u0455x.$_hecnhbi1ngan17ljm(\u0458\u0445\u04bb\u0458\u0455x.a_bsm3("method_24953", method_24953(net.minecraft.class_2382 ), (class_2382)class_23384).method_1025(class_2432) == 20.25 ? 0 : (\u0458\u0445\u04bb\u0458\u0455x.a_bsm3("method_24953", method_24953(net.minecraft.class_2382 ), (class_2382)class_23384).method_1025(class_2432) > 20.25 ? 1 : -1)) > 0 || this.se\u0445s.contains(class_23384) || !this.\u0456\u043e\u0435(class_6382, class_23384)) continue;
|
||||
arrayList.add(class_23384.method_10062());
|
||||
}
|
||||
}
|
||||
}
|
||||
return arrayList.stream().min(\u0458\u0445\u04bb\u0458\u0455x.a_bsm4("comparingDouble", comparingDouble(java.util.function.ToDoubleFunction<? super T> ), class_23382 -> {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
return \u0458\u0445\u04bb\u0458\u0455x.a_bsm3("method_24953", method_24953(net.minecraft.class_2382 ), (class_2382)class_23382).method_1025(class_2432);
|
||||
})).orElse(null);
|
||||
}
|
||||
|
||||
private /* synthetic */ boolean \u0440a\u0435\u043e(class_746 class_7462, class_638 class_6382, class_636 class_6362) {
|
||||
class_2338 class_23382;
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if ((class_23382 = this.i\u0455\u043epjx(class_7462, class_6382)) == null) {
|
||||
return 0 != 0;
|
||||
}
|
||||
this.\u0445ih = \u043e\u043e\u0440e\u0445.o\u04bbe;
|
||||
this.ic\u0458sopj = class_23382;
|
||||
CallSite callSite = \u0458\u0445\u04bb\u0458\u0455x.a_bsm0("\u0435ea\u0435\u0440", \u0435ea\u0435\u0440(net.minecraft.class_243 ), (class_243)\u0458\u0445\u04bb\u0458\u0455x.a_bsm3("method_24953", method_24953(net.minecraft.class_2382 ), (class_2382)class_23382));
|
||||
if (callSite == null) {
|
||||
return 1 != 0;
|
||||
}
|
||||
\u0458\u0445\u04bb\u0458\u0455x.a_bsm5("\u0440\u043ej\u0441x", \u0440\u043ej\u0441x(\u0458\u0458\u0458o\u0430\u0456.e\u0445\u0440\u0440a double ), (e\u0445\u0440\u0440a)((Object)callSite), (double)180.0);
|
||||
e\u0445\u0440\u0440a e\u0445\u0440\u0440a2 = \u0458op\u0430\u0441.ia\u04bb;
|
||||
if (e\u0445\u0440\u0440a2 == null || !this.ao\u0441\u0458(class_7462, class_6382, e\u0445\u0440\u0440a2, class_23382)) {
|
||||
return 1 != 0;
|
||||
}
|
||||
int n = this.jp\u0445\u0441x(class_7462);
|
||||
if (n == -1) {
|
||||
return 0 != 0;
|
||||
}
|
||||
if (this.ep\u043e\u0435\u0430j == -1) {
|
||||
this.ep\u043e\u0435\u0430j = class_7462.method_31548().field_7545;
|
||||
}
|
||||
class_7462.method_31548().field_7545 = n;
|
||||
class_1269 class_12692 = class_6362.method_2919((class_1657)class_7462, class_1268.field_5808);
|
||||
if (class_12692.method_23665()) {
|
||||
class_7462.method_6104(class_1268.field_5808);
|
||||
this.\u0441\u0458e();
|
||||
}
|
||||
return 1 != 0;
|
||||
}
|
||||
|
||||
private /* synthetic */ boolean ao\u0441\u0458(class_746 class_7462, class_638 class_6382, e\u0445\u0440\u0440a e\u0445\u0440\u0440a2, class_2338 class_23382) {
|
||||
CallSite callSite;
|
||||
class_243 class_2432;
|
||||
class_243 class_2433;
|
||||
class_3965 class_39652;
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return ((class_39652 = class_6382.method_17742(new class_3959(class_2433 = class_7462.method_5836(1.0f), class_2432 = class_2433.method_1019((callSite = \u0458\u0445\u04bb\u0458\u0455x.a_bsm6("method_1030", method_1030(float float ), (float)e\u0445\u0440\u0440a2.xpx(), (float)e\u0445\u0440\u0440a2.jo\u0456c\u043e\u0440())).method_1021(4.5)), class_3959.class_3960.field_17559, class_3959.class_242.field_1345, (class_1297)class_7462))).method_17783() == class_239.class_240.field_1332 && class_39652.method_17777().equals((Object)class_23382) ? 1 : 0) != 0;
|
||||
}
|
||||
|
||||
private /* synthetic */ int jp\u0445\u0441x(class_746 class_7462) {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
for (int i = 0; i < -1330710718 + 1330710727; ++i) {
|
||||
if (!class_7462.method_31548().method_5438(i).method_31574(class_1802.field_8550)) continue;
|
||||
return i;
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
|
||||
private /* synthetic */ int \u0445\u0440is(class_746 class_7462) {
|
||||
int n;
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
for (n = 0; n < -162264993 + 162265002; ++n) {
|
||||
if (!class_7462.method_31548().method_5438(n).method_31574(class_1802.field_20412)) continue;
|
||||
return n;
|
||||
}
|
||||
for (n = 0; n < -1714368551 + 1714368560; ++n) {
|
||||
class_1747 class_17472;
|
||||
class_2680 class_26802;
|
||||
class_1799 class_17992 = class_7462.method_31548().method_5438(n);
|
||||
class_1792 class_17922 = class_17992.method_7909();
|
||||
if (!(class_17922 instanceof class_1747) || !(class_26802 = (class_17922 = (class_17472 = (class_1747)class_17922).method_7711()).method_9564()).method_51367() || class_17922.method_9573(class_26802).method_10598().equals(class_3417.field_14718)) continue;
|
||||
return n;
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
|
||||
private /* synthetic */ Optional<hjpxc> ch\u043eix\u0456\u0455(class_746 class_7462, class_638 class_6382, class_2338 class_23382) {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
for (CallSite callSite : \u0458\u0445\u04bb\u0458\u0455x.a_bsm7("values", values())) {
|
||||
class_2338 class_23383;
|
||||
class_2338 class_23384 = class_23382.method_10093((class_2350)callSite);
|
||||
if (this.\u0445\u0440\u0430so\u0430x(class_6382, class_23384) && !this.ih\u0441(class_6382, class_23384)) {
|
||||
class_23383 = callSite.method_10153();
|
||||
class_243 class_2432 = \u0458\u0445\u04bb\u0458\u0455x.a_bsm3("method_24953", method_24953(net.minecraft.class_2382 ), (class_2382)class_23384).method_1019(\u0458\u0445\u04bb\u0458\u0455x.a_bsm8("method_24954", method_24954(net.minecraft.class_2382 ), (class_2382)class_23383.method_10163()).method_1021(0.5));
|
||||
if (\u0458\u0445\u04bb\u0458\u0455x.$_hecnhbj1ngan17ljn(class_7462.method_33571().method_1025(class_2432) == 25.0 ? 0 : (class_7462.method_33571().method_1025(class_2432) < 25.0 ? -1 : 1)) <= 0 && this.s\u04bb\u0456(class_7462, class_6382, class_23384, (class_2350)class_23383)) {
|
||||
return \u0458\u0445\u04bb\u0458\u0455x.a_bsm9("of", of(T ), (Object)new hjpxc(class_23384.method_10062(), (class_2350)class_23383, class_2432));
|
||||
}
|
||||
}
|
||||
if (callSite != class_2350.field_11033) continue;
|
||||
class_23383 = class_23384;
|
||||
for (int i = 0; i < 3 && this.ih\u0441(class_6382, class_23383); ++i) {
|
||||
class_23383 = class_23383.method_10074();
|
||||
if (!bl) continue;
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (!this.\u0445\u0440\u0430so\u0430x(class_6382, class_23383)) continue;
|
||||
if (this.ih\u0441(class_6382, class_23383)) {
|
||||
if (0 == 0 || 0 == 1 || 0 == 2) continue;
|
||||
continue;
|
||||
}
|
||||
class_243 class_2433 = \u0458\u0445\u04bb\u0458\u0455x.a_bsm3("method_24953", method_24953(net.minecraft.class_2382 ), (class_2382)class_23383).method_1031(0.0, 0.5, 0.0);
|
||||
if (\u0458\u0445\u04bb\u0458\u0455x.$_hecnhbk1ngan17ljo(class_7462.method_33571().method_1025(class_2433) == 25.0 ? 0 : (class_7462.method_33571().method_1025(class_2433) < 25.0 ? -1 : 1)) > 0 || !this.s\u04bb\u0456(class_7462, class_6382, class_23383, class_2350.field_11036)) continue;
|
||||
return \u0458\u0445\u04bb\u0458\u0455x.a_bsm9("of", of(T ), (Object)new hjpxc(class_23383.method_10062(), class_2350.field_11036, class_2433));
|
||||
}
|
||||
return \u0458\u0445\u04bb\u0458\u0455x.a_bsm10("empty", empty());
|
||||
}
|
||||
|
||||
private /* synthetic */ boolean s\u04bb\u0456(class_746 class_7462, class_638 class_6382, class_2338 class_23382, class_2350 class_23502) {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
class_243 class_2432 = \u0458\u0445\u04bb\u0458\u0455x.a_bsm3("method_24953", method_24953(net.minecraft.class_2382 ), (class_2382)class_23382).method_1019(\u0458\u0445\u04bb\u0458\u0455x.a_bsm8("method_24954", method_24954(net.minecraft.class_2382 ), (class_2382)class_23502.method_10163()).method_1021(0.49));
|
||||
class_3965 class_39652 = class_6382.method_17742(new class_3959(class_7462.method_33571(), class_2432, class_3959.class_3960.field_17559, class_3959.class_242.field_1348, (class_1297)class_7462));
|
||||
return (class_39652.method_17783() == class_239.class_240.field_1332 && class_39652.method_17777().equals((Object)class_23382) && \u0458\u0445\u04bb\u0458\u0455x.$_hecnhbl1ngan17ljp(class_39652.method_17784().method_1025(class_2432) == 0.25 ? 0 : (class_39652.method_17784().method_1025(class_2432) < 0.25 ? -1 : 1)) < 0 ? 1 : 0) != 0;
|
||||
}
|
||||
|
||||
private /* synthetic */ boolean \u0445\u0440\u0430so\u0430x(class_638 class_6382, class_2338 class_23382) {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return (class_6382.method_8320(class_23382).method_51367() ? 1 : 0) != 0;
|
||||
}
|
||||
|
||||
private /* synthetic */ boolean ih\u0441(class_638 class_6382, class_2338 class_23382) {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return (class_6382.method_8316(class_23382).method_15767(class_3486.field_15518) ? 1 : 0) != 0;
|
||||
}
|
||||
|
||||
private /* synthetic */ boolean \u0456\u043e\u0435(class_638 class_6382, class_2338 class_23382) {
|
||||
int n;
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (this.ih\u0441(class_6382, class_23382) && class_6382.method_8316(class_23382).method_15771()) {
|
||||
n = 1;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
} else {
|
||||
n = 0;
|
||||
}
|
||||
return n != 0;
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm0(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm1(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm2(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm3(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm4(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm5(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm6(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm7(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm8(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm9(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm10(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,130 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package a\u0440\u04bbc\u0430\u04bb;
|
||||
|
||||
import a\u0440\u04bbc\u0430\u04bb.\u04bbaio;
|
||||
import ie\u0441\u0430ej.pjxx;
|
||||
import java.lang.invoke.CallSite;
|
||||
import java.lang.invoke.ConstantCallSite;
|
||||
import java.lang.invoke.MethodHandle;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.lang.invoke.MethodType;
|
||||
import \u0430xc\u0458.e\u043e\u0456\u0458\u043e\u0430\u04bb;
|
||||
import \u0430xc\u0458.\u043e\u04bb\u0445j\u0435\u0430\u0441;
|
||||
import \u0430xc\u0458.\u0455o\u0455\u0430\u0440h;
|
||||
import \u0440o\u0456\u0445o.\u0445\u0440\u0430\u0435\u0445\u043e;
|
||||
|
||||
public class e\u0455\u043e
|
||||
implements pjxx {
|
||||
private static final /* synthetic */ \u04bbaio \u0430hxo\u0445;
|
||||
|
||||
public e\u0455\u043e() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
}
|
||||
|
||||
public static /* synthetic */ void \u0445a\u0435i\u0445(String string, String string2, long l2) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
\u0430hxo\u0445.cac\u0441(string, string2, l2, ((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)e\u0455\u043e.a_bsm0("jaa\u0435\u0445c", jaa\u0435\u0445c()))).\u0456\u0440\u0430jj().h\u0445ph().aj\u0445\u043e(), ((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)e\u0455\u043e.a_bsm0("jaa\u0435\u0445c", jaa\u0435\u0445c()))).\u0456\u0440\u0430jj().h\u0445ph().\u04bbha(), 15.0f);
|
||||
\u0430hxo\u0445.p\u0456\u0456\u0445oh\u043e(new \u043e\u04bb\u0445j\u0435\u0430\u0441(e\u0455\u043e.\u0441eo(), ((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)e\u0455\u043e.a_bsm0("jaa\u0435\u0445c", jaa\u0435\u0445c()))).\u0456\u0440\u0430jj().h\u0445ph().iejp\u04bb()));
|
||||
}
|
||||
|
||||
public static /* synthetic */ void aj\u0456h\u0455\u04bb(String string, long l2) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
\u0430hxo\u0445.\u0455j\u0456\u043e\u0441(string, l2, ((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)e\u0455\u043e.a_bsm0("jaa\u0435\u0445c", jaa\u0435\u0445c()))).\u0456\u0440\u0430jj().h\u0445ph().aj\u0445\u043e(), ((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)e\u0455\u043e.a_bsm0("jaa\u0435\u0445c", jaa\u0435\u0445c()))).\u0456\u0440\u0430jj().h\u0445ph().iejp\u04bb());
|
||||
\u0430hxo\u0445.p\u0456\u0456\u0445oh\u043e(new \u043e\u04bb\u0445j\u0435\u0430\u0441(e\u0455\u043e.\u0441eo(), ((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)e\u0455\u043e.a_bsm0("jaa\u0435\u0445c", jaa\u0435\u0445c()))).\u0456\u0440\u0430jj().h\u0445ph().iejp\u04bb()));
|
||||
}
|
||||
|
||||
public static /* synthetic */ void \u0441\u043e\u0430xi(String string, String string2, long l2) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
e\u0455\u043e.\u0435i\u0445\u0440().cac\u0441(string, string2, l2, ((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)e\u0455\u043e.a_bsm0("jaa\u0435\u0445c", jaa\u0435\u0445c()))).\u0456\u0440\u0430jj().h\u0445ph().aj\u0445\u043e(), ((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)e\u0455\u043e.a_bsm0("jaa\u0435\u0445c", jaa\u0435\u0445c()))).\u0456\u0440\u0430jj().h\u0445ph().\u04bbha(), 8.0f);
|
||||
e\u0455\u043e.\u0435i\u0445\u0440().\u0456\u0430\u0440(new e\u043e\u0456\u0458\u043e\u0430\u04bb(string, string2, ((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)e\u0455\u043e.a_bsm0("jaa\u0435\u0445c", jaa\u0435\u0445c()))).\u0456\u0440\u0430jj().h\u0445ph().iejp\u04bb()));
|
||||
}
|
||||
|
||||
public static /* synthetic */ void h\u0445\u0456xs(String string, String string2) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
\u0430hxo\u0445.cac\u0441(string, string2, 800L, ((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)e\u0455\u043e.a_bsm0("jaa\u0435\u0445c", jaa\u0435\u0445c()))).\u0456\u0440\u0430jj().h\u0445ph().aj\u0445\u043e(), ((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)e\u0455\u043e.a_bsm0("jaa\u0435\u0445c", jaa\u0435\u0445c()))).\u0456\u0440\u0430jj().h\u0445ph().\u04bbha(), 15.0f);
|
||||
\u0430hxo\u0445.p\u0456\u0456\u0445oh\u043e(new \u0455o\u0455\u0430\u0440h(e\u0455\u043e.\u0441eo(), string2, ((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)e\u0455\u043e.a_bsm0("jaa\u0435\u0445c", jaa\u0435\u0445c()))).\u0456\u0440\u0430jj().h\u0445ph().iejp\u04bb()));
|
||||
}
|
||||
|
||||
public static /* synthetic */ void p\u0441\u0456(String string) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
\u0430hxo\u0445.\u0455j\u0456\u043e\u0441(string, 800L, ((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)e\u0455\u043e.a_bsm0("jaa\u0435\u0445c", jaa\u0435\u0445c()))).\u0456\u0440\u0430jj().h\u0445ph().aj\u0445\u043e(), ((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)e\u0455\u043e.a_bsm0("jaa\u0435\u0445c", jaa\u0435\u0445c()))).\u0456\u0440\u0430jj().h\u0445ph().\u04bbha());
|
||||
\u0430hxo\u0445.p\u0456\u0456\u0445oh\u043e(new \u043e\u04bb\u0445j\u0435\u0430\u0441(e\u0455\u043e.\u0441eo(), ((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)e\u0455\u043e.a_bsm0("jaa\u0435\u0445c", jaa\u0435\u0445c()))).\u0456\u0440\u0430jj().h\u0445ph().iejp\u04bb()));
|
||||
}
|
||||
|
||||
public static /* synthetic */ void \u0440\u043eae\u0430(String string, boolean bl) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
\u0430hxo\u0445.\u0430ja\u0440\u0445\u0430p(string, bl);
|
||||
\u0430hxo\u0445.p\u0456\u0456\u0445oh\u043e(new \u043e\u04bb\u0445j\u0435\u0430\u0441(e\u0455\u043e.\u0441eo(), ((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)e\u0455\u043e.a_bsm0("jaa\u0435\u0445c", jaa\u0435\u0445c()))).\u0456\u0440\u0430jj().h\u0445ph().iejp\u04bb()));
|
||||
}
|
||||
|
||||
/*
|
||||
* Unable to fully structure code
|
||||
*/
|
||||
private static /* synthetic */ String \u0441eo() {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (e\u0455\u043e.\u0430hxo\u0445.ii\u043ecx\u04bbo.equals(e\u0455\u043e.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-659140151 + 659140097, -913277470 + 913277588}, (int)(-609015270 + 1292172957), (int)(-1385655513 + 1768719277)))) ** GOTO lbl-1000
|
||||
v0 = new byte[-881542120 + 881542127];
|
||||
v0[0] = -76144507 + 76144468;
|
||||
v0[1] = -1816055242 + 1816055349;
|
||||
v0[2] = -356160311 + 356160411;
|
||||
v0[3] = -633786933 + 633787053;
|
||||
v0[4] = -464261144 + 464261079;
|
||||
v0[5] = -1660637506 + 1660637591;
|
||||
v0[-168736619 + 168736625] = -936405555 + 936405573;
|
||||
if (e\u0455\u043e.\u0430hxo\u0445.ii\u043ecx\u04bbo.equals(e\u0455\u043e.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])v0, (int)(1961850355 + 2080733953), (int)(-728975540 + 839012162)))) lbl-1000:
|
||||
// 2 sources
|
||||
|
||||
{
|
||||
v1 = true;
|
||||
} else {
|
||||
v1 = false;
|
||||
}
|
||||
var0 = v1;
|
||||
return var0 != false ? e\u0455\u043e.\u0430hxo\u0445.\u04bb\u0430\u0430 : e\u0455\u043e.\u0430hxo\u0445.ii\u043ecx\u04bbo;
|
||||
}
|
||||
|
||||
public static /* synthetic */ \u04bbaio \u0435i\u0445\u0440() {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return \u0430hxo\u0445;
|
||||
}
|
||||
|
||||
static {
|
||||
\u0430hxo\u0445 = new \u04bbaio();
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm0(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm1(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,254 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package a\u0440\u04bbc\u0430\u04bb;
|
||||
|
||||
import a\u0440\u04bbc\u0430\u04bb.\u04bbaio;
|
||||
import ie\u0441\u0430ej.pjxx;
|
||||
import io.github.humbleui.skija.ClipMode;
|
||||
import io.github.humbleui.skija.Font;
|
||||
import java.awt.Color;
|
||||
import java.lang.invoke.CallSite;
|
||||
import java.lang.invoke.ConstantCallSite;
|
||||
import java.lang.invoke.MethodHandle;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.lang.invoke.MethodType;
|
||||
import \u0430xc\u0458.e\u043e\u0456\u0458\u043e\u0430\u04bb;
|
||||
import \u0430xc\u0458.\u0441i\u0445pj\u0445j;
|
||||
import \u0440o\u0456\u0445o.\u0445\u0440\u0430\u0435\u0445\u043e;
|
||||
import \u0445\u0430p\u0440.\u0435i\u0445cs\u043ei;
|
||||
|
||||
public class j\u04bb\u0445\u04bbc\u0458j
|
||||
implements pjxx {
|
||||
public j\u04bb\u0445\u04bbc\u0458j() {
|
||||
if (true | false) {
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Unable to fully structure code
|
||||
* Could not resolve type clashes
|
||||
*/
|
||||
public /* synthetic */ void \u0455o\u0440\u0456(\u04bbaio var1_1) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
var2_2 = j\u04bb\u0445\u04bbc\u0458j.\u0430\u0445j\u0445s\u0456\u04bb.method_22683();
|
||||
var3_3 = (float)var2_2.method_4486() / 2.0f;
|
||||
var4_4 = 24.0f;
|
||||
var5_5 = 10.0f;
|
||||
var6_6 = var4_4 / 2.0f;
|
||||
var7_7 = j\u04bb\u0445\u04bbc\u0458j.a_bsm0("valueOf", valueOf(int ), (int)j\u04bb\u0445\u04bbc\u0458j.\u0430\u0445j\u0445s\u0456\u04bb.method_47599());
|
||||
var8_8 = j\u04bb\u0445\u04bbc\u0458j.a_bsm1("now", now()).format(\u04bbaio.ixej);
|
||||
var9_9 = j\u04bb\u0445\u04bbc\u0458j.a_bsm2("h\u0441eh", h\u0441eh(float ), (float)8.0f);
|
||||
var10_10 = var1_1.s\u0440j\u0435p\u0440;
|
||||
if (var1_1.ii\u043ecx\u04bbo.equals(j\u04bb\u0445\u04bbc\u0458j.a_bsm3("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-528553054 + 528552941, -818966085 + 818966157}, (int)(-172739881 + 1366758484), (int)(-371598471 + 1915453579)))) ** GOTO lbl-1000
|
||||
v0 = new byte[-1105235032 + 1105235039];
|
||||
v0[0] = -1610515863 + 1610515767;
|
||||
v0[1] = -44195707 + 44195744;
|
||||
v0[2] = -1034416771 + 1034416817;
|
||||
v0[3] = -992419754 + 992419671;
|
||||
v0[4] = -1623692101 + 1623692067;
|
||||
v0[5] = 4;
|
||||
v0[-1902055517 + 1902055523] = -631947550 + 631947482;
|
||||
if (var1_1.ii\u043ecx\u04bbo.equals(j\u04bb\u0445\u04bbc\u0458j.a_bsm3("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])v0, (int)(496650709 + 1493970128), (int)(382203174 + 167783329)))) lbl-1000:
|
||||
// 2 sources
|
||||
|
||||
{
|
||||
v1 = true;
|
||||
} else {
|
||||
v1 = false;
|
||||
}
|
||||
var11_11 = v1;
|
||||
var1_1.cx\u0440\u0458\u0458\u0456.\u0440\u0458jj\u0435hp(var11_11 != false ? 0.0 : 1.0);
|
||||
var1_1.he\u0455a\u0441\u0456.\u0440\u0458jj\u0435hp(var1_1.\u0455p\u0441c != false ? 1.0 : 0.0);
|
||||
var12_12 = (float)var1_1.he\u0455a\u0441\u0456.xax\u04bb();
|
||||
var13_13 = (float)var1_1.cx\u0440\u0458\u0458\u0456.xax\u04bb();
|
||||
var14_14 = j\u04bb\u0445\u04bbc\u0458j.a_bsm4("\u0441a\u0441\u0441", \u0441a\u0441\u0441(java.lang.String io.github.humbleui.skija.Font ), (String)j\u04bb\u0445\u04bbc\u0458j.a_bsm3("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-1908154873 + 1908154948, -1580150768 + 1580150804}, (int)(14411580 + 120594639), (int)(-1147597017 + 1424621915)), (Font)var10_10);
|
||||
var15_15 = j\u04bb\u0445\u04bbc\u0458j.a_bsm4("\u0441a\u0441\u0441", \u0441a\u0441\u0441(java.lang.String io.github.humbleui.skija.Font ), (String)j\u04bb\u0445\u04bbc\u0458j.a_bsm3("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-128105649 + 128105643, -738719352 + 738719301, -1930492240 + 1930492317, -1573411860 + 1573411955, -1948243821 + 1948243925}, (int)(-1112142074 + 2141903), (int)(-1276546518 + 1852944432)), (Font)var10_10);
|
||||
var16_16 = j\u04bb\u0445\u04bbc\u0458j.a_bsm4("\u0441a\u0441\u0441", \u0441a\u0441\u0441(java.lang.String io.github.humbleui.skija.Font ), (String)var7_7, (Font)var9_9);
|
||||
var17_17 = j\u04bb\u0445\u04bbc\u0458j.a_bsm4("\u0441a\u0441\u0441", \u0441a\u0441\u0441(java.lang.String io.github.humbleui.skija.Font ), (String)var8_8, (Font)var9_9);
|
||||
if (var11_11) {
|
||||
var18_18 = var14_14 + var15_15 * var12_12;
|
||||
var1_1.e\u0435p\u0445ci\u0441 = 8.0f;
|
||||
switch (0) {
|
||||
default: {
|
||||
break;
|
||||
}
|
||||
case 1: {
|
||||
break;
|
||||
}
|
||||
case 2: {
|
||||
break;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
var18_18 = j\u04bb\u0445\u04bbc\u0458j.a_bsm4("\u0441a\u0441\u0441", \u0441a\u0441\u0441(java.lang.String io.github.humbleui.skija.Font ), (String)var1_1.ii\u043ecx\u04bbo, (Font)var10_10);
|
||||
}
|
||||
var19_19 = 15.0f;
|
||||
var20_20 = 6.0f;
|
||||
var21_21 /* !! */ = var19_19 + 4.0f + var20_20 + var16_16 + var1_1.e\u0435p\u0445ci\u0441 + var18_18 + var1_1.e\u0435p\u0445ci\u0441 + var17_17 + var19_19;
|
||||
var21_21 /* !! */ = (float)j\u04bb\u0445\u04bbc\u0458j.a_bsm5("max", max(float float ), (float)90.0f, (float)var21_21 /* !! */ );
|
||||
v2 = var23_22 = var11_11 != false && var12_12 > 0.001f && var12_12 < 0.999f;
|
||||
if (var23_22) {
|
||||
var22_23 = var21_21 /* !! */ ;
|
||||
var1_1.\u0455\u0440\u04bb.a\u0435i\u0440(var21_21 /* !! */ );
|
||||
var1_1.\u0455\u0440\u04bb.a\u0456ao\u04bbhi(var21_21 /* !! */ );
|
||||
} else {
|
||||
var1_1.\u0455\u0440\u04bb.\u0440\u0458jj\u0435hp(var21_21 /* !! */ );
|
||||
var22_23 = (float)var1_1.\u0455\u0440\u04bb.xax\u04bb();
|
||||
}
|
||||
var24_24 = var3_3 - var22_23 / 2.0f;
|
||||
this.h\u04bb\u0441(var24_24, var5_5, var22_23, var4_4, var6_6);
|
||||
var25_25 = var5_5 + var4_4 / 2.0f;
|
||||
var26_26 = var1_1.h\u0445ph().aj\u0445\u043e();
|
||||
var27_27 = var1_1.h\u0445ph().\u04bbha();
|
||||
if (var1_1.\u04bb\u043e\u0440\u0440 != null && var1_1.\u0458pij\u04bbo != null) {
|
||||
var26_26 = this.\u0445\u043eh\u0441a(var1_1.\u0458pij\u04bbo, var1_1.\u04bb\u043e\u0440\u0440, var1_1.a\u0458c);
|
||||
} else if (var1_1.\u0458pij\u04bbo != null && var1_1.a\u0458c < 1.0f) {
|
||||
var26_26 = this.\u0445\u043eh\u0441a(var1_1.\u0458pij\u04bbo, var1_1.h\u0445ph().aj\u0445\u043e(), var1_1.a\u0458c);
|
||||
}
|
||||
if (var1_1.\u04bbai\u0430\u0455 != null && var1_1.xp\u0440\u0458\u043ec != null) {
|
||||
var27_27 = this.\u0445\u043eh\u0441a(var1_1.xp\u0440\u0458\u043ec, var1_1.\u04bbai\u0430\u0455, var1_1.a\u0458c);
|
||||
} else if (var1_1.xp\u0440\u0458\u043ec != null && var1_1.a\u0458c < 1.0f) {
|
||||
var27_27 = this.\u0445\u043eh\u0441a(var1_1.xp\u0440\u0458\u043ec, var1_1.h\u0445ph().\u04bbha(), var1_1.a\u0458c);
|
||||
}
|
||||
var1_1.p\u0435oa = var26_26;
|
||||
var1_1.\u0440c\u0440\u0456\u0458p = var27_27;
|
||||
var28_28 = var24_24 + 15.0f;
|
||||
j\u04bb\u0445\u04bbc\u0458j.a_bsm6("o\u04bbi", o\u04bbi(float float float java.awt.Color ), (float)var28_28, (float)var25_25, (float)2.0f, (Color)var26_26);
|
||||
j\u04bb\u0445\u04bbc\u0458j.a_bsm7("i\u0430c\u0435", i\u0430c\u0435(float float float java.awt.Color ), (float)var28_28, (float)var25_25, (float)2.0f, (Color)var26_26);
|
||||
j\u04bb\u0445\u04bbc\u0458j.a_bsm8("\u0440\u0445i", \u0440\u0445i(float float float float float java.awt.Color ), (float)var24_24, (float)var5_5, (float)var22_23, (float)var4_4, (float)var6_6, (Color)var27_27);
|
||||
var29_29 = var25_25 - j\u04bb\u0445\u04bbc\u0458j.a_bsm9("\u0445caj\u0445\u043e\u0441", \u0445caj\u0445\u043e\u0441(java.lang.String io.github.humbleui.skija.Font ), (String)var7_7, (Font)var9_9).getHeight() + j\u04bb\u0445\u04bbc\u0458j.a_bsm9("\u0445caj\u0445\u043e\u0441", \u0445caj\u0445\u043e\u0441(java.lang.String io.github.humbleui.skija.Font ), (String)var7_7, (Font)var9_9).getHeight() / 2.0f;
|
||||
j\u04bb\u0445\u04bbc\u0458j.a_bsm10("\u0456p\u0456xc", \u0456p\u0456xc(java.lang.String float float java.awt.Color io.github.humbleui.skija.Font ), (String)var7_7, (float)(var28_28 + 6.0f), (float)var29_29, (Color)var1_1.h\u0445ph().\u04bb\u0455x\u04bb(), (Font)var9_9);
|
||||
j\u04bb\u0445\u04bbc\u0458j.a_bsm11("\u0441sp", \u0441sp());
|
||||
j\u04bb\u0445\u04bbc\u0458j.a_bsm12("o\u043e\u0441", o\u043e\u0441(float float float float float io.github.humbleui.skija.ClipMode ), (float)(var24_24 + 25.0f), (float)var5_5, (float)(var22_23 - 50.0f), (float)var4_4, (float)0.0f, (ClipMode)ClipMode.INTERSECT);
|
||||
var30_30 = var25_25 - j\u04bb\u0445\u04bbc\u0458j.a_bsm9("\u0445caj\u0445\u043e\u0441", \u0445caj\u0445\u043e\u0441(java.lang.String io.github.humbleui.skija.Font ), (String)j\u04bb\u0445\u04bbc\u0458j.a_bsm3("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-1745328094 + 1745328183, -681697663 + 681697543}, (int)(73824481 + 609857502), (int)(-1873714571 + 1456243880)), (Font)var10_10).getHeight() + j\u04bb\u0445\u04bbc\u0458j.a_bsm9("\u0445caj\u0445\u043e\u0441", \u0445caj\u0445\u043e\u0441(java.lang.String io.github.humbleui.skija.Font ), (String)j\u04bb\u0445\u04bbc\u0458j.a_bsm3("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-1585218265 + 1585218179, -1150758809 + 1150758879}, (int)(-1198233790 + 1493150289), (int)(1681032675 + 1923502325)), (Font)var10_10).getHeight() / 2.0f;
|
||||
var31_31 = 14.0f;
|
||||
if (1.0f - var13_13 > 0.001f) {
|
||||
var32_32 = new \u0441i\u0445pj\u0445j(var12_12, var1_1.\u043e\u0441\u0456\u0455);
|
||||
var32_32.draw(var24_24, var22_23, var30_30 - var13_13 * var31_31, 1.0f - var13_13, var10_10);
|
||||
}
|
||||
if (var13_13 > 0.001f) {
|
||||
var32_33 = var1_1.i\u0430\u0430 instanceof e\u043e\u0456\u0458\u043e\u0430\u04bb;
|
||||
var33_35 = var1_1.\u0458x\u0456\u0456x instanceof e\u043e\u0456\u0458\u043e\u0430\u04bb;
|
||||
var34_37 = (float)var1_1.a\u0435\u0455ci.xax\u04bb();
|
||||
v3 = var35_38 = var34_37 > 0.001f && var34_37 < 0.999f;
|
||||
if (var32_33 && var33_35 && var35_38) {
|
||||
var36_39 = var13_13 * (1.0f - var34_37);
|
||||
var37_40 = var30_30 - var34_37 * var31_31;
|
||||
var1_1.\u0458x\u0456\u0456x.draw(var24_24, var22_23, var37_40, var36_39, var10_10);
|
||||
var38_41 = var13_13 * var34_37;
|
||||
var39_42 = var30_30 + (1.0f - var34_37) * var31_31;
|
||||
var1_1.i\u0430\u0430.draw(var24_24, var22_23, var39_42, var38_41, var10_10);
|
||||
} else {
|
||||
var1_1.i\u0430\u0430.draw(var24_24, var22_23, var30_30 + (1.0f - var13_13) * var31_31, var13_13, var10_10);
|
||||
}
|
||||
}
|
||||
j\u04bb\u0445\u04bbc\u0458j.a_bsm13("jj\u0430c\u04bb\u0455\u0455", jj\u0430c\u04bb\u0455\u0455());
|
||||
var32_34 = var25_25 - j\u04bb\u0445\u04bbc\u0458j.a_bsm9("\u0445caj\u0445\u043e\u0441", \u0445caj\u0445\u043e\u0441(java.lang.String io.github.humbleui.skija.Font ), (String)var8_8, (Font)var9_9).getHeight() + j\u04bb\u0445\u04bbc\u0458j.a_bsm9("\u0445caj\u0445\u043e\u0441", \u0445caj\u0445\u043e\u0441(java.lang.String io.github.humbleui.skija.Font ), (String)var8_8, (Font)var9_9).getHeight() / 2.0f;
|
||||
var33_36 = j\u04bb\u0445\u04bbc\u0458j.a_bsm4("\u0441a\u0441\u0441", \u0441a\u0441\u0441(java.lang.String io.github.humbleui.skija.Font ), (String)var8_8, (Font)var9_9);
|
||||
j\u04bb\u0445\u04bbc\u0458j.a_bsm10("\u0456p\u0456xc", \u0456p\u0456xc(java.lang.String float float java.awt.Color io.github.humbleui.skija.Font ), (String)var8_8, (float)(var24_24 + var22_23 - 15.0f - var33_36), (float)var32_34, (Color)var1_1.h\u0445ph().\u04bb\u0455x\u04bb(), (Font)var9_9);
|
||||
}
|
||||
|
||||
private /* synthetic */ void h\u04bb\u0441(float f, float f2, float f3, float f4, float f5) {
|
||||
int n;
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
int n2 = n = !((\u0435i\u0445cs\u043ei)((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)j\u04bb\u0445\u04bbc\u0458j.a_bsm14("jaa\u0435\u0445c", jaa\u0435\u0445c()))).\u0430o\u0441\u0456p\u0455().\u0441c\u0458\u043e\u0430(\u0435i\u0445cs\u043ei.class)).\u0458\u0435\u0456\u0430.axpacc() ? -893870338 + 893870593 : -212132082 + 212132302;
|
||||
if (((\u0435i\u0445cs\u043ei)((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)j\u04bb\u0445\u04bbc\u0458j.a_bsm14("jaa\u0435\u0445c", jaa\u0435\u0445c()))).\u0430o\u0441\u0456p\u0455().\u0441c\u0458\u043e\u0430(\u0435i\u0445cs\u043ei.class)).\u0458\u0435\u0456\u0430.axpacc()) {
|
||||
j\u04bb\u0445\u04bbc\u0458j.a_bsm15("hc\u0456", hc\u0456(float float float float float ), (float)f, (float)f2, (float)f3, (float)f4, (float)f5);
|
||||
}
|
||||
CallSite callSite = j\u04bb\u0445\u04bbc\u0458j.a_bsm16("withAlpha", withAlpha(java.awt.Color int ), (Color)this.h\u0445ph().\u04bbha(), (int)n);
|
||||
j\u04bb\u0445\u04bbc\u0458j.a_bsm17("\u0445a\u0440c\u0445h", \u0445a\u0440c\u0445h(float float float float float java.awt.Color ), (float)f, (float)f2, (float)f3, (float)f4, (float)f5, (Color)((Object)callSite));
|
||||
}
|
||||
|
||||
private /* synthetic */ Color \u0445\u043eh\u0441a(Color color, Color color2, float object) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
object = j\u04bb\u0445\u04bbc\u0458j.a_bsm5("max", max(float float ), (float)0.0f, (float)j\u04bb\u0445\u04bbc\u0458j.a_bsm18("min", min(float float ), (float)1.0f, (float)object));
|
||||
return new Color((int)((float)color.getRed() + (float)(color2.getRed() - color.getRed()) * object), (int)((float)color.getGreen() + (float)(color2.getGreen() - color.getGreen()) * object), (int)((float)color.getBlue() + (float)(color2.getBlue() - color.getBlue()) * object), (int)((float)color.getAlpha() + (float)(color2.getAlpha() - color.getAlpha()) * object));
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm0(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm1(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm2(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm3(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm4(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm5(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm6(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm7(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm8(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm9(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm10(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm11(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm12(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm13(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm14(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm15(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm16(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm17(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm18(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,332 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package a\u0440\u04bbc\u0430\u04bb;
|
||||
|
||||
import ie\u0441\u0430ej.pjxx;
|
||||
import io.github.humbleui.skija.Font;
|
||||
import java.awt.Color;
|
||||
import java.lang.invoke.CallSite;
|
||||
import java.lang.invoke.ConstantCallSite;
|
||||
import java.lang.invoke.MethodHandle;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.lang.invoke.MethodType;
|
||||
import java.time.format.DateTimeFormatter;
|
||||
import java.util.Base64;
|
||||
import javax.crypto.Cipher;
|
||||
import javax.crypto.spec.IvParameterSpec;
|
||||
import javax.crypto.spec.SecretKeySpec;
|
||||
import r.d8.Cade0e18b60fd9f037d8b2fc8;
|
||||
import x\u0445so\u0456.i\u0430\u0455\u0455pi\u0430;
|
||||
import x\u0445so\u0456.\u0430\u0435s;
|
||||
import \u0441\u0430e\u043e.pxs\u0456\u04bbx;
|
||||
|
||||
public class \u04bbaio
|
||||
implements pjxx {
|
||||
public static final /* synthetic */ DateTimeFormatter ixej;
|
||||
public static final /* synthetic */ String o\u0445\u0440ca;
|
||||
public static final /* synthetic */ String oeps\u0456;
|
||||
public static final /* synthetic */ String xo\u0456\u0430\u0435;
|
||||
public static final /* synthetic */ String o\u0455\u0445;
|
||||
public static final /* synthetic */ long p\u0435\u0445ssa = 3000L;
|
||||
public static final /* synthetic */ long a\u0445\u0430\u0445\u0440\u0456 = 2000L;
|
||||
public final /* synthetic */ i\u0430\u0455\u0455pi\u0430 he\u0455a\u0441\u0456;
|
||||
public final /* synthetic */ i\u0430\u0455\u0455pi\u0430 \u0455\u0440\u04bb;
|
||||
public final /* synthetic */ i\u0430\u0455\u0455pi\u0430 cx\u0440\u0458\u0458\u0456;
|
||||
public final /* synthetic */ i\u0430\u0455\u0455pi\u0430 a\u0435\u0455ci;
|
||||
public /* synthetic */ String ii\u043ecx\u04bbo;
|
||||
public /* synthetic */ String \u04bb\u0430\u0430;
|
||||
public /* synthetic */ long a\u0455xaioo;
|
||||
public /* synthetic */ long \u043ep\u0455\u0455\u0455;
|
||||
public /* synthetic */ long \u0445\u0456s\u0445;
|
||||
public /* synthetic */ boolean \u0455p\u0441c;
|
||||
public /* synthetic */ Color \u04bbai\u0430\u0455;
|
||||
public /* synthetic */ Color \u04bb\u043e\u0440\u0440;
|
||||
public /* synthetic */ Color xp\u0440\u0458\u043ec;
|
||||
public /* synthetic */ Color \u0458pij\u04bbo;
|
||||
public /* synthetic */ Color \u043e\u0441\u0456\u0455;
|
||||
public /* synthetic */ Color c\u0435\u0440eo\u0456\u0455;
|
||||
public /* synthetic */ Color p\u0435oa;
|
||||
public /* synthetic */ Color \u0440c\u0440\u0456\u0458p;
|
||||
public /* synthetic */ float e\u0435p\u0445ci\u0441;
|
||||
public /* synthetic */ float a\u0458c;
|
||||
public static final /* synthetic */ float \u0435\u0445sh\u0440 = 3.0f;
|
||||
public /* synthetic */ pxs\u0456\u04bbx i\u0430\u0430;
|
||||
public /* synthetic */ pxs\u0456\u04bbx \u0458x\u0456\u0456x;
|
||||
public /* synthetic */ Font s\u0440j\u0435p\u0440;
|
||||
|
||||
public \u04bbaio() {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
this.he\u0455a\u0441\u0456 = new i\u0430\u0455\u0455pi\u0430(\u0430\u0435s.s\u0458cs\u043e, 400L);
|
||||
this.\u0455\u0440\u04bb = new i\u0430\u0455\u0455pi\u0430(\u0430\u0435s.s\u0458cs\u043e, 300L);
|
||||
this.cx\u0440\u0458\u0458\u0456 = new i\u0430\u0455\u0455pi\u0430(\u0430\u0435s.s\u0458cs\u043e, 400L);
|
||||
this.a\u0435\u0455ci = new i\u0430\u0455\u0455pi\u0430(\u0430\u0435s.s\u0458cs\u043e, 300L);
|
||||
this.ii\u043ecx\u04bbo = \u04bbaio.a_bsm0("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-1545997952 + 1545997990, -590073711 + 590073661}, (int)(1487004393 + 1816060407), (int)(-1421822454 + 2127066110));
|
||||
this.\u04bb\u0430\u0430 = \u04bbaio.a_bsm0("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[0], (int)(1080868830 + 1068154936), (int)(107326505 + 1618197168));
|
||||
this.a\u0455xaioo = 0L;
|
||||
this.\u043ep\u0455\u0455\u0455 = 0L;
|
||||
this.\u0445\u0456s\u0445 = (long)\u04bbaio.a_bsm1("currentTimeMillis", currentTimeMillis());
|
||||
this.\u0455p\u0441c = false;
|
||||
this.a\u0458c = 0.0f;
|
||||
this.s\u0440j\u0435p\u0440 = \u04bbaio.a_bsm2("\u0458haa\u0455\u0445", \u0458haa\u0455\u0445(float ), (float)10.0f);
|
||||
}
|
||||
|
||||
public /* synthetic */ void cac\u0441(String string, String string2, long l2, Color color, Color color2, float f) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
boolean bl = string2 != null && !string2.isEmpty();
|
||||
this.\u04bb\u0430\u0430 = string.length() > (string2 == null ? 0 : string2.length()) ? string : string2;
|
||||
this.s\u0440j\u0435p\u0440 = bl ? \u04bbaio.a_bsm3("\u0458\u0435a", \u0458\u0435a(float ), (float)8.0f) : \u04bbaio.a_bsm3("\u0458\u0435a", \u0458\u0435a(float ), (float)10.0f);
|
||||
this.os\u0441h(string, l2, color, color2, f);
|
||||
}
|
||||
|
||||
public /* synthetic */ void \u0455j\u0456\u043e\u0441(String string, long l2, Color color, Color color2) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.\u04bb\u0430\u0430 = string;
|
||||
this.s\u0440j\u0435p\u0440 = \u04bbaio.a_bsm2("\u0458haa\u0455\u0445", \u0458haa\u0455\u0445(float ), (float)10.0f);
|
||||
this.os\u0441h(string, l2, color, color2, 15.0f);
|
||||
}
|
||||
|
||||
public /* synthetic */ void \u0430ja\u0440\u0445\u0430p(String string, boolean bl) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
CallSite callSite = bl ? \u04bbaio.a_bsm0("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-812291873 + 812291808, -1056866650 + 1056866546, -2023078309 + 2023078358, -1391951060 + 1391950973}, (int)(-1511823007 + 4799690), (int)(-891367013 + 312806376)) : \u04bbaio.a_bsm0("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-523215963 + 523215835, -1249179481 + 1249179584, -216488409 + 216488534, -296855580 + 296855568, -1926562022 + 1926562078}, (int)(-1787924339 + 1725139892), (int)(1055036607 + 1667501446));
|
||||
String string2 = string;
|
||||
String string3 = string2 + callSite;
|
||||
Color color = bl ? new Color(-1682166216 + 1682166292, -1733950040 + 1733950215, -264357871 + 264357951) : new Color(-112534962 + 112535206, -1229929426 + 1229929493, -975481757 + 975481811);
|
||||
Color color2 = bl ? new Color(-346735223 + 346735299, -75534332 + 75534507, -21842708 + 21842788, -170705457 + 170705607) : new Color(-1277946488 + 1277946732, -69246322 + 69246389, -1403418532 + 1403418586, -1148975339 + 1148975489);
|
||||
this.\u04bb\u0430\u0430 = string3;
|
||||
this.s\u0440j\u0435p\u0440 = \u04bbaio.a_bsm2("\u0458haa\u0455\u0445", \u0458haa\u0455\u0445(float ), (float)10.0f);
|
||||
this.os\u0441h(string3, 800L, color, color2, 15.0f);
|
||||
}
|
||||
|
||||
private /* synthetic */ void os\u0441h(String string, long l2, Color color, Color color2, float f) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.p\u0435\u0458\u0455(string, l2);
|
||||
this.e\u0435p\u0445ci\u0441 = f;
|
||||
this.\u0458pij\u04bbo = this.p\u0435oa != null ? this.p\u0435oa : this.h\u0445ph().aj\u0445\u043e();
|
||||
this.xp\u0440\u0458\u043ec = this.\u0440c\u0440\u0456\u0458p != null ? this.\u0440c\u0440\u0456\u0458p : this.h\u0445ph().i\u0458\u0441\u0435e\u0440\u0440();
|
||||
this.\u04bb\u043e\u0440\u0440 = color;
|
||||
this.\u04bbai\u0430\u0455 = color2 != null && !color2.equals(color) ? color2 : this.h\u0445ph().\u04bbha();
|
||||
this.c\u0435\u0440eo\u0456\u0455 = this.h\u0445ph().aj\u0445\u043e();
|
||||
this.a\u0458c = 0.0f;
|
||||
}
|
||||
|
||||
public /* synthetic */ void p\u0456\u0456\u0445oh\u043e(pxs\u0456\u04bbx pxs\u0456\u04bbx2) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.\u0458x\u0456\u0456x = null;
|
||||
this.i\u0430\u0430 = pxs\u0456\u04bbx2;
|
||||
}
|
||||
|
||||
public /* synthetic */ void \u0456\u0430\u0440(pxs\u0456\u04bbx pxs\u0456\u04bbx2) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (this.i\u0430\u0430 != null) {
|
||||
boolean bl;
|
||||
double d = this.a\u0435\u0455ci.xax\u04bb();
|
||||
boolean bl2 = bl = d > 0.001 && d < 0.999;
|
||||
if (bl) {
|
||||
this.\u0458x\u0456\u0456x = null;
|
||||
this.a\u0435\u0455ci.a\u0435i\u0440(1.0);
|
||||
this.a\u0435\u0455ci.a\u0456ao\u04bbhi(1.0);
|
||||
} else {
|
||||
this.\u0458x\u0456\u0456x = this.i\u0430\u0430;
|
||||
this.a\u0435\u0455ci.a\u0435i\u0440(0.002);
|
||||
this.a\u0435\u0455ci.a\u0456ao\u04bbhi(0.002);
|
||||
}
|
||||
} else {
|
||||
this.\u0458x\u0456\u0456x = null;
|
||||
}
|
||||
this.i\u0430\u0430 = pxs\u0456\u04bbx2;
|
||||
}
|
||||
|
||||
public /* synthetic */ void p\u0435\u0458\u0455(String string, long l2) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (string != null && !string.isEmpty()) {
|
||||
this.ii\u043ecx\u04bbo = string;
|
||||
this.a\u0455xaioo = (long)\u04bbaio.a_bsm1("currentTimeMillis", currentTimeMillis());
|
||||
this.\u043ep\u0455\u0455\u0455 = l2;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Unable to fully structure code
|
||||
*/
|
||||
public /* synthetic */ void hi\u0458\u04bbcip() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
var1_1 = \u04bbaio.a_bsm1("currentTimeMillis", currentTimeMillis());
|
||||
if (this.ii\u043ecx\u04bbo.equals(\u04bbaio.a_bsm0("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-620198719 + 620198793, -1818633343 + 1818633327}, (int)(-1387250983 + 949660433), (int)(447527532 + 1844825654)))) ** GOTO lbl-1000
|
||||
v0 = new byte[-1641057130 + 1641057137];
|
||||
v0[0] = -989691715 + 989691658;
|
||||
v0[1] = -264097985 + 264097857;
|
||||
v0[2] = -2125078590 + 2125078621;
|
||||
v0[3] = -376278374 + 376278401;
|
||||
v0[4] = -294521786 + 294521675;
|
||||
v0[5] = -3483397 + 3483523;
|
||||
v0[-91009862 + 91009868] = -1377762007 + 1377762097;
|
||||
if (!this.ii\u043ecx\u04bbo.equals(\u04bbaio.a_bsm0("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])v0, (int)(-1490593623 + 1768208354), (int)(40591220 + 1257893360)))) {
|
||||
if (var1_1 - this.a\u0455xaioo > this.\u043ep\u0455\u0455\u0455) {
|
||||
this.\u0458x\u0456\u0456x = null;
|
||||
if (this.\u0455p\u0441c) {
|
||||
v1 = new byte[-482868227 + 482868234];
|
||||
v1[0] = -977835567 + 977835694;
|
||||
v1[1] = -217942433 + 217942472;
|
||||
v1[2] = -1385255147 + 1385255059;
|
||||
v1[3] = -189892888 + 189892835;
|
||||
v1[4] = -465505207 + 465505311;
|
||||
v1[5] = -10129736 + 10129758;
|
||||
v1[-1132471415 + 1132471421] = -1088916643 + 1088916752;
|
||||
v2 = \u04bbaio.a_bsm0("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])v1, (int)(1146377599 + 909059331), (int)(1518252819 + 800511778));
|
||||
} else {
|
||||
v2 = \u04bbaio.a_bsm0("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-912313737 + 912313845, -97729899 + 97729797}, (int)(-90253366 + 1826721718), (int)(293614828 + 1031346700));
|
||||
}
|
||||
this.ii\u043ecx\u04bbo = v2;
|
||||
this.s\u0440j\u0435p\u0440 = \u04bbaio.a_bsm2("\u0458haa\u0455\u0445", \u0458haa\u0455\u0445(float ), (float)10.0f);
|
||||
this.\u0458pij\u04bbo = this.p\u0435oa;
|
||||
this.xp\u0440\u0458\u043ec = this.\u0440c\u0440\u0456\u0458p;
|
||||
this.\u04bb\u043e\u0440\u0440 = null;
|
||||
this.\u04bbai\u0430\u0455 = null;
|
||||
this.a\u0458c = 0.0f;
|
||||
this.\u0445\u0456s\u0445 = (long)var1_1;
|
||||
}
|
||||
} else lbl-1000:
|
||||
// 2 sources
|
||||
|
||||
{
|
||||
v3 = var3_2 = this.\u0455p\u0441c != false ? 2000L : 3000L;
|
||||
if (var1_1 - this.\u0445\u0456s\u0445 > var3_2) {
|
||||
v4 = this.\u0455p\u0441c = this.\u0455p\u0441c == false;
|
||||
if (this.\u0455p\u0441c) {
|
||||
v5 = new byte[-247146693 + 247146700];
|
||||
v5[0] = -520643960 + 520643927;
|
||||
v5[1] = -1662803130 + 1662803218;
|
||||
v5[2] = 0;
|
||||
v5[3] = -2121128424 + 2121128331;
|
||||
v5[4] = -1923703650 + 1923703757;
|
||||
v5[5] = -93800049 + 93800009;
|
||||
v5[-1913878060 + 1913878066] = -76400003 + 76399895;
|
||||
v6 = \u04bbaio.a_bsm0("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])v5, (int)(-1616323033 + 533848403), (int)(122085568 + 929848818));
|
||||
} else {
|
||||
v6 = \u04bbaio.a_bsm0("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-619408358 + 619408466, -328026955 + 328026995}, (int)(-250027121 + 1097682678), (int)(-30697367 + 88763148));
|
||||
}
|
||||
this.ii\u043ecx\u04bbo = v6;
|
||||
this.\u0445\u0456s\u0445 = (long)var1_1;
|
||||
}
|
||||
}
|
||||
this.a\u0435\u0455ci.\u0440\u0458jj\u0435hp(1.0);
|
||||
if (this.a\u0435\u0455ci.xax\u04bb() >= 1.0) {
|
||||
this.\u0458x\u0456\u0456x = null;
|
||||
}
|
||||
}
|
||||
|
||||
public /* synthetic */ void \u0445\u04bb\u0458a() {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.\u043e\u0441\u0456\u0455 = this.h\u0445ph().iejp\u04bb();
|
||||
this.c\u0435\u0440eo\u0456\u0455 = this.h\u0445ph().iejp\u04bb();
|
||||
}
|
||||
|
||||
public /* synthetic */ void \u0456aee\u04bbee() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (this.\u043e\u0441\u0456\u0455 == null || this.c\u0435\u0440eo\u0456\u0455 == null) {
|
||||
this.\u043e\u0441\u0456\u0455 = this.h\u0445ph().iejp\u04bb();
|
||||
this.c\u0435\u0440eo\u0456\u0455 = this.h\u0445ph().iejp\u04bb();
|
||||
}
|
||||
if (this.\u04bbai\u0430\u0455 != null || this.\u04bb\u043e\u0440\u0440 != null || this.a\u0458c < 1.0f) {
|
||||
this.a\u0458c = (float)\u04bbaio.a_bsm4("jh\u0455a", jh\u0455a(float float float ), (float)this.a\u0458c, (float)1.0f, (float)3.0f);
|
||||
if (this.a\u0458c >= 0.999f) {
|
||||
this.a\u0458c = 1.0f;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static {
|
||||
o\u0445\u0440ca = \u04bbaio.a_fd("qy5LGus+PZfcwL3PjAY0kL2SDQ2m1FW1SL5gBFaD57Q=", "je8v7v3b/YMdKfKfuOVZrw==");
|
||||
oeps\u0456 = \u04bbaio.a_fd("0P1Bj0IubriMkX/baDs8XKzi0CtFOy1OkCAM8XvNZN4=", "je8v7v3b/YMdKfKfuOVZrw==");
|
||||
xo\u0456\u0430\u0435 = \u04bbaio.a_fd("KPnEbJAn3KzcY2dCXcFnfXMc8kpVLPr4miP9SRtqtz8=", "je8v7v3b/YMdKfKfuOVZrw==");
|
||||
o\u0455\u0445 = \u04bbaio.a_fd("Wd/rfuL/DQ4M8PODuFh/R0tM4IxIeadoYtTLpvU0dH4=", "je8v7v3b/YMdKfKfuOVZrw==");
|
||||
ixej = DateTimeFormatter.ofPattern(Cade0e18b60fd9f037d8b2fc8.cachedDecodeString(new byte[]{-1679353941 + 1679353827, -656851490 + 656851527, -371613380 + 371613366, -579952475 + 579952367, -702624505 + 702624484}, -689297754 + 1101197798, -1942766410 + 312009238));
|
||||
}
|
||||
|
||||
private static /* synthetic */ String a_fd(String string, String string2) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (string == null) {
|
||||
return null;
|
||||
}
|
||||
try {
|
||||
byte[] byArray = ((Base64.Decoder)((Object)\u04bbaio.a_bsm5("getDecoder", getDecoder()))).decode(string);
|
||||
byte[] byArray2 = new byte[-495485632 + 495485648];
|
||||
\u04bbaio.a_bsm6("arraycopy", arraycopy(java.lang.Object int java.lang.Object int int ), (Object)byArray, (int)0, (Object)byArray2, (int)0, (int)(-303082371 + 303082387));
|
||||
byte[] byArray3 = new byte[byArray.length - (-917974404 + 917974420)];
|
||||
\u04bbaio.a_bsm6("arraycopy", arraycopy(java.lang.Object int java.lang.Object int int ), (Object)byArray, (int)(-77502900 + 77502916), (Object)byArray3, (int)0, (int)byArray3.length);
|
||||
SecretKeySpec secretKeySpec = new SecretKeySpec(((Base64.Decoder)((Object)\u04bbaio.a_bsm5("getDecoder", getDecoder()))).decode(string2), "AES");
|
||||
CallSite callSite = \u04bbaio.a_bsm7("getInstance", getInstance(java.lang.String ), (String)"AES/CBC/PKCS5Padding");
|
||||
((Cipher)((Object)callSite)).init(2, secretKeySpec, new IvParameterSpec(byArray2));
|
||||
return new String(((Cipher)((Object)callSite)).doFinal(byArray3), "UTF-8");
|
||||
}
|
||||
catch (Exception exception) {
|
||||
throw new IllegalStateException("Encrypted field string decode failed");
|
||||
}
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm0(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm1(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm2(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm3(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm4(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm5(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm6(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm7(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cis\u0435ia;
|
||||
|
||||
import io.github.humbleui.skija.Font;
|
||||
import java.awt.Color;
|
||||
import java.lang.invoke.CallSite;
|
||||
import java.lang.invoke.ConstantCallSite;
|
||||
import java.lang.invoke.MethodHandle;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.lang.invoke.MethodType;
|
||||
import j\u0435a\u0435ca.pj\u0456oj\u0435\u0440;
|
||||
import oe\u043eo\u043ej.\u0458ip;
|
||||
import x\u0445so\u0456.i\u0430\u0455\u0455pi\u0430;
|
||||
import x\u0445so\u0456.\u0430\u0435s;
|
||||
|
||||
public class \u0445\u0440\u0445\u0458
|
||||
extends \u0458ip {
|
||||
private static final /* synthetic */ Font \u043e\u0430iei\u0445i;
|
||||
private final /* synthetic */ i\u0430\u0455\u0455pi\u0430 scip;
|
||||
public /* synthetic */ String c\u0455\u043eos\u0445a;
|
||||
|
||||
public \u0445\u0440\u0445\u0458(double d, double d2, double d3, double d4, Runnable runnable, String string) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
super(d, d2, d3, d4, runnable);
|
||||
this.scip = new i\u0430\u0455\u0455pi\u0430(\u0430\u0435s.s\u043eec\u0455e\u0440, 250L);
|
||||
this.c\u0455\u043eos\u0445a = string;
|
||||
}
|
||||
|
||||
@Override
|
||||
public /* synthetic */ void draw(int n, int n2, float f) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.scip.\u0440\u0458jj\u0435hp(\u0445\u0440\u0445\u0458.a_bsm0("\u0441\u0435a\u043ex", \u0441\u0435a\u043ex(double double double double int int ), (double)this.a\u0458ea\u0440c\u0441(), (double)this.i\u0440x\u0435\u0430hj(), (double)this.p\u0435\u0455(), (double)this.\u0455j\u0430\u0440\u0455(), (int)n, (int)n2) != false ? 70.0 : 0.0);
|
||||
CallSite callSite = \u0445\u0440\u0445\u0458.a_bsm1("withAlpha", withAlpha(java.awt.Color int ), (Color)Color.black, (int)((int)this.scip.xax\u04bb()));
|
||||
CallSite callSite2 = \u0445\u0440\u0445\u0458.a_bsm1("withAlpha", withAlpha(java.awt.Color int ), (Color)Color.WHITE, (int)(-1455348866 + 1455349016));
|
||||
s\u0430\u04bb\u0458.add(() -> this.\u0435s\u0440j((Color)((Object)callSite), (Color)((Object)callSite2)));
|
||||
}
|
||||
|
||||
private /* synthetic */ void \u0435s\u0440j(Color color, Color color2) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
\u0445\u0440\u0445\u0458.a_bsm2("\u0445a\u0440c\u0445h", \u0445a\u0440c\u0445h(float float float float float java.awt.Color ), (float)((float)this.a\u0458ea\u0440c\u0441()), (float)((float)this.i\u0440x\u0435\u0430hj()), (float)((float)this.p\u0435\u0455()), (float)((float)this.\u0455j\u0430\u0440\u0455()), (float)5.0f, (Color)color);
|
||||
\u0445\u0440\u0445\u0458.a_bsm3("j\u0455\u0445", j\u0455\u0445(java.lang.String float float java.awt.Color io.github.humbleui.skija.Font ), (String)this.c\u0455\u043eos\u0445a, (float)((float)(this.a\u0458ea\u0440c\u0441() + this.p\u0435\u0455() / 2.0)), (float)((float)(this.i\u0440x\u0435\u0430hj() + this.\u0455j\u0430\u0440\u0455() / 2.0) - \u043e\u0430iei\u0445i.getMetrics().getHeight() / 2.0f + 3.0f), (Color)color2, (Font)\u043e\u0430iei\u0445i);
|
||||
}
|
||||
|
||||
static {
|
||||
\u043e\u0430iei\u0445i = pj\u0456oj\u0435\u0440.h\u0441eh(8.0f);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm0(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm1(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm2(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm3(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cop\u04bb\u04bbj;
|
||||
|
||||
public interface cch {
|
||||
public boolean isCancelled();
|
||||
|
||||
public void setCancelled(boolean var1);
|
||||
}
|
||||
|
||||
@@ -0,0 +1,38 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cop\u04bb\u04bbj;
|
||||
|
||||
import cop\u04bb\u04bbj.\u0435a\u0440\u0435j\u0458e;
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
|
||||
public abstract class xca\u0430\u043e
|
||||
implements \u0435a\u0440\u0435j\u0458e {
|
||||
private /* synthetic */ boolean \u0441\u0440a\u0435i;
|
||||
|
||||
protected xca\u0430\u043e() {
|
||||
if (true | false) {
|
||||
}
|
||||
}
|
||||
|
||||
public /* synthetic */ void \u0458\u0435ji\u0445\u0435() {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.\u0441\u0440a\u0435i = true;
|
||||
}
|
||||
|
||||
public /* synthetic */ boolean h\u0440h\u0440\u0445() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.\u0441\u0440a\u0435i;
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cop\u04bb\u04bbj;
|
||||
|
||||
public interface \u0435a\u0440\u0435j\u0458e {
|
||||
}
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package cop\u04bb\u04bbj;
|
||||
|
||||
public interface \u04bbepx {
|
||||
public byte getType();
|
||||
}
|
||||
|
||||
File diff suppressed because one or more lines are too long.
@@ -0,0 +1,95 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package c\u0445is;
|
||||
|
||||
import cop\u04bb\u04bbj.\u0435a\u0440\u0435j\u0458e;
|
||||
import net.minecraft.class_1297;
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
|
||||
public class cac\u0445
|
||||
implements \u0435a\u0440\u0435j\u0458e {
|
||||
public static /* synthetic */ class_1297 a\u0440\u0456\u043e\u0445;
|
||||
private /* synthetic */ float e\u0440e;
|
||||
private /* synthetic */ float \u0430o\u043e;
|
||||
private /* synthetic */ float xj\u043e;
|
||||
private /* synthetic */ float \u0430s\u0440eap;
|
||||
|
||||
public cac\u0445(float f, float f2, float f3, float f4) {
|
||||
if (true | false) {
|
||||
}
|
||||
this.e\u0440e = f;
|
||||
this.\u0430o\u043e = f2;
|
||||
this.xj\u043e = f3;
|
||||
this.\u0430s\u0440eap = f4;
|
||||
}
|
||||
|
||||
public /* synthetic */ void s\u0430sss\u0435\u043e(float f) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.e\u0440e = f;
|
||||
}
|
||||
|
||||
public /* synthetic */ void p\u0440\u0455\u0456sih(float f) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.\u0430o\u043e = f;
|
||||
}
|
||||
|
||||
public /* synthetic */ void \u0435s\u0430(float f) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.xj\u043e = f;
|
||||
}
|
||||
|
||||
public /* synthetic */ void i\u0458\u0435(float f) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.\u0430s\u0440eap = f;
|
||||
}
|
||||
|
||||
public /* synthetic */ float jo\u0456c\u043e\u0440() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.e\u0440e;
|
||||
}
|
||||
|
||||
public /* synthetic */ float \u0440s\u0445\u043e\u0456p() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.\u0430o\u043e;
|
||||
}
|
||||
|
||||
public /* synthetic */ float xpx() {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.xj\u043e;
|
||||
}
|
||||
|
||||
public /* synthetic */ float \u0458o\u0440ecph() {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.\u0430s\u0440eap;
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,76 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package c\u0445is;
|
||||
|
||||
import cop\u04bb\u04bbj.\u0435a\u0440\u0435j\u0458e;
|
||||
import net.minecraft.class_1297;
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
|
||||
public class css\u0456co
|
||||
implements \u0435a\u0440\u0435j\u0458e {
|
||||
public /* synthetic */ class_1297 c\u0441\u0430;
|
||||
public /* synthetic */ float \u04bb\u0440x\u04bb\u0440\u0430c;
|
||||
public /* synthetic */ float \u04bb\u0458s\u0455;
|
||||
|
||||
public css\u0456co(class_1297 class_12972, float f, float f2) {
|
||||
if (true | false) {
|
||||
}
|
||||
this.c\u0441\u0430 = class_12972;
|
||||
this.\u04bb\u0440x\u04bb\u0440\u0430c = f;
|
||||
this.\u04bb\u0458s\u0455 = f2;
|
||||
}
|
||||
|
||||
public /* synthetic */ void \u0435\u0440\u043e\u0440(class_1297 class_12972) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.c\u0441\u0430 = class_12972;
|
||||
}
|
||||
|
||||
public /* synthetic */ void s\u0430sss\u0435\u043e(float f) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.\u04bb\u0440x\u04bb\u0440\u0430c = f;
|
||||
}
|
||||
|
||||
public /* synthetic */ void \u0435s\u0430(float f) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.\u04bb\u0458s\u0455 = f;
|
||||
}
|
||||
|
||||
public /* synthetic */ class_1297 \u0445\u0435s\u0430\u0455() {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.c\u0441\u0430;
|
||||
}
|
||||
|
||||
public /* synthetic */ float jo\u0456c\u043e\u0440() {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.\u04bb\u0440x\u04bb\u0440\u0430c;
|
||||
}
|
||||
|
||||
public /* synthetic */ float xpx() {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.\u04bb\u0458s\u0455;
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package c\u0445is;
|
||||
|
||||
import cop\u04bb\u04bbj.\u0435a\u0440\u0435j\u0458e;
|
||||
import net.minecraft.class_1297;
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
|
||||
public class ex\u0441s\u04bbp\u0435
|
||||
implements \u0435a\u0440\u0435j\u0458e {
|
||||
private final /* synthetic */ class_1297 cspoa\u0456;
|
||||
private final /* synthetic */ boolean \u0430\u04bbc;
|
||||
|
||||
public ex\u0441s\u04bbp\u0435(class_1297 class_12972, boolean bl) {
|
||||
if (true | false) {
|
||||
}
|
||||
this.cspoa\u0456 = class_12972;
|
||||
this.\u0430\u04bbc = bl;
|
||||
}
|
||||
|
||||
public /* synthetic */ class_1297 \u0458s\u0430() {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.cspoa\u0456;
|
||||
}
|
||||
|
||||
public /* synthetic */ boolean x\u0441xs() {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.\u0430\u04bbc;
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,20 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package c\u0445is;
|
||||
|
||||
import i\u0441\u0455\u0441\u0440ia.j\u04bbc\u0441o\u0430e;
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
|
||||
public class hoi\u0435h\u0440
|
||||
extends j\u04bbc\u0441o\u0430e {
|
||||
public hoi\u0435h\u0440() {
|
||||
if (true | false) {
|
||||
}
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package c\u0445is;
|
||||
|
||||
import cop\u04bb\u04bbj.\u0435a\u0440\u0435j\u0458e;
|
||||
import net.minecraft.class_638;
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
|
||||
public class h\u0430p\u043ee\u0440
|
||||
implements \u0435a\u0440\u0435j\u0458e {
|
||||
private final /* synthetic */ class_638 s\u0445cjs;
|
||||
|
||||
public h\u0430p\u043ee\u0440(class_638 class_6382) {
|
||||
if (true | false) {
|
||||
}
|
||||
this.s\u0445cjs = class_6382;
|
||||
}
|
||||
|
||||
public /* synthetic */ class_638 jax\u0440a() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.s\u0445cjs;
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
}
|
||||
}
|
||||
|
||||
File diff suppressed because one or more lines are too long.
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package c\u0445is;
|
||||
|
||||
import cop\u04bb\u04bbj.\u0435a\u0440\u0435j\u0458e;
|
||||
import net.minecraft.class_4587;
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
|
||||
public class i\u0456o\u0430\u0435o
|
||||
implements \u0435a\u0440\u0435j\u0458e {
|
||||
private final /* synthetic */ float a\u0435ch\u04bb;
|
||||
private final /* synthetic */ class_4587 \u0455jo\u0445;
|
||||
|
||||
public i\u0456o\u0430\u0435o(float f, class_4587 class_45872) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
this.a\u0435ch\u04bb = f;
|
||||
this.\u0455jo\u0445 = class_45872;
|
||||
}
|
||||
|
||||
public /* synthetic */ float \u0430pah\u0456x() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.a\u0435ch\u04bb;
|
||||
}
|
||||
|
||||
public /* synthetic */ class_4587 \u0445\u0455i\u0430pi() {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.\u0455jo\u0445;
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,39 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package c\u0445is;
|
||||
|
||||
import cop\u04bb\u04bbj.\u0435a\u0440\u0435j\u0458e;
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
|
||||
public class j\u0435ooc
|
||||
implements \u0435a\u0440\u0435j\u0458e {
|
||||
private /* synthetic */ float j\u043e\u0456e\u04bbc;
|
||||
|
||||
public j\u0435ooc(float f) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
this.j\u043e\u0456e\u04bbc = f;
|
||||
}
|
||||
|
||||
public /* synthetic */ void \u0435s\u0430(float f) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.j\u043e\u0456e\u04bbc = f;
|
||||
}
|
||||
|
||||
public /* synthetic */ float xpx() {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.j\u043e\u0456e\u04bbc;
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,39 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package c\u0445is;
|
||||
|
||||
import cop\u04bb\u04bbj.\u0435a\u0440\u0435j\u0458e;
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
|
||||
public class j\u0441cj
|
||||
implements \u0435a\u0440\u0435j\u0458e {
|
||||
private /* synthetic */ float \u0455ha\u0441ij;
|
||||
|
||||
public j\u0441cj(float f) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
this.\u0455ha\u0441ij = f;
|
||||
}
|
||||
|
||||
public /* synthetic */ void s\u0430sss\u0435\u043e(float f) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.\u0455ha\u0441ij = f;
|
||||
}
|
||||
|
||||
public /* synthetic */ float jo\u0456c\u043e\u0440() {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.\u0455ha\u0441ij;
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,43 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package c\u0445is;
|
||||
|
||||
import i\u0441\u0455\u0441\u0440ia.j\u04bbc\u0441o\u0430e;
|
||||
import net.minecraft.class_1268;
|
||||
import net.minecraft.class_1799;
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
|
||||
public class p\u0435j\u0435\u0430he
|
||||
extends j\u04bbc\u0441o\u0430e {
|
||||
private final /* synthetic */ class_1268 \u0430j\u0435cx;
|
||||
private final /* synthetic */ class_1799 \u0455ox;
|
||||
|
||||
public p\u0435j\u0435\u0430he(class_1268 class_12682, class_1799 class_17992) {
|
||||
if (true | false) {
|
||||
}
|
||||
this.\u0430j\u0435cx = class_12682;
|
||||
this.\u0455ox = class_17992;
|
||||
}
|
||||
|
||||
public /* synthetic */ class_1268 \u0456\u0455\u0455xpa\u0455() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.\u0430j\u0435cx;
|
||||
}
|
||||
|
||||
public /* synthetic */ class_1799 \u0445oxc\u0445() {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.\u0455ox;
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,20 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package c\u0445is;
|
||||
|
||||
import i\u0441\u0455\u0441\u0440ia.j\u04bbc\u0441o\u0430e;
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
|
||||
public class si\u0458\u04bbo\u0440
|
||||
extends j\u04bbc\u0441o\u0430e {
|
||||
public si\u0458\u04bbo\u0440() {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,43 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package c\u0445is;
|
||||
|
||||
import cop\u04bb\u04bbj.\u0435a\u0440\u0435j\u0458e;
|
||||
import net.minecraft.class_332;
|
||||
import net.minecraft.class_4587;
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
|
||||
public class s\u0456a\u0458
|
||||
implements \u0435a\u0440\u0435j\u0458e {
|
||||
private final /* synthetic */ class_4587 \u0445\u0435eh\u0441\u0458\u0455;
|
||||
private final /* synthetic */ class_332 j\u0441\u0456\u0441i\u0430;
|
||||
|
||||
public s\u0456a\u0458(class_4587 class_45872, class_332 class_3322) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
this.\u0445\u0435eh\u0441\u0458\u0455 = class_45872;
|
||||
this.j\u0441\u0456\u0441i\u0430 = class_3322;
|
||||
}
|
||||
|
||||
public /* synthetic */ class_4587 a\u0430c() {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.\u0445\u0435eh\u0441\u0458\u0455;
|
||||
}
|
||||
|
||||
public /* synthetic */ class_332 i\u0458\u0456s() {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.j\u0441\u0456\u0441i\u0430;
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,64 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package c\u0445is;
|
||||
|
||||
import cop\u04bb\u04bbj.\u0435a\u0440\u0435j\u0458e;
|
||||
import net.minecraft.class_1268;
|
||||
import net.minecraft.class_1799;
|
||||
import net.minecraft.class_4587;
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
|
||||
public class xe\u0440\u0445\u0441
|
||||
implements \u0435a\u0440\u0435j\u0458e {
|
||||
private final /* synthetic */ class_1268 coxo\u04bb;
|
||||
private final /* synthetic */ class_1799 \u0445\u043ece\u043e;
|
||||
private final /* synthetic */ float ohc;
|
||||
private final /* synthetic */ class_4587 acjp;
|
||||
|
||||
public xe\u0440\u0445\u0441(class_1268 class_12682, class_1799 class_17992, float f, class_4587 class_45872) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
this.coxo\u04bb = class_12682;
|
||||
this.\u0445\u043ece\u043e = class_17992;
|
||||
this.ohc = f;
|
||||
this.acjp = class_45872;
|
||||
}
|
||||
|
||||
public /* synthetic */ class_1268 \u0456\u0455\u0455xpa\u0455() {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.coxo\u04bb;
|
||||
}
|
||||
|
||||
public /* synthetic */ class_1799 \u0445oxc\u0445() {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.\u0445\u043ece\u043e;
|
||||
}
|
||||
|
||||
public /* synthetic */ float \u0445s\u0430\u043e() {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.ohc;
|
||||
}
|
||||
|
||||
public /* synthetic */ class_4587 \u0435\u0440i\u0445() {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.acjp;
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,23 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package c\u0445is;
|
||||
|
||||
import cop\u04bb\u04bbj.\u0435a\u0440\u0435j\u0458e;
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
|
||||
public class x\u0458sc
|
||||
implements \u0435a\u0440\u0435j\u0458e {
|
||||
public /* synthetic */ float o\u04bbea\u0430;
|
||||
|
||||
public x\u0458sc(float f) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
this.o\u04bbea\u0430 = f;
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package c\u0445is;
|
||||
|
||||
import cop\u04bb\u04bbj.\u0435a\u0440\u0435j\u0458e;
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
import \u043e\u0445\u0440\u0430ose.i\u0456\u0445\u0430\u0441p;
|
||||
|
||||
public class \u0430j\u0445
|
||||
implements \u0435a\u0440\u0435j\u0458e {
|
||||
private final /* synthetic */ i\u0456\u0445\u0430\u0441p se\u0430;
|
||||
|
||||
public \u0430j\u0445(i\u0456\u0445\u0430\u0441p i\u0456\u0445\u0430\u0441p2) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
this.se\u0430 = i\u0456\u0445\u0430\u0441p2;
|
||||
}
|
||||
|
||||
public /* synthetic */ i\u0456\u0445\u0430\u0441p p\u0440\u04bb() {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.se\u0430;
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,148 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package c\u0445is;
|
||||
|
||||
import i\u0441\u0455\u0441\u0440ia.j\u04bbc\u0441o\u0430e;
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
import \u043e\u0445\u0440\u0430ose.i\u0456\u0445\u0430\u0441p;
|
||||
|
||||
public class \u0430\u0456i\u043ephj
|
||||
extends j\u04bbc\u0441o\u0430e {
|
||||
private final /* synthetic */ i\u0456\u0445\u0430\u0441p s\u04bba;
|
||||
private /* synthetic */ double \u0430e\u0455\u0458oa;
|
||||
private /* synthetic */ double \u0455a\u0430\u04bb\u0435;
|
||||
private /* synthetic */ double \u0430ha\u0456j;
|
||||
private /* synthetic */ float co\u0445i\u043e\u0456\u0440;
|
||||
private /* synthetic */ float aj\u0435\u0456\u043e;
|
||||
private /* synthetic */ boolean s\u04bbx;
|
||||
|
||||
public \u0430\u0456i\u043ephj(i\u0456\u0445\u0430\u0441p i\u0456\u0445\u0430\u0441p2, float f, float f2) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
this.s\u04bba = i\u0456\u0445\u0430\u0441p2;
|
||||
this.co\u0445i\u043e\u0456\u0440 = f;
|
||||
this.aj\u0435\u0456\u043e = f2;
|
||||
}
|
||||
|
||||
public \u0430\u0456i\u043ephj(i\u0456\u0445\u0430\u0441p i\u0456\u0445\u0430\u0441p2, double d, double d2, double d3, float f, float f2, boolean bl) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
this.s\u04bba = i\u0456\u0445\u0430\u0441p2;
|
||||
this.\u0430e\u0455\u0458oa = d;
|
||||
this.\u0455a\u0430\u04bb\u0435 = d2;
|
||||
this.\u0430ha\u0456j = d3;
|
||||
this.co\u0445i\u043e\u0456\u0440 = f;
|
||||
this.aj\u0435\u0456\u043e = f2;
|
||||
this.s\u04bbx = bl;
|
||||
}
|
||||
|
||||
public /* synthetic */ i\u0456\u0445\u0430\u0441p p\u0440\u04bb() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.s\u04bba;
|
||||
}
|
||||
|
||||
public /* synthetic */ double a\u0458ea\u0440c\u0441() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.\u0430e\u0455\u0458oa;
|
||||
}
|
||||
|
||||
public /* synthetic */ double i\u0440x\u0435\u0430hj() {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.\u0455a\u0430\u04bb\u0435;
|
||||
}
|
||||
|
||||
public /* synthetic */ double \u0440\u0456\u0441\u0445\u043e\u04bbo() {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.\u0430ha\u0456j;
|
||||
}
|
||||
|
||||
public /* synthetic */ float jo\u0456c\u043e\u0440() {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.co\u0445i\u043e\u0456\u0440;
|
||||
}
|
||||
|
||||
public /* synthetic */ float xpx() {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.aj\u0435\u0456\u043e;
|
||||
}
|
||||
|
||||
public /* synthetic */ boolean aech\u0445sp() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.s\u04bbx;
|
||||
}
|
||||
|
||||
public /* synthetic */ void \u0430j\u0456\u043e\u0441\u0441(double d) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.\u0430e\u0455\u0458oa = d;
|
||||
}
|
||||
|
||||
public /* synthetic */ void \u0458pj\u0455hj\u0435(double d) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.\u0455a\u0430\u04bb\u0435 = d;
|
||||
}
|
||||
|
||||
public /* synthetic */ void rmIPIAkMd(double d) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.\u0430ha\u0456j = d;
|
||||
}
|
||||
|
||||
public /* synthetic */ void s\u0430sss\u0435\u043e(float f) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.co\u0445i\u043e\u0456\u0440 = f;
|
||||
}
|
||||
|
||||
public /* synthetic */ void \u0435s\u0430(float f) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.aj\u0435\u0456\u043e = f;
|
||||
}
|
||||
|
||||
public /* synthetic */ void jsa(boolean bl) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.s\u04bbx = bl;
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,62 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package c\u0445is;
|
||||
|
||||
import i\u0441\u0455\u0441\u0440ia.j\u04bbc\u0441o\u0430e;
|
||||
import net.minecraft.class_2596;
|
||||
import net.minecraft.class_2598;
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
import \u043e\u0445\u0440\u0430ose.i\u0456\u0445\u0430\u0441p;
|
||||
|
||||
public class \u0435\u0441\u0441c\u043e\u043e
|
||||
extends j\u04bbc\u0441o\u0430e {
|
||||
private final /* synthetic */ i\u0456\u0445\u0430\u0441p \u0441jje;
|
||||
private /* synthetic */ class_2596<?> \u0456xic\u0458;
|
||||
private final /* synthetic */ class_2598 \u0441\u0430\u04bbc;
|
||||
|
||||
public \u0435\u0441\u0441c\u043e\u043e(i\u0456\u0445\u0430\u0441p i\u0456\u0445\u0430\u0441p2, class_2596<?> class_25962, class_2598 class_25982) {
|
||||
if (true | false) {
|
||||
}
|
||||
this.\u0441jje = i\u0456\u0445\u0430\u0441p2;
|
||||
this.\u0456xic\u0458 = class_25962;
|
||||
this.\u0441\u0430\u04bbc = class_25982;
|
||||
}
|
||||
|
||||
public /* synthetic */ i\u0456\u0445\u0430\u0441p p\u0440\u04bb() {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.\u0441jje;
|
||||
}
|
||||
|
||||
public /* synthetic */ class_2596<?> ciao\u0455\u0455() {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.\u0456xic\u0458;
|
||||
}
|
||||
|
||||
public /* synthetic */ class_2598 i\u0441jx\u0455\u0440h() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.\u0441\u0430\u04bbc;
|
||||
}
|
||||
|
||||
public /* synthetic */ void \u0458x\u0435\u043e(class_2596<?> class_25962) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.\u0456xic\u0458 = class_25962;
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,51 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package c\u0445is;
|
||||
|
||||
import cop\u04bb\u04bbj.\u0435a\u0440\u0435j\u0458e;
|
||||
import net.minecraft.class_1268;
|
||||
import net.minecraft.class_1799;
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
|
||||
public class \u043eo\u0435
|
||||
implements \u0435a\u0440\u0435j\u0458e {
|
||||
private final /* synthetic */ class_1268 \u04bb\u0445s\u0440\u0458\u0441;
|
||||
private /* synthetic */ class_1799 \u0455p\u0455hx\u0435;
|
||||
|
||||
public \u043eo\u0435(class_1268 class_12682, class_1799 class_17992) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
this.\u04bb\u0445s\u0440\u0458\u0441 = class_12682;
|
||||
this.\u0455p\u0455hx\u0435 = class_17992;
|
||||
}
|
||||
|
||||
public /* synthetic */ class_1268 \u0456\u0455\u0455xpa\u0455() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.\u04bb\u0445s\u0440\u0458\u0441;
|
||||
}
|
||||
|
||||
public /* synthetic */ class_1799 \u0445oxc\u0445() {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.\u0455p\u0455hx\u0435;
|
||||
}
|
||||
|
||||
public /* synthetic */ void \u0435oo\u0458\u0445(class_1799 class_17992) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.\u0455p\u0455hx\u0435 = class_17992;
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,23 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package c\u0445is;
|
||||
|
||||
import cop\u04bb\u04bbj.\u0435a\u0440\u0435j\u0458e;
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
|
||||
public class \u043eps\u0435\u0440o\u0430
|
||||
implements \u0435a\u0440\u0435j\u0458e {
|
||||
public /* synthetic */ float caoc\u0435aa;
|
||||
|
||||
public \u043eps\u0435\u0440o\u0430(float f) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
this.caoc\u0435aa = f;
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,40 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package c\u0445is;
|
||||
|
||||
import cop\u04bb\u04bbj.\u0435a\u0440\u0435j\u0458e;
|
||||
import net.minecraft.class_2596;
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
|
||||
public class \u043e\u0435\u04bb\u0456c
|
||||
implements \u0435a\u0440\u0435j\u0458e {
|
||||
private /* synthetic */ class_2596<?> \u0440\u04bb\u0455ap;
|
||||
|
||||
public \u043e\u0435\u04bb\u0456c(class_2596<?> class_25962) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
this.\u0440\u04bb\u0455ap = class_25962;
|
||||
}
|
||||
|
||||
public /* synthetic */ void \u0458x\u0435\u043e(class_2596<?> class_25962) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.\u0440\u04bb\u0455ap = class_25962;
|
||||
}
|
||||
|
||||
public /* synthetic */ class_2596<?> ciao\u0455\u0455() {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.\u0440\u04bb\u0455ap;
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,113 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package c\u0445is;
|
||||
|
||||
import cop\u04bb\u04bbj.\u0435a\u0440\u0435j\u0458e;
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
|
||||
public class \u043e\u0458o\u0445xp\u0440
|
||||
implements \u0435a\u0440\u0435j\u0458e {
|
||||
public static /* synthetic */ Object essiahc;
|
||||
public static /* synthetic */ Object o\u043ec;
|
||||
private /* synthetic */ float io\u0455x;
|
||||
private /* synthetic */ float c\u0435so;
|
||||
private /* synthetic */ boolean \u0456\u0441\u0455\u04bb\u0435i;
|
||||
private /* synthetic */ boolean hxo\u0455;
|
||||
private /* synthetic */ double xo\u0435ac\u04bbj;
|
||||
|
||||
public \u043e\u0458o\u0445xp\u0440(float f, float f2, boolean bl, boolean bl2, double d) {
|
||||
if (true | false) {
|
||||
}
|
||||
this.io\u0455x = f;
|
||||
this.c\u0435so = f2;
|
||||
this.\u0456\u0441\u0455\u04bb\u0435i = bl;
|
||||
this.hxo\u0455 = bl2;
|
||||
this.xo\u0435ac\u04bbj = d;
|
||||
}
|
||||
|
||||
public /* synthetic */ void xoj(float f) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.io\u0455x = f;
|
||||
}
|
||||
|
||||
public /* synthetic */ void pca\u043e(float f) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.c\u0435so = f;
|
||||
}
|
||||
|
||||
public /* synthetic */ void ep\u0441c(boolean bl) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.\u0456\u0441\u0455\u04bb\u0435i = bl;
|
||||
}
|
||||
|
||||
public /* synthetic */ void h\u0435h\u0456i\u0430(boolean bl) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.hxo\u0455 = bl;
|
||||
}
|
||||
|
||||
public /* synthetic */ void \u0456\u0440p\u04bbap(double d) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.xo\u0435ac\u04bbj = d;
|
||||
}
|
||||
|
||||
public /* synthetic */ float \u0458\u0430\u0441\u0441\u0458c\u0455() {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.io\u0455x;
|
||||
}
|
||||
|
||||
public /* synthetic */ float ej\u0435\u0430c() {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.c\u0435so;
|
||||
}
|
||||
|
||||
public /* synthetic */ boolean \u0440iha() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.\u0456\u0441\u0455\u04bb\u0435i;
|
||||
}
|
||||
|
||||
public /* synthetic */ boolean i\u0455exo() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.hxo\u0455;
|
||||
}
|
||||
|
||||
public /* synthetic */ double \u0445\u0435ojh() {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.xo\u0435ac\u04bbj;
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,40 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package c\u0445is;
|
||||
|
||||
import i\u0441\u0455\u0441\u0440ia.j\u04bbc\u0441o\u0430e;
|
||||
import net.minecraft.class_2596;
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
|
||||
public class \u0440\u0430\u0430
|
||||
extends j\u04bbc\u0441o\u0430e {
|
||||
private /* synthetic */ class_2596<?> \u0456\u0445\u043ep;
|
||||
|
||||
public \u0440\u0430\u0430(class_2596<?> class_25962) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
this.\u0456\u0445\u043ep = class_25962;
|
||||
}
|
||||
|
||||
public /* synthetic */ void \u0458x\u0435\u043e(class_2596<?> class_25962) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.\u0456\u0445\u043ep = class_25962;
|
||||
}
|
||||
|
||||
public /* synthetic */ class_2596<?> ciao\u0455\u0455() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.\u0456\u0445\u043ep;
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,39 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package c\u0445is;
|
||||
|
||||
import cop\u04bb\u04bbj.\u0435a\u0440\u0435j\u0458e;
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
|
||||
public class \u0440\u0458hh
|
||||
implements \u0435a\u0440\u0435j\u0458e {
|
||||
private /* synthetic */ boolean i\u0445e;
|
||||
|
||||
public \u0440\u0458hh(boolean bl) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
this.i\u0445e = bl;
|
||||
}
|
||||
|
||||
public /* synthetic */ void oj\u0430j(boolean bl) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.i\u0445e = bl;
|
||||
}
|
||||
|
||||
public /* synthetic */ boolean o\u0435\u0440\u0435\u0445() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.i\u0445e;
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,31 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package c\u0445is;
|
||||
|
||||
import i\u0441\u0455\u0441\u0440ia.j\u04bbc\u0441o\u0430e;
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
|
||||
public class \u0441\u0430ahccx
|
||||
extends j\u04bbc\u0441o\u0430e {
|
||||
private final /* synthetic */ int \u0435exc\u0455\u0441e;
|
||||
|
||||
public \u0441\u0430ahccx(int n) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
this.\u0435exc\u0455\u0441e = n;
|
||||
}
|
||||
|
||||
public /* synthetic */ int x\u04bb\u043e\u04bb\u0456x() {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.\u0435exc\u0455\u0441e;
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,39 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package c\u0445is;
|
||||
|
||||
import cop\u04bb\u04bbj.\u0435a\u0440\u0435j\u0458e;
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
|
||||
public class \u0445\u0456\u0455\u0456\u0430
|
||||
implements \u0435a\u0440\u0435j\u0458e {
|
||||
private /* synthetic */ float \u0430\u04bbs\u0456\u0455;
|
||||
|
||||
public \u0445\u0456\u0455\u0456\u0430(float f) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
this.\u0430\u04bbs\u0456\u0455 = f;
|
||||
}
|
||||
|
||||
public /* synthetic */ void s\u0430sss\u0435\u043e(float f) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.\u0430\u04bbs\u0456\u0455 = f;
|
||||
}
|
||||
|
||||
public /* synthetic */ float jo\u0456c\u043e\u0440() {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.\u0430\u04bbs\u0456\u0455;
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,39 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package c\u0445is;
|
||||
|
||||
import cop\u04bb\u04bbj.\u0435a\u0440\u0435j\u0458e;
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
|
||||
public class \u0445\u04bba\u0430\u0458\u043ex
|
||||
implements \u0435a\u0440\u0435j\u0458e {
|
||||
private /* synthetic */ float ai\u0441;
|
||||
|
||||
public \u0445\u04bba\u0430\u0458\u043ex(float f) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
this.ai\u0441 = f;
|
||||
}
|
||||
|
||||
public /* synthetic */ void s\u0430sss\u0435\u043e(float f) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.ai\u0441 = f;
|
||||
}
|
||||
|
||||
public /* synthetic */ float jo\u0456c\u043e\u0440() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.ai\u0441;
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,41 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package c\u0445is;
|
||||
|
||||
import cop\u04bb\u04bbj.\u0435a\u0440\u0435j\u0458e;
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
|
||||
public class \u0455\u0456\u0440
|
||||
implements \u0435a\u0440\u0435j\u0458e {
|
||||
private final /* synthetic */ int ehi;
|
||||
private final /* synthetic */ boolean h\u043e\u0430\u0456c\u043e;
|
||||
|
||||
public \u0455\u0456\u0440(int n, boolean bl) {
|
||||
if (true | false) {
|
||||
}
|
||||
this.ehi = n;
|
||||
this.h\u043e\u0430\u0456c\u043e = bl;
|
||||
}
|
||||
|
||||
public /* synthetic */ int x\u04bb\u043e\u04bb\u0456x() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.ehi;
|
||||
}
|
||||
|
||||
public /* synthetic */ boolean \u0440\u0430\u0440\u043e() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.h\u043e\u0430\u0456c\u043e;
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,39 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package c\u0445is;
|
||||
|
||||
import cop\u04bb\u04bbj.\u0435a\u0440\u0435j\u0458e;
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
|
||||
public class \u0456\u0435\u0440
|
||||
implements \u0435a\u0440\u0435j\u0458e {
|
||||
private /* synthetic */ float x\u0445hc\u0455as;
|
||||
|
||||
public \u0456\u0435\u0440(float f) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
this.x\u0445hc\u0455as = f;
|
||||
}
|
||||
|
||||
public /* synthetic */ void e\u0456ea\u0430ep(float f) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.x\u0445hc\u0455as = f;
|
||||
}
|
||||
|
||||
public /* synthetic */ float c\u0440\u04bb\u0435\u0456() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.x\u0445hc\u0455as;
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,40 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package c\u0445is;
|
||||
|
||||
import i\u0441\u0455\u0441\u0440ia.j\u04bbc\u0441o\u0430e;
|
||||
import net.minecraft.class_2680;
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
|
||||
public class \u0456\u0440sp\u0445\u0456\u0455
|
||||
extends j\u04bbc\u0441o\u0430e {
|
||||
private /* synthetic */ class_2680 p\u0435cc\u0441;
|
||||
|
||||
public \u0456\u0440sp\u0445\u0456\u0455(class_2680 class_26802) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
this.p\u0435cc\u0441 = class_26802;
|
||||
}
|
||||
|
||||
public /* synthetic */ void x\u04bbchej\u04bb(class_2680 class_26802) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.p\u0435cc\u0441 = class_26802;
|
||||
}
|
||||
|
||||
public /* synthetic */ class_2680 h\u0441i\u0441\u0455() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.p\u0435cc\u0441;
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,31 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package c\u0445is;
|
||||
|
||||
import i\u0441\u0455\u0441\u0440ia.j\u04bbc\u0441o\u0430e;
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
|
||||
public class \u0458a\u0458\u0456\u0458
|
||||
extends j\u04bbc\u0441o\u0430e {
|
||||
private final /* synthetic */ String \u0456\u0441\u0456;
|
||||
|
||||
public \u0458a\u0458\u0456\u0458(String string) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
this.\u0456\u0441\u0456 = string;
|
||||
}
|
||||
|
||||
public /* synthetic */ String \u0441c\u0430\u0455o() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.\u0456\u0441\u0456;
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,59 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package c\u0445is;
|
||||
|
||||
import cop\u04bb\u04bbj.\u0435a\u0440\u0435j\u0458e;
|
||||
import net.minecraft.class_2561;
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
import \u043e\u0445\u0440\u0430ose.i\u0456\u0445\u0430\u0441p;
|
||||
|
||||
public class \u0458i\u0458
|
||||
implements \u0435a\u0440\u0435j\u0458e {
|
||||
private /* synthetic */ i\u0456\u0445\u0430\u0441p x\u0455ie\u0456i;
|
||||
private /* synthetic */ class_2561 j\u0441xs;
|
||||
|
||||
public \u0458i\u0458(i\u0456\u0445\u0430\u0441p i\u0456\u0445\u0430\u0441p2, class_2561 class_25612) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
this.x\u0455ie\u0456i = i\u0456\u0445\u0430\u0441p2;
|
||||
this.j\u0441xs = class_25612;
|
||||
}
|
||||
|
||||
public /* synthetic */ void a\u043eh\u0435\u0458(i\u0456\u0445\u0430\u0441p i\u0456\u0445\u0430\u0441p2) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.x\u0455ie\u0456i = i\u0456\u0445\u0430\u0441p2;
|
||||
}
|
||||
|
||||
public /* synthetic */ void s\u0441x\u0430oix(class_2561 class_25612) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.j\u0441xs = class_25612;
|
||||
}
|
||||
|
||||
public /* synthetic */ i\u0456\u0445\u0430\u0441p p\u0440\u04bb() {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.x\u0455ie\u0456i;
|
||||
}
|
||||
|
||||
public /* synthetic */ class_2561 \u0441\u04bb\u0456c\u0455() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.j\u0441xs;
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,40 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package c\u0445is;
|
||||
|
||||
import cop\u04bb\u04bbj.\u0435a\u0440\u0435j\u0458e;
|
||||
import net.minecraft.class_2561;
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
|
||||
public class \u0458ppa
|
||||
implements \u0435a\u0440\u0435j\u0458e {
|
||||
private /* synthetic */ class_2561 x\u0435\u0435;
|
||||
|
||||
public \u0458ppa(class_2561 class_25612) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
this.x\u0435\u0435 = class_25612;
|
||||
}
|
||||
|
||||
public /* synthetic */ void s\u0441x\u0430oix(class_2561 class_25612) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.x\u0435\u0435 = class_25612;
|
||||
}
|
||||
|
||||
public /* synthetic */ class_2561 \u0441\u04bb\u0456c\u0455() {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.x\u0435\u0435;
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,62 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package c\u0445is;
|
||||
|
||||
import i\u0441\u0455\u0441\u0440ia.j\u04bbc\u0441o\u0430e;
|
||||
import net.minecraft.class_2596;
|
||||
import net.minecraft.class_2598;
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
import \u043e\u0445\u0440\u0430ose.i\u0456\u0445\u0430\u0441p;
|
||||
|
||||
public class \u04bbj\u0441x\u0440
|
||||
extends j\u04bbc\u0441o\u0430e {
|
||||
private final /* synthetic */ i\u0456\u0445\u0430\u0441p a\u0456\u0440\u0445s\u0441s;
|
||||
private /* synthetic */ class_2596<?> \u0441s\u0435x;
|
||||
private final /* synthetic */ class_2598 x\u043e\u0455;
|
||||
|
||||
public \u04bbj\u0441x\u0440(i\u0456\u0445\u0430\u0441p i\u0456\u0445\u0430\u0441p2, class_2596<?> class_25962, class_2598 class_25982) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
this.a\u0456\u0440\u0445s\u0441s = i\u0456\u0445\u0430\u0441p2;
|
||||
this.\u0441s\u0435x = class_25962;
|
||||
this.x\u043e\u0455 = class_25982;
|
||||
}
|
||||
|
||||
public /* synthetic */ i\u0456\u0445\u0430\u0441p p\u0440\u04bb() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.a\u0456\u0440\u0445s\u0441s;
|
||||
}
|
||||
|
||||
public /* synthetic */ class_2596<?> ciao\u0455\u0455() {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.\u0441s\u0435x;
|
||||
}
|
||||
|
||||
public /* synthetic */ class_2598 i\u0441jx\u0455\u0440h() {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.x\u043e\u0455;
|
||||
}
|
||||
|
||||
public /* synthetic */ void \u0458x\u0435\u043e(class_2596<?> class_25962) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.\u0441s\u0435x = class_25962;
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,57 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package c\u0445is;
|
||||
|
||||
import cop\u04bb\u04bbj.\u0435a\u0440\u0435j\u0458e;
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
|
||||
public class \u04bb\u043eoxc
|
||||
implements \u0435a\u0440\u0435j\u0458e {
|
||||
private /* synthetic */ float e\u0440s\u0430\u0456s;
|
||||
private /* synthetic */ float o\u0441\u0435\u043ea;
|
||||
|
||||
public \u04bb\u043eoxc(float f, float f2) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
this.e\u0440s\u0430\u0456s = f;
|
||||
this.o\u0441\u0435\u043ea = f2;
|
||||
}
|
||||
|
||||
public /* synthetic */ void s\u0430sss\u0435\u043e(float f) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.e\u0440s\u0430\u0456s = f;
|
||||
}
|
||||
|
||||
public /* synthetic */ void \u0435s\u0430(float f) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.o\u0441\u0435\u043ea = f;
|
||||
}
|
||||
|
||||
public /* synthetic */ float jo\u0456c\u043e\u0440() {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.e\u0440s\u0430\u0456s;
|
||||
}
|
||||
|
||||
public /* synthetic */ float xpx() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.o\u0441\u0435\u043ea;
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,39 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package dsj.smtc;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.FileNotFoundException;
|
||||
import java.io.FileOutputStream;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.io.OutputStream;
|
||||
|
||||
public class SmtcLoader {
|
||||
public static native String getSmtcInfo();
|
||||
|
||||
static {
|
||||
try {
|
||||
String string = "/natives/smtc.dll";
|
||||
InputStream inputStream = SmtcLoader.class.getResourceAsStream(string);
|
||||
if (inputStream == null) {
|
||||
throw new FileNotFoundException("DLL not found: " + string);
|
||||
}
|
||||
File file = File.createTempFile("smtc", ".dll");
|
||||
file.deleteOnExit();
|
||||
try (FileOutputStream fileOutputStream = new FileOutputStream(file);){
|
||||
int n;
|
||||
byte[] byArray = new byte[4096];
|
||||
while ((n = inputStream.read(byArray)) != -1) {
|
||||
((OutputStream)fileOutputStream).write(byArray, 0, n);
|
||||
}
|
||||
}
|
||||
System.load(file.getAbsolutePath());
|
||||
}
|
||||
catch (IOException iOException) {
|
||||
throw new RuntimeException("Failed to load DLL", iOException);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,52 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package hh\u04bb\u0445\u043e\u0430;
|
||||
|
||||
import java.lang.invoke.CallSite;
|
||||
import java.lang.invoke.ConstantCallSite;
|
||||
import java.lang.invoke.MethodHandle;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.lang.invoke.MethodType;
|
||||
import java.util.List;
|
||||
import \u0458po\u0435ej\u0430.j\u0445ep;
|
||||
import \u0458po\u0435ej\u0430.p\u0455\u0455;
|
||||
import \u0458po\u0435ej\u0430.x\u0441cs;
|
||||
import \u0458po\u0435ej\u0430.\u043e\u0441xc\u0458\u0430;
|
||||
import \u04bb\u04bb\u0456\u0445.\u0435\u043ea\u0440\u0458;
|
||||
|
||||
public class cahc\u0440\u0441
|
||||
extends \u043e\u0441xc\u0458\u0430 {
|
||||
public cahc\u0440\u0441(\u0435\u043ea\u0440\u0458 \u0435\u043ea\u0440\u04582, boolean bl, double d) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
this(\u0435\u043ea\u0440\u04582, bl, d, \u0458\u0441ph\u0430, \u0445c\u043e);
|
||||
}
|
||||
|
||||
public cahc\u0440\u0441(\u0435\u043ea\u0440\u0458 \u0435\u043ea\u0440\u04582, boolean bl, double d, x\u0441cs x\u0441cs2, j\u0445ep j\u0445ep2) {
|
||||
if (true | false) {
|
||||
}
|
||||
this((List<\u0435\u043ea\u0440\u0458>)((Object)cahc\u0440\u0441.a_bsm0("singletonList", singletonList(T ), (Object)\u0435\u043ea\u0440\u04582)), bl, d, x\u0441cs2, j\u0445ep2);
|
||||
}
|
||||
|
||||
public cahc\u0440\u0441(List<\u0435\u043ea\u0440\u0458> list, boolean bl, double d) {
|
||||
if (true | false) {
|
||||
}
|
||||
this(list, bl, d, \u0458\u0441ph\u0430, \u0445c\u043e);
|
||||
}
|
||||
|
||||
public cahc\u0440\u0441(List<\u0435\u043ea\u0440\u0458> list, boolean bl, double d, x\u0441cs x\u0441cs2, j\u0445ep j\u0445ep2) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
super(list, p\u0455\u0455.\u0440h\u0430o\u0440h\u0440, bl, d, j\u0445ep2, x\u0441cs2, cahc\u0440\u0441.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getPrimaryPalette(p\u0455\u0455.\u0440h\u0430o\u0440h\u0440, list.get(0), bl, j\u0445ep2, d), cahc\u0440\u0441.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getSecondaryPalette(p\u0455\u0455.\u0440h\u0430o\u0440h\u0440, list.get(0), bl, j\u0445ep2, d), cahc\u0440\u0441.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getTertiaryPalette(p\u0455\u0455.\u0440h\u0430o\u0440h\u0440, list.get(0), bl, j\u0445ep2, d), cahc\u0440\u0441.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getNeutralPalette(p\u0455\u0455.\u0440h\u0430o\u0440h\u0440, list.get(0), bl, j\u0445ep2, d), cahc\u0440\u0441.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getNeutralVariantPalette(p\u0455\u0455.\u0440h\u0430o\u0440h\u0440, list.get(0), bl, j\u0445ep2, d), cahc\u0440\u0441.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getErrorPalette(p\u0455\u0455.\u0440h\u0430o\u0440h\u0440, list.get(0), bl, j\u0445ep2, d));
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm0(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm1(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,52 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package hh\u04bb\u0445\u043e\u0430;
|
||||
|
||||
import java.lang.invoke.CallSite;
|
||||
import java.lang.invoke.ConstantCallSite;
|
||||
import java.lang.invoke.MethodHandle;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.lang.invoke.MethodType;
|
||||
import java.util.List;
|
||||
import \u0458po\u0435ej\u0430.j\u0445ep;
|
||||
import \u0458po\u0435ej\u0430.p\u0455\u0455;
|
||||
import \u0458po\u0435ej\u0430.x\u0441cs;
|
||||
import \u0458po\u0435ej\u0430.\u043e\u0441xc\u0458\u0430;
|
||||
import \u04bb\u04bb\u0456\u0445.\u0435\u043ea\u0440\u0458;
|
||||
|
||||
public class ccs\u043e\u0440
|
||||
extends \u043e\u0441xc\u0458\u0430 {
|
||||
public ccs\u043e\u0440(\u0435\u043ea\u0440\u0458 \u0435\u043ea\u0440\u04582, boolean bl, double d) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
this(\u0435\u043ea\u0440\u04582, bl, d, \u0458\u0441ph\u0430, \u0445c\u043e);
|
||||
}
|
||||
|
||||
public ccs\u043e\u0440(\u0435\u043ea\u0440\u0458 \u0435\u043ea\u0440\u04582, boolean bl, double d, x\u0441cs x\u0441cs2, j\u0445ep j\u0445ep2) {
|
||||
if (true | false) {
|
||||
}
|
||||
this((List<\u0435\u043ea\u0440\u0458>)((Object)ccs\u043e\u0440.a_bsm0("singletonList", singletonList(T ), (Object)\u0435\u043ea\u0440\u04582)), bl, d, x\u0441cs2, j\u0445ep2);
|
||||
}
|
||||
|
||||
public ccs\u043e\u0440(List<\u0435\u043ea\u0440\u0458> list, boolean bl, double d) {
|
||||
if (true | false) {
|
||||
}
|
||||
this(list, bl, d, \u0458\u0441ph\u0430, \u0445c\u043e);
|
||||
}
|
||||
|
||||
public ccs\u043e\u0440(List<\u0435\u043ea\u0440\u0458> list, boolean bl, double d, x\u0441cs x\u0441cs2, j\u0445ep j\u0445ep2) {
|
||||
if (true | false) {
|
||||
}
|
||||
super(list, p\u0455\u0455.\u0458\u0430sh\u043e\u0445\u0455, bl, d, j\u0445ep2, x\u0441cs2, ccs\u043e\u0440.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getPrimaryPalette(p\u0455\u0455.\u0458\u0430sh\u043e\u0445\u0455, list.get(0), bl, j\u0445ep2, d), ccs\u043e\u0440.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getSecondaryPalette(p\u0455\u0455.\u0458\u0430sh\u043e\u0445\u0455, list.get(0), bl, j\u0445ep2, d), ccs\u043e\u0440.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getTertiaryPalette(p\u0455\u0455.\u0458\u0430sh\u043e\u0445\u0455, list.get(0), bl, j\u0445ep2, d), ccs\u043e\u0440.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getNeutralPalette(p\u0455\u0455.\u0458\u0430sh\u043e\u0445\u0455, list.get(0), bl, j\u0445ep2, d), ccs\u043e\u0440.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getNeutralVariantPalette(p\u0455\u0455.\u0458\u0430sh\u043e\u0445\u0455, list.get(0), bl, j\u0445ep2, d), ccs\u043e\u0440.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getErrorPalette(p\u0455\u0455.\u0458\u0430sh\u043e\u0445\u0455, list.get(0), bl, j\u0445ep2, d));
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm0(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm1(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,52 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package hh\u04bb\u0445\u043e\u0430;
|
||||
|
||||
import java.lang.invoke.CallSite;
|
||||
import java.lang.invoke.ConstantCallSite;
|
||||
import java.lang.invoke.MethodHandle;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.lang.invoke.MethodType;
|
||||
import java.util.List;
|
||||
import \u0458po\u0435ej\u0430.j\u0445ep;
|
||||
import \u0458po\u0435ej\u0430.p\u0455\u0455;
|
||||
import \u0458po\u0435ej\u0430.x\u0441cs;
|
||||
import \u0458po\u0435ej\u0430.\u043e\u0441xc\u0458\u0430;
|
||||
import \u04bb\u04bb\u0456\u0445.\u0435\u043ea\u0440\u0458;
|
||||
|
||||
public class e\u0440epx\u0458\u043e
|
||||
extends \u043e\u0441xc\u0458\u0430 {
|
||||
public e\u0440epx\u0458\u043e(\u0435\u043ea\u0440\u0458 \u0435\u043ea\u0440\u04582, boolean bl, double d) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
this(\u0435\u043ea\u0440\u04582, bl, d, \u0458\u0441ph\u0430, \u0445c\u043e);
|
||||
}
|
||||
|
||||
public e\u0440epx\u0458\u043e(\u0435\u043ea\u0440\u0458 \u0435\u043ea\u0440\u04582, boolean bl, double d, x\u0441cs x\u0441cs2, j\u0445ep j\u0445ep2) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
this((List<\u0435\u043ea\u0440\u0458>)((Object)e\u0440epx\u0458\u043e.a_bsm0("singletonList", singletonList(T ), (Object)\u0435\u043ea\u0440\u04582)), bl, d, x\u0441cs2, j\u0445ep2);
|
||||
}
|
||||
|
||||
public e\u0440epx\u0458\u043e(List<\u0435\u043ea\u0440\u0458> list, boolean bl, double d) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
this(list, bl, d, \u0458\u0441ph\u0430, \u0445c\u043e);
|
||||
}
|
||||
|
||||
public e\u0440epx\u0458\u043e(List<\u0435\u043ea\u0440\u0458> list, boolean bl, double d, x\u0441cs x\u0441cs2, j\u0445ep j\u0445ep2) {
|
||||
if (true | false) {
|
||||
}
|
||||
super(list, p\u0455\u0455.\u0435\u04bbia\u0455\u04bb, bl, d, j\u0445ep2, x\u0441cs2, e\u0440epx\u0458\u043e.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getPrimaryPalette(p\u0455\u0455.\u0435\u04bbia\u0455\u04bb, list.get(0), bl, j\u0445ep2, d), e\u0440epx\u0458\u043e.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getSecondaryPalette(p\u0455\u0455.\u0435\u04bbia\u0455\u04bb, list.get(0), bl, j\u0445ep2, d), e\u0440epx\u0458\u043e.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getTertiaryPalette(p\u0455\u0455.\u0435\u04bbia\u0455\u04bb, list.get(0), bl, j\u0445ep2, d), e\u0440epx\u0458\u043e.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getNeutralPalette(p\u0455\u0455.\u0435\u04bbia\u0455\u04bb, list.get(0), bl, j\u0445ep2, d), e\u0440epx\u0458\u043e.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getNeutralVariantPalette(p\u0455\u0455.\u0435\u04bbia\u0455\u04bb, list.get(0), bl, j\u0445ep2, d), e\u0440epx\u0458\u043e.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getErrorPalette(p\u0455\u0455.\u0435\u04bbia\u0455\u04bb, list.get(0), bl, j\u0445ep2, d));
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm0(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm1(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,52 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package hh\u04bb\u0445\u043e\u0430;
|
||||
|
||||
import java.lang.invoke.CallSite;
|
||||
import java.lang.invoke.ConstantCallSite;
|
||||
import java.lang.invoke.MethodHandle;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.lang.invoke.MethodType;
|
||||
import java.util.List;
|
||||
import \u0458po\u0435ej\u0430.j\u0445ep;
|
||||
import \u0458po\u0435ej\u0430.p\u0455\u0455;
|
||||
import \u0458po\u0435ej\u0430.x\u0441cs;
|
||||
import \u0458po\u0435ej\u0430.\u043e\u0441xc\u0458\u0430;
|
||||
import \u04bb\u04bb\u0456\u0445.\u0435\u043ea\u0440\u0458;
|
||||
|
||||
public class e\u0458c
|
||||
extends \u043e\u0441xc\u0458\u0430 {
|
||||
public e\u0458c(\u0435\u043ea\u0440\u0458 \u0435\u043ea\u0440\u04582, boolean bl, double d) {
|
||||
if (true | false) {
|
||||
}
|
||||
this(\u0435\u043ea\u0440\u04582, bl, d, \u0458\u0441ph\u0430, \u0445c\u043e);
|
||||
}
|
||||
|
||||
public e\u0458c(\u0435\u043ea\u0440\u0458 \u0435\u043ea\u0440\u04582, boolean bl, double d, x\u0441cs x\u0441cs2, j\u0445ep j\u0445ep2) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
this((List<\u0435\u043ea\u0440\u0458>)((Object)e\u0458c.a_bsm0("singletonList", singletonList(T ), (Object)\u0435\u043ea\u0440\u04582)), bl, d, x\u0441cs2, j\u0445ep2);
|
||||
}
|
||||
|
||||
public e\u0458c(List<\u0435\u043ea\u0440\u0458> list, boolean bl, double d) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
this(list, bl, d, \u0458\u0441ph\u0430, \u0445c\u043e);
|
||||
}
|
||||
|
||||
public e\u0458c(List<\u0435\u043ea\u0440\u0458> list, boolean bl, double d, x\u0441cs x\u0441cs2, j\u0445ep j\u0445ep2) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
super(list, p\u0455\u0455.\u0458ixi\u0458oj, bl, d, j\u0445ep2, x\u0441cs2, e\u0458c.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getPrimaryPalette(p\u0455\u0455.\u0458ixi\u0458oj, list.get(0), bl, j\u0445ep2, d), e\u0458c.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getSecondaryPalette(p\u0455\u0455.\u0458ixi\u0458oj, list.get(0), bl, j\u0445ep2, d), e\u0458c.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getTertiaryPalette(p\u0455\u0455.\u0458ixi\u0458oj, list.get(0), bl, j\u0445ep2, d), e\u0458c.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getNeutralPalette(p\u0455\u0455.\u0458ixi\u0458oj, list.get(0), bl, j\u0445ep2, d), e\u0458c.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getNeutralVariantPalette(p\u0455\u0455.\u0458ixi\u0458oj, list.get(0), bl, j\u0445ep2, d), e\u0458c.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getErrorPalette(p\u0455\u0455.\u0458ixi\u0458oj, list.get(0), bl, j\u0445ep2, d));
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm0(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm1(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
}
|
||||
|
||||
File diff suppressed because one or more lines are too long.
@@ -0,0 +1,52 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package hh\u04bb\u0445\u043e\u0430;
|
||||
|
||||
import java.lang.invoke.CallSite;
|
||||
import java.lang.invoke.ConstantCallSite;
|
||||
import java.lang.invoke.MethodHandle;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.lang.invoke.MethodType;
|
||||
import java.util.List;
|
||||
import \u0458po\u0435ej\u0430.j\u0445ep;
|
||||
import \u0458po\u0435ej\u0430.p\u0455\u0455;
|
||||
import \u0458po\u0435ej\u0430.x\u0441cs;
|
||||
import \u0458po\u0435ej\u0430.\u043e\u0441xc\u0458\u0430;
|
||||
import \u04bb\u04bb\u0456\u0445.\u0435\u043ea\u0440\u0458;
|
||||
|
||||
public class oapis\u04bb
|
||||
extends \u043e\u0441xc\u0458\u0430 {
|
||||
public oapis\u04bb(\u0435\u043ea\u0440\u0458 \u0435\u043ea\u0440\u04582, boolean bl, double d) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
this(\u0435\u043ea\u0440\u04582, bl, d, \u0458\u0441ph\u0430, \u0445c\u043e);
|
||||
}
|
||||
|
||||
public oapis\u04bb(\u0435\u043ea\u0440\u0458 \u0435\u043ea\u0440\u04582, boolean bl, double d, x\u0441cs x\u0441cs2, j\u0445ep j\u0445ep2) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
this((List<\u0435\u043ea\u0440\u0458>)((Object)oapis\u04bb.a_bsm0("singletonList", singletonList(T ), (Object)\u0435\u043ea\u0440\u04582)), bl, d, x\u0441cs2, j\u0445ep2);
|
||||
}
|
||||
|
||||
public oapis\u04bb(List<\u0435\u043ea\u0440\u0458> list, boolean bl, double d) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
this(list, bl, d, \u0458\u0441ph\u0430, \u0445c\u043e);
|
||||
}
|
||||
|
||||
public oapis\u04bb(List<\u0435\u043ea\u0440\u0458> list, boolean bl, double d, x\u0441cs x\u0441cs2, j\u0445ep j\u0445ep2) {
|
||||
if (true | false) {
|
||||
}
|
||||
super(list, p\u0455\u0455.\u043ex\u0430\u0456ah, bl, d, j\u0445ep2, x\u0441cs2, oapis\u04bb.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getPrimaryPalette(p\u0455\u0455.\u043ex\u0430\u0456ah, list.get(0), bl, j\u0445ep2, d), oapis\u04bb.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getSecondaryPalette(p\u0455\u0455.\u043ex\u0430\u0456ah, list.get(0), bl, j\u0445ep2, d), oapis\u04bb.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getTertiaryPalette(p\u0455\u0455.\u043ex\u0430\u0456ah, list.get(0), bl, j\u0445ep2, d), oapis\u04bb.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getNeutralPalette(p\u0455\u0455.\u043ex\u0430\u0456ah, list.get(0), bl, j\u0445ep2, d), oapis\u04bb.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getNeutralVariantPalette(p\u0455\u0455.\u043ex\u0430\u0456ah, list.get(0), bl, j\u0445ep2, d), oapis\u04bb.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getErrorPalette(p\u0455\u0455.\u043ex\u0430\u0456ah, list.get(0), bl, j\u0445ep2, d));
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm0(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm1(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,52 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package hh\u04bb\u0445\u043e\u0430;
|
||||
|
||||
import java.lang.invoke.CallSite;
|
||||
import java.lang.invoke.ConstantCallSite;
|
||||
import java.lang.invoke.MethodHandle;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.lang.invoke.MethodType;
|
||||
import java.util.List;
|
||||
import \u0458po\u0435ej\u0430.j\u0445ep;
|
||||
import \u0458po\u0435ej\u0430.p\u0455\u0455;
|
||||
import \u0458po\u0435ej\u0430.x\u0441cs;
|
||||
import \u0458po\u0435ej\u0430.\u043e\u0441xc\u0458\u0430;
|
||||
import \u04bb\u04bb\u0456\u0445.\u0435\u043ea\u0440\u0458;
|
||||
|
||||
public class o\u0458\u04bb
|
||||
extends \u043e\u0441xc\u0458\u0430 {
|
||||
public o\u0458\u04bb(\u0435\u043ea\u0440\u0458 \u0435\u043ea\u0440\u04582, boolean bl, double d) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
this(\u0435\u043ea\u0440\u04582, bl, d, \u0458\u0441ph\u0430, \u0445c\u043e);
|
||||
}
|
||||
|
||||
public o\u0458\u04bb(\u0435\u043ea\u0440\u0458 \u0435\u043ea\u0440\u04582, boolean bl, double d, x\u0441cs x\u0441cs2, j\u0445ep j\u0445ep2) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
this((List<\u0435\u043ea\u0440\u0458>)((Object)o\u0458\u04bb.a_bsm0("singletonList", singletonList(T ), (Object)\u0435\u043ea\u0440\u04582)), bl, d, x\u0441cs2, j\u0445ep2);
|
||||
}
|
||||
|
||||
public o\u0458\u04bb(List<\u0435\u043ea\u0440\u0458> list, boolean bl, double d) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
this(list, bl, d, \u0458\u0441ph\u0430, \u0445c\u043e);
|
||||
}
|
||||
|
||||
public o\u0458\u04bb(List<\u0435\u043ea\u0440\u0458> list, boolean bl, double d, x\u0441cs x\u0441cs2, j\u0445ep j\u0445ep2) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
super(list, p\u0455\u0455.\u0445hhc\u0456, bl, d, j\u0445ep2, x\u0441cs2, o\u0458\u04bb.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getPrimaryPalette(p\u0455\u0455.\u0445hhc\u0456, list.get(0), bl, j\u0445ep2, d), o\u0458\u04bb.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getSecondaryPalette(p\u0455\u0455.\u0445hhc\u0456, list.get(0), bl, j\u0445ep2, d), o\u0458\u04bb.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getTertiaryPalette(p\u0455\u0455.\u0445hhc\u0456, list.get(0), bl, j\u0445ep2, d), o\u0458\u04bb.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getNeutralPalette(p\u0455\u0455.\u0445hhc\u0456, list.get(0), bl, j\u0445ep2, d), o\u0458\u04bb.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getNeutralVariantPalette(p\u0455\u0455.\u0445hhc\u0456, list.get(0), bl, j\u0445ep2, d), o\u0458\u04bb.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getErrorPalette(p\u0455\u0455.\u0445hhc\u0456, list.get(0), bl, j\u0445ep2, d));
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm0(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm1(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,52 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package hh\u04bb\u0445\u043e\u0430;
|
||||
|
||||
import java.lang.invoke.CallSite;
|
||||
import java.lang.invoke.ConstantCallSite;
|
||||
import java.lang.invoke.MethodHandle;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.lang.invoke.MethodType;
|
||||
import java.util.List;
|
||||
import \u0458po\u0435ej\u0430.j\u0445ep;
|
||||
import \u0458po\u0435ej\u0430.p\u0455\u0455;
|
||||
import \u0458po\u0435ej\u0430.x\u0441cs;
|
||||
import \u0458po\u0435ej\u0430.\u043e\u0441xc\u0458\u0430;
|
||||
import \u04bb\u04bb\u0456\u0445.\u0435\u043ea\u0440\u0458;
|
||||
|
||||
public class \u043e\u0455\u0456
|
||||
extends \u043e\u0441xc\u0458\u0430 {
|
||||
public \u043e\u0455\u0456(\u0435\u043ea\u0440\u0458 \u0435\u043ea\u0440\u04582, boolean bl, double d) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
this(\u0435\u043ea\u0440\u04582, bl, d, \u0458\u0441ph\u0430, \u0445c\u043e);
|
||||
}
|
||||
|
||||
public \u043e\u0455\u0456(\u0435\u043ea\u0440\u0458 \u0435\u043ea\u0440\u04582, boolean bl, double d, x\u0441cs x\u0441cs2, j\u0445ep j\u0445ep2) {
|
||||
if (true | false) {
|
||||
}
|
||||
this((List<\u0435\u043ea\u0440\u0458>)((Object)\u043e\u0455\u0456.a_bsm0("singletonList", singletonList(T ), (Object)\u0435\u043ea\u0440\u04582)), bl, d, x\u0441cs2, j\u0445ep2);
|
||||
}
|
||||
|
||||
public \u043e\u0455\u0456(List<\u0435\u043ea\u0440\u0458> list, boolean bl, double d) {
|
||||
if (true | false) {
|
||||
}
|
||||
this(list, bl, d, \u0458\u0441ph\u0430, \u0445c\u043e);
|
||||
}
|
||||
|
||||
public \u043e\u0455\u0456(List<\u0435\u043ea\u0440\u0458> list, boolean bl, double d, x\u0441cs x\u0441cs2, j\u0445ep j\u0445ep2) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
super(list, p\u0455\u0455.j\u0435cc\u0458, bl, d, j\u0445ep2, x\u0441cs2, \u043e\u0455\u0456.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getPrimaryPalette(p\u0455\u0455.j\u0435cc\u0458, list.get(0), bl, j\u0445ep2, d), \u043e\u0455\u0456.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getSecondaryPalette(p\u0455\u0455.j\u0435cc\u0458, list.get(0), bl, j\u0445ep2, d), \u043e\u0455\u0456.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getTertiaryPalette(p\u0455\u0455.j\u0435cc\u0458, list.get(0), bl, j\u0445ep2, d), \u043e\u0455\u0456.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getNeutralPalette(p\u0455\u0455.j\u0435cc\u0458, list.get(0), bl, j\u0445ep2, d), \u043e\u0455\u0456.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getNeutralVariantPalette(p\u0455\u0455.j\u0435cc\u0458, list.get(0), bl, j\u0445ep2, d), \u043e\u0455\u0456.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getErrorPalette(p\u0455\u0455.j\u0435cc\u0458, list.get(0), bl, j\u0445ep2, d));
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm0(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm1(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,52 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package hh\u04bb\u0445\u043e\u0430;
|
||||
|
||||
import java.lang.invoke.CallSite;
|
||||
import java.lang.invoke.ConstantCallSite;
|
||||
import java.lang.invoke.MethodHandle;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.lang.invoke.MethodType;
|
||||
import java.util.List;
|
||||
import \u0458po\u0435ej\u0430.j\u0445ep;
|
||||
import \u0458po\u0435ej\u0430.p\u0455\u0455;
|
||||
import \u0458po\u0435ej\u0430.x\u0441cs;
|
||||
import \u0458po\u0435ej\u0430.\u043e\u0441xc\u0458\u0430;
|
||||
import \u04bb\u04bb\u0456\u0445.\u0435\u043ea\u0440\u0458;
|
||||
|
||||
public class \u0445\u043e\u0440
|
||||
extends \u043e\u0441xc\u0458\u0430 {
|
||||
public \u0445\u043e\u0440(\u0435\u043ea\u0440\u0458 \u0435\u043ea\u0440\u04582, boolean bl, double d) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
this(\u0435\u043ea\u0440\u04582, bl, d, \u0458\u0441ph\u0430, \u0445c\u043e);
|
||||
}
|
||||
|
||||
public \u0445\u043e\u0440(\u0435\u043ea\u0440\u0458 \u0435\u043ea\u0440\u04582, boolean bl, double d, x\u0441cs x\u0441cs2, j\u0445ep j\u0445ep2) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
this((List<\u0435\u043ea\u0440\u0458>)((Object)\u0445\u043e\u0440.a_bsm0("singletonList", singletonList(T ), (Object)\u0435\u043ea\u0440\u04582)), bl, d, x\u0441cs2, j\u0445ep2);
|
||||
}
|
||||
|
||||
public \u0445\u043e\u0440(List<\u0435\u043ea\u0440\u0458> list, boolean bl, double d) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
this(list, bl, d, \u0458\u0441ph\u0430, \u0445c\u043e);
|
||||
}
|
||||
|
||||
public \u0445\u043e\u0440(List<\u0435\u043ea\u0440\u0458> list, boolean bl, double d, x\u0441cs x\u0441cs2, j\u0445ep j\u0445ep2) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
super(list, p\u0455\u0455.\u0441\u0435\u0456\u0455\u04bb\u0430, bl, d, j\u0445ep2, x\u0441cs2, \u0445\u043e\u0440.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getPrimaryPalette(p\u0455\u0455.\u0441\u0435\u0456\u0455\u04bb\u0430, list.get(0), bl, j\u0445ep2, d), \u0445\u043e\u0440.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getSecondaryPalette(p\u0455\u0455.\u0441\u0435\u0456\u0455\u04bb\u0430, list.get(0), bl, j\u0445ep2, d), \u0445\u043e\u0440.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getTertiaryPalette(p\u0455\u0455.\u0441\u0435\u0456\u0455\u04bb\u0430, list.get(0), bl, j\u0445ep2, d), \u0445\u043e\u0440.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getNeutralPalette(p\u0455\u0455.\u0441\u0435\u0456\u0455\u04bb\u0430, list.get(0), bl, j\u0445ep2, d), \u0445\u043e\u0440.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getNeutralVariantPalette(p\u0455\u0455.\u0441\u0435\u0456\u0455\u04bb\u0430, list.get(0), bl, j\u0445ep2, d), \u0445\u043e\u0440.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getErrorPalette(p\u0455\u0455.\u0441\u0435\u0456\u0455\u04bb\u0430, list.get(0), bl, j\u0445ep2, d));
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm0(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm1(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,52 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package hh\u04bb\u0445\u043e\u0430;
|
||||
|
||||
import java.lang.invoke.CallSite;
|
||||
import java.lang.invoke.ConstantCallSite;
|
||||
import java.lang.invoke.MethodHandle;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.lang.invoke.MethodType;
|
||||
import java.util.List;
|
||||
import \u0458po\u0435ej\u0430.j\u0445ep;
|
||||
import \u0458po\u0435ej\u0430.p\u0455\u0455;
|
||||
import \u0458po\u0435ej\u0430.x\u0441cs;
|
||||
import \u0458po\u0435ej\u0430.\u043e\u0441xc\u0458\u0430;
|
||||
import \u04bb\u04bb\u0456\u0445.\u0435\u043ea\u0440\u0458;
|
||||
|
||||
public class \u0445\u0440o
|
||||
extends \u043e\u0441xc\u0458\u0430 {
|
||||
public \u0445\u0440o(\u0435\u043ea\u0440\u0458 \u0435\u043ea\u0440\u04582, boolean bl, double d) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
this(\u0435\u043ea\u0440\u04582, bl, d, \u0458\u0441ph\u0430, \u0445c\u043e);
|
||||
}
|
||||
|
||||
public \u0445\u0440o(\u0435\u043ea\u0440\u0458 \u0435\u043ea\u0440\u04582, boolean bl, double d, x\u0441cs x\u0441cs2, j\u0445ep j\u0445ep2) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
this((List<\u0435\u043ea\u0440\u0458>)((Object)\u0445\u0440o.a_bsm0("singletonList", singletonList(T ), (Object)\u0435\u043ea\u0440\u04582)), bl, d, x\u0441cs2, j\u0445ep2);
|
||||
}
|
||||
|
||||
public \u0445\u0440o(List<\u0435\u043ea\u0440\u0458> list, boolean bl, double d) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
this(list, bl, d, \u0458\u0441ph\u0430, \u0445c\u043e);
|
||||
}
|
||||
|
||||
public \u0445\u0440o(List<\u0435\u043ea\u0440\u0458> list, boolean bl, double d, x\u0441cs x\u0441cs2, j\u0445ep j\u0445ep2) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
super(list, p\u0455\u0455.\u0440\u0445\u0440jxj\u0435, bl, d, j\u0445ep2, x\u0441cs2, \u0445\u0440o.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getPrimaryPalette(p\u0455\u0455.\u0440\u0445\u0440jxj\u0435, list.get(0), bl, j\u0445ep2, d), \u0445\u0440o.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getSecondaryPalette(p\u0455\u0455.\u0440\u0445\u0440jxj\u0435, list.get(0), bl, j\u0445ep2, d), \u0445\u0440o.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getTertiaryPalette(p\u0455\u0455.\u0440\u0445\u0440jxj\u0435, list.get(0), bl, j\u0445ep2, d), \u0445\u0440o.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getNeutralPalette(p\u0455\u0455.\u0440\u0445\u0440jxj\u0435, list.get(0), bl, j\u0445ep2, d), \u0445\u0440o.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getNeutralVariantPalette(p\u0455\u0455.\u0440\u0445\u0440jxj\u0435, list.get(0), bl, j\u0445ep2, d), \u0445\u0440o.a_bsm1("jpo", jpo(\u0458po\u0435ej\u0430.x\u0441cs ), (x\u0441cs)x\u0441cs2).getErrorPalette(p\u0455\u0455.\u0440\u0445\u0440jxj\u0435, list.get(0), bl, j\u0445ep2, d));
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm0(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm1(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,200 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package hh\u04bb\u0445\u043e\u0430;
|
||||
|
||||
import asp\u04bb.\u0430phj;
|
||||
import java.lang.invoke.CallSite;
|
||||
import java.lang.invoke.ConstantCallSite;
|
||||
import java.lang.invoke.MethodHandle;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.lang.invoke.MethodType;
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
||||
import \u0458po\u0435ej\u0430.j\u0445ep;
|
||||
import \u0458po\u0435ej\u0430.p\u0455\u0455;
|
||||
import \u0458po\u0435ej\u0430.x\u0441cs;
|
||||
import \u0458po\u0435ej\u0430.\u043e\u0441xc\u0458\u0430;
|
||||
import \u04bb\u04bb\u0456\u0445.\u0435\u043ea\u0440\u0458;
|
||||
|
||||
public class \u0456\u0456\u0441p\u0435aa
|
||||
extends \u043e\u0441xc\u0458\u0430 {
|
||||
public \u0456\u0456\u0441p\u0435aa(\u0435\u043ea\u0440\u0458 \u0435\u043ea\u0440\u04582, boolean bl, double d) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
this(\u0435\u043ea\u0440\u04582, bl, d, x\u0441cs.xip, \u0445c\u043e);
|
||||
}
|
||||
|
||||
public \u0456\u0456\u0441p\u0435aa(\u0435\u043ea\u0440\u0458 \u0435\u043ea\u0440\u04582, boolean bl, double d, x\u0441cs x\u0441cs2, j\u0445ep j\u0445ep2) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
this((List<\u0435\u043ea\u0440\u0458>)((Object)\u0456\u0456\u0441p\u0435aa.a_bsm0("singletonList", singletonList(T ), (Object)\u0435\u043ea\u0440\u04582)), bl, d, x\u0441cs2, j\u0445ep2);
|
||||
}
|
||||
|
||||
public \u0456\u0456\u0441p\u0435aa(List<\u0435\u043ea\u0440\u0458> list, boolean bl, double d) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
this(list, bl, d, x\u0441cs.xip, \u0445c\u043e);
|
||||
}
|
||||
|
||||
public \u0456\u0456\u0441p\u0435aa(List<\u0435\u043ea\u0440\u0458> list, boolean bl, double d, x\u0441cs x\u0441cs2, j\u0445ep j\u0445ep2) {
|
||||
if (true | false) {
|
||||
}
|
||||
super(list, p\u0455\u0455.\u0440e\u0445e, bl, d, j\u0445ep2, x\u0441cs2, (\u0430phj)((Object)\u0456\u0456\u0441p\u0435aa.a_bsm1("oipa\u0455j", oipa\u0455j(double double ), (double)list.get(0).\u0440os\u043eo(), (double)list.get(0).\u04bbeis\u0430())), (\u0430phj)((Object)\u0456\u0456\u0441p\u0435aa.a_bsm1("oipa\u0455j", oipa\u0455j(double double ), (double)list.get(0).\u0440os\u043eo(), (double)(list.get(0).\u04bbeis\u0430() * 0.5))), \u0456\u0456\u0441p\u0435aa.c\u0456sxj\u0440\u0440(list), (\u0430phj)((Object)\u0456\u0456\u0441p\u0435aa.a_bsm1("oipa\u0455j", oipa\u0455j(double double ), (double)list.get(0).\u0440os\u043eo(), (double)(list.get(0).\u04bbeis\u0430() * 0.2))), (\u0430phj)((Object)\u0456\u0456\u0441p\u0435aa.a_bsm1("oipa\u0455j", oipa\u0455j(double double ), (double)list.get(0).\u0440os\u043eo(), (double)(list.get(0).\u04bbeis\u0430() * 0.2))), (Optional<\u0430phj>)((Object)\u0456\u0456\u0441p\u0435aa.a_bsm3("of", of(T ), (Object)\u0456\u0456\u0441p\u0435aa.a_bsm1("oipa\u0455j", oipa\u0455j(double double ), (double)\u0456\u0456\u0441p\u0435aa.\u0455\u043ee(list.get(0).\u0440os\u043eo(), \u0456\u0456\u0441p\u0435aa.c\u0456sxj\u0440\u0440(list).\u0440os\u043eo()), (double)\u0456\u0456\u0441p\u0435aa.a_bsm2("max", max(double double ), (double)list.get(0).\u04bbeis\u0430(), (double)50.0)))));
|
||||
if (x\u0441cs2 != x\u0441cs.xip) {
|
||||
byte[] byArray = new byte[-367858524 + 367858574];
|
||||
byArray[0] = -51852375 + 51852304;
|
||||
byArray[1] = -1713171675 + 1713171761;
|
||||
byArray[2] = -1369494952 + 1369495069;
|
||||
byArray[3] = -2110491215 + 2110491202;
|
||||
byArray[4] = -1807868853 + 1807868946;
|
||||
byArray[5] = -1033192464 + 1033192352;
|
||||
byArray[-1276253544 + 1276253550] = -1704378822 + 1704378872;
|
||||
byArray[-1371582598 + 1371582605] = -1556358735 + 1556358635;
|
||||
byArray[-1757744869 + 1757744877] = -482875666 + 482875629;
|
||||
byArray[-1751474493 + 1751474502] = -375938256 + 375938347;
|
||||
byArray[-764161339 + 764161349] = -1490144495 + 1490144493;
|
||||
byArray[-1570250300 + 1570250311] = -215740553 + 215740678;
|
||||
byArray[-1837497104 + 1837497116] = -1290809890 + 1290809874;
|
||||
byArray[-737545320 + 737545333] = -331821394 + 331821374;
|
||||
byArray[-730423858 + 730423872] = -2042123289 + 2042123178;
|
||||
byArray[-1802426818 + 1802426833] = -547980843 + 547980899;
|
||||
byArray[-805204831 + 805204847] = -404521391 + 404521271;
|
||||
byArray[-851219258 + 851219275] = -637098973 + 637098921;
|
||||
byArray[-723493041 + 723493059] = -258304350 + 258304399;
|
||||
byArray[-539803179 + 539803198] = -1176474653 + 1176474580;
|
||||
byArray[-3404964 + 3404984] = -866551226 + 866551332;
|
||||
byArray[-644304760 + 644304781] = -505944839 + 505944912;
|
||||
byArray[-2056351685 + 2056351707] = -1017034816 + 1017034846;
|
||||
byArray[-164608577 + 164608600] = -986204471 + 986204509;
|
||||
byArray[-1388271354 + 1388271378] = -534911657 + 534911780;
|
||||
byArray[-912650305 + 912650330] = -779411962 + 779412071;
|
||||
byArray[-461560936 + 461560962] = -45624053 + 45623930;
|
||||
byArray[-1481690567 + 1481690594] = -936160530 + 936160627;
|
||||
byArray[-10300676 + 10300704] = 5;
|
||||
byArray[-1483309863 + 1483309892] = -538512315 + 538512235;
|
||||
byArray[-163163800 + 163163830] = -1915260157 + 1915260120;
|
||||
byArray[-1659542794 + 1659542825] = -1186164566 + 1186164442;
|
||||
byArray[-1501182240 + 1501182272] = -1886571409 + 1886571347;
|
||||
byArray[-436535410 + 436535443] = -107648544 + 107648597;
|
||||
byArray[-1935944115 + 1935944149] = -529398524 + 529398633;
|
||||
byArray[-108436143 + 108436178] = -405034661 + 405034683;
|
||||
byArray[-1221049528 + 1221049564] = -339015557 + 339015459;
|
||||
byArray[-857141819 + 857141856] = -906250244 + 906250179;
|
||||
byArray[-1291620683 + 1291620721] = -330291877 + 330291819;
|
||||
byArray[-671882520 + 671882559] = -1152169838 + 1152169908;
|
||||
byArray[-1551534957 + 1551534997] = -918371857 + 918371922;
|
||||
byArray[-664107862 + 664107903] = -83419297 + 83419326;
|
||||
byArray[-1879664475 + 1879664517] = -1590140582 + 1590140670;
|
||||
byArray[-1863342001 + 1863342044] = -2090785176 + 2090785268;
|
||||
byArray[-447541244 + 447541288] = -427488775 + 427488815;
|
||||
byArray[-700100695 + 700100740] = -576019890 + 576019943;
|
||||
byArray[-1746987635 + 1746987681] = -2009412698 + 2009412716;
|
||||
byArray[-125471174 + 125471221] = -159457496 + 159457504;
|
||||
byArray[-2056710357 + 2056710405] = -1527571261 + 1527571150;
|
||||
byArray[-78925268 + 78925317] = -1672417371 + 1672417465;
|
||||
throw new IllegalArgumentException((String)((Object)\u0456\u0456\u0441p\u0435aa.a_bsm4("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray, (int)(167321068 + 1780045350), (int)(-294639717 + 278124392))));
|
||||
}
|
||||
}
|
||||
|
||||
private static /* synthetic */ \u0430phj c\u0456sxj\u0440\u0440(List<\u0435\u043ea\u0440\u0458> list) {
|
||||
\u0435\u043ea\u0440\u0458 \u0435\u043ea\u0440\u04582;
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
\u0435\u043ea\u0440\u0458 \u0435\u043ea\u0440\u04583 = list.get(0);
|
||||
\u0435\u043ea\u0440\u0458 \u0435\u043ea\u0440\u04584 = \u0435\u043ea\u0440\u04582 = list.size() > 1 ? list.get(1) : \u0435\u043ea\u0440\u04583;
|
||||
if (\u0435\u043ea\u0440\u04583.e\u0456c\u04bb\u0456\u0430() == \u0435\u043ea\u0440\u04582.e\u0456c\u04bb\u0456\u0430()) {
|
||||
return \u0456\u0456\u0441p\u0435aa.a_bsm1("oipa\u0455j", oipa\u0455j(double double ), (double)\u0435\u043ea\u0440\u04583.\u0440os\u043eo(), (double)(\u0435\u043ea\u0440\u04583.\u04bbeis\u0430() * 0.75));
|
||||
}
|
||||
return \u0456\u0456\u0441p\u0435aa.a_bsm1("oipa\u0455j", oipa\u0455j(double double ), (double)\u0435\u043ea\u0440\u04582.\u0440os\u043eo(), (double)\u0435\u043ea\u0440\u04582.\u04bbeis\u0430());
|
||||
}
|
||||
|
||||
private static /* synthetic */ double \u0455\u043ee(double d, double d2) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (d <= 8.0) {
|
||||
double d3;
|
||||
if (d2 <= 24.0) {
|
||||
d3 = 28.0;
|
||||
switch (0) {
|
||||
default: {
|
||||
break;
|
||||
}
|
||||
case 1: {
|
||||
break;
|
||||
}
|
||||
case 2: {
|
||||
break;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
d3 = d2 <= 32.0 ? -789990202 + 789990218 : -1754780609 + 1754780629;
|
||||
}
|
||||
return d3;
|
||||
}
|
||||
if (d <= 16.0) {
|
||||
return d2 <= 24.0 ? 32.0 : (double)(d2 <= 32.0 ? -1816979122 + 1816979142 : -782506342 + 782506366);
|
||||
}
|
||||
if (d <= 20.0) {
|
||||
return d2 <= 28.0 ? 32.0 : (double)(d2 <= 32.0 ? -237408518 + 237408542 : -1909000693 + 1909000721);
|
||||
}
|
||||
if (d <= 28.0) {
|
||||
double d4;
|
||||
if (d2 <= 24.0) {
|
||||
d4 = 32.0;
|
||||
switch (0) {
|
||||
default: {
|
||||
break;
|
||||
}
|
||||
case 1: {
|
||||
break;
|
||||
}
|
||||
case 2: {
|
||||
break;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
d4 = 16.0;
|
||||
}
|
||||
return d4;
|
||||
}
|
||||
if (d <= 32.0) {
|
||||
return d2 <= 20.0 ? 24.0 : (double)(d2 <= 28.0 ? -996403832 + 996403848 : -344918878 + 344918898);
|
||||
}
|
||||
if (d <= 40.0) {
|
||||
return d2 > 20.0 && d2 <= 28.0 ? 16.0 : 24.0;
|
||||
}
|
||||
if (d <= 152.0) {
|
||||
return d2 > 24.0 && d2 <= 36.0 ? 20.0 : 32.0;
|
||||
}
|
||||
if (d <= 272.0) {
|
||||
return d2 > 20.0 && d2 <= 28.0 ? 16.0 : 24.0;
|
||||
}
|
||||
return d2 > 12.0 && d2 <= 28.0 ? 32.0 : 16.0;
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm0(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm1(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm2(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm3(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm4(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,23 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package h\u0440x\u0455io\u0441;
|
||||
|
||||
import ie\u0441\u0430ej.pjxx;
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
|
||||
public abstract class xcs\u0440ixh
|
||||
implements pjxx {
|
||||
public xcs\u0440ixh() {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
}
|
||||
|
||||
public /* synthetic */ void hocii\u0435h() {
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,76 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package h\u0440x\u0455io\u0441;
|
||||
|
||||
import h\u0440x\u0455io\u0441.xcs\u0440ixh;
|
||||
import i\u0445s\u0458\u0440j.aix\u0445;
|
||||
import i\u0445s\u0458\u0440j.a\u0458s;
|
||||
import i\u0445s\u0458\u0440j.icps\u04bbej;
|
||||
import i\u0445s\u0458\u0440j.ii\u0456\u0440e;
|
||||
import java.lang.invoke.CallSite;
|
||||
import java.lang.invoke.ConstantCallSite;
|
||||
import java.lang.invoke.MethodHandle;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.lang.invoke.MethodType;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
import \u0430\u04bb\u0430.hi\u0440\u04bbas\u0435;
|
||||
import \u0430\u04bb\u0430.\u0435\u0440oc\u0455;
|
||||
import \u0440o\u0456\u0445o.\u0445\u0440\u0430\u0435\u0445\u043e;
|
||||
import \u0441\u0445o.\u0458op\u0430\u0441;
|
||||
|
||||
public class \u0456\u0458a\u0440 {
|
||||
private final /* synthetic */ Map<Class<xcs\u0440ixh>, xcs\u0440ixh> ai\u0441ss;
|
||||
|
||||
public \u0456\u0458a\u0440() {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
this.ai\u0441ss = new HashMap<Class<xcs\u0440ixh>, xcs\u0440ixh>();
|
||||
}
|
||||
|
||||
public /* synthetic */ void c\u0445\u04bbx() {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.e\u0435\u043ee(new aix\u0445());
|
||||
this.e\u0435\u043ee(new \u0458op\u0430\u0441());
|
||||
this.e\u0435\u043ee(new icps\u04bbej());
|
||||
this.e\u0435\u043ee(new hi\u0440\u04bbas\u0435());
|
||||
this.e\u0435\u043ee(new \u0435\u0440oc\u0455());
|
||||
this.e\u0435\u043ee(new ii\u0456\u0440e());
|
||||
this.e\u0435\u043ee(new a\u0458s());
|
||||
this.ai\u0441ss.forEach((clazz, xcs\u0440ixh2) -> {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)\u0456\u0458a\u0440.a_bsm0("jaa\u0435\u0445c", jaa\u0435\u0445c()))).\u0458poi\u0440().\u0441\u0430\u0456(xcs\u0440ixh2);
|
||||
});
|
||||
this.ai\u0441ss.forEach((clazz, xcs\u0440ixh2) -> {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
xcs\u0440ixh2.hocii\u0435h();
|
||||
});
|
||||
}
|
||||
|
||||
public /* synthetic */ void e\u0435\u043ee(xcs\u0440ixh xcs\u0440ixh2) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.ai\u0441ss.put(xcs\u0440ixh2.getClass(), xcs\u0440ixh2);
|
||||
}
|
||||
|
||||
public /* synthetic */ <T extends xcs\u0440ixh> T \u04bb\u0441c\u0435(Class<T> clazz) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return (T)this.ai\u0441ss.get(clazz);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm0(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,650 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package h\u0441\u043e\u04bb\u0441\u0458\u0445;
|
||||
|
||||
import c\u0445is.hoi\u0435h\u0440;
|
||||
import c\u0445is.si\u0458\u04bbo\u0440;
|
||||
import h\u0441\u043e\u04bb\u0441\u0458\u0445.c\u0455i\u0430\u0440\u0445;
|
||||
import h\u0441\u043e\u04bb\u0441\u0458\u0445.jx\u0430poi;
|
||||
import h\u0441\u043e\u04bb\u0441\u0458\u0445.\u0441c\u0456o;
|
||||
import h\u0441\u043e\u04bb\u0441\u0458\u0445.\u04bb\u04bb\u04bbi\u0440\u0440h;
|
||||
import i\u0455pe\u0441s.s\u0445\u0456x\u0440\u0440;
|
||||
import java.lang.invoke.CallSite;
|
||||
import java.lang.invoke.ConstantCallSite;
|
||||
import java.lang.invoke.MethodHandle;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.lang.invoke.MethodType;
|
||||
import java.util.Comparator;
|
||||
import java.util.stream.Stream;
|
||||
import net.minecraft.class_1268;
|
||||
import net.minecraft.class_1297;
|
||||
import net.minecraft.class_1511;
|
||||
import net.minecraft.class_1657;
|
||||
import net.minecraft.class_1799;
|
||||
import net.minecraft.class_1802;
|
||||
import net.minecraft.class_2338;
|
||||
import net.minecraft.class_239;
|
||||
import net.minecraft.class_243;
|
||||
import net.minecraft.class_2596;
|
||||
import net.minecraft.class_2879;
|
||||
import net.minecraft.class_3959;
|
||||
import net.minecraft.class_3965;
|
||||
import net.minecraft.class_742;
|
||||
import net.minecraft.class_746;
|
||||
import o\u0455sio\u0440.\u0445\u0458\u0458h\u0445\u0430a;
|
||||
import spso.\u0430c\u0440;
|
||||
import spso.\u0441a\u0458p;
|
||||
import \u0435xp.h\u04bb\u0455hpa;
|
||||
import \u0435xp.o\u043ea\u0456c;
|
||||
import \u0435xp.\u043ea\u0441\u0430p;
|
||||
import \u0440expho.\u0435oi\u043e;
|
||||
import \u0440expho.\u0441\u043e\u0456;
|
||||
import \u0440o\u0456\u0445o.\u0445\u0440\u0430\u0435\u0445\u043e;
|
||||
import \u0441\u0445o.jax\u0458\u0435\u0458;
|
||||
import \u0445eo.c\u0455pi;
|
||||
import \u0445eo.\u0456p\u0430\u043e\u0458\u043e;
|
||||
import \u0445eo.\u0458i\u0456x;
|
||||
import \u0458\u0458\u0458o\u0430\u0456.e\u0445\u0440\u0440a;
|
||||
|
||||
@\u0456p\u0430\u043e\u0458\u043e(sp\u0456p\u0445\u0435="ProjectileAura", a\u0456j\u0430\u0455\u04bb="ProjectileAura", s\u0455cj=\u0458i\u0456x.COMBAT)
|
||||
public class aih\u0441s
|
||||
extends c\u0455pi {
|
||||
private final /* synthetic */ o\u043ea\u0456c \u0440\u0440e\u043e;
|
||||
private final /* synthetic */ \u043ea\u0441\u0430p \u0458j\u0456\u04bbx;
|
||||
private final /* synthetic */ \u043ea\u0441\u0430p johsc\u0456;
|
||||
private final /* synthetic */ \u043ea\u0441\u0430p e\u0456\u0456i\u0456;
|
||||
private final /* synthetic */ \u043ea\u0441\u0430p \u0435c\u0445\u0445s;
|
||||
private final /* synthetic */ h\u04bb\u0455hpa j\u043e\u0456po\u0445;
|
||||
private /* synthetic */ long i\u0458\u0456;
|
||||
private /* synthetic */ boolean \u0456hc\u0458see;
|
||||
private /* synthetic */ long hp\u0435\u0441\u0430;
|
||||
private /* synthetic */ long \u0458\u0458e\u04bbsj;
|
||||
private /* synthetic */ int c\u0430\u0440oa;
|
||||
private static final /* synthetic */ double cc\u0441h = 1.45;
|
||||
private static final /* synthetic */ double hhh\u0441 = 0.03;
|
||||
private static final /* synthetic */ double \u0435\u0430os\u04bb = 0.99;
|
||||
private static /* synthetic */ int __js_dispatch_state = 0;
|
||||
|
||||
public aih\u0441s() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (aih\u0441s.$_h1jibbo61ngan17kzk((long)aih\u0441s.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)aih\u0441s.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
String[] stringArray = new String[3];
|
||||
byte[] byArray = new byte[-1432404822 + 1432404836];
|
||||
byArray[0] = -2108147502 + 2108147559;
|
||||
byArray[1] = -1295100171 + 1295100098;
|
||||
byArray[2] = -369475601 + 369475705;
|
||||
byArray[3] = -2118152567 + 2118152595;
|
||||
byArray[4] = -600496954 + 600496903;
|
||||
byArray[5] = -711824139 + 711824021;
|
||||
byArray[-2017945794 + 2017945800] = -458256144 + 458256242;
|
||||
byArray[-315642805 + 315642812] = -395796695 + 395796755;
|
||||
byArray[-1529252227 + 1529252235] = -480222252 + 480222194;
|
||||
byArray[-1355928458 + 1355928467] = -1638383007 + 1638382886;
|
||||
byArray[-1841419516 + 1841419526] = -258223130 + 258223250;
|
||||
byArray[-585222080 + 585222091] = -1962361635 + 1962361662;
|
||||
byArray[-283071653 + 283071665] = -820930136 + 820930165;
|
||||
byArray[-1621726428 + 1621726441] = -1338471245 + 1338471160;
|
||||
stringArray[0] = aih\u0441s.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray, (int)(-1399915725 + 2135240865), (int)(2116032752 + 703565599));
|
||||
stringArray[1] = aih\u0441s.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-626864532 + 626864616, -629321694 + 629321581, -1081363319 + 1081363205}, (int)(1410895049 + 662499020), (int)(196765763 + 1628963982));
|
||||
stringArray[2] = aih\u0441s.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-1758444106 + 1758444053, -790221182 + 790221259, -1603952196 + 1603952237, -1910632713 + 1910632666}, (int)(-647545151 + 397521495), (int)(-82881494 + 1635584098));
|
||||
this.\u0440\u0440e\u043e = ((\u0430c\u0440)((Object)aih\u0441s.a_bsm2("\u04bboo\u04bb", \u04bboo\u04bb(spso.\u0441a\u0458p java.lang.String ), (\u0441a\u0458p)this, (String)((Object)aih\u0441s.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-1745941793 + 1745941729, -1563238671 + 1563238660, 1, -1973605223 + 1973605137}, (int)(911891999 + 1827620137), (int)(930294506 + 869023828)))))).\u0455iaip\u0458e(stringArray).\u0458c\u0456\u0440().getModeValue();
|
||||
byte[] byArray2 = new byte[-1712683831 + 1712683840];
|
||||
byArray2[0] = -1398320663 + 1398320538;
|
||||
byArray2[1] = -993281035 + 993280942;
|
||||
byArray2[2] = -838904621 + 838904731;
|
||||
byArray2[3] = -464665109 + 464665098;
|
||||
byArray2[4] = -107515883 + 107515928;
|
||||
byArray2[5] = -1010060519 + 1010060409;
|
||||
byArray2[-212038051 + 212038057] = -1589326914 + 1589326836;
|
||||
byArray2[-1220616429 + 1220616436] = -189785957 + 189785951;
|
||||
byArray2[-845236287 + 845236295] = -1553180444 + 1553180416;
|
||||
this.\u0458j\u0456\u04bbx = ((\u0430c\u0440)((Object)aih\u0441s.a_bsm2("\u04bboo\u04bb", \u04bboo\u04bb(spso.\u0441a\u0458p java.lang.String ), (\u0441a\u0458p)this, (String)((Object)aih\u0441s.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray2, (int)(776829733 + 954526733), (int)(-507330573 + 1066230108)))))).s\u0458\u0458a(3.0f).x\u0455heah\u0445(0.1f).\u043ecxi\u0455(0.0f).a\u0455\u0445\u0435c(4.0f).\u0458c\u0456\u0440().getFloatValue();
|
||||
byte[] byArray3 = new byte[-1150227183 + 1150227192];
|
||||
byArray3[0] = -1972290585 + 1972290598;
|
||||
byArray3[1] = -1425612145 + 1425612185;
|
||||
byArray3[2] = -74925710 + 74925677;
|
||||
byArray3[3] = -1927596998 + 1927596906;
|
||||
byArray3[4] = -1185907894 + 1185907983;
|
||||
byArray3[5] = -1324391899 + 1324392021;
|
||||
byArray3[-98848462 + 98848468] = -1795556947 + 1795556852;
|
||||
byArray3[-833479526 + 833479533] = -964133023 + 964133078;
|
||||
byArray3[-2013566721 + 2013566729] = -504822837 + 504822846;
|
||||
this.johsc\u0456 = ((\u0430c\u0440)((Object)aih\u0441s.a_bsm2("\u04bboo\u04bb", \u04bboo\u04bb(spso.\u0441a\u0458p java.lang.String ), (\u0441a\u0458p)this, (String)((Object)aih\u0441s.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray3, (int)(-470210987 + 777120757), (int)(-370573013 + 1228845565)))))).s\u0458\u0458a(12.0f).x\u0455heah\u0445(0.1f).\u043ecxi\u0455(4.0f).a\u0455\u0445\u0435c(30.0f).\u0458c\u0456\u0440().getFloatValue();
|
||||
byte[] byArray4 = new byte[-1782197298 + 1782197309];
|
||||
byArray4[0] = -1349279728 + 1349279744;
|
||||
byArray4[1] = -1988282072 + 1988282106;
|
||||
byArray4[2] = 5;
|
||||
byArray4[3] = -320143098 + 320142984;
|
||||
byArray4[4] = -1901696886 + 1901696907;
|
||||
byArray4[5] = -1254512507 + 1254512611;
|
||||
byArray4[-401567905 + 401567911] = -1203347459 + 1203347398;
|
||||
byArray4[-1523560887 + 1523560894] = -132851776 + 132851843;
|
||||
byArray4[-1553496785 + 1553496793] = -1000710454 + 1000710499;
|
||||
byArray4[-1752476080 + 1752476089] = -452733767 + 452733846;
|
||||
byArray4[-39703181 + 39703191] = -1179423207 + 1179423329;
|
||||
this.e\u0456\u0456i\u0456 = ((\u0430c\u0440)((Object)aih\u0441s.a_bsm2("\u04bboo\u04bb", \u04bboo\u04bb(spso.\u0441a\u0458p java.lang.String ), (\u0441a\u0458p)this, (String)((Object)aih\u0441s.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray4, (int)(1626739351 + 2032715655), (int)(-667202628 + 1252513574)))))).p\u0441\u0445(() -> {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (((long)aih\u0441s.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)aih\u0441s.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
return aih\u0441s.a_bsm16("valueOf", valueOf(boolean ), (!this.\u0440\u0440e\u043e.cip((String)((Object)aih\u0441s.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-1087087332 + 1087087346, -1442535588 + 1442535569, -405588477 + 405588552}, (int)(1291836134 + 168066078), (int)(-1080747019 + 1980242343)))) ? 1 : 0) != 0);
|
||||
}).s\u0458\u0458a(500.0f).x\u0455heah\u0445(50.0f).\u043ecxi\u0455(50.0f).a\u0455\u0445\u0435c(1000.0f).\u0458c\u0456\u0440().getFloatValue();
|
||||
byte[] byArray5 = new byte[-782836515 + 782836526];
|
||||
byArray5[0] = -2125075136 + 2125075239;
|
||||
byArray5[1] = -324408921 + 324408832;
|
||||
byArray5[2] = -1569044272 + 1569044218;
|
||||
byArray5[3] = -1979519338 + 1979519213;
|
||||
byArray5[4] = -293139085 + 293139123;
|
||||
byArray5[5] = -1689959746 + 1689959700;
|
||||
byArray5[-949312013 + 949312019] = -289088835 + 289088890;
|
||||
byArray5[-826911973 + 826911980] = -1091729084 + 1091729079;
|
||||
byArray5[-1076319818 + 1076319826] = -1333127209 + 1333127120;
|
||||
byArray5[-888749066 + 888749075] = -1274161291 + 1274161257;
|
||||
byArray5[-763864109 + 763864119] = -1891776962 + 1891776982;
|
||||
this.\u0435c\u0445\u0445s = ((\u0430c\u0440)((Object)aih\u0441s.a_bsm2("\u04bboo\u04bb", \u04bboo\u04bb(spso.\u0441a\u0458p java.lang.String ), (\u0441a\u0458p)this, (String)((Object)aih\u0441s.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray5, (int)(401472380 + 853954391), (int)(-1617519548 + 1208961889)))))).p\u0441\u0445(() -> {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (((long)aih\u0441s.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)aih\u0441s.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
return aih\u0441s.a_bsm16("valueOf", valueOf(boolean ), (this.\u0440\u0440e\u043e.cip((String)((Object)aih\u0441s.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-65653790 + 65653841, -1911127604 + 1911127554, -12846475 + 12846434}, (int)(206092839 + 431451096), (int)(430561130 + 0x20226262)))) || this.\u0440\u0440e\u043e.cip((String)((Object)aih\u0441s.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-2052553297 + 2052553247, -1979055122 + 1979055203, -1549698282 + 1549698255, -1137984390 + 1137984325}, (int)(1719984858 + 559981835), (int)(87034989 + 609688857)))) ? 1 : 0) != 0);
|
||||
}).s\u0458\u0458a(300.0f).x\u0455heah\u0445(10.0f).\u043ecxi\u0455(100.0f).a\u0455\u0445\u0435c(1000.0f).\u0458c\u0456\u0440().getFloatValue();
|
||||
byte[] byArray6 = new byte[-1790096563 + 1790096580];
|
||||
byArray6[0] = -206747026 + 206747036;
|
||||
byArray6[1] = -1305614549 + 1305614471;
|
||||
byArray6[2] = -1205693760 + 1205693781;
|
||||
byArray6[3] = -760398709 + 760398719;
|
||||
byArray6[4] = -2077844440 + 2077844532;
|
||||
byArray6[5] = -1421542006 + 1421542114;
|
||||
byArray6[-1669772258 + 1669772264] = -1230571231 + 1230571159;
|
||||
byArray6[-56084516 + 56084523] = -340968631 + 340968714;
|
||||
byArray6[-1667820713 + 1667820721] = -434011911 + 434011934;
|
||||
byArray6[-751490458 + 751490467] = -605446192 + 605446167;
|
||||
byArray6[-1661948890 + 1661948900] = -1588743049 + 1588743029;
|
||||
byArray6[-1780486659 + 1780486670] = -564510236 + 564510152;
|
||||
byArray6[-2142886804 + 2142886816] = -2050456963 + 2050457029;
|
||||
byArray6[-926594428 + 926594441] = -333561797 + 333561813;
|
||||
byArray6[-1233477062 + 1233477076] = -739416341 + 739416233;
|
||||
byArray6[-1428375492 + 1428375507] = -1739764402 + 1739764320;
|
||||
byArray6[-198492862 + 198492878] = -298251350 + 298251242;
|
||||
this.j\u043e\u0456po\u0445 = ((\u0430c\u0440)((Object)aih\u0441s.a_bsm2("\u04bboo\u04bb", \u04bboo\u04bb(spso.\u0441a\u0458p java.lang.String ), (\u0441a\u0458p)this, (String)((Object)aih\u0441s.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray6, (int)(-1132331517 + 342479592), (int)(489681132 + 122041225)))))).\u0455xi\u0440(true).\u0458c\u0456\u0440().getBooleanValue();
|
||||
this.i\u0458\u0456 = 0L;
|
||||
this.\u0456hc\u0458see = false;
|
||||
this.hp\u0435\u0441\u0430 = 0L;
|
||||
this.\u0458\u0458e\u04bbsj = 0L;
|
||||
this.c\u0430\u0440oa = -1;
|
||||
}
|
||||
|
||||
private /* synthetic */ void \u0455h\u0441() {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (aih\u0441s.$_h1jibbo71ngan17kzl((long)aih\u0441s.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)aih\u0441s.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (this.\u0456hc\u0458see) {
|
||||
this.\u0456hc\u0458see = false;
|
||||
if (aih\u0441s.\u0430\u0445j\u0445s\u0456\u04bb.field_1724 != null && this.h\u0445a\u043es(aih\u0441s.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_31548().method_5438(aih\u0441s.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_31548().field_7545)) && this.c\u0430\u0440oa != -1) {
|
||||
aih\u0441s.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_31548().field_7545 = this.c\u0430\u0440oa;
|
||||
}
|
||||
this.c\u0430\u0440oa = -1;
|
||||
}
|
||||
}
|
||||
|
||||
@\u0445\u0458\u0458h\u0445\u0430a(\u0435o\u0435x\u0445s=0)
|
||||
public void \u0441eoj(si\u0458\u04bbo\u0440 si\u0458\u04bbo\u04402) {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (aih\u0441s.$_h1jibbo81ngan17kzm((long)aih\u0441s.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)aih\u0441s.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (aih\u0441s.a_bsm3("\u0458\u0435\u0456x", \u0458\u0435\u0456x()) != false) {
|
||||
this.\u0455h\u0441();
|
||||
}
|
||||
}
|
||||
|
||||
@\u0445\u0458\u0458h\u0445\u0430a(\u0435o\u0435x\u0445s=4)
|
||||
public void \u04bbo\u0435(hoi\u0435h\u0440 hoi\u0435h\u04402) {
|
||||
class_1297 class_12972;
|
||||
block20: {
|
||||
block19: {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (aih\u0441s.$_h1jibbo91ngan17kzn((long)aih\u0441s.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)aih\u0441s.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (aih\u0441s.\u0430\u0445j\u0445s\u0456\u04bb.field_1724 == null || \u0430\u0445j\u0445s\u0456\u04bb.method_1562() == null || aih\u0441s.\u0430\u0445j\u0445s\u0456\u04bb.field_1761 == null || aih\u0441s.\u0430\u0445j\u0445s\u0456\u04bb.field_1687 == null || aih\u0441s.a_bsm3("\u0458\u0435\u0456x", \u0458\u0435\u0456x()) != false || this.p\u0441\u0445\u043e\u043e()) {
|
||||
if (this.\u0456hc\u0458see && this.p\u0441\u0445\u043e\u043e()) {
|
||||
this.\u0455h\u0441();
|
||||
}
|
||||
return;
|
||||
}
|
||||
if (this.\u0456hc\u0458see) {
|
||||
CallSite callSite = aih\u0441s.a_bsm4("currentTimeMillis", currentTimeMillis());
|
||||
if (aih\u0441s.$_hg11qbj1ngan17kzo((long)callSite == this.hp\u0435\u0441\u0430 ? 0 : ((long)callSite < this.hp\u0435\u0441\u0430 ? -1 : 1)) > 0 || aih\u0441s.$_hg11qbk1ngan17kzp((long)callSite == this.\u0458\u0458e\u04bbsj ? 0 : ((long)callSite < this.\u0458\u0458e\u04bbsj ? -1 : 1)) >= 0) {
|
||||
this.\u0455h\u0441();
|
||||
}
|
||||
return;
|
||||
}
|
||||
class_12972 = this.p\u0430i\u0445hp\u043e();
|
||||
if (class_12972 == null) break block19;
|
||||
if (class_12972 instanceof class_1511 || !this.j\u043e\u0456po\u0445.axpacc() || ((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)aih\u0441s.a_bsm5("jaa\u0435\u0445c", jaa\u0435\u0445c()))).\u0430o\u0441\u0456p\u0455().\u0441c\u0458\u043e\u0430(c\u0455i\u0430\u0440\u0445.class).\u0440\u0435\u0455x\u0435xe()) break block20;
|
||||
}
|
||||
return;
|
||||
}
|
||||
class_243 class_2432 = aih\u0441s.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_33571();
|
||||
double d = class_12972.method_5858((class_1297)aih\u0441s.\u0430\u0445j\u0445s\u0456\u04bb.field_1724);
|
||||
float f = this.\u0458j\u0456\u04bbx.axpacc();
|
||||
float f2 = this.johsc\u0456.axpacc();
|
||||
if (aih\u0441s.$_hg11qbl1ngan17kzq(d == f * f ? 0 : (d < f * f ? -1 : 1)) < 0 || aih\u0441s.$_hg11qbm1ngan17kzr(d == f2 * f2 ? 0 : (d > f2 * f2 ? 1 : -1)) > 0) {
|
||||
if (this.\u0456hc\u0458see) {
|
||||
this.\u0455h\u0441();
|
||||
}
|
||||
return;
|
||||
}
|
||||
jx\u0430poi jx\u0430poi2 = this.\u043e\u0440\u0440h\u04bba();
|
||||
if (jx\u0430poi2 == null) {
|
||||
return;
|
||||
}
|
||||
class_243 class_2433 = this.jh\u043e(class_12972, class_2432);
|
||||
\u0441c\u0456o \u0441c\u0456o2 = this.\u0441o\u0440x\u0445o(class_2432, class_2433, class_12972);
|
||||
if (\u0441c\u0456o2 != null && (aih\u0441s.$_hg11qbn1ngan17kzs((float)(aih\u0441s.a_bsm4("currentTimeMillis", currentTimeMillis()) - this.i\u0458\u0456) == this.e\u0456\u0456i\u0456.axpacc() ? 0 : ((float)(aih\u0441s.a_bsm4("currentTimeMillis", currentTimeMillis()) - this.i\u0458\u0456) > this.e\u0456\u0456i\u0456.axpacc() ? 1 : -1)) >= 0 || jx\u0430poi2.i\u0458\u0430())) {
|
||||
if (aih\u0441s.a_bsm6("j\u0458o\u0455x", j\u0458o\u0455x(\u0458\u0458\u0458o\u0430\u0456.e\u0445\u0440\u0440a double int \u0441\u0445o.jax\u0458\u0435\u0458 ), (e\u0445\u0440\u0440a)\u0441c\u0456o2.jo\u0440\u0456\u0455\u0456(), (double)180.0, (int)2, (jax\u0458\u0435\u0458)jax\u0458\u0435\u0458.hp\u043e\u0445p) == false) {
|
||||
return;
|
||||
}
|
||||
int n = aih\u0441s.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_31548().field_7545;
|
||||
if (jx\u0430poi2.\u0435ce() != -1) {
|
||||
aih\u0441s.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_31548().field_7545 = jx\u0430poi2.\u0435ce();
|
||||
}
|
||||
aih\u0441s.\u0430\u0445j\u0445s\u0456\u04bb.field_1761.method_2919((class_1657)aih\u0441s.\u0430\u0445j\u0445s\u0456\u04bb.field_1724, jx\u0430poi2.\u0441ai\u0458\u0435());
|
||||
\u0430\u0445j\u0445s\u0456\u04bb.method_1562().method_52787((class_2596)new class_2879(jx\u0430poi2.\u0441ai\u0458\u0435()));
|
||||
if (jx\u0430poi2.i\u0458\u0430()) {
|
||||
this.\u0456hc\u0458see = true;
|
||||
this.c\u0430\u0440oa = n;
|
||||
this.hp\u0435\u0441\u0430 = (long)(aih\u0441s.a_bsm4("currentTimeMillis", currentTimeMillis()) + (long)this.\u0435c\u0445\u0445s.axpacc());
|
||||
this.\u0458\u0458e\u04bbsj = (long)(aih\u0441s.a_bsm4("currentTimeMillis", currentTimeMillis()) + (long)\u0441c\u0456o2.\u043e\u04bb\u0440ce\u0430x() * 50L + 300L);
|
||||
} else {
|
||||
aih\u0441s.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_31548().field_7545 = n;
|
||||
}
|
||||
this.i\u0458\u0456 = (long)aih\u0441s.a_bsm4("currentTimeMillis", currentTimeMillis());
|
||||
}
|
||||
}
|
||||
|
||||
private /* synthetic */ \u0441c\u0456o \u0441o\u0440x\u0445o(class_243 class_2432, class_243 class_2433, class_1297 class_12972) {
|
||||
\u0441c\u0456o \u0441c\u0456o2;
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (true | false) {
|
||||
}
|
||||
if (aih\u0441s.$_hg11qbo1ngan17kzt((long)aih\u0441s.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)aih\u0441s.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
float f = ((e\u0445\u0440\u0440a)((Object)aih\u0441s.a_bsm7("oeo", oeo(net.minecraft.class_243 net.minecraft.class_243 ), (class_243)class_2432, (class_243)class_2433))).jo\u0456c\u043e\u0440();
|
||||
float f2 = 0.0f;
|
||||
double d = Double.MAX_VALUE;
|
||||
int n = 0;
|
||||
float f3 = -90.0f;
|
||||
while (aih\u0441s.$_hg11qbp1ngan17kzu(f3 == 90.0f ? 0 : (f3 < 90.0f ? -1 : 1)) <= 0) {
|
||||
\u04bb\u04bb\u04bbi\u0440\u0440h \u04bb\u04bb\u04bbi\u0440\u0440h2 = this.c\u0430\u0441\u0458\u0440\u043e\u0430(class_2432, f, f3, class_12972, class_2433);
|
||||
if (\u04bb\u04bb\u04bbi\u0440\u0440h2 != null && aih\u0441s.$_hg11qbq1ngan17kzv(\u04bb\u04bb\u04bbi\u0440\u0440h2.x\u0430hj\u04bbh\u0445 == d ? 0 : (\u04bb\u04bb\u04bbi\u0440\u0440h2.x\u0430hj\u04bbh\u0445 < d ? -1 : 1)) < 0) {
|
||||
d = \u04bb\u04bb\u04bbi\u0440\u0440h2.x\u0430hj\u04bbh\u0445;
|
||||
f2 = f3;
|
||||
n = \u04bb\u04bb\u04bbi\u0440\u0440h2.oc\u0455;
|
||||
}
|
||||
if (aih\u0441s.$_hg11qbr1ngan17kzw(d == 0.1 ? 0 : (d < 0.1 ? -1 : 1)) < 0) break;
|
||||
f3 += 0.5f;
|
||||
}
|
||||
if (aih\u0441s.$_hg11qbs1ngan17kzx(d == 1.4 ? 0 : (d < 1.4 ? -1 : 1)) < 0) {
|
||||
\u0441c\u0456o2 = new \u0441c\u0456o(new e\u0445\u0440\u0440a(f, f2), n);
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
} else {
|
||||
\u0441c\u0456o2 = null;
|
||||
}
|
||||
return \u0441c\u0456o2;
|
||||
}
|
||||
|
||||
private /* synthetic */ \u04bb\u04bb\u04bbi\u0440\u0440h c\u0430\u0441\u0458\u0440\u043e\u0430(class_243 class_2432, float f, float f2, class_1297 class_12972, class_243 class_2433) {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (true | false) {
|
||||
}
|
||||
if (aih\u0441s.$_hg11qce1ngan17kzy((long)aih\u0441s.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)aih\u0441s.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (aih\u0441s.\u0430\u0445j\u0445s\u0456\u04bb.field_1724 == null || aih\u0441s.\u0430\u0445j\u0445s\u0456\u04bb.field_1687 == null) {
|
||||
return null;
|
||||
}
|
||||
reference var6_7 = -aih\u0441s.a_bsm9("sin", sin(double ), (double)aih\u0441s.a_bsm8("toRadians", toRadians(double ), (double)f)) * aih\u0441s.a_bsm10("cos", cos(double ), (double)aih\u0441s.a_bsm8("toRadians", toRadians(double ), (double)f2)) * 1.45;
|
||||
reference var8_8 = -aih\u0441s.a_bsm9("sin", sin(double ), (double)aih\u0441s.a_bsm8("toRadians", toRadians(double ), (double)f2)) * 1.45;
|
||||
reference var10_9 = aih\u0441s.a_bsm10("cos", cos(double ), (double)aih\u0441s.a_bsm8("toRadians", toRadians(double ), (double)f)) * aih\u0441s.a_bsm10("cos", cos(double ), (double)aih\u0441s.a_bsm8("toRadians", toRadians(double ), (double)f2)) * 1.45;
|
||||
class_243 class_2434 = class_2432;
|
||||
class_243 class_2435 = new class_243((double)var6_7, (double)var8_8, (double)var10_9);
|
||||
double d = Double.MAX_VALUE;
|
||||
int n = 0;
|
||||
for (int i = 0; i < -1487146854 + 1487146914; ++i) {
|
||||
class_3965 class_39652;
|
||||
class_243 class_2436 = class_2434.method_1019(class_2435);
|
||||
double d2 = class_2436.method_1022(class_2433);
|
||||
if (aih\u0441s.$_hg11qcf1ngan17kzz(d2 == d ? 0 : (d2 < d ? -1 : 1)) < 0) {
|
||||
d = d2;
|
||||
n = i;
|
||||
}
|
||||
if ((class_39652 = aih\u0441s.\u0430\u0445j\u0445s\u0456\u04bb.field_1687.method_17742(new class_3959(class_2434, class_2436, class_3959.class_3960.field_17558, class_3959.class_242.field_1348, (class_1297)aih\u0441s.\u0430\u0445j\u0445s\u0456\u04bb.field_1724))).method_17783() == class_239.class_240.field_1332) break;
|
||||
class_2434 = class_2436;
|
||||
class_2435 = class_2435.method_1021(0.99).method_1023(0.0, 0.03, 0.0);
|
||||
if (aih\u0441s.$_hg11qcg1ngan17l00(class_2434.field_1351 == class_12972.method_23318() - 3.0 ? 0 : (class_2434.field_1351 < class_12972.method_23318() - 3.0 ? -1 : 1)) >= 0) continue;
|
||||
if (0 == 0 || 0 == 1 || 0 == 2) break;
|
||||
break;
|
||||
}
|
||||
return new \u04bb\u04bb\u04bbi\u0440\u0440h(d, n);
|
||||
}
|
||||
|
||||
private /* synthetic */ class_243 jh\u043e(class_1297 class_12972, class_243 class_2432) {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (aih\u0441s.$_hg11qch1ngan17l01((long)aih\u0441s.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)aih\u0441s.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (aih\u0441s.\u0430\u0445j\u0445s\u0456\u04bb.field_1687 == null) {
|
||||
return class_12972.method_19538();
|
||||
}
|
||||
double d = class_12972.method_23317() - class_12972.field_6014;
|
||||
double d2 = class_12972.method_23318() - class_12972.field_6036;
|
||||
double d3 = class_12972.method_23321() - class_12972.field_5969;
|
||||
double d4 = class_12972.method_23317();
|
||||
Object object = class_12972.method_23318();
|
||||
double d5 = class_12972.method_23321();
|
||||
CallSite callSite = aih\u0441s.a_bsm11("pow", pow(double double ), (double)class_12972.method_19538().method_1022(class_2432), (double)1.25);
|
||||
int n = 0;
|
||||
while (aih\u0441s.$_hg11qci1ngan17l02(n == (double)(callSite / 1.45) ? 0 : (n < (double)(callSite / 1.45) ? -1 : 1)) < 0) {
|
||||
class_2338 class_23382;
|
||||
d2 -= 0.08;
|
||||
if (aih\u0441s.$_hg11qcj1ngan17l03((d2 *= 0.98) == 0.0 ? 0 : ((d2 *= 0.98) < 0.0 ? -1 : 1)) < 0 && !aih\u0441s.\u0430\u0445j\u0445s\u0456\u04bb.field_1687.method_22347(class_23382 = new class_2338((int)aih\u0441s.a_bsm12("floor", floor(double ), (double)(d4 += d)), (int)aih\u0441s.a_bsm12("floor", floor(double ), (double)((object += d2) - 0.1)), (int)aih\u0441s.a_bsm12("floor", floor(double ), (double)(d5 += d3))))) {
|
||||
d2 = 0.0;
|
||||
object = aih\u0441s.a_bsm12("floor", floor(double ), (double)object) + 1.0;
|
||||
}
|
||||
++n;
|
||||
}
|
||||
return new class_243(d4, object + (double)class_12972.method_17682() * 0.5, d5);
|
||||
}
|
||||
|
||||
private /* synthetic */ class_1297 p\u0430i\u0445hp\u043e() {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (true | false) {
|
||||
}
|
||||
if (aih\u0441s.$_hg11qck1ngan17l04((long)aih\u0441s.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)aih\u0441s.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (aih\u0441s.\u0430\u0445j\u0445s\u0456\u04bb.field_1724 == null || aih\u0441s.\u0430\u0445j\u0445s\u0456\u04bb.field_1687 == null) {
|
||||
return null;
|
||||
}
|
||||
class_1297 class_12972 = aih\u0441s.\u0430\u0445j\u0445s\u0456\u04bb.field_1687.method_8390(class_1511.class, aih\u0441s.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_5829().method_1014(8.0), class_15112 -> {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (true | false) {
|
||||
}
|
||||
if (((long)aih\u0441s.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)aih\u0441s.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
return (aih\u0441s.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_6057((class_1297)class_15112) ? 1 : 0) != 0;
|
||||
}).stream().min(aih\u0441s.a_bsm13("comparingDouble", comparingDouble(java.util.function.ToDoubleFunction<? super T> ), class_15112 -> {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (true | false) {
|
||||
}
|
||||
if (((long)aih\u0441s.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)aih\u0441s.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
return aih\u0441s.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_5739((class_1297)class_15112);
|
||||
})).orElse(null);
|
||||
if (class_12972 != null) {
|
||||
return class_12972;
|
||||
}
|
||||
class_1297 class_12973 = c\u0455i\u0430\u0440\u0445.ejih;
|
||||
if (class_12973 != null && aih\u0441s.a_bsm14("h\u0441h", h\u0441h(net.minecraft.class_1297 ), (class_1297)class_12973) != false && aih\u0441s.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_6057(class_12973)) {
|
||||
return class_12973;
|
||||
}
|
||||
Stream<class_742> stream = aih\u0441s.\u0430\u0445j\u0445s\u0456\u04bb.field_1687.method_18456().stream().filter(s\u0445\u0456x\u0440\u0440::h\u0441h);
|
||||
class_746 class_7462 = aih\u0441s.\u0430\u0445j\u0445s\u0456\u04bb.field_1724;
|
||||
aih\u0441s.a_bsm15("requireNonNull", requireNonNull(T ), (Object)class_7462);
|
||||
return stream.filter(arg_0 -> ((class_746)class_7462).method_6057(arg_0)).min((Comparator<class_742>)((Object)aih\u0441s.a_bsm13("comparingDouble", comparingDouble(java.util.function.ToDoubleFunction<? super T> ), class_7422 -> {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (((long)aih\u0441s.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)aih\u0441s.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
return aih\u0441s.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_5739((class_1297)class_7422);
|
||||
}))).orElse(null);
|
||||
}
|
||||
|
||||
private /* synthetic */ jx\u0430poi \u043e\u0440\u0440h\u04bba() {
|
||||
int n;
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (true | false) {
|
||||
}
|
||||
if (aih\u0441s.$_hg11qcl1ngan17l05((long)aih\u0441s.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)aih\u0441s.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (aih\u0441s.\u0430\u0445j\u0445s\u0456\u04bb.field_1724 == null) {
|
||||
return null;
|
||||
}
|
||||
byte[] byArray = new byte[-852973816 + 852973830];
|
||||
byArray[0] = -361154179 + 361154288;
|
||||
byArray[1] = -588157906 + 588158033;
|
||||
byArray[2] = -1684327884 + 1684327768;
|
||||
byArray[3] = -1798792284 + 1798792187;
|
||||
byArray[4] = -1618132822 + 1618132945;
|
||||
byArray[5] = -712751687 + 712751701;
|
||||
byArray[-697501843 + 697501849] = -1340287068 + 1340287027;
|
||||
byArray[-1522679451 + 1522679458] = -697894016 + 697894114;
|
||||
byArray[-1566976167 + 1566976175] = -1928375025 + 1928374935;
|
||||
byArray[-1693117838 + 1693117847] = -1037848735 + 1037848656;
|
||||
byArray[-1965344577 + 1965344587] = -1119716001 + 1119715963;
|
||||
byArray[-1456894882 + 1456894893] = -416989390 + 416989330;
|
||||
byArray[-2091126018 + 2091126030] = -724803666 + 724803651;
|
||||
byArray[-234394521 + 234394534] = -973114703 + 973114787;
|
||||
if (this.\u0440\u0440e\u043e.cip((String)((Object)aih\u0441s.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray, (int)(-399122835 + 542124568), (int)(521520604 + 1122540578)))) || this.\u0440\u0440e\u043e.cip((String)((Object)aih\u0441s.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-457048344 + 457048225, -440132994 + 440132894, -1513065767 + 1513065775, -532934316 + 532934398}, (int)(-1202706624 + 289776213), (int)(848707275 + 522392301))))) {
|
||||
if (this.\u04bbs\u0456sa\u04bbc(aih\u0441s.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_6079())) {
|
||||
return new jx\u0430poi(class_1268.field_5810, -1, false);
|
||||
}
|
||||
if (this.\u04bbs\u0456sa\u04bbc(aih\u0441s.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_6047())) {
|
||||
return new jx\u0430poi(class_1268.field_5808, aih\u0441s.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_31548().field_7545, false);
|
||||
}
|
||||
for (n = 0; n < -566895488 + 566895497; ++n) {
|
||||
if (!this.\u04bbs\u0456sa\u04bbc(aih\u0441s.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_31548().method_5438(n))) continue;
|
||||
return new jx\u0430poi(class_1268.field_5808, n, false);
|
||||
}
|
||||
}
|
||||
if (this.\u0440\u0440e\u043e.cip((String)((Object)aih\u0441s.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-2046596893 + 2046596976, -645374620 + 645374698, -640631479 + 640631578}, (int)(-123947699 + 1206422327), (int)(-99772758 + 1770310887)))) || this.\u0440\u0440e\u043e.cip((String)((Object)aih\u0441s.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-1042890938 + 1042890868, -2141736663 + 2141736641, -1915994616 + 1915994670, -159548084 + 159548140}, (int)(2016444886 + 95550476), (int)(-681442770 + 1358112294))))) {
|
||||
if (this.h\u0445a\u043es(aih\u0441s.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_6079())) {
|
||||
return new jx\u0430poi(class_1268.field_5810, -1, true);
|
||||
}
|
||||
if (this.h\u0445a\u043es(aih\u0441s.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_6047())) {
|
||||
return new jx\u0430poi(class_1268.field_5808, aih\u0441s.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_31548().field_7545, true);
|
||||
}
|
||||
for (n = 0; n < -1316781033 + 1316781042; ++n) {
|
||||
if (!this.h\u0445a\u043es(aih\u0441s.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_31548().method_5438(n))) continue;
|
||||
return new jx\u0430poi(class_1268.field_5808, n, true);
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
private /* synthetic */ boolean \u04bbs\u0456sa\u04bbc(class_1799 class_17992) {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (true | false) {
|
||||
}
|
||||
if (aih\u0441s.$_hg11qcm1ngan17l06((long)aih\u0441s.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)aih\u0441s.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return (!class_17992.method_7960() && (class_17992.method_7909() == class_1802.field_8543 || class_17992.method_7909() == class_1802.field_8803) ? 1 : 0) != 0;
|
||||
}
|
||||
|
||||
private /* synthetic */ boolean h\u0445a\u043es(class_1799 class_17992) {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (aih\u0441s.$_hg11qcn1ngan17l07((long)aih\u0441s.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)aih\u0441s.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return (!class_17992.method_7960() && class_17992.method_7909() == class_1802.field_8378 ? 1 : 0) != 0;
|
||||
}
|
||||
|
||||
private /* synthetic */ boolean p\u0441\u0445\u043e\u043e() {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (aih\u0441s.$_hg11qd91ngan17l08((long)aih\u0441s.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)aih\u0441s.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return (aih\u0441s.\u0430\u0445j\u0445s\u0456\u04bb.field_1724 != null && (((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)aih\u0441s.a_bsm5("jaa\u0435\u0445c", jaa\u0435\u0445c()))).\u0430o\u0441\u0456p\u0455().\u0441c\u0458\u043e\u0430(\u0441\u043e\u0456.class).\u0440\u0435\u0455x\u0435xe() || ((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)aih\u0441s.a_bsm5("jaa\u0435\u0445c", jaa\u0435\u0445c()))).\u0430o\u0441\u0456p\u0455().\u0441c\u0458\u043e\u0430(\u0435oi\u043e.class).\u0440\u0435\u0455x\u0435xe() || aih\u0441s.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_6115()) ? 1 : 0) != 0;
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm0(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm1(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm2(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm3(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm4(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm5(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm6(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm7(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm8(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm9(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm10(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm11(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm12(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm13(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm14(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm15(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm16(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large.
Load diff
@@ -0,0 +1,101 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package h\u0441\u043e\u04bb\u0441\u0458\u0445;
|
||||
|
||||
import c\u0445is.\u0430\u0456i\u043ephj;
|
||||
import java.lang.invoke.CallSite;
|
||||
import java.lang.invoke.ConstantCallSite;
|
||||
import java.lang.invoke.MethodHandle;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.lang.invoke.MethodType;
|
||||
import net.minecraft.class_1743;
|
||||
import net.minecraft.class_1792;
|
||||
import net.minecraft.class_1829;
|
||||
import net.minecraft.class_239;
|
||||
import net.minecraft.class_3675;
|
||||
import o\u0455sio\u0440.\u0445\u0458\u0458h\u0445\u0430a;
|
||||
import spso.\u0430c\u0440;
|
||||
import spso.\u0441a\u0458p;
|
||||
import \u0435xp.h\u04bb\u0455hpa;
|
||||
import \u0435xp.\u043ea\u0441\u0430p;
|
||||
import \u043e\u0445\u0440\u0430ose.i\u0456\u0445\u0430\u0441p;
|
||||
import \u0445eo.c\u0455pi;
|
||||
import \u0445eo.\u0456p\u0430\u043e\u0458\u043e;
|
||||
import \u0445eo.\u0458i\u0456x;
|
||||
|
||||
@\u0456p\u0430\u043e\u0458\u043e(sp\u0456p\u0445\u0435="AutoClicker", a\u0456j\u0430\u0455\u04bb="Automatically clicks for you", s\u0455cj=\u0458i\u0456x.COMBAT)
|
||||
public class o\u0430\u0456\u0440ah
|
||||
extends c\u0455pi {
|
||||
private final /* synthetic */ \u043ea\u0441\u0430p a\u0440\u04bb\u0441cp\u0440;
|
||||
private final /* synthetic */ h\u04bb\u0455hpa \u0445ji;
|
||||
private /* synthetic */ float x\u043eac\u0430;
|
||||
private static /* synthetic */ int __js_dispatch_state = 0;
|
||||
|
||||
public o\u0430\u0456\u0440ah() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (o\u0430\u0456\u0440ah.$_h1jsiipq1ngan17l1m((long)o\u0430\u0456\u0440ah.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)o\u0430\u0456\u0440ah.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
this.a\u0440\u04bb\u0441cp\u0440 = ((\u0430c\u0440)((Object)o\u0430\u0456\u0440ah.a_bsm2("\u04bboo\u04bb", \u04bboo\u04bb(spso.\u0441a\u0458p java.lang.String ), (\u0441a\u0458p)this, (String)((Object)o\u0430\u0456\u0440ah.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-1013508299 + 1013508270, -1392189326 + 1392189386, -218281793 + 218281866}, (int)(-1387840426 + 2140008574), (int)(1409808546 + 913936863)))))).s\u0458\u0458a(10.0f).x\u0455heah\u0445(1.0f).\u043ecxi\u0455(5.0f).a\u0455\u0445\u0435c(20.0f).\u0458c\u0456\u0440().getFloatValue();
|
||||
byte[] byArray = new byte[-1898872473 + 1898872483];
|
||||
byArray[0] = -607138517 + 607138528;
|
||||
byArray[1] = -2024269488 + 2024269381;
|
||||
byArray[2] = -1692425119 + 1692425032;
|
||||
byArray[3] = -1648146409 + 1648146473;
|
||||
byArray[4] = -1364272975 + 1364272947;
|
||||
byArray[5] = -1575181913 + 1575182006;
|
||||
byArray[-317234406 + 317234412] = -752001477 + 752001378;
|
||||
byArray[-1947301961 + 1947301968] = -285983927 + 285983908;
|
||||
byArray[-322663026 + 322663034] = -2054626932 + 2054626835;
|
||||
byArray[-1405300340 + 1405300349] = -529266306 + 529266413;
|
||||
this.\u0445ji = ((\u0430c\u0440)((Object)o\u0430\u0456\u0440ah.a_bsm2("\u04bboo\u04bb", \u04bboo\u04bb(spso.\u0441a\u0458p java.lang.String ), (\u0441a\u0458p)this, (String)((Object)o\u0430\u0456\u0440ah.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray, (int)(1012583588 + 1652544054), (int)(279471179 + 1050405625)))))).\u0455xi\u0440(true).\u0458c\u0456\u0440().getBooleanValue();
|
||||
this.x\u043eac\u0430 = 0.0f;
|
||||
}
|
||||
|
||||
@\u0445\u0458\u0458h\u0445\u0430a
|
||||
public void \u043e\u0456xhhx(\u0430\u0456i\u043ephj \u0430\u0456i\u043ephj2) {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (o\u0430\u0456\u0440ah.$_h1jsiipr1ngan17l1n((long)o\u0430\u0456\u0440ah.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)o\u0430\u0456\u0440ah.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (\u0430\u0456i\u043ephj2.p\u0440\u04bb() == i\u0456\u0445\u0430\u0441p.cc\u0441 && o\u0430\u0456\u0440ah.\u0430\u0445j\u0445s\u0456\u04bb.field_1724 != null) {
|
||||
class_1792 class_17922 = o\u0430\u0456\u0440ah.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_6047().method_7909();
|
||||
if (o\u0430\u0456\u0440ah.\u0430\u0445j\u0445s\u0456\u04bb.field_1690.field_1886.method_1434() && (class_17922 instanceof class_1829 || class_17922 instanceof class_1743 || !this.\u0445ji.axpacc()) && o\u0430\u0456\u0440ah.\u0430\u0445j\u0445s\u0456\u04bb.field_1765 != null && o\u0430\u0456\u0440ah.\u0430\u0445j\u0445s\u0456\u04bb.field_1765.method_17783() != class_239.class_240.field_1332) {
|
||||
this.x\u043eac\u0430 += this.a\u0440\u04bb\u0441cp\u0440.axpacc() / 20.0f;
|
||||
if (o\u0430\u0456\u0440ah.$_h1jsiips1ngan17l1o(this.x\u043eac\u0430 == 1.0f / this.a\u0440\u04bb\u0441cp\u0440.axpacc() ? 0 : (this.x\u043eac\u0430 > 1.0f / this.a\u0440\u04bb\u0441cp\u0440.axpacc() ? 1 : -1)) >= 0) {
|
||||
o\u0430\u0456\u0440ah.\u0430\u0445j\u0445s\u0456\u04bb.field_1771 = 0;
|
||||
o\u0430\u0456\u0440ah.a_bsm3("method_1420", method_1420(net.minecraft.class_3675$class_306 ), (class_3675.class_306)o\u0430\u0456\u0440ah.\u0430\u0445j\u0445s\u0456\u04bb.field_1690.field_1886.method_1429());
|
||||
this.x\u043eac\u0430 -= 1.0f;
|
||||
}
|
||||
} else {
|
||||
this.x\u043eac\u0430 = 0.0f;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm0(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm1(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm2(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm3(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large.
Load diff
@@ -0,0 +1,333 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package h\u0441\u043e\u04bb\u0441\u0458\u0445;
|
||||
|
||||
import c\u0445is.h\u0430p\u043ee\u0440;
|
||||
import c\u0445is.\u0430\u0456i\u043ephj;
|
||||
import c\u0445is.\u04bbj\u0441x\u0440;
|
||||
import it.unimi.dsi.fastutil.ints.IntList;
|
||||
import java.lang.invoke.CallSite;
|
||||
import java.lang.invoke.ConstantCallSite;
|
||||
import java.lang.invoke.MethodHandle;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.lang.invoke.MethodType;
|
||||
import java.lang.runtime.SwitchBootstraps;
|
||||
import java.util.Base64;
|
||||
import java.util.Collections;
|
||||
import java.util.Map;
|
||||
import java.util.Set;
|
||||
import java.util.UUID;
|
||||
import java.util.concurrent.ConcurrentHashMap;
|
||||
import javax.crypto.Cipher;
|
||||
import javax.crypto.spec.IvParameterSpec;
|
||||
import javax.crypto.spec.SecretKeySpec;
|
||||
import net.minecraft.class_1297;
|
||||
import net.minecraft.class_1299;
|
||||
import net.minecraft.class_1657;
|
||||
import net.minecraft.class_1934;
|
||||
import net.minecraft.class_2596;
|
||||
import net.minecraft.class_2604;
|
||||
import net.minecraft.class_2703;
|
||||
import net.minecraft.class_2716;
|
||||
import o\u0455sio\u0440.\u0445\u0458\u0458h\u0445\u0430a;
|
||||
import \u043e\u0445\u0440\u0430ose.i\u0456\u0445\u0430\u0441p;
|
||||
import \u0445eo.c\u0455pi;
|
||||
import \u0445eo.\u0456p\u0430\u043e\u0458\u043e;
|
||||
import \u0445eo.\u0458i\u0456x;
|
||||
|
||||
@\u0456p\u0430\u043e\u0458\u043e(sp\u0456p\u0445\u0435="AntiBots", s\u0455cj=\u0458i\u0456x.COMBAT, a\u0456j\u0430\u0455\u04bb="Prevents bots from attacking you")
|
||||
public class \u0430\u0435\u04bbj
|
||||
extends c\u0455pi {
|
||||
private static final /* synthetic */ Map<UUID, Long> \u0430cos\u0445\u0441;
|
||||
private static final /* synthetic */ Set<Integer> oaj;
|
||||
private static final /* synthetic */ String \u0440\u0441\u0445;
|
||||
private static /* synthetic */ int __js_dispatch_state = 0;
|
||||
|
||||
public \u0430\u0435\u04bbj() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (\u0430\u0435\u04bbj.$_h1k3gag31ngan17kxz((long)\u0430\u0435\u04bbj.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0430\u0435\u04bbj.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
}
|
||||
|
||||
private static /* synthetic */ void x\u0430a\u0435xs() {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (\u0430\u0435\u04bbj.$_h1k3gag41ngan17ky0((long)\u0430\u0435\u04bbj.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0430\u0435\u04bbj.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
oaj.clear();
|
||||
\u0430cos\u0445\u0441.clear();
|
||||
}
|
||||
|
||||
public static /* synthetic */ boolean \u0430c\u0455\u0440(class_1297 class_12972) {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (\u0430\u0435\u04bbj.$_h1k3gag51ngan17ky1((long)\u0430\u0435\u04bbj.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0430\u0435\u04bbj.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return (class_12972 != null && \u0430\u0435\u04bbj.oaj.contains(\u0430\u0435\u04bbj.a_bsm1("valueOf", valueOf(int ), (int)class_12972.method_5628())) ? 1 : 0) != 0;
|
||||
}
|
||||
|
||||
@Override
|
||||
public /* synthetic */ void onDisable() {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (\u0430\u0435\u04bbj.$_h1k3gag61ngan17ky2((long)\u0430\u0435\u04bbj.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0430\u0435\u04bbj.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
\u0430\u0435\u04bbj.x\u0430a\u0435xs();
|
||||
}
|
||||
|
||||
@\u0445\u0458\u0458h\u0445\u0430a
|
||||
public void \u0458\u0435p\u043e\u0435aa(h\u0430p\u043ee\u0440 h\u0430p\u043ee\u04402) {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (true | false) {
|
||||
}
|
||||
if (\u0430\u0435\u04bbj.$_h1k3gag71ngan17ky3((long)\u0430\u0435\u04bbj.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0430\u0435\u04bbj.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
\u0430\u0435\u04bbj.x\u0430a\u0435xs();
|
||||
}
|
||||
|
||||
@\u0445\u0458\u0458h\u0445\u0430a
|
||||
public void \u043e\u0456xhhx(\u0430\u0456i\u043ephj \u0430\u0456i\u043ephj2) {
|
||||
boolean bl;
|
||||
block11: {
|
||||
block10: {
|
||||
bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (true | false) {
|
||||
}
|
||||
if (\u0430\u0435\u04bbj.$_h1k3gag81ngan17ky4((long)\u0430\u0435\u04bbj.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0430\u0435\u04bbj.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (\u0430\u0435\u04bbj.\u0430\u0445j\u0445s\u0456\u04bb.field_1687 == null || \u0430\u0445j\u0445s\u0456\u04bb.method_1562() == null) break block10;
|
||||
if (\u0430\u0456i\u043ephj2.p\u0440\u04bb() == i\u0456\u0445\u0430\u0441p.cc\u0441) break block11;
|
||||
}
|
||||
return;
|
||||
}
|
||||
CallSite callSite = \u0430\u0435\u04bbj.a_bsm2("currentTimeMillis", currentTimeMillis());
|
||||
\u0430cos\u0445\u0441.entrySet().removeIf(arg_0 -> \u0430\u0435\u04bbj.\u0435h\u0441\u0430\u0435((long)callSite, arg_0));
|
||||
for (class_1657 class_16572 : \u0430\u0435\u04bbj.\u0430\u0445j\u0445s\u0456\u04bb.field_1687.method_18456()) {
|
||||
if (class_16572 == \u0430\u0435\u04bbj.\u0430\u0445j\u0445s\u0456\u04bb.field_1724 || oaj.contains(\u0430\u0435\u04bbj.a_bsm1("valueOf", valueOf(int ), (int)class_16572.method_5628()))) continue;
|
||||
String string = class_16572.method_7334().getName();
|
||||
if (string != null && string.chars().anyMatch(n -> {
|
||||
int n2;
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
}
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (((long)\u0430\u0435\u04bbj.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0430\u0435\u04bbj.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (((String)((Object)\u0430\u0435\u04bbj.a_bsm5("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-571196068 + 571195999, -548302663 + 548302575}, (int)(1855306087 + 295618253), (int)(-34980855 + 1038090176)))).indexOf(n) >= 0) {
|
||||
n2 = 1;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
} else {
|
||||
n2 = 0;
|
||||
}
|
||||
return n2 != 0;
|
||||
})) {
|
||||
oaj.add((Integer)((Object)\u0430\u0435\u04bbj.a_bsm1("valueOf", valueOf(int ), (int)class_16572.method_5628())));
|
||||
continue;
|
||||
}
|
||||
if (\u0430\u0445j\u0445s\u0456\u04bb.method_1562().method_2871(class_16572.method_5667()) == null) {
|
||||
oaj.add((Integer)((Object)\u0430\u0435\u04bbj.a_bsm1("valueOf", valueOf(int ), (int)class_16572.method_5628())));
|
||||
}
|
||||
if (!bl) continue;
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
}
|
||||
|
||||
@\u0445\u0458\u0458h\u0445\u0430a
|
||||
public void o\u043eec\u04bb\u0445h(\u04bbj\u0441x\u0440 \u04bbj\u0441x\u04402) {
|
||||
block16: {
|
||||
boolean bl;
|
||||
block15: {
|
||||
class_2596<?> class_25962;
|
||||
block14: {
|
||||
class_2604 class_26042;
|
||||
bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (true | false) {
|
||||
}
|
||||
if (\u0430\u0435\u04bbj.$_h1k3gag91ngan17ky5((long)\u0430\u0435\u04bbj.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0430\u0435\u04bbj.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (\u04bbj\u0441x\u04402.p\u0440\u04bb() != i\u0456\u0445\u0430\u0441p.h\u0430\u043e) {
|
||||
return;
|
||||
}
|
||||
class_2596<?> class_25963 = \u04bbj\u0441x\u04402.ciao\u0455\u0455();
|
||||
\u0430\u0435\u04bbj.a_bsm3("requireNonNull", requireNonNull(T ), class_25963);
|
||||
class_25962 = class_25963;
|
||||
int n = 0;
|
||||
while (true) {
|
||||
CallSite callSite = SwitchBootstraps.typeSwitch("typeSwitch", new Object[]{class_2703.class, class_2604.class, class_2716.class}, class_25962, n);
|
||||
if (callSite != false) {
|
||||
if (callSite != true) {
|
||||
if (callSite == 2) break block14;
|
||||
break block15;
|
||||
}
|
||||
} else {
|
||||
class_2703 class_27032 = (class_2703)class_25962;
|
||||
if (!class_27032.method_46327().contains(class_2703.class_5893.field_29136)) {
|
||||
n = 1;
|
||||
continue;
|
||||
}
|
||||
CallSite callSite2 = \u0430\u0435\u04bbj.a_bsm2("currentTimeMillis", currentTimeMillis());
|
||||
for (class_2703.class_2705 class_27052 : class_27032.method_46329()) {
|
||||
if (class_27052.comp_1107() == null || class_27052.comp_1111() == null || !class_27052.comp_1111().method_10855().isEmpty() || class_27052.comp_1110() != class_1934.field_9215) continue;
|
||||
\u0430cos\u0445\u0441.put(class_27052.comp_1107().getId(), (Long)((Object)\u0430\u0435\u04bbj.a_bsm4("valueOf", valueOf(long ), (long)callSite2)));
|
||||
}
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
break block16;
|
||||
}
|
||||
class_26042 = (class_2604)class_25962;
|
||||
if (class_26042.method_11169() == class_1299.field_6097) break;
|
||||
n = 2;
|
||||
}
|
||||
if (\u0430cos\u0445\u0441.remove(class_26042.method_11164()) != null) {
|
||||
oaj.add((Integer)((Object)\u0430\u0435\u04bbj.a_bsm1("valueOf", valueOf(int ), (int)class_26042.method_11167())));
|
||||
}
|
||||
break block16;
|
||||
}
|
||||
class_2716 class_27162 = (class_2716)class_25962;
|
||||
IntList intList = class_27162.method_36548();
|
||||
Set<Integer> set = oaj;
|
||||
\u0430\u0435\u04bbj.a_bsm3("requireNonNull", requireNonNull(T ), set);
|
||||
intList.forEach(set::remove);
|
||||
break block16;
|
||||
}
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private static /* synthetic */ boolean \u0435h\u0441\u0430\u0435(long l2, Map.Entry entry) {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (\u0430\u0435\u04bbj.$_hy8bofk1ngan17ky7((long)\u0430\u0435\u04bbj.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0430\u0435\u04bbj.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
return (\u0430\u0435\u04bbj.$_hy8bofl1ngan17ky8(l2 - (Long)entry.getValue() == 500L ? 0 : (l2 - (Long)entry.getValue() < 500L ? -1 : 1)) > 0 ? 1 : 0) != 0;
|
||||
}
|
||||
|
||||
static {
|
||||
if (System.nanoTime() == Long.MIN_VALUE) {
|
||||
throw null;
|
||||
}
|
||||
\u0440\u0441\u0445 = \u0430\u0435\u04bbj.a_fd("0x+I/KqEisx4FxshpMAG42T0OP5KOb7/MNeT3jogt/c=", "RmNQokF8c/NAW4l5/asSPQ==");
|
||||
\u0430cos\u0445\u0441 = new ConcurrentHashMap<UUID, Long>();
|
||||
oaj = Collections.newSetFromMap(new ConcurrentHashMap());
|
||||
}
|
||||
|
||||
private static /* synthetic */ String a_fd(String string, String string2) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (\u0430\u0435\u04bbj.$_hy8bofm1ngan17ky9((long)\u0430\u0435\u04bbj.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0430\u0435\u04bbj.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (string == null) {
|
||||
return null;
|
||||
}
|
||||
try {
|
||||
byte[] byArray = ((Base64.Decoder)((Object)\u0430\u0435\u04bbj.a_bsm6("getDecoder", getDecoder()))).decode(string);
|
||||
byte[] byArray2 = new byte[-391464111 + 391464127];
|
||||
\u0430\u0435\u04bbj.a_bsm7("arraycopy", arraycopy(java.lang.Object int java.lang.Object int int ), (Object)byArray, (int)0, (Object)byArray2, (int)0, (int)(-1997417513 + 1997417529));
|
||||
byte[] byArray3 = new byte[byArray.length - (-1777950530 + 1777950546)];
|
||||
\u0430\u0435\u04bbj.a_bsm7("arraycopy", arraycopy(java.lang.Object int java.lang.Object int int ), (Object)byArray, (int)(-168497957 + 168497973), (Object)byArray3, (int)0, (int)byArray3.length);
|
||||
SecretKeySpec secretKeySpec = new SecretKeySpec(((Base64.Decoder)((Object)\u0430\u0435\u04bbj.a_bsm6("getDecoder", getDecoder()))).decode(string2), "AES");
|
||||
CallSite callSite = \u0430\u0435\u04bbj.a_bsm8("getInstance", getInstance(java.lang.String ), (String)"AES/CBC/PKCS5Padding");
|
||||
((Cipher)((Object)callSite)).init(2, secretKeySpec, new IvParameterSpec(byArray2));
|
||||
return new String(((Cipher)((Object)callSite)).doFinal(byArray3), "UTF-8");
|
||||
}
|
||||
catch (Exception exception) {
|
||||
throw new IllegalStateException("Encrypted field string decode failed");
|
||||
}
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm0(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm1(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm2(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm3(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm4(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm5(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm6(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm7(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm8(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,475 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package h\u0441\u043e\u04bb\u0441\u0458\u0445;
|
||||
|
||||
import c\u0445is.hoi\u0435h\u0440;
|
||||
import c\u0445is.\u04bbj\u0441x\u0440;
|
||||
import h\u0441\u043e\u04bb\u0441\u0458\u0445.c\u0455i\u0430\u0440\u0445;
|
||||
import h\u0441\u043e\u04bb\u0441\u0458\u0445.x\u0458\u043e\u0435jo;
|
||||
import java.lang.invoke.CallSite;
|
||||
import java.lang.invoke.ConstantCallSite;
|
||||
import java.lang.invoke.MethodHandle;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.lang.invoke.MethodType;
|
||||
import net.minecraft.class_1294;
|
||||
import net.minecraft.class_1297;
|
||||
import net.minecraft.class_1309;
|
||||
import net.minecraft.class_1799;
|
||||
import net.minecraft.class_2338;
|
||||
import net.minecraft.class_238;
|
||||
import net.minecraft.class_2560;
|
||||
import net.minecraft.class_2596;
|
||||
import net.minecraft.class_2824;
|
||||
import net.minecraft.class_2828;
|
||||
import net.minecraft.class_2885;
|
||||
import net.minecraft.class_746;
|
||||
import o\u0455sio\u0440.\u0445\u0458\u0458h\u0445\u0430a;
|
||||
import spso.\u0430c\u0440;
|
||||
import spso.\u0441a\u0458p;
|
||||
import \u0435xp.h\u04bb\u0455hpa;
|
||||
import \u0435xp.o\u043ea\u0456c;
|
||||
import \u0435xp.\u043ea\u0441\u0430p;
|
||||
import \u0440expho.p\u043eo;
|
||||
import \u0440o\u0456\u0445o.\u0445\u0440\u0430\u0435\u0445\u043e;
|
||||
import \u0441j\u0455\u0440.o\u0440\u0455\u0441\u0456;
|
||||
import \u0441\u0445o.\u0458op\u0430\u0441;
|
||||
import \u0445eo.c\u0455pi;
|
||||
import \u0445eo.\u0456p\u0430\u043e\u0458\u043e;
|
||||
import \u0445eo.\u0458i\u0456x;
|
||||
import \u0458\u0458\u0458o\u0430\u0456.e\u0445\u0440\u0440a;
|
||||
|
||||
@\u0456p\u0430\u043e\u0458\u043e(sp\u0456p\u0445\u0435="Criticals", a\u0456j\u0430\u0455\u04bb="Crit", s\u0455cj=\u0458i\u0456x.COMBAT)
|
||||
public class \u0441px
|
||||
extends c\u0455pi {
|
||||
public final /* synthetic */ o\u043ea\u0456c \u0441\u0445e\u0440xj\u0440;
|
||||
private final /* synthetic */ \u043ea\u0441\u0430p j\u0440\u0430\u04bb\u043e\u0445;
|
||||
private final /* synthetic */ h\u04bb\u0455hpa a\u0456\u0456\u043eex\u0455;
|
||||
private final /* synthetic */ \u043ea\u0441\u0430p \u0458i\u0441;
|
||||
private /* synthetic */ float sec\u0430;
|
||||
private /* synthetic */ boolean so\u0445;
|
||||
private /* synthetic */ boolean \u0455\u0455\u0440\u043e\u0456e\u043e;
|
||||
private /* synthetic */ int \u0455ix;
|
||||
private static /* synthetic */ int __js_dispatch_state = 0;
|
||||
|
||||
public \u0441px() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (\u0441px.$_h1ko0lm1ngan17l3c((long)\u0441px.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0441px.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
this.\u0441\u0445e\u0440xj\u0440 = ((\u0430c\u0440)((Object)\u0441px.a_bsm2("\u04bboo\u04bb", \u04bboo\u04bb(spso.\u0441a\u0458p java.lang.String ), (\u0441a\u0458p)this, (String)((Object)\u0441px.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-67295446 + 67295362, -1470773672 + 1470773655, -771080771 + 771080794, -473195164 + 473195273}, (int)(749867909 + 1277060427), (int)(1859002355 + 1710666961)))))).\u0455iaip\u0458e(new String[]{\u0441px.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-1959655886 + 1959655993, -187265285 + 187265177, -769576681 + 769576691, -1723449049 + 1723449089, -835357606 + 835357543}, (int)(748460836 + 1218632219), (int)(1494794508 + 1081006202)), \u0441px.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-1048535749 + 1048535691, -785919323 + 785919248, -2076084803 + 2076084818, -2051025504 + 2051025399}, (int)(1563184679 + 1389650393), (int)(449514168 + 1853259401))}).\u0458c\u0456\u0440().getModeValue();
|
||||
byte[] byArray = new byte[-850534027 + 850534036];
|
||||
byArray[0] = -1803752853 + 1803752957;
|
||||
byArray[1] = -2096319913 + 2096320020;
|
||||
byArray[2] = -1095618561 + 1095618681;
|
||||
byArray[3] = 4;
|
||||
byArray[4] = -2087484666 + 2087484686;
|
||||
byArray[5] = -221385507 + 221385496;
|
||||
byArray[-1084886905 + 1084886911] = -493031294 + 493031221;
|
||||
byArray[-1305363879 + 1305363886] = -323226497 + 323226487;
|
||||
byArray[-1688820072 + 1688820080] = -278315136 + 278315050;
|
||||
this.j\u0440\u0430\u04bb\u043e\u0445 = ((\u0430c\u0440)((Object)\u0441px.a_bsm2("\u04bboo\u04bb", \u04bboo\u04bb(spso.\u0441a\u0458p java.lang.String ), (\u0441a\u0458p)this, (String)((Object)\u0441px.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray, (int)(-1942831351 + 1518872497), (int)(-1884170633 + 191415459)))))).p\u0441\u0445(() -> {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
}
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (((long)\u0441px.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0441px.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
return \u0441px.a_bsm14("valueOf", valueOf(boolean ), (boolean)this.\u0441\u0445e\u0440xj\u0440.cip((String)((Object)\u0441px.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-2069341904 + 2069341974, -70988417 + 70988321, -1518844340 + 1518844212, -10533315 + 10533249, -790720165 + 790720126}, (int)(-994058795 + 966533254), (int)(-287207914 + 1579269868)))));
|
||||
}).s\u0458\u0458a(1.0f).x\u0455heah\u0445(1.0f).\u043ecxi\u0455(1.0f).a\u0455\u0445\u0435c(3.0f).\u0458c\u0456\u0440().getFloatValue();
|
||||
byte[] byArray2 = new byte[-818750431 + 818750443];
|
||||
byArray2[0] = -146351099 + 146351219;
|
||||
byArray2[1] = -1465173397 + 1465173449;
|
||||
byArray2[2] = -1432666427 + 1432666477;
|
||||
byArray2[3] = -1921311847 + 1921311964;
|
||||
byArray2[4] = -1691136599 + 1691136651;
|
||||
byArray2[5] = -414478989 + 414479082;
|
||||
byArray2[-450240481 + 450240487] = -1089725082 + 1089725169;
|
||||
byArray2[-1848719637 + 1848719644] = -556511623 + 0x212BB1B1;
|
||||
byArray2[-1744967040 + 1744967048] = -357407644 + 357407762;
|
||||
byArray2[-8723693 + 8723702] = -1894383717 + 1894383729;
|
||||
byArray2[-912444265 + 912444275] = 4;
|
||||
byArray2[-100129139 + 100129150] = -1764705385 + 1764705307;
|
||||
this.a\u0456\u0456\u043eex\u0455 = ((\u0430c\u0440)((Object)\u0441px.a_bsm2("\u04bboo\u04bb", \u04bboo\u04bb(spso.\u0441a\u0458p java.lang.String ), (\u0441a\u0458p)this, (String)((Object)\u0441px.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray2, (int)(-1885150957 + 1833769948), (int)(1018039811 + 1311210705)))))).p\u0441\u0445(() -> {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (((long)\u0441px.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0441px.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
return \u0441px.a_bsm14("valueOf", valueOf(boolean ), (boolean)this.\u0441\u0445e\u0440xj\u0440.cip((String)((Object)\u0441px.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-488556518 + 488556408, -505360411 + 505360289, -813127844 + 813127737, -808735832 + 808735804, -26372396 + 26372425}, (int)(1269010192 + 1262028748), (int)(1012004352 + 1126205809)))));
|
||||
}).\u0455xi\u0440(false).\u0458c\u0456\u0440().getBooleanValue();
|
||||
byte[] byArray3 = new byte[-1673243512 + 1673243523];
|
||||
byArray3[0] = -853237658 + 853237751;
|
||||
byArray3[1] = -1905099293 + 1905099339;
|
||||
byArray3[2] = -299161839 + 299161946;
|
||||
byArray3[3] = -292038383 + 292038361;
|
||||
byArray3[4] = -1188784331 + 1188784301;
|
||||
byArray3[5] = -1705222588 + 1705222570;
|
||||
byArray3[-1691471341 + 1691471347] = -459103574 + 459103644;
|
||||
byArray3[-561789829 + 561789836] = -2042739096 + 2042739203;
|
||||
byArray3[-51180906 + 51180914] = -1529064920 + 1529064933;
|
||||
byArray3[-1812491927 + 1812491936] = -1781866178 + 1781866149;
|
||||
byArray3[-1193874291 + 1193874301] = -320544822 + 320544772;
|
||||
this.\u0458i\u0441 = ((\u0430c\u0440)((Object)\u0441px.a_bsm2("\u04bboo\u04bb", \u04bboo\u04bb(spso.\u0441a\u0458p java.lang.String ), (\u0441a\u0458p)this, (String)((Object)\u0441px.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray3, (int)(976891239 + 2123598693), (int)(-36294746 + 1371676657)))))).p\u0441\u0445(() -> {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (true | false) {
|
||||
}
|
||||
if (((long)\u0441px.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0441px.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
return \u0441px.a_bsm14("valueOf", valueOf(boolean ), (boolean)this.\u0441\u0445e\u0440xj\u0440.cip((String)((Object)\u0441px.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-2042169132 + 2042169085, -909285410 + 909285387, -1213823820 + 1213823732, -726335063 + 726335051}, (int)(1416128067 + 603263513), (int)(1797408591 + 2139857758)))));
|
||||
}).s\u0458\u0458a(2.0f).x\u0455heah\u0445(1.0f).\u043ecxi\u0455(0.1f).a\u0455\u0445\u0435c(3.0f).\u0458c\u0456\u0440().getFloatValue();
|
||||
}
|
||||
|
||||
private /* synthetic */ void x\u0430a\u0435xs() {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (\u0441px.$_h1ko0ln1ngan17l3d((long)\u0441px.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0441px.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.\u0455\u0455\u0440\u043e\u0456e\u043e = true;
|
||||
this.so\u0445 = true;
|
||||
this.\u0455ix = (int)this.j\u0440\u0430\u04bb\u043e\u0445.axpacc();
|
||||
}
|
||||
|
||||
@\u0445\u0458\u0458h\u0445\u0430a
|
||||
public void o\u043eec\u04bb\u0445h(\u04bbj\u0441x\u0440 \u04bbj\u0441x\u04402) {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
}
|
||||
if (true | false) {
|
||||
}
|
||||
if (\u0441px.$_h1ko0lo1ngan17l3e((long)\u0441px.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0441px.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (this.\u0441\u0456\u04bba() || \u0441px.\u0430\u0445j\u0445s\u0456\u04bb.field_1724 == null) {
|
||||
this.x\u0430a\u0435xs();
|
||||
return;
|
||||
}
|
||||
if (\u0441px.$_h1ko0lp1ngan17l3f(this.\u0455ix == this.j\u0440\u0430\u04bb\u043e\u0445.axpacc() ? 0 : (this.\u0455ix > this.j\u0440\u0430\u04bb\u043e\u0445.axpacc() ? 1 : -1)) >= 0) {
|
||||
this.so\u0445 = true;
|
||||
if (\u04bbj\u0441x\u04402.ciao\u0455\u0455() instanceof class_2828) {
|
||||
this.so\u0445 = false;
|
||||
this.\u0455ix = 0;
|
||||
}
|
||||
}
|
||||
if (this.so\u0445) {
|
||||
return;
|
||||
}
|
||||
if (!(\u04bbj\u0441x\u04402.ciao\u0455\u0455() instanceof class_2885) && !(\u04bbj\u0441x\u04402.ciao\u0455\u0455() instanceof class_2824)) {
|
||||
return;
|
||||
}
|
||||
\u04bbj\u0441x\u04402.setCancelled(true);
|
||||
e\u0445\u0440\u0440a e\u0445\u0440\u0440a2 = \u0441px.a_bsm3("cjxco\u0430a", cjxco\u0430a()) != false ? \u0458op\u0430\u0441.\u0445\u0456\u0455 : new e\u0445\u0440\u0440a(\u0441px.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_36454(), \u0441px.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_36455());
|
||||
float f = e\u0445\u0440\u0440a2.jo\u0456c\u043e\u0440() - \u0441px.a_bsm4("e\u0456\u043ee\u0455", e\u0456\u043ee\u0455(float float ), (float)0.002f, (float)0.004f);
|
||||
CallSite callSite = \u0441px.a_bsm5("\u0458x\u0435", \u0458x\u0435(float ), (float)(e\u0445\u0440\u0440a2.xpx() + \u0441px.a_bsm4("e\u0456\u043ee\u0455", e\u0456\u043ee\u0455(float float ), (float)0.002f, (float)0.004f)));
|
||||
float f2 = \u0458op\u0430\u0441.\u043e\u0445a + \u0441px.a_bsm6("method_15393", method_15393(float ), (float)(f - \u0458op\u0430\u0441.\u043e\u0445a));
|
||||
class_2828.class_2831 class_28312 = new class_2828.class_2831(f2, (float)callSite, \u0441px.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_24828());
|
||||
class_28312.field_12887 = f2;
|
||||
\u0458op\u0430\u0441.\u043e\u0445a = f2;
|
||||
this.\u0455\u0455\u0440\u043e\u0456e\u043e = true;
|
||||
\u0441px.a_bsm7("\u04bb\u0456\u0458\u043ec", \u04bb\u0456\u0458\u043ec(net.minecraft.class_2596<?> ), (class_2596)class_28312);
|
||||
\u0441px.a_bsm7("\u04bb\u0456\u0458\u043ec", \u04bb\u0456\u0458\u043ec(net.minecraft.class_2596<?> ), \u04bbj\u0441x\u04402.ciao\u0455\u0455());
|
||||
}
|
||||
|
||||
@\u0445\u0458\u0458h\u0445\u0430a(\u0435o\u0435x\u0445s=4)
|
||||
public void \u04bbo\u0435(hoi\u0435h\u0440 hoi\u0435h\u04402) {
|
||||
block13: {
|
||||
block12: {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
}
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (\u0441px.$_h1ko0lq1ngan17l3g((long)\u0441px.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0441px.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (\u0441px.\u0430\u0445j\u0445s\u0456\u04bb.field_1724 == null) break block12;
|
||||
if (!this.\u0441\u0456\u04bba()) break block13;
|
||||
}
|
||||
return;
|
||||
}
|
||||
if (++this.\u0455ix == (int)this.j\u0440\u0430\u04bb\u043e\u0445.axpacc()) {
|
||||
if (!this.\u0455\u0455\u0440\u043e\u0456e\u043e) {
|
||||
\u0441px.a_bsm7("\u04bb\u0456\u0458\u043ec", \u04bb\u0456\u0458\u043ec(net.minecraft.class_2596<?> ), (class_2596)new class_2828.class_5911(\u0441px.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_24828()));
|
||||
} else {
|
||||
this.\u0455\u0455\u0440\u043e\u0456e\u043e = false;
|
||||
}
|
||||
}
|
||||
if (!this.so\u0445) {
|
||||
hoi\u0435h\u04402.setCancelled(true);
|
||||
}
|
||||
}
|
||||
|
||||
public /* synthetic */ boolean \u0441\u0456\u04bba() {
|
||||
int n;
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (\u0441px.$_h1ko0lr1ngan17l3h((long)\u0441px.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0441px.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (\u0441px.\u0430\u0445j\u0445s\u0456\u04bb.field_1724 == null || c\u0455i\u0430\u0440\u0445.ejih == null || this.\u0441\u0445e\u0440xj\u0440.cip((String)((Object)\u0441px.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-1062360537 + 1062360418, -1096343005 + 1096342972, -1796695335 + 1796695304, -121945829 + 121945739}, (int)(463976355 + 1815924800), (int)(1947499428 + 86637978))))) {
|
||||
return 1 != 0;
|
||||
}
|
||||
if (this.\u0455\u0445i(false) || x\u0458\u043e\u0435jo.c\u0458\u0445\u0456\u0441\u0440) {
|
||||
return 1 != 0;
|
||||
}
|
||||
if (\u0441px.$_h1ko0ls1ngan17l3i(c\u0455i\u0430\u0440\u0445.ejih.method_5858((class_1297)\u0441px.\u0430\u0445j\u0445s\u0456\u04bb.field_1724) == 9.0 ? 0 : (c\u0455i\u0430\u0440\u0445.ejih.method_5858((class_1297)\u0441px.\u0430\u0445j\u0445s\u0456\u04bb.field_1724) > 9.0 ? 1 : -1)) > 0) {
|
||||
return 1 != 0;
|
||||
}
|
||||
if (((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)\u0441px.a_bsm8("jaa\u0435\u0445c", jaa\u0435\u0445c()))).\u0430o\u0441\u0456p\u0455().\u0441c\u0458\u043e\u0430(p\u043eo.class).\u0440\u0435\u0455x\u0435xe()) {
|
||||
return 1 != 0;
|
||||
}
|
||||
boolean bl2 = this.a\u0456\u0456\u043eex\u0455.axpacc();
|
||||
if (bl2) {
|
||||
if (\u0441px.$_h1ko0me1ngan17l3j(\u0441px.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.field_6017 == 0.0f ? 0 : (\u0441px.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.field_6017 < 0.0f ? -1 : 1)) <= 0) {
|
||||
n = 1;
|
||||
} else {
|
||||
n = 0;
|
||||
if (0 != 0) {
|
||||
if (0 != 1) {
|
||||
if (0 != 2) {
|
||||
// empty if block
|
||||
}
|
||||
} else if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
}
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
n = \u0441px.$_h1ko0mf1ngan17l3k(\u0441px.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_18798().field_1351 == -0.08 ? 0 : (\u0441px.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_18798().field_1351 > -0.08 ? 1 : -1)) > 0 ? 1 : 0;
|
||||
}
|
||||
return n != 0;
|
||||
}
|
||||
|
||||
public /* synthetic */ boolean \u0455\u0445i(boolean bl) {
|
||||
boolean bl2 = false;
|
||||
if (bl2) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (\u0441px.$_h1ko0mg1ngan17l3l((long)\u0441px.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0441px.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (\u0441px.\u0430\u0445j\u0445s\u0456\u04bb.field_1724 == null) {
|
||||
return 1 != 0;
|
||||
}
|
||||
if (\u0441px.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_6059(class_1294.field_5902) || \u0441px.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_6059(class_1294.field_5919) || \u0441px.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_6059(class_1294.field_5906)) {
|
||||
return 1 != 0;
|
||||
}
|
||||
if (\u0441px.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_6101() || \u0441px.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_5740() || \u0441px.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_5765() || \u0441px.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_31549().field_7479 || \u0441px.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_5799()) {
|
||||
return 1 != 0;
|
||||
}
|
||||
if (!bl && \u0441px.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_24828()) {
|
||||
return 1 != 0;
|
||||
}
|
||||
return (this.\u0435a\u0458o\u04bb\u0440\u0455() ? 1 : 0) != 0;
|
||||
}
|
||||
|
||||
/*
|
||||
* WARNING - void declaration
|
||||
*/
|
||||
private /* synthetic */ boolean \u0435a\u0458o\u04bb\u0440\u0455() {
|
||||
void var2_4;
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (\u0441px.$_h1ko0mh1ngan17l3m((long)\u0441px.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0441px.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (\u0441px.\u0430\u0445j\u0445s\u0456\u04bb.field_1724 == null || \u0441px.\u0430\u0445j\u0445s\u0456\u04bb.field_1687 == null) {
|
||||
return 0 != 0;
|
||||
}
|
||||
class_238 class_2383 = \u0441px.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_5829();
|
||||
CallSite callSite = \u0441px.a_bsm9("method_15357", method_15357(double ), (double)class_2383.field_1323);
|
||||
while (var2_4 < \u0441px.a_bsm10("method_15384", method_15384(double ), (double)class_2383.field_1320)) {
|
||||
for (reference var3_5 = \u0441px.a_bsm9("method_15357", method_15357(double ), (double)class_2383.field_1322); var3_5 < \u0441px.a_bsm10("method_15384", method_15384(double ), (double)class_2383.field_1325); ++var3_5) {
|
||||
for (reference var4_6 = \u0441px.a_bsm9("method_15357", method_15357(double ), (double)class_2383.field_1321); var4_6 < \u0441px.a_bsm10("method_15384", method_15384(double ), (double)class_2383.field_1324); ++var4_6) {
|
||||
if (!(\u0441px.\u0430\u0445j\u0445s\u0456\u04bb.field_1687.method_8320(new class_2338((int)var2_4, (int)var3_5, (int)var4_6)).method_26204() instanceof class_2560)) continue;
|
||||
return 1 != 0;
|
||||
}
|
||||
if (!bl) continue;
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
++var2_4;
|
||||
}
|
||||
return 0 != 0;
|
||||
}
|
||||
|
||||
private /* synthetic */ float pae\u0441\u0456o\u0445() {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (\u0441px.$_h1ko0mi1ngan17l3n((long)\u0441px.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0441px.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (\u0441px.\u0430\u0445j\u0445s\u0456\u04bb.field_1724 == null) {
|
||||
return -1.0f;
|
||||
}
|
||||
CallSite callSite = \u0441px.a_bsm11("\u0458\u0458o\u0456\u0430", \u0458\u0458o\u0456\u0430(net.minecraft.class_1799 ), (class_1799)\u0441px.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_6047());
|
||||
float f = \u0441px.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_7261(0.5f);
|
||||
reference var3_4 = callSite * (0.2f + f * f * 0.8f);
|
||||
if (!this.\u0455\u0445i(false) && \u0441px.$_h1ko0mj1ngan17l3o(\u0441px.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_18798().field_1351 == -0.08 ? 0 : (\u0441px.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_18798().field_1351 < -0.08 ? -1 : 1)) < 0) {
|
||||
var3_4 *= 1.5f;
|
||||
}
|
||||
return (float)var3_4;
|
||||
}
|
||||
|
||||
public /* synthetic */ boolean \u04bb\u0440\u0441\u0440\u0456\u04bbp(class_1297 class_12972) {
|
||||
float f;
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (\u0441px.$_h1ko0mk1ngan17l3p((long)\u0441px.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0441px.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (!this.\u0440\u0435\u0455x\u0435xe() || !this.\u0441\u0445e\u0440xj\u0440.cip((String)((Object)\u0441px.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-1021189052 + 1021189030, -1573768195 + 1573768126, -1658965949 + 1658965891, -1749096657 + 1749096643}, (int)(1089154507 + 654850599), (int)(-1803268619 + 446914866)))) || \u0441px.\u0430\u0445j\u0445s\u0456\u04bb.field_1724 == null) {
|
||||
return 0 != 0;
|
||||
}
|
||||
if (\u0441px.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_6128() || \u0441px.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_5765() || \u0441px.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_5799() || \u0441px.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_6101()) {
|
||||
return 0 != 0;
|
||||
}
|
||||
if (!(class_12972 instanceof class_1309)) {
|
||||
return 0 != 0;
|
||||
}
|
||||
class_1309 class_13092 = (class_1309)class_12972;
|
||||
float f2 = this.pae\u0441\u0456o\u0445();
|
||||
if (class_13092.field_6235 > 0 && \u0441px.$_h1ko0ml1ngan17l3q(f2 == this.sec\u0430 ? 0 : (f2 < this.sec\u0430 ? -1 : 1)) <= 0) {
|
||||
return 0 != 0;
|
||||
}
|
||||
if (this.\u0455\u0445i(false)) {
|
||||
return 0 != 0;
|
||||
}
|
||||
double d = \u0441px.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_18798().field_1351;
|
||||
if (\u0441px.$_h1ko0mm1ngan17l3r(d == -0.08 ? 0 : (d < -0.08 ? -1 : 1)) < 0) {
|
||||
this.sec\u0430 = f2;
|
||||
return 0 != 0;
|
||||
}
|
||||
CallSite callSite = \u0441px.a_bsm12("max", max(float float ), (float)0.0f, (float)((0.95f - \u0441px.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_7261(0.5f)) * \u0441px.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_7279()));
|
||||
CallSite callSite2 = \u0441px.a_bsm12("max", max(float float ), (float)callSite, (float)(f = (float)(d / 0.08)));
|
||||
if (\u0441px.$_h1ko0mn1ngan17l3s((float)callSite2 == this.\u0458i\u0441.axpacc() ? 0 : ((float)callSite2 > this.\u0458i\u0441.axpacc() ? 1 : -1)) > 0) {
|
||||
return 0 != 0;
|
||||
}
|
||||
return (((o\u0440\u0455\u0441\u0456)((Object)\u0441px.a_bsm13("xi\u0458i\u0435es", xi\u0458i\u0435es(net.minecraft.class_746 ), (class_746)\u0441px.\u0430\u0445j\u0445s\u0456\u04bb.field_1724))).\u043e\u0456\u0430((int)(callSite2 * 1.3f)) == null ? 1 : 0) != 0;
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm0(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm1(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm2(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm3(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm4(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm5(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm6(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm7(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm8(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm9(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm10(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm11(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm12(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm13(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm14(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,197 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package h\u0441\u043e\u04bb\u0441\u0458\u0445;
|
||||
|
||||
import c\u0445is.\u0430\u0456i\u043ephj;
|
||||
import c\u0445is.\u043eo\u0435;
|
||||
import ie\u0441\u0430ej.\u0456oc;
|
||||
import java.lang.invoke.CallSite;
|
||||
import java.lang.invoke.ConstantCallSite;
|
||||
import java.lang.invoke.MethodHandle;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.lang.invoke.MethodType;
|
||||
import net.minecraft.class_1268;
|
||||
import net.minecraft.class_1293;
|
||||
import net.minecraft.class_1294;
|
||||
import net.minecraft.class_1657;
|
||||
import net.minecraft.class_1799;
|
||||
import net.minecraft.class_1844;
|
||||
import net.minecraft.class_4537;
|
||||
import net.minecraft.class_9334;
|
||||
import o\u0455sio\u0440.\u0445\u0458\u0458h\u0445\u0430a;
|
||||
import spso.\u0430c\u0440;
|
||||
import spso.\u0441a\u0458p;
|
||||
import \u0435xp.\u043ea\u0441\u0430p;
|
||||
import \u043e\u0445\u0440\u0430ose.i\u0456\u0445\u0430\u0441p;
|
||||
import \u0441\u0445o.jax\u0458\u0435\u0458;
|
||||
import \u0441\u0445o.\u0458op\u0430\u0441;
|
||||
import \u0445eo.c\u0455pi;
|
||||
import \u0445eo.\u0456p\u0430\u043e\u0458\u043e;
|
||||
import \u0445eo.\u0458i\u0456x;
|
||||
import \u0458\u0458\u0458o\u0430\u0456.e\u0445\u0440\u0440a;
|
||||
|
||||
@\u0456p\u0430\u043e\u0458\u043e(sp\u0456p\u0445\u0435="AutoPots", a\u0456j\u0430\u0455\u04bb="Automatically throws beneficial potions", s\u0455cj=\u0458i\u0456x.COMBAT)
|
||||
public class \u0441\u0458\u0435xpp
|
||||
extends c\u0455pi {
|
||||
private final /* synthetic */ \u043ea\u0441\u0430p exh\u0458\u0440;
|
||||
private final /* synthetic */ \u043ea\u0441\u0430p \u0455x\u0456cje\u0430;
|
||||
private final /* synthetic */ \u0456oc o\u0441\u0455\u0440\u0440\u0458\u0441;
|
||||
private /* synthetic */ int eax;
|
||||
private static /* synthetic */ int __js_dispatch_state = 0;
|
||||
|
||||
public \u0441\u0458\u0435xpp() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (\u0441\u0458\u0435xpp.$_hzv4b6x1ngan17l1b((long)\u0441\u0458\u0435xpp.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0441\u0458\u0435xpp.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
this.exh\u0458\u0440 = ((\u0430c\u0440)((Object)\u0441\u0458\u0435xpp.a_bsm2("\u04bboo\u04bb", \u04bboo\u04bb(spso.\u0441a\u0458p java.lang.String ), (\u0441a\u0458p)this, (String)((Object)\u0441\u0458\u0435xpp.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-2083544043 + 2083544014, -998110432 + 998110537, -1761021573 + 1761021517, -2072961728 + 2072961677, -1241367722 + 1241367702}, (int)(1582671945 + 220316462), (int)(608962563 + 2030015816)))))).s\u0458\u0458a(500.0f).\u043ecxi\u0455(0.0f).a\u0455\u0445\u0435c(2000.0f).x\u0455heah\u0445(50.0f).\u0458c\u0456\u0440().getFloatValue();
|
||||
byte[] byArray = new byte[-329131643 + 329131657];
|
||||
byArray[0] = -1251989648 + 1251989639;
|
||||
byArray[1] = -285537898 + 285537875;
|
||||
byArray[2] = -50916688 + 50916726;
|
||||
byArray[3] = -2050656580 + 2050656501;
|
||||
byArray[4] = -1873782753 + 1873782786;
|
||||
byArray[5] = -2004188639 + 2004188738;
|
||||
byArray[-1482910106 + 1482910112] = -1453094816 + 1453094806;
|
||||
byArray[-1907211179 + 1907211186] = -631098797 + 631098877;
|
||||
byArray[-999195483 + 999195491] = -472703878 + 472703917;
|
||||
byArray[-929160420 + 929160429] = -2108504479 + 2108504498;
|
||||
byArray[-286646106 + 286646116] = -612169462 + 612169545;
|
||||
byArray[-1030472233 + 1030472244] = -910570982 + 910571037;
|
||||
byArray[-426058390 + 426058402] = -1672975739 + 1672975653;
|
||||
byArray[-993706440 + 993706453] = -1271591776 + 1271591803;
|
||||
this.\u0455x\u0456cje\u0430 = ((\u0430c\u0440)((Object)\u0441\u0458\u0435xpp.a_bsm2("\u04bboo\u04bb", \u04bboo\u04bb(spso.\u0441a\u0458p java.lang.String ), (\u0441a\u0458p)this, (String)((Object)\u0441\u0458\u0435xpp.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray, (int)(-1151968116 + 739936996), (int)(-1790825251 + 1155181886)))))).s\u0458\u0458a(180.0f).\u043ecxi\u0455(1.0f).a\u0455\u0445\u0435c(180.0f).x\u0455heah\u0445(1.0f).\u0458c\u0456\u0440().getFloatValue();
|
||||
this.o\u0441\u0455\u0440\u0440\u0458\u0441 = new \u0456oc();
|
||||
this.eax = -1;
|
||||
}
|
||||
|
||||
@\u0445\u0458\u0458h\u0445\u0430a
|
||||
public void h\u0458\u0456\u0441(\u043eo\u0435 \u043eo\u04352) {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (\u0441\u0458\u0435xpp.$_hzv4b6y1ngan17l1c((long)\u0441\u0458\u0435xpp.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0441\u0458\u0435xpp.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (\u043eo\u04352.\u0456\u0455\u0455xpa\u0455() == class_1268.field_5808 && this.eax != -1) {
|
||||
\u043eo\u04352.\u0435oo\u0458\u0445(\u0441\u0458\u0435xpp.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_31548().method_5438(this.eax));
|
||||
}
|
||||
}
|
||||
|
||||
@\u0445\u0458\u0458h\u0445\u0430a
|
||||
public void \u043e\u0456xhhx(\u0430\u0456i\u043ephj \u0430\u0456i\u043ephj2) {
|
||||
block16: {
|
||||
block15: {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
}
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (\u0441\u0458\u0435xpp.$_hzv4b6z1ngan17l1d((long)\u0441\u0458\u0435xpp.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0441\u0458\u0435xpp.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (\u0441\u0458\u0435xpp.\u0430\u0445j\u0445s\u0456\u04bb.field_1724 == null) break block15;
|
||||
if (\u0441\u0458\u0435xpp.\u0430\u0445j\u0445s\u0456\u04bb.field_1761 != null) break block16;
|
||||
}
|
||||
return;
|
||||
}
|
||||
if (\u0430\u0456i\u043ephj2.p\u0440\u04bb() == i\u0456\u0445\u0430\u0441p.cc\u0441) {
|
||||
int n = this.\u0430ehe\u0441\u0435();
|
||||
if (n != -1 && this.o\u0441\u0455\u0440\u0440\u0458\u0441.\u0430\u0456shhpx((long)this.exh\u0458\u0440.axpacc(), false)) {
|
||||
if (\u0441\u0458\u0435xpp.a_bsm3("\u0440\u0430hj", \u0440\u0430hj(\u0458\u0458\u0458o\u0430\u0456.e\u0445\u0440\u0440a double \u0441\u0445o.jax\u0458\u0435\u0458 ), (e\u0445\u0440\u0440a)new e\u0445\u0440\u0440a(\u0441\u0458\u0435xpp.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_36454(), 90.0f), (double)this.\u0455x\u0456cje\u0430.axpacc(), (jax\u0458\u0435\u0458)jax\u0458\u0435\u0458.hp\u043e\u0445p) == false) {
|
||||
return;
|
||||
}
|
||||
if (\u0458op\u0430\u0441.ia\u04bb != null && \u0441\u0458\u0435xpp.$_hzv4b701ngan17l1e(\u0458op\u0430\u0441.ia\u04bb.xpx() == 89.0f ? 0 : (\u0458op\u0430\u0441.ia\u04bb.xpx() > 89.0f ? 1 : -1)) >= 0) {
|
||||
this.eax = \u0441\u0458\u0435xpp.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_31548().field_7545;
|
||||
\u0441\u0458\u0435xpp.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_31548().field_7545 = n;
|
||||
\u0441\u0458\u0435xpp.\u0430\u0445j\u0445s\u0456\u04bb.field_1761.method_2919((class_1657)\u0441\u0458\u0435xpp.\u0430\u0445j\u0445s\u0456\u04bb.field_1724, class_1268.field_5808);
|
||||
this.o\u0441\u0455\u0440\u0440\u0458\u0441.\u0441\u0458e();
|
||||
}
|
||||
}
|
||||
} else if (\u0430\u0456i\u043ephj2.p\u0440\u04bb() == i\u0456\u0445\u0430\u0441p.\u0456\u0458ep\u0430c\u0440 && this.eax != -1) {
|
||||
\u0441\u0458\u0435xpp.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_31548().field_7545 = this.eax;
|
||||
this.eax = -1;
|
||||
}
|
||||
}
|
||||
|
||||
private /* synthetic */ int \u0430ehe\u0441\u0435() {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (true | false) {
|
||||
}
|
||||
if (\u0441\u0458\u0435xpp.$_hzv4b711ngan17l1f((long)\u0441\u0458\u0435xpp.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0441\u0458\u0435xpp.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
for (int i = 0; i < -1338334380 + 1338334389; ++i) {
|
||||
class_1844 class_18442;
|
||||
class_1799 class_17992 = \u0441\u0458\u0435xpp.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_31548().method_5438(i);
|
||||
if (class_17992.method_7960() || !(class_17992.method_7909() instanceof class_4537) || (class_18442 = (class_1844)class_17992.method_57824(class_9334.field_49651)) == null) continue;
|
||||
for (class_1293 class_12932 : class_18442.method_57397()) {
|
||||
if (this.\u0435x\u0455(class_12932)) {
|
||||
return i;
|
||||
}
|
||||
if (0 != 0 && (0 == 1 || 0 == 2) || !bl) continue;
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
|
||||
private /* synthetic */ boolean \u0435x\u0455(class_1293 class_12932) {
|
||||
int n;
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (true | false) {
|
||||
}
|
||||
if (\u0441\u0458\u0435xpp.$_hzv4b721ngan17l1g((long)\u0441\u0458\u0435xpp.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0441\u0458\u0435xpp.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (class_12932.method_5579().comp_349() == class_1294.field_5915.comp_349() || class_12932.method_5579().comp_349() == class_1294.field_5924.comp_349() || class_12932.method_5579().comp_349() == class_1294.field_5898.comp_349() || class_12932.method_5579().comp_349() == class_1294.field_5907.comp_349() || class_12932.method_5579().comp_349() == class_1294.field_5918.comp_349()) {
|
||||
n = 1;
|
||||
if (0 != 0 && 0 != 1 && 0 != 2) {
|
||||
// empty if block
|
||||
}
|
||||
} else {
|
||||
n = 0;
|
||||
}
|
||||
return n != 0;
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm0(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm1(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm2(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm3(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,102 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package h\u0441\u043e\u04bb\u0441\u0458\u0445;
|
||||
|
||||
import c\u0445is.\u0430j\u0445;
|
||||
import java.lang.invoke.CallSite;
|
||||
import java.lang.invoke.ConstantCallSite;
|
||||
import java.lang.invoke.MethodHandle;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.lang.invoke.MethodType;
|
||||
import java.util.Optional;
|
||||
import net.minecraft.class_1297;
|
||||
import net.minecraft.class_1511;
|
||||
import net.minecraft.class_239;
|
||||
import net.minecraft.class_3966;
|
||||
import o\u0455sio\u0440.\u0445\u0458\u0458h\u0445\u0430a;
|
||||
import \u043e\u0445\u0440\u0430ose.i\u0456\u0445\u0430\u0441p;
|
||||
import \u0440expho.a\u0430\u0455se;
|
||||
import \u0440expho.\u0435oi\u043e;
|
||||
import \u0440o\u0456\u0445o.\u0445\u0440\u0430\u0435\u0445\u043e;
|
||||
import \u0441\u0445o.jax\u0458\u0435\u0458;
|
||||
import \u0445eo.c\u0455pi;
|
||||
import \u0445eo.\u0456p\u0430\u043e\u0458\u043e;
|
||||
import \u0445eo.\u0458i\u0456x;
|
||||
import \u0458\u0458\u0458o\u0430\u0456.e\u0445\u0440\u0440a;
|
||||
|
||||
@\u0456p\u0430\u043e\u0458\u043e(sp\u0456p\u0445\u0435="CrystalAura", s\u0455cj=\u0458i\u0456x.COMBAT, a\u0456j\u0430\u0455\u04bb="Automatically attacks end crystals")
|
||||
public class \u0455\u0458\u0456
|
||||
extends c\u0455pi {
|
||||
private static /* synthetic */ int __js_dispatch_state = 0;
|
||||
|
||||
public \u0455\u0458\u0456() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (\u0455\u0458\u0456.$_h1pdzob61ngan17l1i((long)\u0455\u0458\u0456.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0455\u0458\u0456.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
}
|
||||
|
||||
@\u0445\u0458\u0458h\u0445\u0430a
|
||||
public void h\u0435\u04bbcj\u04bb(\u0430j\u0445 \u0430j\u04452) {
|
||||
Optional<class_1297> optional;
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (\u0455\u0458\u0456.$_h1pdzob71ngan17l1j((long)\u0455\u0458\u0456.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0455\u0458\u0456.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if ((\u0430j\u04452.p\u0440\u04bb() == i\u0456\u0445\u0430\u0441p.cc\u0441 && \u0455\u0458\u0456.\u0430\u0445j\u0445s\u0456\u04bb.field_1724 != null && \u0455\u0458\u0456.\u0430\u0445j\u0445s\u0456\u04bb.field_1687 != null || ((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)\u0455\u0458\u0456.a_bsm1("jaa\u0435\u0445c", jaa\u0435\u0445c()))).\u0430o\u0441\u0456p\u0455().\u0441c\u0458\u043e\u0430(\u0435oi\u043e.class).\u0440\u0435\u0455x\u0435xe() || ((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)\u0455\u0458\u0456.a_bsm1("jaa\u0435\u0445c", jaa\u0435\u0445c()))).\u0430o\u0441\u0456p\u0455().\u0441c\u0458\u043e\u0430(a\u0430\u0455se.class).\u0440\u0435\u0455x\u0435xe()) && (optional = \u0455\u0458\u0456.a_bsm2("stream", stream(java.util.Spliterator<T> boolean ), \u0455\u0458\u0456.\u0430\u0445j\u0445s\u0456\u04bb.field_1687.method_18112().spliterator(), (boolean)true).filter(class_12972 -> {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (((long)\u0455\u0458\u0456.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0455\u0458\u0456.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
return (class_12972 instanceof class_1511 && class_12972.method_5805() && \u0455\u0458\u0456.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_6057(class_12972) && (class_12972.method_5829().method_49271(\u0455\u0458\u0456.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_33571()) == 9.0 ? 0 : (class_12972.method_5829().method_49271(\u0455\u0458\u0456.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_33571()) < 9.0 ? -1 : 1)) <= 0 ? 1 : 0) != 0;
|
||||
}).findAny()).isPresent()) {
|
||||
class_3966 class_39662;
|
||||
class_1297 class_12973 = optional.get();
|
||||
CallSite callSite = \u0455\u0458\u0456.a_bsm3("x\u0445p", x\u0445p(net.minecraft.class_1297 ), (class_1297)class_12973);
|
||||
\u0455\u0458\u0456.a_bsm4("\u0440\u0430hj", \u0440\u0430hj(\u0458\u0458\u0458o\u0430\u0456.e\u0445\u0440\u0440a double \u0441\u0445o.jax\u0458\u0435\u0458 ), (e\u0445\u0440\u0440a)((Object)callSite), (double)180.0, (jax\u0458\u0435\u0458)jax\u0458\u0435\u0458.pp\u0435c);
|
||||
class_239 class_2392 = \u0455\u0458\u0456.\u0430\u0445j\u0445s\u0456\u04bb.field_1765;
|
||||
if (class_2392 instanceof class_3966 && (class_39662 = (class_3966)class_2392).method_17782().method_5779(class_12973)) {
|
||||
\u0455\u0458\u0456.a_bsm5("haho\u0441\u0458", haho\u0441\u0458(net.minecraft.class_1297 ), (class_1297)class_12973);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm0(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm1(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm2(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm3(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm4(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm5(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,472 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package h\u0441\u043e\u04bb\u0441\u0458\u0445;
|
||||
|
||||
import c\u0445is.ex\u0441s\u04bbp\u0435;
|
||||
import c\u0445is.h\u0430p\u043ee\u0440;
|
||||
import c\u0445is.i\u0456o\u0430\u0435o;
|
||||
import c\u0445is.\u0430j\u0445;
|
||||
import c\u0445is.\u04bbj\u0441x\u0440;
|
||||
import h\u0441\u043e\u04bb\u0441\u0458\u0445.x\u0458\u043e\u0435jo;
|
||||
import h\u0441\u043e\u04bb\u0441\u0458\u0445.\u0445xp;
|
||||
import java.lang.invoke.CallSite;
|
||||
import java.lang.invoke.ConstantCallSite;
|
||||
import java.lang.invoke.MethodHandle;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.lang.invoke.MethodType;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
import java.util.concurrent.ConcurrentLinkedQueue;
|
||||
import net.minecraft.class_1297;
|
||||
import net.minecraft.class_1309;
|
||||
import net.minecraft.class_1657;
|
||||
import net.minecraft.class_1937;
|
||||
import net.minecraft.class_238;
|
||||
import net.minecraft.class_243;
|
||||
import net.minecraft.class_2547;
|
||||
import net.minecraft.class_2596;
|
||||
import net.minecraft.class_2658;
|
||||
import net.minecraft.class_2661;
|
||||
import net.minecraft.class_2663;
|
||||
import net.minecraft.class_2672;
|
||||
import net.minecraft.class_2673;
|
||||
import net.minecraft.class_2676;
|
||||
import net.minecraft.class_2684;
|
||||
import net.minecraft.class_2708;
|
||||
import net.minecraft.class_2716;
|
||||
import net.minecraft.class_2743;
|
||||
import net.minecraft.class_2749;
|
||||
import net.minecraft.class_2761;
|
||||
import net.minecraft.class_2767;
|
||||
import net.minecraft.class_2777;
|
||||
import net.minecraft.class_3417;
|
||||
import net.minecraft.class_4587;
|
||||
import net.minecraft.class_7439;
|
||||
import net.minecraft.class_8143;
|
||||
import o\u0455sio\u0440.\u0445\u0458\u0458h\u0445\u0430a;
|
||||
import spso.\u0430c\u0440;
|
||||
import spso.\u0441a\u0458p;
|
||||
import \u0435xp.h\u04bb\u0455hpa;
|
||||
import \u0435xp.\u043ea\u0441\u0430p;
|
||||
import \u043e\u0445\u0440\u0430ose.i\u0456\u0445\u0430\u0441p;
|
||||
import \u0445eo.c\u0455pi;
|
||||
import \u0445eo.\u0456p\u0430\u043e\u0458\u043e;
|
||||
import \u0445eo.\u0458i\u0456x;
|
||||
|
||||
@\u0456p\u0430\u043e\u0458\u043e(sp\u0456p\u0445\u0435="BackTrack", a\u0456j\u0430\u0455\u04bb="BackTrack", s\u0455cj=\u0458i\u0456x.COMBAT)
|
||||
public class \u0456\u0456o
|
||||
extends c\u0455pi {
|
||||
private final /* synthetic */ h\u04bb\u0455hpa scex\u0455\u0430\u0430;
|
||||
private final /* synthetic */ \u043ea\u0441\u0430p p\u0455cs\u04bb\u0440;
|
||||
private final /* synthetic */ \u043ea\u0441\u0430p p\u0435c\u043e\u043e\u0445;
|
||||
private final /* synthetic */ \u043ea\u0441\u0430p \u0455ox\u0456\u0430;
|
||||
private final /* synthetic */ \u043ea\u0441\u0430p \u0440xexsih;
|
||||
private final /* synthetic */ h\u04bb\u0455hpa o\u0458\u0458\u04bb\u0430\u0440;
|
||||
private /* synthetic */ class_1297 a\u0435j\u043e\u0441;
|
||||
private /* synthetic */ long oci\u0430;
|
||||
private final /* synthetic */ ConcurrentLinkedQueue<\u0445xp> \u0441\u0430ch;
|
||||
public final /* synthetic */ Map<class_1297, class_243> \u04bb\u0455j\u0458;
|
||||
private static /* synthetic */ int __js_dispatch_state = 0;
|
||||
|
||||
public \u0456\u0456o() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (\u0456\u0456o.$_h1i96vee1ngan17kyj((long)\u0456\u0456o.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0456\u0456o.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
byte[] byArray = new byte[-1972443704 + 1972443719];
|
||||
byArray[0] = -2020630812 + 2020630740;
|
||||
byArray[1] = -311422645 + 311422568;
|
||||
byArray[2] = -401995386 + 401995327;
|
||||
byArray[3] = -1645288537 + 1645288496;
|
||||
byArray[4] = -2128797265 + 2128797240;
|
||||
byArray[5] = -1237267993 + 1237268011;
|
||||
byArray[-1072039549 + 1072039555] = -482693488 + 482693524;
|
||||
byArray[-1516937716 + 1516937723] = -301444621 + 301444686;
|
||||
byArray[-1049688157 + 1049688165] = -1084117966 + 1084118033;
|
||||
byArray[-969918610 + 969918619] = -116477670 + 116477726;
|
||||
byArray[-1784756941 + 1784756951] = -131772566 + 131772660;
|
||||
byArray[-1832853617 + 1832853628] = -1991102618 + 1991102610;
|
||||
byArray[-2094864223 + 2094864235] = -1629569619 + 1629569532;
|
||||
byArray[-488128626 + 488128639] = -1098819130 + 1098819037;
|
||||
byArray[-1540356971 + 1540356985] = -210309273 + 210309174;
|
||||
this.scex\u0455\u0430\u0430 = ((\u0430c\u0440)((Object)\u0456\u0456o.a_bsm2("\u04bboo\u04bb", \u04bboo\u04bb(spso.\u0441a\u0458p java.lang.String ), (\u0441a\u0458p)this, (String)((Object)\u0456\u0456o.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray, (int)(1731238250 + 1618488894), (int)(973563841 + 232644644)))))).\u0455xi\u0440(false).\u0458c\u0456\u0440().getBooleanValue();
|
||||
this.p\u0455cs\u04bb\u0440 = ((\u0430c\u0440)((Object)\u0456\u0456o.a_bsm2("\u04bboo\u04bb", \u04bboo\u04bb(spso.\u0441a\u0458p java.lang.String ), (\u0441a\u0458p)this, (String)((Object)\u0456\u0456o.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-1617357245 + 1617357289, -53035730 + 53035783, -940961261 + 940961249, -1787644423 + 1787644490, -319160109 + 319160222}, (int)(1633937356 + 1135721800), (int)(400441855 + 532805024)))))).s\u0458\u0458a(200.0f).x\u0455heah\u0445(1.0f).\u043ecxi\u0455(50.0f).a\u0455\u0445\u0435c(1000.0f).\u0458c\u0456\u0440().getFloatValue();
|
||||
byte[] byArray2 = new byte[-68300765 + 68300774];
|
||||
byArray2[0] = -1758565491 + 1758565504;
|
||||
byArray2[1] = -1521822381 + 1521822347;
|
||||
byArray2[2] = -313466537 + 313466581;
|
||||
byArray2[3] = -1348035015 + 1348034902;
|
||||
byArray2[4] = -281289483 + 281289507;
|
||||
byArray2[5] = -1607949883 + 1607949948;
|
||||
byArray2[-1815826102 + 1815826108] = -1664493261 + 1664493293;
|
||||
byArray2[-173195538 + 173195545] = -1847527428 + 1847527523;
|
||||
byArray2[-1104654531 + 1104654539] = -833090784 + 833090888;
|
||||
this.p\u0435c\u043e\u043e\u0445 = ((\u0430c\u0440)((Object)\u0456\u0456o.a_bsm2("\u04bboo\u04bb", \u04bboo\u04bb(spso.\u0441a\u0458p java.lang.String ), (\u0441a\u0458p)this, (String)((Object)\u0456\u0456o.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray2, (int)(-1861140237 + 1102352849), (int)(-1056235620 + 995613894)))))).s\u0458\u0458a(3.2f).x\u0455heah\u0445(0.1f).\u043ecxi\u0455(2.0f).a\u0455\u0445\u0435c(6.0f).\u0458c\u0456\u0440().getFloatValue();
|
||||
byte[] byArray3 = new byte[-1720974490 + 1720974504];
|
||||
byArray3[0] = -58578159 + 58578110;
|
||||
byArray3[1] = -2055093755 + 2055093802;
|
||||
byArray3[2] = -149059357 + 149059372;
|
||||
byArray3[3] = -323871186 + 323871180;
|
||||
byArray3[4] = -1747684965 + 1747684853;
|
||||
byArray3[5] = -1191779066 + 1191778968;
|
||||
byArray3[-1101092342 + 1101092348] = -1060983424 + 1060983474;
|
||||
byArray3[-462671243 + 462671250] = -1387152771 + 1387152881;
|
||||
byArray3[-1090941563 + 1090941571] = -1;
|
||||
byArray3[-1965558194 + 1965558203] = -457937218 + 457937160;
|
||||
byArray3[-1893247691 + 1893247701] = -616240950 + 616240916;
|
||||
byArray3[-1167212950 + 1167212961] = -1737379452 + 1737379474;
|
||||
byArray3[-1341484460 + 1341484472] = -487830980 + 487830857;
|
||||
byArray3[-1533557641 + 1533557654] = -1239378606 + 1239378491;
|
||||
this.\u0455ox\u0456\u0430 = ((\u0430c\u0440)((Object)\u0456\u0456o.a_bsm2("\u04bboo\u04bb", \u04bboo\u04bb(spso.\u0441a\u0458p java.lang.String ), (\u0441a\u0458p)this, (String)((Object)\u0456\u0456o.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray3, (int)(1542819423 + 603517326), (int)(-157836597 + 1117494888)))))).s\u0458\u0458a(5.0f).x\u0455heah\u0445(0.1f).\u043ecxi\u0455(3.0f).a\u0455\u0445\u0435c(12.0f).\u0458c\u0456\u0440().getFloatValue();
|
||||
byte[] byArray4 = new byte[-1719389422 + 1719389432];
|
||||
byArray4[0] = -1833740940 + 1833740826;
|
||||
byArray4[1] = -690437289 + 690437393;
|
||||
byArray4[2] = -1554030468 + 1554030562;
|
||||
byArray4[3] = -392875718 + 392875699;
|
||||
byArray4[4] = -1519287096 + 1519287196;
|
||||
byArray4[5] = -2142317282 + 2142317234;
|
||||
byArray4[-870622703 + 870622709] = -1454827557 + 1454827572;
|
||||
byArray4[-939391986 + 939391993] = -405040507 + 405040410;
|
||||
byArray4[-1033610856 + 1033610864] = -1520750578 + 1520750598;
|
||||
byArray4[-1202050496 + 1202050505] = -1715671708 + 1715671643;
|
||||
this.\u0440xexsih = ((\u0430c\u0440)((Object)\u0456\u0456o.a_bsm2("\u04bboo\u04bb", \u04bboo\u04bb(spso.\u0441a\u0458p java.lang.String ), (\u0441a\u0458p)this, (String)((Object)\u0456\u0456o.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray4, (int)(429136827 + 935212439), (int)(-646626838 + 612416523)))))).s\u0458\u0458a(1000.0f).\u043ecxi\u0455(50.0f).a\u0455\u0445\u0435c(3000.0f).x\u0455heah\u0445(50.0f).\u0458c\u0456\u0440().getFloatValue();
|
||||
this.o\u0458\u0458\u04bb\u0430\u0440 = ((\u0430c\u0440)((Object)\u0456\u0456o.a_bsm2("\u04bboo\u04bb", \u04bboo\u04bb(spso.\u0441a\u0458p java.lang.String ), (\u0441a\u0458p)this, (String)((Object)\u0456\u0456o.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-2075272639 + 2075272623, -1278725970 + 1278726072, -1419593522 + 1419593500}, (int)(-914299407 + 2009553751), (int)(1583614597 + 1683273779)))))).\u0455xi\u0440(true).\u0458c\u0456\u0440().getBooleanValue();
|
||||
this.\u0441\u0430ch = new ConcurrentLinkedQueue();
|
||||
this.\u04bb\u0455j\u0458 = new HashMap<class_1297, class_243>();
|
||||
}
|
||||
|
||||
@Override
|
||||
public /* synthetic */ void onEnable() {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (true | false) {
|
||||
}
|
||||
if (\u0456\u0456o.$_h1c7brsy1ngan17kyk((long)\u0456\u0456o.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0456\u0456o.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.\u0441\u0458e();
|
||||
}
|
||||
|
||||
@Override
|
||||
public /* synthetic */ void onDisable() {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (\u0456\u0456o.$_h1c7brsz1ngan17kyl((long)\u0456\u0456o.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0456\u0456o.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.x\u0430a\u0435xs();
|
||||
}
|
||||
|
||||
private /* synthetic */ void \u0441\u0458e() {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (true | false) {
|
||||
}
|
||||
if (\u0456\u0456o.$_h1c7brt01ngan17kym((long)\u0456\u0456o.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0456\u0456o.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.\u0441\u0430ch.clear();
|
||||
this.\u04bb\u0455j\u0458.clear();
|
||||
this.a\u0435j\u043e\u0441 = null;
|
||||
this.oci\u0430 = 0L;
|
||||
}
|
||||
|
||||
@\u0445\u0458\u0458h\u0445\u0430a
|
||||
public void \u0440xsx(ex\u0441s\u04bbp\u0435 ex\u0441s\u04bbp\u04352) {
|
||||
class_1657 class_16572;
|
||||
class_1297 class_12972;
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (true | false) {
|
||||
}
|
||||
if (\u0456\u0456o.$_h1c7brt11ngan17kyn((long)\u0456\u0456o.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0456\u0456o.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (x\u0458\u043e\u0435jo.c\u0458\u0445\u0456\u0441\u0440) {
|
||||
return;
|
||||
}
|
||||
if (ex\u0441s\u04bbp\u04352.\u0458s\u0430() != null && (class_12972 = ex\u0441s\u04bbp\u04352.\u0458s\u0430()) instanceof class_1657 && \u0456\u0456o.a_bsm3("h\u0441h", h\u0441h(net.minecraft.class_1297 ), (class_1297)(class_16572 = (class_1657)class_12972)) != false) {
|
||||
this.a\u0435j\u043e\u0441 = class_16572;
|
||||
this.oci\u0430 = (long)\u0456\u0456o.a_bsm4("currentTimeMillis", currentTimeMillis());
|
||||
}
|
||||
}
|
||||
|
||||
private /* synthetic */ boolean \u0445ioj\u0458\u0456() {
|
||||
class_1297 class_12972;
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (\u0456\u0456o.$_h1c7brt21ngan17kyo((long)\u0456\u0456o.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0456\u0456o.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if ((class_12972 = this.a\u0435j\u043e\u0441) instanceof class_1309) {
|
||||
class_1309 class_13092 = (class_1309)class_12972;
|
||||
if (\u0456\u0456o.$_h1c7brt31ngan17kyp(this.oci\u0430 == 0L ? 0 : (this.oci\u0430 < 0L ? -1 : 1)) != 0 && \u0456\u0456o.$_h1c7brt41ngan17kyq((float)(\u0456\u0456o.a_bsm4("currentTimeMillis", currentTimeMillis()) - this.oci\u0430) == this.\u0440xexsih.axpacc() ? 0 : ((float)(\u0456\u0456o.a_bsm4("currentTimeMillis", currentTimeMillis()) - this.oci\u0430) > this.\u0440xexsih.axpacc() ? 1 : -1)) > 0 || this.a\u0435j\u043e\u0441 == null || \u0456\u0456o.\u0430\u0445j\u0445s\u0456\u04bb.field_1724 == null) {
|
||||
return 0 != 0;
|
||||
}
|
||||
if (\u0456\u0456o.$_h1c7brt51ngan17kyr(class_13092.method_6032() == 0.0f ? 0 : (class_13092.method_6032() < 0.0f ? -1 : 1)) <= 0) {
|
||||
return 0 != 0;
|
||||
}
|
||||
class_12972 = \u0456\u0456o.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_33571();
|
||||
double d = this.a\u0435j\u043e\u0441.method_5829().method_49271((class_243)class_12972);
|
||||
if (\u0456\u0456o.$_h1c7brt61ngan17kys(d == this.p\u0435c\u043e\u043e\u0445.axpacc() * this.p\u0435c\u043e\u043e\u0445.axpacc() ? 0 : (d > this.p\u0435c\u043e\u043e\u0445.axpacc() * this.p\u0435c\u043e\u043e\u0445.axpacc() ? 1 : -1)) > 0) {
|
||||
return 0 != 0;
|
||||
}
|
||||
class_243 class_2432 = this.\u04bb\u0455j\u0458.get(this.a\u0435j\u043e\u0441);
|
||||
if (class_2432 != null) {
|
||||
float f;
|
||||
float f2 = this.a\u0435j\u043e\u0441.method_17681() / 2.0f;
|
||||
class_238 class_2383 = new class_238(class_2432.field_1352 - (double)f2, class_2432.field_1351, class_2432.field_1350 - (double)f2, class_2432.field_1352 + (double)f2, class_2432.field_1351 + (double)(f = this.a\u0435j\u043e\u0441.method_17682()), class_2432.field_1350 + (double)f2);
|
||||
double d2 = class_2383.method_49271((class_243)class_12972);
|
||||
if (\u0456\u0456o.$_h1c7brt71ngan17kyt(d2 == d ? 0 : (d2 < d ? -1 : 1)) < 0) {
|
||||
return 0 != 0;
|
||||
}
|
||||
return (\u0456\u0456o.$_h1c7brtt1ngan17kyu(d2 == this.\u0455ox\u0456\u0430.axpacc() * this.\u0455ox\u0456\u0430.axpacc() ? 0 : (d2 > this.\u0455ox\u0456\u0430.axpacc() * this.\u0455ox\u0456\u0430.axpacc() ? 1 : -1)) <= 0 ? 1 : 0) != 0;
|
||||
}
|
||||
return (!x\u0458\u043e\u0435jo.c\u0458\u0445\u0456\u0441\u0440 ? 1 : 0) != 0;
|
||||
}
|
||||
return 0 != 0;
|
||||
}
|
||||
|
||||
@\u0445\u0458\u0458h\u0445\u0430a
|
||||
public void epp\u043e\u0440\u0435(\u0430j\u0445 \u0430j\u04452) {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (true | false) {
|
||||
}
|
||||
if (\u0456\u0456o.$_h1c7brtu1ngan17kyv((long)\u0456\u0456o.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0456\u0456o.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (\u0430j\u04452.p\u0440\u04bb() != i\u0456\u0445\u0430\u0441p.cc\u0441) {
|
||||
return;
|
||||
}
|
||||
if (x\u0458\u043e\u0435jo.c\u0458\u0445\u0456\u0441\u0440) {
|
||||
this.x\u0430a\u0435xs();
|
||||
}
|
||||
}
|
||||
|
||||
@\u0445\u0458\u0458h\u0445\u0430a
|
||||
private void \u0435\u0445j(h\u0430p\u043ee\u0440 h\u0430p\u043ee\u04402) {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (\u0456\u0456o.$_h1c7brtv1ngan17kyw((long)\u0456\u0456o.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0456\u0456o.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.\u0441\u0458e();
|
||||
}
|
||||
|
||||
@\u0445\u0458\u0458h\u0445\u0430a
|
||||
private void o\u043eec\u04bb\u0445h(\u04bbj\u0441x\u0440 \u04bbj\u0441x\u04402) {
|
||||
class_8143 class_81432;
|
||||
class_2743 class_27432;
|
||||
class_2596<?> class_25962;
|
||||
block17: {
|
||||
block16: {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (true | false) {
|
||||
}
|
||||
if (\u0456\u0456o.$_h1c7brtw1ngan17kyx((long)\u0456\u0456o.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0456\u0456o.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (\u04bbj\u0441x\u04402.p\u0440\u04bb() != i\u0456\u0445\u0430\u0441p.h\u0430\u043e) {
|
||||
return;
|
||||
}
|
||||
if (\u0456\u0456o.\u0430\u0445j\u0445s\u0456\u04bb.field_1724 == null || \u0430\u0445j\u0445s\u0456\u04bb.method_1562() == null || \u0456\u0456o.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.field_6012 < -572829118 + 572829138) {
|
||||
this.\u0441\u0458e();
|
||||
return;
|
||||
}
|
||||
class_25962 = \u04bbj\u0441x\u04402.ciao\u0455\u0455();
|
||||
if (class_25962 instanceof class_2743 && (class_27432 = (class_2743)class_25962).method_11818() == \u0456\u0456o.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_5628()) {
|
||||
this.x\u0430a\u0435xs();
|
||||
return;
|
||||
}
|
||||
if (!this.\u0445ioj\u0458\u0456()) {
|
||||
this.x\u0430a\u0435xs();
|
||||
return;
|
||||
}
|
||||
this.\u0455\u0441i\u043e(false);
|
||||
if (class_25962 instanceof class_2761 || class_25962 instanceof class_2673 || class_25962 instanceof class_2658 || class_25962 instanceof class_2672 || class_25962 instanceof class_2676 || class_25962 instanceof class_7439) break block16;
|
||||
if (!(class_25962 instanceof class_2767) || (class_27432 = (class_2767)class_25962).method_11894().comp_349() != class_3417.field_15115) break block17;
|
||||
}
|
||||
return;
|
||||
}
|
||||
if (class_25962 instanceof class_2661 || class_25962 instanceof class_2708 || class_25962 instanceof class_2749 && \u0456\u0456o.$_h1c7brtx1ngan17kyy((class_27432 = (class_2749)class_25962).method_11833() == 0.0f ? 0 : ((class_27432 = (class_2749)class_25962).method_11833() < 0.0f ? -1 : 1)) <= 0 || class_25962 instanceof class_8143 && (class_81432 = (class_8143)class_25962).comp_1267() == \u0456\u0456o.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_5628() && this.scex\u0455\u0430\u0430.axpacc()) {
|
||||
this.x\u0430a\u0435xs();
|
||||
return;
|
||||
}
|
||||
if (class_25962 instanceof class_2663 && (class_27432 = (class_2663)class_25962).method_11469((class_1937)\u0456\u0456o.\u0430\u0445j\u0445s\u0456\u04bb.field_1687) == this.a\u0435j\u043e\u0441 && class_27432.method_11470() == 3) {
|
||||
this.x\u0430a\u0435xs();
|
||||
return;
|
||||
}
|
||||
if (class_25962 instanceof class_2716 && (class_27432 = (class_2716)class_25962).method_36548().contains(this.a\u0435j\u043e\u0441.method_5628())) {
|
||||
this.x\u0430a\u0435xs();
|
||||
return;
|
||||
}
|
||||
if (class_25962 instanceof class_2684 && (class_27432 = (class_2684)class_25962).method_11645((class_1937)\u0456\u0456o.\u0430\u0445j\u0445s\u0456\u04bb.field_1687) == this.a\u0435j\u043e\u0441) {
|
||||
class_81432 = this.\u04bb\u0455j\u0458.getOrDefault(this.a\u0435j\u043e\u0441, this.a\u0435j\u043e\u0441.method_19538());
|
||||
class_243 class_2432 = class_81432.method_1031((double)class_27432.method_36150() / 4096.0, (double)class_27432.method_36151() / 4096.0, (double)class_27432.method_36152() / 4096.0);
|
||||
this.\u04bb\u0455j\u0458.put(this.a\u0435j\u043e\u0441, class_2432);
|
||||
}
|
||||
if (class_25962 instanceof class_2777 && (class_27432 = (class_2777)class_25962).method_11916() == this.a\u0435j\u043e\u0441.method_5628()) {
|
||||
this.\u04bb\u0455j\u0458.put(this.a\u0435j\u043e\u0441, new class_243(class_27432.method_11917(), class_27432.method_11919(), class_27432.method_11918()));
|
||||
}
|
||||
\u04bbj\u0441x\u04402.setCancelled(true);
|
||||
this.\u0441\u0430ch.add(new \u0445xp(class_25962, (long)\u0456\u0456o.a_bsm4("currentTimeMillis", currentTimeMillis())));
|
||||
}
|
||||
|
||||
private /* synthetic */ void \u0455\u0441i\u043e(boolean bl) {
|
||||
boolean bl2 = false;
|
||||
if (bl2) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (\u0456\u0456o.$_h1c7brty1ngan17kyz((long)\u0456\u0456o.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0456\u0456o.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
CallSite callSite = \u0456\u0456o.a_bsm4("currentTimeMillis", currentTimeMillis());
|
||||
float f = this.p\u0455cs\u04bb\u0440.axpacc();
|
||||
if (this.\u0441\u0430ch == null) {
|
||||
return;
|
||||
}
|
||||
this.\u0441\u0430ch.removeIf(arg_0 -> \u0456\u0456o.c\u0458\u0440(bl, (long)callSite, f, arg_0));
|
||||
}
|
||||
|
||||
private /* synthetic */ void x\u0430a\u0435xs() {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (true | false) {
|
||||
}
|
||||
if (\u0456\u0456o.$_h1c7brtz1ngan17kz0((long)\u0456\u0456o.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0456\u0456o.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.\u0455\u0441i\u043e(true);
|
||||
this.\u04bb\u0455j\u0458.clear();
|
||||
this.a\u0435j\u043e\u0441 = null;
|
||||
}
|
||||
|
||||
@\u0445\u0458\u0458h\u0445\u0430a
|
||||
private void c\u0445\u0445c\u0445ec(i\u0456o\u0430\u0435o i\u0456o\u0430\u0435o2) {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
}
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (\u0456\u0456o.$_h1c7bru01ngan17kz1((long)\u0456\u0456o.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0456\u0456o.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (this.o\u0458\u0458\u04bb\u0430\u0440.axpacc() && this.a\u0435j\u043e\u0441 != null && this.\u04bb\u0455j\u0458.containsKey(this.a\u0435j\u043e\u0441)) {
|
||||
\u0456\u0456o.a_bsm5("a\u0435\u0458", a\u0435\u0458(net.minecraft.class_4587 java.util.Map<net.minecraft.class_1297, net.minecraft.class_243> net.minecraft.class_1297 ), (class_4587)i\u0456o\u0430\u0435o2.\u0445\u0455i\u0430pi(), this.\u04bb\u0455j\u0458, (class_1297)this.a\u0435j\u043e\u0441);
|
||||
}
|
||||
}
|
||||
|
||||
private static /* synthetic */ boolean c\u0458\u0440(boolean bl, long l2, float f, \u0445xp \u0445xp2) {
|
||||
boolean bl2 = false;
|
||||
if (bl2) {
|
||||
__js_dispatch_state = 0;
|
||||
if (bl2) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
}
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (\u0456\u0456o.$_h1c7bru11ngan17kz2((long)\u0456\u0456o.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0456\u0456o.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (bl || \u0456\u0456o.$_h1c7bru21ngan17kz3(l2 - \u0445xp2.oijsc\u0440 == f ? 0 : (l2 - \u0445xp2.oijsc\u0440 > f ? 1 : -1)) >= 0) {
|
||||
\u0430\u0445j\u0445s\u0456\u04bb.execute(() -> {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (((long)\u0456\u0456o.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u0456\u0456o.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (\u0430\u0445j\u0445s\u0456\u04bb.method_1562() != null) {
|
||||
\u0445xp2.\u0458\u0445s\u04bb\u043e.method_11054((class_2547)\u0430\u0445j\u0445s\u0456\u04bb.method_1562());
|
||||
}
|
||||
});
|
||||
return 1 != 0;
|
||||
}
|
||||
return 0 != 0;
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm0(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm1(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm2(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm3(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm4(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm5(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,521 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package h\u0441\u043e\u04bb\u0441\u0458\u0445;
|
||||
|
||||
import c\u0445is.h\u0430p\u043ee\u0440;
|
||||
import c\u0445is.i\u0456o\u0430\u0435o;
|
||||
import c\u0445is.\u04bbj\u0441x\u0440;
|
||||
import h\u0441\u043e\u04bb\u0441\u0458\u0445.jio\u0458x;
|
||||
import h\u0441\u043e\u04bb\u0441\u0458\u0445.x\u0458\u043e\u0435jo;
|
||||
import i\u0455pe\u0441s.s\u0445\u0456x\u0440\u0440;
|
||||
import java.lang.invoke.CallSite;
|
||||
import java.lang.invoke.ConstantCallSite;
|
||||
import java.lang.invoke.MethodHandle;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.lang.invoke.MethodType;
|
||||
import java.util.Comparator;
|
||||
import java.util.concurrent.ConcurrentLinkedQueue;
|
||||
import net.minecraft.class_1297;
|
||||
import net.minecraft.class_238;
|
||||
import net.minecraft.class_243;
|
||||
import net.minecraft.class_2596;
|
||||
import net.minecraft.class_2708;
|
||||
import net.minecraft.class_2793;
|
||||
import net.minecraft.class_2797;
|
||||
import net.minecraft.class_2824;
|
||||
import net.minecraft.class_2827;
|
||||
import net.minecraft.class_2828;
|
||||
import net.minecraft.class_2846;
|
||||
import net.minecraft.class_2877;
|
||||
import net.minecraft.class_2879;
|
||||
import net.minecraft.class_2885;
|
||||
import net.minecraft.class_2889;
|
||||
import net.minecraft.class_2937;
|
||||
import net.minecraft.class_4587;
|
||||
import net.minecraft.class_5498;
|
||||
import net.minecraft.class_742;
|
||||
import net.minecraft.class_7472;
|
||||
import net.minecraft.class_757;
|
||||
import net.minecraft.class_8143;
|
||||
import o\u0455sio\u0440.\u0445\u0458\u0458h\u0445\u0430a;
|
||||
import spso.\u0430c\u0440;
|
||||
import spso.\u0441a\u0458p;
|
||||
import \u0435xp.h\u04bb\u0455hpa;
|
||||
import \u0435xp.\u043ea\u0441\u0430p;
|
||||
import \u043e\u0445\u0440\u0430ose.i\u0456\u0445\u0430\u0441p;
|
||||
import \u0440expho.p\u043eo;
|
||||
import \u0440expho.\u0435oi\u043e;
|
||||
import \u0440o\u0456\u0445o.\u0445\u0440\u0430\u0435\u0445\u043e;
|
||||
import \u0445eo.c\u0455pi;
|
||||
import \u0445eo.\u0456p\u0430\u043e\u0458\u043e;
|
||||
import \u0445eo.\u0458i\u0456x;
|
||||
|
||||
@\u0456p\u0430\u043e\u0458\u043e(sp\u0456p\u0445\u0435="FakeLag", a\u0456j\u0430\u0455\u04bb="FakeLag", s\u0455cj=\u0458i\u0456x.COMBAT)
|
||||
public class \u04bbos\u0445
|
||||
extends c\u0455pi {
|
||||
private final /* synthetic */ \u043ea\u0441\u0430p po\u0458x\u0445;
|
||||
private final /* synthetic */ \u043ea\u0441\u0430p poea;
|
||||
private final /* synthetic */ \u043ea\u0441\u0430p a\u0456\u0441\u043e\u0441i;
|
||||
private final /* synthetic */ \u043ea\u0441\u0430p \u04bb\u0456e;
|
||||
private final /* synthetic */ h\u04bb\u0455hpa e\u0440j;
|
||||
private final /* synthetic */ h\u04bb\u0455hpa a\u0455i\u043e\u04bb\u0455\u0440;
|
||||
private final /* synthetic */ h\u04bb\u0455hpa e\u043epp\u0445\u043e;
|
||||
private final /* synthetic */ h\u04bb\u0455hpa \u0440a\u0458\u04bb;
|
||||
private final /* synthetic */ ConcurrentLinkedQueue<jio\u0458x> psp\u0430i;
|
||||
private /* synthetic */ class_243 eop;
|
||||
private /* synthetic */ long hp\u0458;
|
||||
private static /* synthetic */ int __js_dispatch_state = 0;
|
||||
|
||||
public \u04bbos\u0445() {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (\u04bbos\u0445.$_h1pa2k7q1ngan17kx7((long)\u04bbos\u0445.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u04bbos\u0445.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
byte[] byArray = new byte[-512299093 + 512299102];
|
||||
byArray[0] = -1647004980 + 1647005031;
|
||||
byArray[1] = -1505269876 + 1505269899;
|
||||
byArray[2] = -1839777652 + 1839777678;
|
||||
byArray[3] = -941619387 + 941619489;
|
||||
byArray[4] = -175666966 + 175666956;
|
||||
byArray[5] = -198440328 + 198440204;
|
||||
byArray[-1318524226 + 1318524232] = -1477421329 + 1477421344;
|
||||
byArray[-1925789394 + 1925789401] = -2122902448 + 2122902410;
|
||||
byArray[-1857692418 + 1857692426] = -183750283 + 183750348;
|
||||
this.po\u0458x\u0445 = ((\u0430c\u0440)((Object)\u04bbos\u0445.a_bsm2("\u04bboo\u04bb", \u04bboo\u04bb(spso.\u0441a\u0458p java.lang.String ), (\u0441a\u0458p)this, (String)((Object)\u04bbos\u0445.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray, (int)(1277143201 + 1705183521), (int)(-1410479230 + 1441740378)))))).s\u0458\u0458a(2.0f).\u043ecxi\u0455(0.0f).a\u0455\u0445\u0435c(10.0f).x\u0455heah\u0445(0.1f).\u0458c\u0456\u0440().getFloatValue();
|
||||
byte[] byArray2 = new byte[-528148990 + 528148999];
|
||||
byArray2[0] = 1;
|
||||
byArray2[1] = -317319867 + 317319947;
|
||||
byArray2[2] = -1874057914 + 1874057831;
|
||||
byArray2[3] = -1285712509 + 1285712563;
|
||||
byArray2[4] = -1616271475 + 1616271371;
|
||||
byArray2[5] = -1939673087 + 1939673177;
|
||||
byArray2[-1038283990 + 1038283996] = -785035746 + 785035677;
|
||||
byArray2[-1926593153 + 1926593160] = -1121137104 + 1121137160;
|
||||
byArray2[-730401645 + 730401653] = -166387286 + 166387208;
|
||||
this.poea = ((\u0430c\u0440)((Object)\u04bbos\u0445.a_bsm2("\u04bboo\u04bb", \u04bboo\u04bb(spso.\u0441a\u0458p java.lang.String ), (\u0441a\u0458p)this, (String)((Object)\u04bbos\u0445.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray2, (int)(1727441007 + 1371082815), (int)(-735760883 + 1066460584)))))).s\u0458\u0458a(5.0f).\u043ecxi\u0455(0.0f).a\u0455\u0445\u0435c(10.0f).x\u0455heah\u0445(0.1f).\u0458c\u0456\u0440().getFloatValue();
|
||||
this.a\u0456\u0441\u043e\u0441i = ((\u0430c\u0440)((Object)\u04bbos\u0445.a_bsm2("\u04bboo\u04bb", \u04bboo\u04bb(spso.\u0441a\u0458p java.lang.String ), (\u0441a\u0458p)this, (String)((Object)\u04bbos\u0445.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-2126486721 + 2126486697, -2094567970 + 2094567929, -1428442001 + 1428441991, -1796511976 + 1796511873, -1296140087 + 1296139972}, (int)(-1184320475 + 1067205855), (int)(-1054092237 + 1111830333)))))).s\u0458\u0458a(250.0f).\u043ecxi\u0455(50.0f).a\u0455\u0445\u0435c(500.0f).x\u0455heah\u0445(1.0f).\u0458c\u0456\u0440().getFloatValue();
|
||||
byte[] byArray3 = new byte[-179854131 + 179854141];
|
||||
byArray3[0] = -1541031875 + 1541031915;
|
||||
byArray3[1] = -2143427719 + 2143427844;
|
||||
byArray3[2] = -238391429 + 238391369;
|
||||
byArray3[3] = -1616479638 + 1616479651;
|
||||
byArray3[4] = -1920926570 + 1920926637;
|
||||
byArray3[5] = -1610722828 + 1610722847;
|
||||
byArray3[-943089090 + 943089096] = -844600377 + 844600446;
|
||||
byArray3[-1199835194 + 1199835201] = -1362218847 + 1362218758;
|
||||
byArray3[-395817427 + 395817435] = -414172063 + 414172060;
|
||||
byArray3[-1452485977 + 1452485986] = -1868486787 + 1868486784;
|
||||
this.\u04bb\u0456e = ((\u0430c\u0440)((Object)\u04bbos\u0445.a_bsm2("\u04bboo\u04bb", \u04bboo\u04bb(spso.\u0441a\u0458p java.lang.String ), (\u0441a\u0458p)this, (String)((Object)\u04bbos\u0445.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray3, (int)(921520666 + 3796236), (int)(-2015182272 + 1079051762)))))).s\u0458\u0458a(250.0f).\u043ecxi\u0455(0.0f).a\u0455\u0445\u0435c(1000.0f).x\u0455heah\u0445(10.0f).\u0458c\u0456\u0440().getFloatValue();
|
||||
byte[] byArray4 = new byte[-934479533 + 934479556];
|
||||
byArray4[0] = -1538047921 + 1538047801;
|
||||
byArray4[1] = -1916436040 + 1916436056;
|
||||
byArray4[2] = -10231151 + 10231261;
|
||||
byArray4[3] = -1970570325 + 1970570289;
|
||||
byArray4[4] = -261331572 + 261331663;
|
||||
byArray4[5] = -212560329 + 212560349;
|
||||
byArray4[-725464957 + 725464963] = -1323055320 + 1323055429;
|
||||
byArray4[-1864125442 + 1864125449] = -1624178795 + 1624178721;
|
||||
byArray4[-1615628112 + 1615628120] = -1937123015 + 1937123010;
|
||||
byArray4[-1328288798 + 1328288807] = -634583108 + 634583036;
|
||||
byArray4[-2113113778 + 2113113788] = -1238794026 + 1238794129;
|
||||
byArray4[-231280457 + 231280468] = -1360199015 + 1360198948;
|
||||
byArray4[-1410386102 + 1410386114] = -2016904014 + 2016904022;
|
||||
byArray4[-565093419 + 565093432] = -186736039 + 186735955;
|
||||
byArray4[-1395826942 + 1395826956] = -864823554 + 864823470;
|
||||
byArray4[-1135090331 + 1135090346] = -1993678273 + 1993678359;
|
||||
byArray4[-929216194 + 929216210] = -618721593 + 618721544;
|
||||
byArray4[-1880664946 + 1880664963] = -1208444247 + 1208444213;
|
||||
byArray4[-273845743 + 273845761] = -1390403583 + 1390403613;
|
||||
byArray4[-1425767290 + 1425767309] = -1209974208 + 1209974203;
|
||||
byArray4[-568782956 + 568782976] = 2;
|
||||
byArray4[-1533161720 + 1533161741] = -1033573322 + 1033573275;
|
||||
byArray4[-1436902283 + 1436902305] = -1810424322 + 1810424205;
|
||||
this.e\u0440j = ((\u0430c\u0440)((Object)\u04bbos\u0445.a_bsm2("\u04bboo\u04bb", \u04bboo\u04bb(spso.\u0441a\u0458p java.lang.String ), (\u0441a\u0458p)this, (String)((Object)\u04bbos\u0445.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray4, (int)(-204603520 + 248120087), (int)(1736880187 + 1348929458)))))).\u0455xi\u0440(true).\u0458c\u0456\u0440().getBooleanValue();
|
||||
byte[] byArray5 = new byte[-714104837 + 714104859];
|
||||
byArray5[0] = -971973942 + 971973958;
|
||||
byArray5[1] = -772266019 + 772265973;
|
||||
byArray5[2] = -1841798973 + 1841799013;
|
||||
byArray5[3] = -758112437 + 758112382;
|
||||
byArray5[4] = -327253660 + 327253572;
|
||||
byArray5[5] = -542334497 + 542334418;
|
||||
byArray5[-330985784 + 330985790] = -916312552 + 916312524;
|
||||
byArray5[-673637211 + 673637218] = -73178871 + 73178857;
|
||||
byArray5[-1317012304 + 1317012312] = -763783837 + 763783902;
|
||||
byArray5[-765595538 + 765595547] = -1504858175 + 1504858299;
|
||||
byArray5[-433169152 + 433169162] = -2113335075 + 2113335085;
|
||||
byArray5[-1681124870 + 1681124881] = -1273732250 + 1273732333;
|
||||
byArray5[-555206066 + 555206078] = -689542277 + 689542204;
|
||||
byArray5[-57771037 + 57771050] = -225402189 + 225402299;
|
||||
byArray5[-1930192081 + 1930192095] = -1057624929 + 1057624998;
|
||||
byArray5[-1647516614 + 1647516629] = -1763207174 + 1763207197;
|
||||
byArray5[-2067392224 + 2067392240] = -400364497 + 400364480;
|
||||
byArray5[-1333563354 + 1333563371] = -940973316 + 940973429;
|
||||
byArray5[-419317672 + 419317690] = -1613574464 + 1613574378;
|
||||
byArray5[-1562033309 + 1562033328] = -232922955 + 232922865;
|
||||
byArray5[-2034454922 + 2034454942] = -1134760187 + 1134760311;
|
||||
byArray5[-87045731 + 87045752] = -2056756460 + 2056756355;
|
||||
this.a\u0455i\u043e\u04bb\u0455\u0440 = ((\u0430c\u0440)((Object)\u04bbos\u0445.a_bsm2("\u04bboo\u04bb", \u04bboo\u04bb(spso.\u0441a\u0458p java.lang.String ), (\u0441a\u0458p)this, (String)((Object)\u04bbos\u0445.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray5, (int)(1775038684 + 1628953096), (int)(1479293840 + 1905954358)))))).\u0455xi\u0440(true).\u0458c\u0456\u0440().getBooleanValue();
|
||||
byte[] byArray6 = new byte[-304842839 + 304842854];
|
||||
byArray6[0] = -570841532 + 570841466;
|
||||
byArray6[1] = -1625494382 + 1625494276;
|
||||
byArray6[2] = -1407031606 + 1407031709;
|
||||
byArray6[3] = -1589861687 + 1589861712;
|
||||
byArray6[4] = -857940081 + 857940157;
|
||||
byArray6[5] = -690627447 + 690627562;
|
||||
byArray6[-1309552523 + 1309552529] = -1035539638 + 1035539646;
|
||||
byArray6[-26804893 + 26804900] = -2079415002 + 2079415093;
|
||||
byArray6[-1617115085 + 1617115093] = -493381031 + 493381137;
|
||||
byArray6[-366630506 + 366630515] = -1942317887 + 1942317938;
|
||||
byArray6[-1047586050 + 1047586060] = -162714683 + 162714561;
|
||||
byArray6[-80091497 + 80091508] = -546194883 + 546194772;
|
||||
byArray6[-695450208 + 695450220] = -700436633 + 700436671;
|
||||
byArray6[-241558947 + 241558960] = -160710847 + 160710884;
|
||||
byArray6[-1167983091 + 1167983105] = -1651939786 + 1651939833;
|
||||
this.e\u043epp\u0445\u043e = ((\u0430c\u0440)((Object)\u04bbos\u0445.a_bsm2("\u04bboo\u04bb", \u04bboo\u04bb(spso.\u0441a\u0458p java.lang.String ), (\u0441a\u0458p)this, (String)((Object)\u04bbos\u0445.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray6, (int)(-301623090 + 85088841), (int)(-2117065036 + 213477333)))))).\u0455xi\u0440(true).\u0458c\u0456\u0440().getBooleanValue();
|
||||
byte[] byArray7 = new byte[-1037704588 + 1037704603];
|
||||
byArray7[0] = 0;
|
||||
byArray7[1] = -681895389 + 681895420;
|
||||
byArray7[2] = -1863282477 + 1863282551;
|
||||
byArray7[3] = -1475596941 + 1475597046;
|
||||
byArray7[4] = -1844493409 + 1844493398;
|
||||
byArray7[5] = -1318431903 + 1318431923;
|
||||
byArray7[-1779421207 + 1779421213] = -1890790661 + 1890790592;
|
||||
byArray7[-917020349 + 917020356] = -579692978 + 579692877;
|
||||
byArray7[-27652863 + 27652871] = -740985638 + 740985615;
|
||||
byArray7[-451294128 + 451294137] = -1918195744 + 1918195773;
|
||||
byArray7[-823872953 + 823872963] = -1016656440 + 1016656366;
|
||||
byArray7[-1118566311 + 1118566322] = -164975398 + 164975451;
|
||||
byArray7[-1913756429 + 1913756441] = -364769680 + 364769675;
|
||||
byArray7[-2109808853 + 2109808866] = -1473514922 + 1473515048;
|
||||
byArray7[-1633144602 + 1633144616] = -46985447 + 46985545;
|
||||
this.\u0440a\u0458\u04bb = ((\u0430c\u0440)((Object)\u04bbos\u0445.a_bsm2("\u04bboo\u04bb", \u04bboo\u04bb(spso.\u0441a\u0458p java.lang.String ), (\u0441a\u0458p)this, (String)((Object)\u04bbos\u0445.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray7, (int)(479485195 + 38978011), (int)(1070918165 + 1047499822)))))).\u0455xi\u0440(true).\u0458c\u0456\u0440().getBooleanValue();
|
||||
this.psp\u0430i = new ConcurrentLinkedQueue();
|
||||
this.eop = null;
|
||||
this.hp\u0458 = 0L;
|
||||
}
|
||||
|
||||
@Override
|
||||
public /* synthetic */ void onEnable() {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (true | false) {
|
||||
}
|
||||
if (\u04bbos\u0445.$_h1pa2k7r1ngan17kx8((long)\u04bbos\u0445.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u04bbos\u0445.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (\u04bbos\u0445.\u0430\u0445j\u0445s\u0456\u04bb.field_1724 != null) {
|
||||
this.eop = \u04bbos\u0445.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_19538();
|
||||
}
|
||||
this.psp\u0430i.clear();
|
||||
this.hp\u0458 = 0L;
|
||||
}
|
||||
|
||||
@Override
|
||||
public /* synthetic */ void onDisable() {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (\u04bbos\u0445.$_h1pa2k7s1ngan17kx9((long)\u04bbos\u0445.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u04bbos\u0445.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.as\u043e\u0430\u0456(true);
|
||||
this.eop = null;
|
||||
}
|
||||
|
||||
@\u0445\u0458\u0458h\u0445\u0430a
|
||||
public void \u04bbh\u0458\u0430e\u043e(h\u0430p\u043ee\u0440 h\u0430p\u043ee\u04402) {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (\u04bbos\u0445.$_h1pa2k7t1ngan17kxa((long)\u04bbos\u0445.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u04bbos\u0445.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.psp\u0430i.clear();
|
||||
this.eop = null;
|
||||
this.hp\u0458 = 0L;
|
||||
}
|
||||
|
||||
@\u0445\u0458\u0458h\u0445\u0430a
|
||||
public void o\u043eec\u04bb\u0445h(\u04bbj\u0441x\u0440 \u04bbj\u0441x\u04402) {
|
||||
boolean bl;
|
||||
class_2596<?> class_25962;
|
||||
boolean bl2;
|
||||
block24: {
|
||||
block23: {
|
||||
Object object;
|
||||
bl2 = false;
|
||||
if (bl2) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (\u04bbos\u0445.$_h1pa2k7u1ngan17kxb((long)\u04bbos\u0445.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u04bbos\u0445.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (\u04bbos\u0445.\u0430\u0445j\u0445s\u0456\u04bb.field_1724 == null) {
|
||||
return;
|
||||
}
|
||||
if (\u04bbj\u0441x\u04402.p\u0440\u04bb() == i\u0456\u0445\u0430\u0441p.h\u0430\u043e) {
|
||||
object = \u04bbj\u0441x\u04402.ciao\u0455\u0455();
|
||||
if (object instanceof class_8143 && (class_25962 = (class_2596<?>)object).comp_1267() == \u04bbos\u0445.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_5628() && this.\u0440a\u0458\u04bb.axpacc()) {
|
||||
this.hp\u0458 = (long)\u04bbos\u0445.a_bsm3("currentTimeMillis", currentTimeMillis());
|
||||
}
|
||||
if (\u04bbj\u0441x\u04402.ciao\u0455\u0455() instanceof class_2708) {
|
||||
this.psp\u0430i.clear();
|
||||
this.eop = null;
|
||||
this.hp\u0458 = (long)\u04bbos\u0445.a_bsm3("currentTimeMillis", currentTimeMillis());
|
||||
}
|
||||
}
|
||||
if (\u04bbj\u0441x\u04402.p\u0440\u04bb() != i\u0456\u0445\u0430\u0441p.ospc\u0456) {
|
||||
return;
|
||||
}
|
||||
if (\u04bbj\u0441x\u04402.isCancelled()) {
|
||||
return;
|
||||
}
|
||||
if (\u04bbos\u0445.a_bsm4("c\u0458\u0440\u0456c\u0440s", c\u0458\u0440\u0456c\u0440s()) != false) {
|
||||
this.as\u043e\u0430\u0456(true);
|
||||
this.eop = null;
|
||||
return;
|
||||
}
|
||||
class_25962 = \u04bbj\u0441x\u04402.ciao\u0455\u0455();
|
||||
if (!this.psp\u0430i.isEmpty()) {
|
||||
object = this.psp\u0430i.peek();
|
||||
if (\u04bbos\u0445.$_h1pa2k7v1ngan17kxc((float)(\u04bbos\u0445.a_bsm3("currentTimeMillis", currentTimeMillis()) - object.e\u0430\u043e\u0458\u043ep\u0441) == this.a\u0456\u0441\u043e\u0441i.axpacc() ? 0 : ((float)(\u04bbos\u0445.a_bsm3("currentTimeMillis", currentTimeMillis()) - object.e\u0430\u043e\u0458\u043ep\u0441) > this.a\u0456\u0441\u043e\u0441i.axpacc() ? 1 : -1)) >= 0) {
|
||||
this.as\u043e\u0430\u0456(false);
|
||||
}
|
||||
}
|
||||
if (class_25962 instanceof class_2889 || class_25962 instanceof class_2937 || class_25962 instanceof class_2827 || class_25962 instanceof class_2797) break block23;
|
||||
if (!(class_25962 instanceof class_7472)) break block24;
|
||||
}
|
||||
return;
|
||||
}
|
||||
if (class_25962 instanceof class_2793) {
|
||||
this.psp\u0430i.clear();
|
||||
this.eop = null;
|
||||
this.hp\u0458 = (long)\u04bbos\u0445.a_bsm3("currentTimeMillis", currentTimeMillis());
|
||||
return;
|
||||
}
|
||||
if (this.e\u0440j.axpacc() && (class_25962 instanceof class_2824 || class_25962 instanceof class_2879) || this.a\u0455i\u043e\u04bb\u0455\u0440.axpacc() && (class_25962 instanceof class_2885 || class_25962 instanceof class_2877) || this.e\u043epp\u0445\u043e.axpacc() && class_25962 instanceof class_2846) {
|
||||
v0 = true;
|
||||
if (bl2) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
} else {
|
||||
v0 = bl = false;
|
||||
}
|
||||
if (bl || \u04bbos\u0445.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_6115() || this.p\u0430i\u0445hp\u043e() == null || ((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)\u04bbos\u0445.a_bsm5("jaa\u0435\u0445c", jaa\u0435\u0445c()))).\u0430o\u0441\u0456p\u0455().\u0441c\u0458\u043e\u0430(\u0435oi\u043e.class).\u0440\u0435\u0455x\u0435xe()) {
|
||||
this.hp\u0458 = (long)\u04bbos\u0445.a_bsm3("currentTimeMillis", currentTimeMillis());
|
||||
}
|
||||
if (x\u0458\u043e\u0435jo.c\u0458\u0445\u0456\u0441\u0440 || \u04bbos\u0445.$_h1gv9z991ngan17kxd((float)(\u04bbos\u0445.a_bsm3("currentTimeMillis", currentTimeMillis()) - this.hp\u0458) == this.\u04bb\u0456e.axpacc() ? 0 : ((float)(\u04bbos\u0445.a_bsm3("currentTimeMillis", currentTimeMillis()) - this.hp\u0458) < this.\u04bb\u0456e.axpacc() ? -1 : 1)) < 0 || ((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)\u04bbos\u0445.a_bsm5("jaa\u0435\u0445c", jaa\u0435\u0445c()))).\u0430o\u0441\u0456p\u0455().\u0441c\u0458\u043e\u0430(p\u043eo.class).\u0440\u0435\u0455x\u0435xe()) {
|
||||
this.as\u043e\u0430\u0456(true);
|
||||
this.eop = null;
|
||||
return;
|
||||
}
|
||||
\u04bbj\u0441x\u04402.setCancelled(true);
|
||||
this.psp\u0430i.add(new jio\u0458x(class_25962, (long)\u04bbos\u0445.a_bsm3("currentTimeMillis", currentTimeMillis())));
|
||||
}
|
||||
|
||||
private /* synthetic */ void as\u043e\u0430\u0456(boolean bl) {
|
||||
block8: {
|
||||
block7: {
|
||||
boolean bl2 = false;
|
||||
if (bl2) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (\u04bbos\u0445.$_h1gv9z9a1ngan17kxe((long)\u04bbos\u0445.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u04bbos\u0445.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (this.psp\u0430i.isEmpty() || \u0430\u0445j\u0445s\u0456\u04bb.method_1562() == null) break block7;
|
||||
if (\u04bbos\u0445.\u0430\u0445j\u0445s\u0456\u04bb.field_1724 != null) break block8;
|
||||
}
|
||||
return;
|
||||
}
|
||||
CallSite callSite = \u04bbos\u0445.a_bsm3("currentTimeMillis", currentTimeMillis());
|
||||
float f = this.a\u0456\u0441\u043e\u0441i.axpacc();
|
||||
this.psp\u0430i.removeIf(arg_0 -> this.h\u0440\u0441\u0440\u0430(bl, (long)callSite, f, arg_0));
|
||||
}
|
||||
|
||||
private /* synthetic */ class_1297 p\u0430i\u0445hp\u043e() {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
}
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (\u04bbos\u0445.$_h1gv9z9b1ngan17kxf((long)\u04bbos\u0445.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u04bbos\u0445.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (\u04bbos\u0445.\u0430\u0445j\u0445s\u0456\u04bb.field_1687 == null || \u04bbos\u0445.\u0430\u0445j\u0445s\u0456\u04bb.field_1724 == null) {
|
||||
return null;
|
||||
}
|
||||
class_243 class_2432 = \u04bbos\u0445.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_33571();
|
||||
double d = this.po\u0458x\u0445.axpacc() * this.po\u0458x\u0445.axpacc();
|
||||
double d2 = this.poea.axpacc() * this.poea.axpacc();
|
||||
return \u04bbos\u0445.\u0430\u0445j\u0445s\u0456\u04bb.field_1687.method_18456().stream().filter(s\u0445\u0456x\u0440\u0440::h\u0441h).filter(class_7422 -> {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (true | false) {
|
||||
}
|
||||
if (((long)\u04bbos\u0445.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u04bbos\u0445.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
double d3 = class_7422.method_5829().method_49271(class_2432);
|
||||
return ((d3 == d2 ? 0 : (d3 < d2 ? -1 : 1)) <= 0 && (d3 == d ? 0 : (d3 > d ? 1 : -1)) >= 0 ? 1 : 0) != 0;
|
||||
}).min((Comparator<class_742>)((Object)\u04bbos\u0445.a_bsm6("comparingDouble", comparingDouble(java.util.function.ToDoubleFunction<? super T> ), class_7422 -> {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (((long)\u04bbos\u0445.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u04bbos\u0445.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
return class_7422.method_5829().method_49271(class_2432);
|
||||
}))).orElse(null);
|
||||
}
|
||||
|
||||
@\u0445\u0458\u0458h\u0445\u0430a
|
||||
public void c\u0445\u0445c\u0445ec(i\u0456o\u0430\u0435o i\u0456o\u0430\u0435o2) {
|
||||
block8: {
|
||||
block7: {
|
||||
boolean bl = false;
|
||||
if (bl) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (true | false) {
|
||||
}
|
||||
if (\u04bbos\u0445.$_h1gv9z9c1ngan17kxg((long)\u04bbos\u0445.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u04bbos\u0445.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (this.eop == null || \u04bbos\u0445.\u0430\u0445j\u0445s\u0456\u04bb.field_1724 == null || \u04bbos\u0445.\u0430\u0445j\u0445s\u0456\u04bb.field_1690.method_31044() == class_5498.field_26664) break block7;
|
||||
if (!this.psp\u0430i.isEmpty()) break block8;
|
||||
}
|
||||
return;
|
||||
}
|
||||
class_4587 class_45872 = i\u0456o\u0430\u0435o2.\u0445\u0455i\u0430pi();
|
||||
double d = this.eop.field_1352 - \u04bbos\u0445.\u0430\u0445j\u0445s\u0456\u04bb.method_1561().field_4686.method_19326().field_1352;
|
||||
double d2 = this.eop.field_1351 - \u04bbos\u0445.\u0430\u0445j\u0445s\u0456\u04bb.method_1561().field_4686.method_19326().field_1351;
|
||||
double d3 = this.eop.field_1350 - \u04bbos\u0445.\u0430\u0445j\u0445s\u0456\u04bb.method_1561().field_4686.method_19326().field_1350;
|
||||
float f = \u04bbos\u0445.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_17681() / 2.0f;
|
||||
float f2 = \u04bbos\u0445.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_17682();
|
||||
class_238 class_2383 = new class_238(d - (double)f, d2, d3 - (double)f, d + (double)f, d2 + (double)f2, d3 + (double)f);
|
||||
class_45872.method_22903();
|
||||
\u04bbos\u0445.a_bsm7("glEnable", glEnable(int ), (int)(-346403629 + 346406671));
|
||||
\u04bbos\u0445.a_bsm8("glDisable", glDisable(int ), (int)(-607580936 + 607583865));
|
||||
\u04bbos\u0445.a_bsm9("setShader", setShader(java.util.function.Supplier ), class_757::method_34539);
|
||||
\u04bbos\u0445.a_bsm10("setShaderColor", setShaderColor(float float float float ), (float)0.4f, (float)1.0f, (float)0.4f, (float)0.3f);
|
||||
\u04bbos\u0445.a_bsm11("\u0458\u0458\u04bb", \u0458\u0458\u04bb(net.minecraft.class_238 net.minecraft.class_4587 ), (class_238)class_2383, (class_4587)class_45872);
|
||||
class_45872.method_22909();
|
||||
\u04bbos\u0445.a_bsm10("setShaderColor", setShaderColor(float float float float ), (float)1.0f, (float)1.0f, (float)1.0f, (float)1.0f);
|
||||
}
|
||||
|
||||
private /* synthetic */ boolean h\u0440\u0441\u0440\u0430(boolean bl, long l2, float f, jio\u0458x jio\u0458x2) {
|
||||
boolean bl2 = false;
|
||||
if (bl2) {
|
||||
__js_dispatch_state = 0;
|
||||
}
|
||||
if (true | false) {
|
||||
}
|
||||
if (\u04bbos\u0445.$_h1gv9z9h1ngan17kxl((long)\u04bbos\u0445.a_bsm0("nanoTime", nanoTime()) == Long.MIN_VALUE ? 0 : ((long)\u04bbos\u0445.a_bsm0("nanoTime", nanoTime()) < Long.MIN_VALUE ? -1 : 1)) == 0) {
|
||||
throw null;
|
||||
}
|
||||
if (bl || \u04bbos\u0445.$_h1gv9z9i1ngan17kxm(l2 - jio\u0458x2.e\u0430\u043e\u0458\u043ep\u0441 == f ? 0 : (l2 - jio\u0458x2.e\u0430\u043e\u0458\u043ep\u0441 > f ? 1 : -1)) >= 0) {
|
||||
\u04bbos\u0445.a_bsm12("\u04bb\u0456\u0458\u043ec", \u04bb\u0456\u0458\u043ec(net.minecraft.class_2596<?> ), jio\u0458x2.\u0456\u0445\u04bb);
|
||||
class_2596<?> class_25962 = jio\u0458x2.\u0456\u0445\u04bb;
|
||||
if (class_25962 instanceof class_2828) {
|
||||
class_2828 class_28282 = (class_2828)class_25962;
|
||||
double d = class_28282.method_12269(this.eop != null ? this.eop.field_1352 : \u04bbos\u0445.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_23317());
|
||||
double d2 = class_28282.method_12268(this.eop != null ? this.eop.field_1351 : \u04bbos\u0445.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_23318());
|
||||
double d3 = class_28282.method_12274(this.eop != null ? this.eop.field_1350 : \u04bbos\u0445.\u0430\u0445j\u0445s\u0456\u04bb.field_1724.method_23321());
|
||||
this.eop = new class_243(d, d2, d3);
|
||||
}
|
||||
return 1 != 0;
|
||||
}
|
||||
return 0 != 0;
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm0(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm1(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm2(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm3(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm4(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm5(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm6(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm7(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm8(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm9(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm10(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm11(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm12(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,265 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package h\u0441\u0441\u0440oe;
|
||||
|
||||
import io.github.humbleui.skija.BlendMode;
|
||||
import io.github.humbleui.skija.Canvas;
|
||||
import io.github.humbleui.skija.ColorFilter;
|
||||
import io.github.humbleui.skija.Data;
|
||||
import io.github.humbleui.skija.Paint;
|
||||
import io.github.humbleui.skija.svg.SVGDOM;
|
||||
import io.github.humbleui.types.Point;
|
||||
import java.awt.Color;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.security.Key;
|
||||
import java.util.Base64;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
import javax.crypto.Cipher;
|
||||
import javax.crypto.spec.IvParameterSpec;
|
||||
import javax.crypto.spec.SecretKeySpec;
|
||||
import r.d8.Cade0e18b60fd9f037d8b2fc8;
|
||||
import \u0430\u0435\u0435.p\u0430x\u0435;
|
||||
|
||||
public class \u0440\u0445xep {
|
||||
private static final /* synthetic */ Map<String, SVGDOM> \u0445j\u0441\u0440jh;
|
||||
private static final /* synthetic */ String j\u0445a\u0445\u0441;
|
||||
|
||||
public \u0440\u0445xep() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
}
|
||||
|
||||
private static /* synthetic */ SVGDOM s\u04bb\u0455\u043e(String string2) {
|
||||
String string3;
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (string2.endsWith(Cade0e18b60fd9f037d8b2fc8.cachedDecodeString(new byte[]{-2130187349 + 2130187263, -2005358345 + 2005358407, -600614392 + 600614339, -706450668 + 706450627}, 959845359 + 1543143744, -1288688175 + 194089200))) {
|
||||
string3 = string2;
|
||||
switch (0) {
|
||||
default: {
|
||||
break;
|
||||
}
|
||||
case 1: {
|
||||
break;
|
||||
}
|
||||
case 2: {
|
||||
break;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
String string4 = string2;
|
||||
string3 = string4 + Cade0e18b60fd9f037d8b2fc8.cachedDecodeString(new byte[]{-130820952 + 130821033, -719415866 + 719415770, -1995522018 + 1995521977, -1456964073 + 1456964166}, -1901245268 + 25904012, 392109289 + 1814390427);
|
||||
}
|
||||
String string5 = string3;
|
||||
return \u0445j\u0441\u0440jh.computeIfAbsent(string5, string -> {
|
||||
try {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
String string2 = string;
|
||||
byte[] byArray = new byte[-767056206 + 767056224];
|
||||
byArray[0] = -2076364042 + 2076364100;
|
||||
byArray[1] = -1515625266 + 1515625261;
|
||||
byArray[2] = -1929235594 + 1929235563;
|
||||
byArray[3] = -1189503085 + 1189503024;
|
||||
byArray[4] = -29841764 + 29841889;
|
||||
byArray[5] = -1889281971 + 1889282098;
|
||||
byArray[-839964657 + 839964663] = -577712576 + 577712667;
|
||||
byArray[-2073844163 + 2073844170] = -2000885615 + 2000885741;
|
||||
byArray[-243416444 + 243416452] = -16681487 + 16681560;
|
||||
byArray[-1012520753 + 1012520762] = -1020272757 + 1020272772;
|
||||
byArray[-1339705191 + 1339705201] = -676549819 + 676549815;
|
||||
byArray[-1441380840 + 1441380851] = -337172463 + 337172416;
|
||||
byArray[-989352991 + 989353003] = -1149283109 + 1149283074;
|
||||
byArray[-2008135146 + 2008135159] = -781284435 + 781284421;
|
||||
byArray[-1457063015 + 1457063029] = -371066533 + 371066494;
|
||||
byArray[-1164651473 + 1164651488] = -1757425755 + 1757425628;
|
||||
byArray[-1671742535 + 1671742551] = -1446102910 + 1446102929;
|
||||
byArray[-489845964 + 489845981] = -863714594 + 863714540;
|
||||
try (InputStream inputStream = \u0440\u0445xep.class.getResourceAsStream(Cade0e18b60fd9f037d8b2fc8.cachedDecodeString(byArray, 175294331 + 1974319269, 578243562 + 2129745277) + string2);){
|
||||
SVGDOM sVGDOM;
|
||||
block21: {
|
||||
if (inputStream == null) {
|
||||
String string3 = string;
|
||||
byte[] byArray2 = new byte[-817148951 + 817149001];
|
||||
byArray2[0] = -1018388752 + 1018388744;
|
||||
byArray2[1] = -1965734633 + 1965734698;
|
||||
byArray2[2] = -262420642 + 262420554;
|
||||
byArray2[3] = -1316677873 + 1316677865;
|
||||
byArray2[4] = -1130128974 + 1130129058;
|
||||
byArray2[5] = -1517137886 + 1517137778;
|
||||
byArray2[-1445703357 + 1445703363] = -121804808 + 121804738;
|
||||
byArray2[-883275733 + 883275740] = -1336809947 + 1336810033;
|
||||
byArray2[-1476813454 + 1476813462] = -1136659122 + 1136659093;
|
||||
byArray2[-1481151606 + 1481151615] = 4;
|
||||
byArray2[-1776649545 + 1776649555] = -1866464301 + 1866464415;
|
||||
byArray2[-1051442157 + 1051442168] = -190215373 + 190215429;
|
||||
byArray2[-273275541 + 273275553] = -1203141463 + 1203141438;
|
||||
byArray2[-1161571078 + 1161571091] = -600395001 + 600394960;
|
||||
byArray2[-1581940478 + 1581940492] = -1385909353 + 1385909476;
|
||||
byArray2[-247918820 + 247918835] = -876641772 + 876641662;
|
||||
byArray2[-691509386 + 691509402] = -1463046249 + 1463046317;
|
||||
byArray2[-1456968061 + 1456968078] = -435187134 + 435187028;
|
||||
byArray2[-1032292568 + 1032292586] = -415301534 + 415301415;
|
||||
byArray2[-825762369 + 825762388] = -737661576 + 737661655;
|
||||
byArray2[-1856325201 + 1856325221] = -338304261 + 338304306;
|
||||
byArray2[-214925401 + 214925422] = -1647109897 + 1647110009;
|
||||
byArray2[-267574765 + 267574787] = -417757939 + 417757951;
|
||||
byArray2[-578449534 + 578449557] = -52810651 + 52810608;
|
||||
byArray2[-550897567 + 550897591] = -358965651 + 358965562;
|
||||
byArray2[-868262521 + 868262546] = -2028127381 + 2028127395;
|
||||
byArray2[-752441183 + 752441209] = -947351001 + 947351108;
|
||||
byArray2[-807154227 + 807154254] = -2117419721 + 2117419710;
|
||||
byArray2[-315307218 + 315307246] = -1220068798 + 1220068761;
|
||||
byArray2[-2115625080 + 2115625109] = -1273459377 + 1273459302;
|
||||
byArray2[-1391223703 + 1391223733] = -218862526 + 218862417;
|
||||
byArray2[-25288012 + 25288043] = 1;
|
||||
byArray2[-1960778086 + 1960778118] = -1465026196 + 1465026128;
|
||||
byArray2[-1004537249 + 1004537282] = -1151114684 + 1151114763;
|
||||
byArray2[-1596151460 + 1596151494] = -390047097 + 390047149;
|
||||
byArray2[-1249312543 + 1249312578] = -1042602097 + 1042602104;
|
||||
byArray2[-1911102969 + 1911103005] = -1559652240 + 1559652177;
|
||||
byArray2[-731832805 + 731832842] = -388980490 + 388980418;
|
||||
byArray2[-230272087 + 230272125] = -2116238309 + 2116238368;
|
||||
byArray2[-582875151 + 582875190] = -2112042025 + 2112041944;
|
||||
byArray2[-1820804229 + 1820804269] = -334328279 + 334328267;
|
||||
byArray2[-1920211392 + 1920211433] = -1592251406 + 1592251396;
|
||||
byArray2[-1194829579 + 1194829621] = -1304932444 + 1304932566;
|
||||
byArray2[-1305826146 + 1305826189] = -1301629610 + 1301629703;
|
||||
byArray2[-1374738246 + 1374738290] = -533074354 + 533074244;
|
||||
byArray2[-1650028043 + 1650028088] = -701583800 + 701583825;
|
||||
byArray2[-929816475 + 929816521] = -1530433461 + 1530433506;
|
||||
byArray2[-1664637947 + 1664637994] = -1;
|
||||
byArray2[-1136545197 + 1136545245] = -1994024813 + 1994024696;
|
||||
byArray2[-824921597 + 824921646] = -724151141 + 724151155;
|
||||
System.err.println(Cade0e18b60fd9f037d8b2fc8.cachedDecodeString(byArray2, -1111722455 + 1687464999, 1266965922 + 447154312) + string3);
|
||||
SVGDOM sVGDOM2 = null;
|
||||
return sVGDOM2;
|
||||
}
|
||||
byte[] byArray3 = inputStream.readAllBytes();
|
||||
Data data = Data.makeFromBytes((byte[])byArray3);
|
||||
try {
|
||||
sVGDOM = new SVGDOM(data);
|
||||
if (data == null) break block21;
|
||||
}
|
||||
catch (Throwable throwable) {
|
||||
if (data != null) {
|
||||
try {
|
||||
data.close();
|
||||
}
|
||||
catch (Throwable throwable2) {
|
||||
throwable.addSuppressed(throwable2);
|
||||
}
|
||||
switch (0) {
|
||||
default: {
|
||||
break;
|
||||
}
|
||||
case 1: {
|
||||
break;
|
||||
}
|
||||
case 2: {
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
throw throwable;
|
||||
}
|
||||
data.close();
|
||||
}
|
||||
return sVGDOM;
|
||||
}
|
||||
}
|
||||
catch (IOException iOException) {
|
||||
iOException.printStackTrace();
|
||||
return null;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
public static /* synthetic */ void hhjs(String string, float f, float f2, float f3, float f4, Color color) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
\u0440\u0445xep.x\u0435\u0435\u0445sip(p\u0430x\u0435.x\u0441\u0441(), string, f, f2, f3, f4, color);
|
||||
}
|
||||
|
||||
public static /* synthetic */ void x\u0435\u0435\u0445sip(Canvas canvas, String string, float f, float f2, float f3, float f4, Color color) {
|
||||
SVGDOM sVGDOM;
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if ((sVGDOM = \u0440\u0445xep.s\u04bb\u0455\u043e(string)) == null) {
|
||||
return;
|
||||
}
|
||||
Point point = sVGDOM.getContainerSize();
|
||||
float f5 = point.getX();
|
||||
float f6 = point.getY();
|
||||
if (f5 <= 0.0f || f6 <= 0.0f) {
|
||||
return;
|
||||
}
|
||||
float f7 = f3 / f5;
|
||||
float f8 = f4 / f6;
|
||||
canvas.save();
|
||||
canvas.translate(f, f2);
|
||||
canvas.scale(f7, f8);
|
||||
if (color != null) {
|
||||
Paint paint = new Paint();
|
||||
ColorFilter colorFilter = ColorFilter.makeBlend((int)color.getRGB(), (BlendMode)BlendMode.SRC_IN);
|
||||
paint.setColorFilter(colorFilter);
|
||||
canvas.saveLayer(null, paint);
|
||||
sVGDOM.render(canvas);
|
||||
canvas.restore();
|
||||
colorFilter.close();
|
||||
paint.close();
|
||||
} else {
|
||||
sVGDOM.render(canvas);
|
||||
}
|
||||
canvas.restore();
|
||||
}
|
||||
|
||||
public static /* synthetic */ void \u0435ie\u0440\u0445\u0430() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
for (SVGDOM sVGDOM : \u0445j\u0441\u0440jh.values()) {
|
||||
if (sVGDOM == null) continue;
|
||||
sVGDOM.close();
|
||||
}
|
||||
\u0445j\u0441\u0440jh.clear();
|
||||
}
|
||||
|
||||
static {
|
||||
j\u0445a\u0445\u0441 = \u0440\u0445xep.a_fd("KbsZO84iaGpKpv0nK++vIPjWCQ69uIcq0nIgJ2+B3dcc+NBVvKG33a0Xt2VJjDmX", "FDNUc8XZZoXzBv+3jMXk0w==");
|
||||
\u0445j\u0441\u0440jh = new HashMap<String, SVGDOM>();
|
||||
}
|
||||
|
||||
private static /* synthetic */ String a_fd(String string, String string2) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (string == null) {
|
||||
return null;
|
||||
}
|
||||
try {
|
||||
byte[] byArray = Base64.getDecoder().decode(string);
|
||||
byte[] byArray2 = new byte[-1567240049 + 1567240065];
|
||||
System.arraycopy(byArray, 0, byArray2, 0, -1604252119 + 1604252135);
|
||||
byte[] byArray3 = new byte[byArray.length - (-1712585415 + 1712585431)];
|
||||
System.arraycopy(byArray, -1238728514 + 1238728530, byArray3, 0, byArray3.length);
|
||||
SecretKeySpec secretKeySpec = new SecretKeySpec(Base64.getDecoder().decode(string2), "AES");
|
||||
Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding");
|
||||
cipher.init(2, (Key)secretKeySpec, new IvParameterSpec(byArray2));
|
||||
return new String(cipher.doFinal(byArray3), "UTF-8");
|
||||
}
|
||||
catch (Exception exception) {
|
||||
throw new IllegalStateException("Encrypted field string decode failed");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package ie\u0441\u0430ej;
|
||||
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
|
||||
public class aohs\u0445j\u0455 {
|
||||
public aohs\u0445j\u0455() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
}
|
||||
|
||||
public static /* synthetic */ boolean s\u0440x\u043e(String string) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (string != null && !string.isEmpty()) {
|
||||
for (char c : string.toCharArray()) {
|
||||
if (c <= 751848458 + -1440325122 + (-381113376 + 1069610008)) continue;
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,137 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package ie\u0441\u0430ej;
|
||||
|
||||
import java.lang.invoke.CallSite;
|
||||
import java.lang.invoke.ConstantCallSite;
|
||||
import java.lang.invoke.MethodHandle;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.lang.invoke.MethodType;
|
||||
|
||||
public class c\u0440\u0440p\u04bb {
|
||||
public /* synthetic */ double \u0435s\u04bb;
|
||||
public /* synthetic */ double \u0445hh\u043e;
|
||||
public /* synthetic */ double \u0455s\u0430j\u0445ch;
|
||||
|
||||
public c\u0440\u0440p\u04bb(double d, double d2, double d3) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
this.\u0435s\u04bb = d;
|
||||
this.\u0445hh\u043e = d2;
|
||||
this.\u0455s\u0430j\u0445ch = d3;
|
||||
}
|
||||
|
||||
public /* synthetic */ c\u0440\u0440p\u04bb j\u0458\u0456\u0455hx\u0441(double d, double d2, double d3) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return new c\u0440\u0440p\u04bb(this.\u0435s\u04bb + d, this.\u0445hh\u043e + d2, this.\u0455s\u0430j\u0445ch + d3);
|
||||
}
|
||||
|
||||
public /* synthetic */ c\u0440\u0440p\u04bb \u0440\u0430a\u0455\u0455(c\u0440\u0440p\u04bb c\u0440\u0440p\u04bb2) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.j\u0458\u0456\u0455hx\u0441(c\u0440\u0440p\u04bb2.\u0435s\u04bb, c\u0440\u0440p\u04bb2.\u0445hh\u043e, c\u0440\u0440p\u04bb2.\u0455s\u0430j\u0445ch);
|
||||
}
|
||||
|
||||
public /* synthetic */ double j\u0456\u0441cc\u04bbs() {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return (double)c\u0440\u0440p\u04bb.a_bsm0("sqrt", sqrt(double ), (double)(this.\u0435s\u04bb * this.\u0435s\u04bb + this.\u0445hh\u043e * this.\u0445hh\u043e + this.\u0455s\u0430j\u0445ch * this.\u0455s\u0430j\u0445ch));
|
||||
}
|
||||
|
||||
public /* synthetic */ c\u0440\u0440p\u04bb \u0445\u0455\u0430\u0430\u0435\u0441(double d) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return new c\u0440\u0440p\u04bb(this.\u0435s\u04bb * d, this.\u0445hh\u043e * d, this.\u0455s\u0430j\u0445ch * d);
|
||||
}
|
||||
|
||||
public /* synthetic */ double sep\u0430\u0441\u0435(c\u0440\u0440p\u04bb c\u0440\u0440p\u04bb2) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return (double)c\u0440\u0440p\u04bb.a_bsm0("sqrt", sqrt(double ), (double)(c\u0440\u0440p\u04bb.a_bsm1("pow", pow(double double ), (double)(c\u0440\u0440p\u04bb2.\u0435s\u04bb - this.\u0435s\u04bb), (double)2.0) + c\u0440\u0440p\u04bb.a_bsm1("pow", pow(double double ), (double)(c\u0440\u0440p\u04bb2.\u0445hh\u043e - this.\u0445hh\u043e), (double)2.0) + c\u0440\u0440p\u04bb.a_bsm1("pow", pow(double double ), (double)(c\u0440\u0440p\u04bb2.\u0455s\u0430j\u0445ch - this.\u0455s\u0430j\u0445ch), (double)2.0)));
|
||||
}
|
||||
|
||||
public /* synthetic */ boolean equals(Object object) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (!(object instanceof c\u0440\u0440p\u04bb)) {
|
||||
return false;
|
||||
}
|
||||
c\u0440\u0440p\u04bb c\u0440\u0440p\u04bb2 = (c\u0440\u0440p\u04bb)object;
|
||||
return c\u0440\u0440p\u04bb.a_bsm2("floor", floor(double ), (double)this.\u0435s\u04bb) == c\u0440\u0440p\u04bb.a_bsm2("floor", floor(double ), (double)c\u0440\u0440p\u04bb2.\u0435s\u04bb) && c\u0440\u0440p\u04bb.a_bsm2("floor", floor(double ), (double)this.\u0445hh\u043e) == c\u0440\u0440p\u04bb.a_bsm2("floor", floor(double ), (double)c\u0440\u0440p\u04bb2.\u0445hh\u043e) && c\u0440\u0440p\u04bb.a_bsm2("floor", floor(double ), (double)this.\u0455s\u0430j\u0445ch) == c\u0440\u0440p\u04bb.a_bsm2("floor", floor(double ), (double)c\u0440\u0440p\u04bb2.\u0455s\u0430j\u0445ch);
|
||||
}
|
||||
|
||||
public /* synthetic */ double a\u0458ea\u0440c\u0441() {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.\u0435s\u04bb;
|
||||
}
|
||||
|
||||
public /* synthetic */ double i\u0440x\u0435\u0430hj() {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.\u0445hh\u043e;
|
||||
}
|
||||
|
||||
public /* synthetic */ double \u0440\u0456\u0441\u0445\u043e\u04bbo() {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.\u0455s\u0430j\u0445ch;
|
||||
}
|
||||
|
||||
public /* synthetic */ void \u0430j\u0456\u043e\u0441\u0441(double d) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.\u0435s\u04bb = d;
|
||||
}
|
||||
|
||||
public /* synthetic */ void \u0458pj\u0455hj\u0435(double d) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.\u0445hh\u043e = d;
|
||||
}
|
||||
|
||||
public /* synthetic */ void rmIPIAkMd(double d) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.\u0455s\u0430j\u0445ch = d;
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm0(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm1(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm2(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large.
Load diff
File diff suppressed because it is too large.
Load diff
@@ -0,0 +1,11 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package ie\u0441\u0430ej;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
public interface h\u0456ap\u0435oi {
|
||||
public File getAssetDir();
|
||||
}
|
||||
|
||||
@@ -0,0 +1,451 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package ie\u0441\u0430ej;
|
||||
|
||||
import java.lang.invoke.CallSite;
|
||||
import java.lang.invoke.ConstantCallSite;
|
||||
import java.lang.invoke.MethodHandle;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.lang.invoke.MethodType;
|
||||
|
||||
public class iaaj\u043e {
|
||||
public /* synthetic */ String e\u0458\u0430\u0458\u0435pc;
|
||||
public /* synthetic */ double \u0458\u0458\u0458;
|
||||
public /* synthetic */ double \u0445\u04bbp\u0440\u0440s;
|
||||
public /* synthetic */ double \u0456\u0430j\u0458\u0456os;
|
||||
public /* synthetic */ double \u0456h\u0440s;
|
||||
public /* synthetic */ double \u0435xja\u0445\u0441s;
|
||||
public /* synthetic */ double p\u0440\u0458\u0430s;
|
||||
public /* synthetic */ double[] cee;
|
||||
public /* synthetic */ String[] sh\u0430\u0445i;
|
||||
public /* synthetic */ long \u0458\u0440x\u0456p;
|
||||
|
||||
public iaaj\u043e() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
}
|
||||
|
||||
public /* synthetic */ boolean equals(Object object) {
|
||||
String string;
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (object == this) {
|
||||
return true;
|
||||
}
|
||||
if (!(object instanceof iaaj\u043e)) {
|
||||
return false;
|
||||
}
|
||||
iaaj\u043e iaaj\u043e2 = (iaaj\u043e)object;
|
||||
if (!iaaj\u043e2.h\u0458c\u0440h(this)) {
|
||||
return false;
|
||||
}
|
||||
if (iaaj\u043e.a_bsm0("compare", compare(double double ), (double)this.\u04bb\u0445c\u0445(), (double)iaaj\u043e2.\u04bb\u0445c\u0445()) != false) {
|
||||
return false;
|
||||
}
|
||||
if (iaaj\u043e.a_bsm0("compare", compare(double double ), (double)this.p\u043eix\u0445e(), (double)iaaj\u043e2.p\u043eix\u0445e()) != false) {
|
||||
return false;
|
||||
}
|
||||
if (iaaj\u043e.a_bsm0("compare", compare(double double ), (double)this.\u04bb\u0435\u0455(), (double)iaaj\u043e2.\u04bb\u0435\u0455()) != false) {
|
||||
return false;
|
||||
}
|
||||
if (iaaj\u043e.a_bsm0("compare", compare(double double ), (double)this.\u0456\u0458\u0456\u043e\u0441c(), (double)iaaj\u043e2.\u0456\u0458\u0456\u043e\u0441c()) != false) {
|
||||
return false;
|
||||
}
|
||||
if (iaaj\u043e.a_bsm0("compare", compare(double double ), (double)this.ah\u0441sa\u0455(), (double)iaaj\u043e2.ah\u0441sa\u0455()) != false) {
|
||||
return false;
|
||||
}
|
||||
if (iaaj\u043e.a_bsm0("compare", compare(double double ), (double)this.s\u0455c\u0435h(), (double)iaaj\u043e2.s\u0455c\u0435h()) != false) {
|
||||
return false;
|
||||
}
|
||||
if (this.op\u0456\u0445\u0455c\u043e() != iaaj\u043e2.op\u0456\u0445\u0455c\u043e()) {
|
||||
return false;
|
||||
}
|
||||
String string2 = this.\u0430h\u04bb\u0430\u0430j();
|
||||
if (iaaj\u043e.a_bsm1("equals", equals(java.lang.Object java.lang.Object ), (Object)string2, (Object)(string = iaaj\u043e2.\u0430h\u04bb\u0430\u0430j())) != false) {
|
||||
return iaaj\u043e.a_bsm2("equals", equals(double[] double[] ), (double[])this.isha\u04bb\u0440\u0440(), (double[])iaaj\u043e2.isha\u04bb\u0440\u0440()) != false && iaaj\u043e.a_bsm3("deepEquals", deepEquals(java.lang.Object[] java.lang.Object[] ), (Object[])this.\u0435\u0435ea(), (Object[])iaaj\u043e2.\u0435\u0435ea()) != false;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
protected /* synthetic */ boolean h\u0458c\u0440h(Object object) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return object instanceof iaaj\u043e;
|
||||
}
|
||||
|
||||
public /* synthetic */ int hashCode() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
int n = 1;
|
||||
n = n * (-258954338 + 258954397) + iaaj\u043e.a_bsm4("hashCode", hashCode(double ), (double)this.\u04bb\u0445c\u0445());
|
||||
n = n * (-1763004261 + 1763004320) + iaaj\u043e.a_bsm4("hashCode", hashCode(double ), (double)this.p\u043eix\u0445e());
|
||||
n = n * (-1072172712 + 1072172771) + iaaj\u043e.a_bsm4("hashCode", hashCode(double ), (double)this.\u04bb\u0435\u0455());
|
||||
n = n * (-876050037 + 876050096) + iaaj\u043e.a_bsm4("hashCode", hashCode(double ), (double)this.\u0456\u0458\u0456\u043e\u0441c());
|
||||
n = n * (-1128295659 + 1128295718) + iaaj\u043e.a_bsm4("hashCode", hashCode(double ), (double)this.ah\u0441sa\u0455());
|
||||
n = n * (-350282460 + 350282519) + iaaj\u043e.a_bsm4("hashCode", hashCode(double ), (double)this.s\u0455c\u0435h());
|
||||
long l2 = this.op\u0456\u0445\u0455c\u043e();
|
||||
n = n * (-573121861 + 573121920) + iaaj\u043e.a_bsm5("hashCode", hashCode(long ), (long)l2);
|
||||
String string = this.\u0430h\u04bb\u0430\u0430j();
|
||||
n = n * (-1001143448 + 1001143507) + (string == null ? -1464853753 + 1464853796 : string.hashCode());
|
||||
n = n * (-1338178233 + 1338178292) + iaaj\u043e.a_bsm6("hashCode", hashCode(double[] ), (double[])this.isha\u04bb\u0440\u0440());
|
||||
return n * (-476542333 + 476542392) + iaaj\u043e.a_bsm7("deepHashCode", deepHashCode(java.lang.Object[] ), (Object[])this.\u0435\u0435ea());
|
||||
}
|
||||
|
||||
public /* synthetic */ String toString() {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
long l2 = this.op\u0456\u0445\u0455c\u043e();
|
||||
CallSite callSite = iaaj\u043e.a_bsm9("deepToString", deepToString(java.lang.Object[] ), (Object[])this.\u0435\u0435ea());
|
||||
CallSite callSite2 = iaaj\u043e.a_bsm8("toString", toString(double[] ), (double[])this.isha\u04bb\u0440\u0440());
|
||||
double d = this.s\u0455c\u0435h();
|
||||
double d2 = this.ah\u0441sa\u0455();
|
||||
double d3 = this.\u0456\u0458\u0456\u043e\u0441c();
|
||||
double d4 = this.\u04bb\u0435\u0455();
|
||||
double d5 = this.p\u043eix\u0445e();
|
||||
double d6 = this.\u04bb\u0445c\u0445();
|
||||
String string = this.\u0430h\u04bb\u0430\u0430j();
|
||||
byte[] byArray = new byte[-763467237 + 763467263];
|
||||
byArray[0] = -391250917 + 391250911;
|
||||
byArray[1] = -2042036701 + 2042036629;
|
||||
byArray[2] = -1191864476 + 1191864413;
|
||||
byArray[3] = -382167490 + 382167400;
|
||||
byArray[4] = -358352881 + 358352902;
|
||||
byArray[5] = -79525701 + 79525815;
|
||||
byArray[-986970355 + 986970361] = -1409804318 + 1409804343;
|
||||
byArray[-561561191 + 561561198] = -1576012080 + 1576012061;
|
||||
byArray[-1372788587 + 1372788595] = -990702399 + 990702341;
|
||||
byArray[-726962170 + 726962179] = -1155479996 + 1155479962;
|
||||
byArray[-1840884630 + 1840884640] = -1088519420 + 1088519395;
|
||||
byArray[-353213537 + 353213548] = -589170246 + 589170263;
|
||||
byArray[-375197216 + 375197228] = -1904071791 + 1904071903;
|
||||
byArray[-1768931936 + 1768931949] = -1380601815 + 1380601895;
|
||||
byArray[-2053699961 + 2053699975] = -69346605 + 69346726;
|
||||
byArray[-42111950 + 42111965] = 0;
|
||||
byArray[-1177049321 + 1177049337] = -283139841 + 283139948;
|
||||
byArray[-1715701042 + 1715701059] = -1803046673 + 1803046718;
|
||||
byArray[-429614677 + 429614695] = -2074201400 + 2074201358;
|
||||
byArray[-1654673139 + 1654673158] = -212113674 + 212113662;
|
||||
byArray[-2123676503 + 2123676523] = -1888856134 + 1888856034;
|
||||
byArray[-717586795 + 717586816] = -1905479222 + 1905479241;
|
||||
byArray[-70466331 + 70466353] = -923217125 + 923217156;
|
||||
byArray[-220510867 + 220510890] = -2084793300 + 2084793225;
|
||||
byArray[-375465711 + 375465735] = -764263650 + 764263751;
|
||||
byArray[-1492292620 + 1492292645] = -2056233040 + 2056233083;
|
||||
byte[] byArray2 = new byte[-226443669 + 226443676];
|
||||
byArray2[0] = -1804454931 + 1804454895;
|
||||
byArray2[1] = -1327366330 + 1327366233;
|
||||
byArray2[2] = -1670907230 + 1670907293;
|
||||
byArray2[3] = -683111205 + 683111237;
|
||||
byArray2[4] = -1137195283 + 1137195292;
|
||||
byArray2[5] = -2106767435 + 2106767459;
|
||||
byArray2[-1506326257 + 1506326263] = -236559979 + 236560007;
|
||||
byte[] byArray3 = new byte[-1986295403 + 1986295410];
|
||||
byArray3[0] = -751562529 + 751562422;
|
||||
byArray3[1] = -655249239 + 655249164;
|
||||
byArray3[2] = -1346130778 + 1346130903;
|
||||
byArray3[3] = -1537458621 + 1537458655;
|
||||
byArray3[4] = -985743391 + 985743353;
|
||||
byArray3[5] = -731599706 + 731599674;
|
||||
byArray3[-403548099 + 403548105] = -2075016312 + 2075016221;
|
||||
byte[] byArray4 = new byte[-446450792 + 446450799];
|
||||
byArray4[0] = -1334421768 + 1334421895;
|
||||
byArray4[1] = -931209951 + 931209890;
|
||||
byArray4[2] = -1777765910 + 1777765860;
|
||||
byArray4[3] = -228644281 + 228644153;
|
||||
byArray4[4] = -1423706280 + 1423706365;
|
||||
byArray4[5] = -1833912384 + 1833912355;
|
||||
byArray4[-1431543774 + 1431543780] = -1278803965 + 1278803933;
|
||||
byte[] byArray5 = new byte[-1692713071 + 1692713080];
|
||||
byArray5[0] = -2108391177 + 2108391300;
|
||||
byArray5[1] = -1109593209 + 1109593279;
|
||||
byArray5[2] = -497768209 + 497768147;
|
||||
byArray5[3] = -1894974814 + 1894974927;
|
||||
byArray5[4] = -2070415567 + 2070415653;
|
||||
byArray5[5] = -499183025 + 499182970;
|
||||
byArray5[-1813822074 + 1813822080] = -1017054673 + 1017054665;
|
||||
byArray5[-1471320808 + 1471320815] = -232362820 + 232362902;
|
||||
byArray5[-1702459313 + 1702459321] = -1845229920 + 1845229972;
|
||||
byte[] byArray6 = new byte[-1646218226 + 1646218238];
|
||||
byArray6[0] = -1317748852 + 1317748966;
|
||||
byArray6[1] = -883447885 + 883447923;
|
||||
byArray6[2] = -927354325 + 927354242;
|
||||
byArray6[3] = -1060718816 + 1060718899;
|
||||
byArray6[4] = -1830461221 + 1830461141;
|
||||
byArray6[5] = -951063867 + 951063926;
|
||||
byArray6[-2137205298 + 2137205304] = -1241236409 + 1241236420;
|
||||
byArray6[-563292751 + 563292758] = -1692703233 + 1692703225;
|
||||
byArray6[-1087978884 + 1087978892] = -1473626232 + 1473626340;
|
||||
byArray6[-602704967 + 602704976] = -2104738665 + 2104738658;
|
||||
byArray6[-1079485664 + 1079485674] = -1526450023 + 1526449902;
|
||||
byArray6[-416793937 + 416793948] = -1491406568 + 1491406494;
|
||||
byte[] byArray7 = new byte[-980309263 + 980309276];
|
||||
byArray7[0] = -1660958024 + 1660958066;
|
||||
byArray7[1] = -542092799 + 542092741;
|
||||
byArray7[2] = -810175990 + 810176053;
|
||||
byArray7[3] = -619068670 + 619068725;
|
||||
byArray7[4] = -177672029 + 177671920;
|
||||
byArray7[5] = -608280167 + 608280268;
|
||||
byArray7[-2104564522 + 2104564528] = -1956182380 + 1956182506;
|
||||
byArray7[-131056893 + 131056900] = -1;
|
||||
byArray7[-691108508 + 691108516] = -1819916260 + 1819916343;
|
||||
byArray7[-724773453 + 724773462] = -604737763 + 604737838;
|
||||
byArray7[-1374768765 + 1374768775] = -949902624 + 949902744;
|
||||
byArray7[-2000962106 + 2000962117] = -1289179807 + 1289179722;
|
||||
byArray7[-768038077 + 768038089] = -1986126697 + 1986126773;
|
||||
byte[] byArray8 = new byte[-492906453 + 492906470];
|
||||
byArray8[0] = -1211071015 + 1211071051;
|
||||
byArray8[1] = -1694694835 + 1694694868;
|
||||
byArray8[2] = -686656576 + 686656646;
|
||||
byArray8[3] = -849533884 + 849533988;
|
||||
byArray8[4] = -1330598438 + 1330598351;
|
||||
byArray8[5] = -1886937124 + 1886937070;
|
||||
byArray8[-477751908 + 477751914] = -1462094279 + 1462094308;
|
||||
byArray8[-567884013 + 567884020] = -290336060 + 290336149;
|
||||
byArray8[-1077609030 + 1077609038] = -309162714 + 309162635;
|
||||
byArray8[-681332801 + 681332810] = 0;
|
||||
byArray8[-726801065 + 726801075] = -1985974547 + 1985974435;
|
||||
byArray8[-1922402812 + 1922402823] = -84088267 + 84088320;
|
||||
byArray8[-502535445 + 502535457] = -486799738 + 486799816;
|
||||
byArray8[-1596116724 + 1596116737] = -686631861 + 686631882;
|
||||
byArray8[-2082509265 + 2082509279] = -1962887004 + 1962887101;
|
||||
byArray8[-1179712399 + 1179712414] = -1298946319 + 1298946269;
|
||||
byArray8[-6304733 + 6304749] = -1614614815 + 1614614767;
|
||||
byte[] byArray9 = new byte[-89441985 + 89441992];
|
||||
byArray9[0] = -745912847 + 745912881;
|
||||
byArray9[1] = -1981620035 + 1981619967;
|
||||
byArray9[2] = -444969464 + 444969532;
|
||||
byArray9[3] = -703669927 + 703669892;
|
||||
byArray9[4] = -1031513632 + 1031513548;
|
||||
byArray9[5] = -891743167 + 891743088;
|
||||
byArray9[-1969491030 + 1969491036] = -1925795657 + 1925795715;
|
||||
byte[] byArray10 = new byte[-713581123 + 713581136];
|
||||
byArray10[0] = -1613852663 + 1613852623;
|
||||
byArray10[1] = -385025799 + 385025725;
|
||||
byArray10[2] = -730472469 + 730472576;
|
||||
byArray10[3] = -1696651737 + 1696651619;
|
||||
byArray10[4] = -1060533260 + 1060533274;
|
||||
byArray10[5] = -1263180536 + 1263180622;
|
||||
byArray10[-672289078 + 672289084] = -1081337669 + 1081337613;
|
||||
byArray10[-929573448 + 929573455] = -323971829 + 323971760;
|
||||
byArray10[-745358401 + 745358409] = -1447866431 + 1447866329;
|
||||
byArray10[-1083487179 + 1083487188] = -1743627142 + 1743627236;
|
||||
byArray10[-33708849 + 33708859] = -1211839131 + 1211839081;
|
||||
byArray10[-462856532 + 462856543] = -274706730 + 274706792;
|
||||
byArray10[-130535508 + 130535520] = -2133123341 + 2133123216;
|
||||
return (String)((Object)iaaj\u043e.a_bsm10("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray, (int)(773703952 + 610437488), (int)(1945390482 + 2038079452))) + string + (String)((Object)iaaj\u043e.a_bsm10("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray2, (int)(-792540052 + 340203677), (int)(1630021330 + 1359579999))) + d6 + (String)((Object)iaaj\u043e.a_bsm10("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray3, (int)(-42836156 + 136291917), (int)(1849950444 + 145782280))) + d5 + (String)((Object)iaaj\u043e.a_bsm10("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray4, (int)(-1284431180 + 1657926542), (int)(-1488977871 + 210023315))) + d4 + (String)((Object)iaaj\u043e.a_bsm10("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray5, (int)(76901595 + 1092999392), (int)(1818917000 + 0xC1CFFFF))) + d3 + (String)((Object)iaaj\u043e.a_bsm10("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray6, (int)(1844548422 + 1985696005), (int)(1182160469 + 567022060))) + d2 + (String)((Object)iaaj\u043e.a_bsm10("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray7, (int)(1414546401 + 792805296), (int)(-24834929 + 2073456011))) + d + (String)((Object)iaaj\u043e.a_bsm10("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray8, (int)(1895173207 + 1414707440), (int)(711786430 + 1063807511))) + callSite2 + (String)((Object)iaaj\u043e.a_bsm10("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray9, (int)(119700319 + 1978335661), (int)(-17041976 + 798767312))) + callSite + (String)((Object)iaaj\u043e.a_bsm10("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray10, (int)(-396449346 + 1943188082), (int)(-1004366039 + 792222769))) + l2 + (String)((Object)iaaj\u043e.a_bsm10("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-1846608870 + 1846608845}, (int)(-1084521656 + 747268253), (int)(-829137481 + 1637339764)));
|
||||
}
|
||||
|
||||
public /* synthetic */ void \u0441\u0441\u043e\u0440\u04bb(String string) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.e\u0458\u0430\u0458\u0435pc = string;
|
||||
}
|
||||
|
||||
public /* synthetic */ void pj\u043e\u0456\u0430i\u0440(double d) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.\u0458\u0458\u0458 = d;
|
||||
}
|
||||
|
||||
public /* synthetic */ void c\u0456\u0456h\u0435\u0458\u0435(double d) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.\u0445\u04bbp\u0440\u0440s = d;
|
||||
}
|
||||
|
||||
public /* synthetic */ void \u0458s\u0430e\u0458(double d) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.\u0456\u0430j\u0458\u0456os = d;
|
||||
}
|
||||
|
||||
public /* synthetic */ void eo\u043ec\u0455a(double d) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.\u0456h\u0440s = d;
|
||||
}
|
||||
|
||||
public /* synthetic */ void \u0456\u0440\u0430\u0430phe(double d) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.\u0435xja\u0445\u0441s = d;
|
||||
}
|
||||
|
||||
public /* synthetic */ void \u0445jox(double d) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.p\u0440\u0458\u0430s = d;
|
||||
}
|
||||
|
||||
public /* synthetic */ void \u0435\u0455\u0456(double[] dArray) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.cee = dArray;
|
||||
}
|
||||
|
||||
public /* synthetic */ void \u0455cp\u0430\u043ej(String[] stringArray) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.sh\u0430\u0445i = stringArray;
|
||||
}
|
||||
|
||||
public /* synthetic */ void j\u0441i\u0456\u0430(long l2) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.\u0458\u0440x\u0456p = l2;
|
||||
}
|
||||
|
||||
public /* synthetic */ String \u0430h\u04bb\u0430\u0430j() {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.e\u0458\u0430\u0458\u0435pc;
|
||||
}
|
||||
|
||||
public /* synthetic */ double \u04bb\u0445c\u0445() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.\u0458\u0458\u0458;
|
||||
}
|
||||
|
||||
public /* synthetic */ double p\u043eix\u0445e() {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.\u0445\u04bbp\u0440\u0440s;
|
||||
}
|
||||
|
||||
public /* synthetic */ double \u04bb\u0435\u0455() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.\u0456\u0430j\u0458\u0456os;
|
||||
}
|
||||
|
||||
public /* synthetic */ double \u0456\u0458\u0456\u043e\u0441c() {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.\u0456h\u0440s;
|
||||
}
|
||||
|
||||
public /* synthetic */ double ah\u0441sa\u0455() {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.\u0435xja\u0445\u0441s;
|
||||
}
|
||||
|
||||
public /* synthetic */ double s\u0455c\u0435h() {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.p\u0440\u0458\u0430s;
|
||||
}
|
||||
|
||||
public /* synthetic */ double[] isha\u04bb\u0440\u0440() {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.cee;
|
||||
}
|
||||
|
||||
public /* synthetic */ String[] \u0435\u0435ea() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.sh\u0430\u0445i;
|
||||
}
|
||||
|
||||
public /* synthetic */ long op\u0456\u0445\u0455c\u043e() {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return this.\u0458\u0440x\u0456p;
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm0(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm1(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm2(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm3(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm4(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm5(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm6(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm7(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm8(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm9(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm10(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,71 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package ie\u0441\u0430ej;
|
||||
|
||||
import java.lang.invoke.CallSite;
|
||||
import java.lang.invoke.ConstantCallSite;
|
||||
import java.lang.invoke.MethodHandle;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.lang.invoke.MethodType;
|
||||
import net.minecraft.class_2561;
|
||||
import net.minecraft.class_310;
|
||||
import net.minecraft.class_5250;
|
||||
import net.minecraft.class_5251;
|
||||
import \u0440o\u0456\u0445o.\u0445\u0440\u0430\u0435\u0445\u043e;
|
||||
|
||||
public class ipsja {
|
||||
public ipsja() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
}
|
||||
|
||||
private static /* synthetic */ class_5250 xoc() {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return ipsja.a_bsm1("method_43470", method_43470(java.lang.String ), (String)((Object)ipsja.a_bsm0("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-639053943 + 639053896}, (int)(-1919985362 + 549147932), (int)(-1382843433 + 1840226155)))).method_27694(class_25832 -> {
|
||||
if (true | false) {
|
||||
}
|
||||
return class_25832.method_27703((class_5251)ipsja.a_bsm3("method_27717", method_27717(int ), (int)(-18304836 + 27252684)));
|
||||
}).method_10852((class_2561)ipsja.a_bsm1("method_43470", method_43470(java.lang.String ), (String)((Object)ipsja.a_bsm0("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-304755651 + 304755681}, (int)(-1913382306 + 674339783), (int)(-1263232385 + 1447587966)))).method_27694(class_25832 -> {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
return class_25832.method_27703((class_5251)ipsja.a_bsm3("method_27717", method_27717(int ), (int)((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)ipsja.a_bsm4("jaa\u0435\u0445c", jaa\u0435\u0445c()))).\u0456p\u0458.h\u0445ph().aj\u0445\u043e().getRGB()));
|
||||
})).method_10852((class_2561)ipsja.a_bsm1("method_43470", method_43470(java.lang.String ), (String)((Object)ipsja.a_bsm0("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-760367178 + 760367240, -1874775387 + 1874775453}, (int)(1367809165 + 226181748), (int)(-1215476691 + 1699270824)))).method_27694(class_25832 -> {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
return class_25832.method_27703((class_5251)ipsja.a_bsm3("method_27717", method_27717(int ), (int)(-121864432 + 130812280)));
|
||||
}));
|
||||
}
|
||||
|
||||
public static /* synthetic */ void e\u04bb\u0445\u0435\u0441\u0445(String string) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
((class_310)ipsja.a_bsm2("method_1551", method_1551())).field_1705.method_1743().method_1812((class_2561)ipsja.xoc().method_10852((class_2561)ipsja.a_bsm1("method_43470", method_43470(java.lang.String ), (String)string)));
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm0(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm1(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm2(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm3(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm4(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,48 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package ie\u0441\u0430ej;
|
||||
|
||||
import net.minecraft.class_2596;
|
||||
import net.minecraft.class_310;
|
||||
import net.minecraft.class_7202;
|
||||
import net.minecraft.class_7204;
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
|
||||
public class iso {
|
||||
private static final /* synthetic */ class_310 x\u0441x\u0435hi;
|
||||
|
||||
public iso() {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
}
|
||||
|
||||
public static /* synthetic */ void \u0458\u0455\u0441(class_2596<?> class_25962) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (x\u0441x\u0435hi.method_1562() != null && x\u0441x\u0435hi.method_1562() != null) {
|
||||
x\u0441x\u0435hi.method_1562().method_52787(class_25962);
|
||||
}
|
||||
}
|
||||
|
||||
public static /* synthetic */ void \u0435\u0458o(class_7204 class_72042) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (x\u0441x\u0435hi.method_1562() != null && iso.x\u0441x\u0435hi.field_1687 != null) {
|
||||
try (class_7202 class_72022 = iso.x\u0441x\u0435hi.field_1687.method_41925().method_41937();){
|
||||
int n = class_72022.method_41942();
|
||||
x\u0441x\u0435hi.method_1562().method_52787(class_72042.predict(n));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
x\u0441x\u0435hi = class_310.method_1551();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,208 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package ie\u0441\u0430ej;
|
||||
|
||||
import java.io.BufferedReader;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStreamReader;
|
||||
import java.lang.invoke.CallSite;
|
||||
import java.lang.invoke.ConstantCallSite;
|
||||
import java.lang.invoke.MethodHandle;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.lang.invoke.MethodType;
|
||||
import java.net.HttpURLConnection;
|
||||
import java.net.SocketTimeoutException;
|
||||
import java.net.URL;
|
||||
|
||||
public class i\u0435\u0445\u0440 {
|
||||
public i\u0435\u0445\u0440() {
|
||||
if (true | false) {
|
||||
}
|
||||
i\u0435\u0445\u0440.a_bsm0("setFollowRedirects", setFollowRedirects(boolean ), (boolean)true);
|
||||
}
|
||||
|
||||
public static /* synthetic */ HttpURLConnection i\u0430\u0435i\u043e(String string, String string2, String string3) throws IOException {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
HttpURLConnection httpURLConnection = (HttpURLConnection)new URL(string).openConnection();
|
||||
httpURLConnection.setRequestMethod(string2);
|
||||
httpURLConnection.setConnectTimeout(-1380587974 + 1380592974);
|
||||
httpURLConnection.setReadTimeout(-1575879991 + 1575889991);
|
||||
byte[] byArray = new byte[-1187545331 + 1187545341];
|
||||
byArray[0] = -47887317 + 47887267;
|
||||
byArray[1] = 4;
|
||||
byArray[2] = -1182983505 + 1182983397;
|
||||
byArray[3] = -1290217077 + 1290217099;
|
||||
byArray[4] = -1173279705 + 1173279825;
|
||||
byArray[5] = -858093881 + 858093891;
|
||||
byArray[-585124095 + 585124101] = -290952769 + 290952744;
|
||||
byArray[-209097022 + 209097029] = -881994367 + 881994326;
|
||||
byArray[-1495953807 + 1495953815] = -125229288 + 125229342;
|
||||
byArray[-589914231 + 589914240] = -1367091272 + 1367091235;
|
||||
httpURLConnection.setRequestProperty((String)((Object)i\u0435\u0445\u0440.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray, (int)(-1729999212 + 2055521490), (int)(1431338329 + 2105300339))), string3);
|
||||
httpURLConnection.setInstanceFollowRedirects(true);
|
||||
httpURLConnection.setDoOutput(true);
|
||||
return httpURLConnection;
|
||||
}
|
||||
|
||||
public static /* synthetic */ String o\u0456\u0445(String string, String string2, String string3) {
|
||||
try {
|
||||
String string4;
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
HttpURLConnection httpURLConnection = i\u0435\u0445\u0440.i\u0430\u0435i\u043e(string, string2, string3);
|
||||
BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(httpURLConnection.getInputStream()));
|
||||
StringBuilder stringBuilder = new StringBuilder();
|
||||
while ((string4 = bufferedReader.readLine()) != null) {
|
||||
stringBuilder.append(string4).append((String)((Object)i\u0435\u0445\u0440.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-1673077018 + 1673077036}, (int)(-1498927800 + 1423232564), (int)(-257750787 + 141291537))));
|
||||
}
|
||||
bufferedReader.close();
|
||||
return stringBuilder.toString();
|
||||
}
|
||||
catch (SocketTimeoutException socketTimeoutException) {
|
||||
byte[] byArray = new byte[-1292507301 + 1292507315];
|
||||
byArray[0] = -885914648 + 885914617;
|
||||
byArray[1] = -2017334776 + 2017334679;
|
||||
byArray[2] = -112329191 + 112329226;
|
||||
byArray[3] = -215182099 + 215181972;
|
||||
byArray[4] = -493489198 + 493489245;
|
||||
byArray[5] = -613989670 + 613989545;
|
||||
byArray[-398784840 + 398784846] = -1869018296 + 1869018396;
|
||||
byArray[-465699964 + 465699971] = -512990997 + 512990914;
|
||||
byArray[-648831811 + 648831819] = -1128517486 + 1128517511;
|
||||
byArray[-2027418095 + 2027418104] = 2;
|
||||
byArray[-1019435995 + 1019436005] = -751307030 + 751307036;
|
||||
byArray[-2104591484 + 2104591495] = -1839144910 + 1839144842;
|
||||
byArray[-758288883 + 758288895] = -1897556353 + 1897556284;
|
||||
byArray[-564383491 + 564383504] = -1275655051 + 1275654987;
|
||||
System.err.println((String)((Object)i\u0435\u0445\u0440.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray, (int)(892037785 + 1697263547), (int)(-1244273796 + 133945941))));
|
||||
return null;
|
||||
}
|
||||
catch (IOException iOException) {
|
||||
byte[] byArray = new byte[-1214323109 + 1214323135];
|
||||
byArray[0] = -362441316 + 362441397;
|
||||
byArray[1] = -2008406801 + 2008406788;
|
||||
byArray[2] = -1644415258 + 1644415286;
|
||||
byArray[3] = -2098285239 + 2098285288;
|
||||
byArray[4] = -406976152 + 406976231;
|
||||
byArray[5] = -1231947121 + 1231947032;
|
||||
byArray[-2065343454 + 2065343460] = -845743808 + 845743931;
|
||||
byArray[-1050647303 + 1050647310] = -147908052 + 147908166;
|
||||
byArray[-1711154111 + 1711154119] = -1182676178 + 1182676241;
|
||||
byArray[-1861045974 + 1861045983] = -1804417853 + 1804417860;
|
||||
byArray[-640338171 + 640338181] = 4;
|
||||
byArray[-1536502350 + 1536502361] = -1901315951 + 1901315904;
|
||||
byArray[-1580547619 + 1580547631] = -1;
|
||||
byArray[-490240223 + 490240236] = -201494392 + 201494298;
|
||||
byArray[-2077746936 + 2077746950] = 3;
|
||||
byArray[-444462352 + 444462367] = -1717916122 + 1717916041;
|
||||
byArray[-1156882068 + 1156882084] = -693057953 + 693058009;
|
||||
byArray[-941002837 + 941002854] = -711517389 + 711517270;
|
||||
byArray[-909578565 + 909578583] = -1175321352 + 1175321396;
|
||||
byArray[-1592078931 + 1592078950] = -1742416494 + 1742416399;
|
||||
byArray[-112171259 + 112171279] = -510086058 + 510086025;
|
||||
byArray[-1521621751 + 1521621772] = -2090705368 + 2090705317;
|
||||
byArray[-721779221 + 721779243] = -952128821 + 952128897;
|
||||
byArray[-497012950 + 497012973] = -401222848 + 401222732;
|
||||
byArray[-1279617825 + 1279617849] = -1627473279 + 1627473249;
|
||||
byArray[-668893666 + 668893691] = -34756868 + 34756783;
|
||||
System.err.println((String)((Object)i\u0435\u0445\u0440.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray, (int)(1567635500 + 1610319167), (int)(1137809667 + 1773868168))));
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
public static /* synthetic */ String \u0430\u0455c\u04bb\u0445\u0441(String string) throws IOException {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
byte[] byArray = new byte[-1742781646 + 1742781718];
|
||||
byArray[0] = -232482105 + 232482134;
|
||||
byArray[1] = -1069476363 + 1069476470;
|
||||
byArray[2] = -564507800 + 564507852;
|
||||
byArray[3] = -1615369583 + 1615369484;
|
||||
byArray[4] = -4660337 + 4660346;
|
||||
byArray[5] = -1768548616 + 1768548702;
|
||||
byArray[-117088412 + 117088418] = -1852798838 + 1852798947;
|
||||
byArray[-1964432317 + 1964432324] = -871890824 + 871890734;
|
||||
byArray[-532680719 + 532680727] = -1195114816 + 1195114755;
|
||||
byArray[-782126555 + 782126564] = -224574075 + 224574107;
|
||||
byArray[-1061198753 + 1061198763] = -2040831079 + 2040830971;
|
||||
byArray[-1580718108 + 1580718119] = -1570608893 + 1570608861;
|
||||
byArray[-1677696602 + 1677696614] = -1751965 + 1751900;
|
||||
byArray[-2133512513 + 2133512526] = -896794276 + 896794390;
|
||||
byArray[-889841127 + 889841141] = -1971086250 + 1971086132;
|
||||
byArray[-1483019114 + 1483019129] = -717479464 + 717479516;
|
||||
byArray[-1501954780 + 1501954796] = -1048158387 + 1048158502;
|
||||
byArray[-177109809 + 177109826] = -462218858 + 462218853;
|
||||
byArray[-1349131032 + 1349131050] = -727395483 + 727395363;
|
||||
byArray[-1888749012 + 1888749031] = -2019907246 + 2019907278;
|
||||
byArray[-1937326150 + 1937326170] = -1433470528 + 1433470407;
|
||||
byArray[-397500554 + 397500575] = -854044461 + 854044424;
|
||||
byArray[-2038983808 + 2038983830] = -1925420856 + 1925420882;
|
||||
byArray[-73063158 + 73063181] = 3;
|
||||
byArray[-574182599 + 574182623] = -1;
|
||||
byArray[-1890281229 + 1890281254] = -1334797424 + 1334797377;
|
||||
byArray[-1079430840 + 1079430866] = -1837160970 + 1837160872;
|
||||
byArray[-57406282 + 57406309] = -255528102 + 255528072;
|
||||
byArray[-1660202529 + 1660202557] = -1789077567 + 1789077511;
|
||||
byArray[-682740647 + 682740676] = -528021639 + 528021615;
|
||||
byArray[-1338051584 + 1338051614] = -1636402308 + 1636402266;
|
||||
byArray[-2057833161 + 2057833192] = -1002547083 + 1002547206;
|
||||
byArray[-628690584 + 628690616] = -1445390742 + 1445390790;
|
||||
byArray[-2111096014 + 2111096047] = -1793671204 + 1793671238;
|
||||
byArray[-863297458 + 863297492] = -336719353 + 336719324;
|
||||
byArray[-551662253 + 551662288] = -736268195 + 736268230;
|
||||
byArray[-1718078414 + 1718078450] = -913372443 + 913372391;
|
||||
byArray[-861991355 + 861991392] = -325805419 + 325805334;
|
||||
byArray[-1733157493 + 1733157531] = -952705335 + 952705236;
|
||||
byArray[-608631114 + 608631153] = -1711386937 + 1711386812;
|
||||
byArray[-63572394 + 63572434] = -899482924 + 899482814;
|
||||
byArray[-1879246956 + 1879246997] = -1438551253 + 1438551241;
|
||||
byArray[-1530173054 + 1530173096] = -1968097022 + 1968097046;
|
||||
byArray[-204565973 + 204566016] = -1244390300 + 1244390422;
|
||||
byArray[-1581882563 + 1581882607] = -990510115 + 990510188;
|
||||
byArray[-536292318 + 536292363] = -578491144 + 578491168;
|
||||
byArray[-1776764888 + 1776764934] = -691283284 + 691283164;
|
||||
byArray[-1649187494 + 1649187541] = -1548647670 + 1548647550;
|
||||
byArray[-314551971 + 314552019] = -2141673065 + 2141672983;
|
||||
byArray[-989121107 + 989121156] = -808299229 + 808299259;
|
||||
byArray[-359052446 + 359052496] = -1651063911 + 1651063821;
|
||||
byArray[-1371113334 + 1371113385] = -5979016 + 5978964;
|
||||
byArray[-2061216264 + 2061216316] = -407452149 + 407452212;
|
||||
byArray[-635437965 + 635438018] = -951936885 + 951936911;
|
||||
byArray[-1589083451 + 1589083505] = -7542745 + 7542648;
|
||||
byArray[-1271415714 + 1271415769] = -1115532737 + 1115532789;
|
||||
byArray[-1419996957 + 1419997013] = -556809972 + 556809919;
|
||||
byArray[-6919952 + 6920009] = -1502719442 + 1502719407;
|
||||
byArray[-868834480 + 868834538] = -392707708 + 392707608;
|
||||
byArray[-1006663781 + 1006663840] = -86438623 + 86438649;
|
||||
byArray[-1202573253 + 1202573313] = -244436627 + 244436607;
|
||||
byArray[-719739491 + 719739552] = -663555342 + 663555333;
|
||||
byArray[-393554126 + 393554188] = -1716538999 + 1716538959;
|
||||
byArray[-1934754593 + 1934754656] = -39118809 + 39118702;
|
||||
byArray[-437801936 + 437802000] = -1921923164 + 1921923141;
|
||||
byArray[-818362191 + 818362256] = -898761174 + 898761047;
|
||||
byArray[-1419942519 + 1419942585] = -723763503 + 723763500;
|
||||
byArray[-879138711 + 879138778] = -1964620791 + 1964620832;
|
||||
byArray[-1180255555 + 1180255623] = -1235314306 + 1235314219;
|
||||
byArray[-138064414 + 138064483] = -233216912 + 233216964;
|
||||
byArray[-1053220321 + 1053220391] = 4;
|
||||
byArray[-1229509984 + 1229510055] = -825059902 + 825059952;
|
||||
return i\u0435\u0445\u0440.o\u0456\u0445(string, (String)((Object)i\u0435\u0445\u0440.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-1897013858 + 1897013912, -1137985478 + 1137985413, -1414690868 + 1414690966}, (int)(-1470775891 + 1959550836), (int)(-1046178940 + 1987224723))), (String)((Object)i\u0435\u0445\u0440.a_bsm1("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray, (int)(-1734729264 + 2080961234), (int)(783904779 + 1177486556))));
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm0(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm1(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,223 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package ie\u0441\u0430ej;
|
||||
|
||||
import java.awt.image.BufferedImage;
|
||||
import java.awt.image.ColorModel;
|
||||
import java.awt.image.Kernel;
|
||||
import java.lang.invoke.CallSite;
|
||||
import java.lang.invoke.ConstantCallSite;
|
||||
import java.lang.invoke.MethodHandle;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.lang.invoke.MethodType;
|
||||
|
||||
public class i\u0445a\u0456x\u0435\u0430 {
|
||||
protected /* synthetic */ float \u043ecxssj;
|
||||
protected /* synthetic */ Kernel \u0445s\u043eo;
|
||||
|
||||
public i\u0445a\u0456x\u0435\u0430(float f) {
|
||||
if (true | false) {
|
||||
}
|
||||
this.\u0430\u0435a\u043e\u0430\u04bb\u0458(f);
|
||||
}
|
||||
|
||||
public static /* synthetic */ void c\u04bbx\u0458p\u0456(Kernel kernel, int[] nArray, int[] nArray2, int n, int n2, boolean bl, boolean bl2, boolean bl3, int n3) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
float[] fArray = kernel.getKernelData(null);
|
||||
int n4 = kernel.getWidth();
|
||||
int n5 = n4 / 2;
|
||||
for (int i = 0; i < n2; ++i) {
|
||||
int n6 = i;
|
||||
int n7 = i * n;
|
||||
for (int j = 0; j < n; ++j) {
|
||||
int n8;
|
||||
int n9;
|
||||
int n10;
|
||||
float f = 0.0f;
|
||||
float f2 = 0.0f;
|
||||
float f3 = 0.0f;
|
||||
float f4 = 0.0f;
|
||||
for (n10 = -n5; n10 <= n5; ++n10) {
|
||||
float f5 = fArray[n5 + n10];
|
||||
if (f5 == 0.0f) continue;
|
||||
n9 = j + n10;
|
||||
if (n9 < 0) {
|
||||
if (n3 == 1) {
|
||||
n9 = 0;
|
||||
} else if (n3 == 2) {
|
||||
n9 = (j + n) % n;
|
||||
}
|
||||
} else if (n9 >= n) {
|
||||
if (n3 == 1) {
|
||||
n9 = n - 1;
|
||||
} else if (n3 == 2) {
|
||||
n9 = (j + n) % n;
|
||||
}
|
||||
}
|
||||
n8 = nArray[n7 + n9];
|
||||
int n11 = n8 >> -1714881124 + 1714881148 & -532203047 + 532203302;
|
||||
int n12 = n8 >> -5431296 + 5431312 & -1407130513 + 1407130768;
|
||||
int n13 = n8 >> -1274763451 + 1274763459 & -1050311864 + 1050312119;
|
||||
int n14 = n8 & -1277969324 + 1277969579;
|
||||
if (bl2) {
|
||||
float f6 = (float)n11 * 0.003921569f;
|
||||
n12 = (int)((float)n12 * f6);
|
||||
n13 = (int)((float)n13 * f6);
|
||||
n14 = (int)((float)n14 * f6);
|
||||
}
|
||||
f4 += f5 * (float)n11;
|
||||
f += f5 * (float)n12;
|
||||
f2 += f5 * (float)n13;
|
||||
f3 += f5 * (float)n14;
|
||||
}
|
||||
if (bl3 && f4 != 0.0f && f4 != 255.0f) {
|
||||
float f7 = 255.0f / f4;
|
||||
f *= f7;
|
||||
f2 *= f7;
|
||||
f3 *= f7;
|
||||
}
|
||||
n10 = bl ? i\u0445a\u0456x\u0435\u0430.ho\u0458\u043ee\u0441p((int)((double)f4 + 0.5)) : -2059010736 + 2059010991;
|
||||
int n15 = i\u0445a\u0456x\u0435\u0430.ho\u0458\u043ee\u0441p((int)((double)f + 0.5));
|
||||
n9 = i\u0445a\u0456x\u0435\u0430.ho\u0458\u043ee\u0441p((int)((double)f2 + 0.5));
|
||||
n8 = i\u0445a\u0456x\u0435\u0430.ho\u0458\u043ee\u0441p((int)((double)f3 + 0.5));
|
||||
nArray2[n6] = n10 << -1144460716 + 1144460740 | n15 << -191326470 + 191326486 | n9 << -2025921209 + 2025921217 | n8;
|
||||
n6 += n2;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public static /* synthetic */ int ho\u0458\u043ee\u0441p(int n) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (n < 0) {
|
||||
return 0;
|
||||
}
|
||||
return (int)i\u0445a\u0456x\u0435\u0430.a_bsm0("min", min(int int ), (int)n, (int)(-1693837725 + 1693837980));
|
||||
}
|
||||
|
||||
public static /* synthetic */ Kernel \u04bbspa\u0430\u043e\u0456(float f) {
|
||||
int n;
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
int n2 = (int)i\u0445a\u0456x\u0435\u0430.a_bsm1("ceil", ceil(double ), (double)f);
|
||||
int n3 = n2 * 2 + 1;
|
||||
float[] fArray = new float[n3];
|
||||
float f2 = f / 3.0f;
|
||||
float f3 = 2.0f * f2 * f2;
|
||||
float f4 = (float)Math.PI * 2 * f2;
|
||||
float f5 = (float)i\u0445a\u0456x\u0435\u0430.a_bsm2("sqrt", sqrt(double ), (double)f4);
|
||||
float f6 = f * f;
|
||||
float f7 = 0.0f;
|
||||
int n4 = 0;
|
||||
for (n = -n2; n <= n2; ++n) {
|
||||
float f8 = n * n;
|
||||
fArray[n4] = f8 > f6 ? 0.0f : (float)i\u0445a\u0456x\u0435\u0430.a_bsm3("exp", exp(double ), (double)(-f8 / f3)) / f5;
|
||||
f7 += fArray[n4];
|
||||
++n4;
|
||||
}
|
||||
for (n = 0; n < n3; ++n) {
|
||||
fArray[n] = fArray[n] / f7;
|
||||
}
|
||||
return new Kernel(n3, 1, fArray);
|
||||
}
|
||||
|
||||
public /* synthetic */ void \u0430\u0435a\u043e\u0430\u04bb\u0458(float f) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
this.\u043ecxssj = f;
|
||||
this.\u0445s\u043eo = i\u0445a\u0456x\u0435\u0430.\u04bbspa\u0430\u043e\u0456(f);
|
||||
}
|
||||
|
||||
public /* synthetic */ BufferedImage \u043eos\u043e\u0445(BufferedImage bufferedImage, BufferedImage bufferedImage2) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
int n = bufferedImage.getWidth();
|
||||
int n2 = bufferedImage.getHeight();
|
||||
if (bufferedImage2 == null) {
|
||||
bufferedImage2 = this.jx\u0430(bufferedImage, null);
|
||||
}
|
||||
int[] nArray = new int[n * n2];
|
||||
int[] nArray2 = new int[n * n2];
|
||||
bufferedImage.getRGB(0, 0, n, n2, nArray, 0, n);
|
||||
if (this.\u043ecxssj > 0.0f) {
|
||||
i\u0445a\u0456x\u0435\u0430.c\u04bbx\u0458p\u0456(this.\u0445s\u043eo, nArray, nArray2, n, n2, true, true, false, 1);
|
||||
i\u0445a\u0456x\u0435\u0430.c\u04bbx\u0458p\u0456(this.\u0445s\u043eo, nArray2, nArray, n2, n, true, false, true, 1);
|
||||
}
|
||||
bufferedImage2.setRGB(0, 0, n, n2, nArray, 0, n);
|
||||
return bufferedImage2;
|
||||
}
|
||||
|
||||
public /* synthetic */ BufferedImage jx\u0430(BufferedImage bufferedImage, ColorModel colorModel) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (colorModel == null) {
|
||||
colorModel = bufferedImage.getColorModel();
|
||||
}
|
||||
return new BufferedImage(colorModel, colorModel.createCompatibleWritableRaster(bufferedImage.getWidth(), bufferedImage.getHeight()), colorModel.isAlphaPremultiplied(), null);
|
||||
}
|
||||
|
||||
public /* synthetic */ String toString() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
byte[] byArray = new byte[-126046118 + 126046139];
|
||||
byArray[0] = -1443110906 + 1443110811;
|
||||
byArray[1] = -1528634597 + 1528634569;
|
||||
byArray[2] = -1386687508 + 1386687408;
|
||||
byArray[3] = -2101627829 + 2101627743;
|
||||
byArray[4] = -1702691344 + 1702691296;
|
||||
byArray[5] = -52338464 + 52338453;
|
||||
byArray[-817053585 + 817053591] = -477999355 + 477999240;
|
||||
byArray[-1293469381 + 1293469388] = -1952476092 + 1952476176;
|
||||
byArray[-570470570 + 0x2200B0B2] = -1674653500 + 1674653404;
|
||||
byArray[-814283830 + 814283839] = -446744725 + 446744649;
|
||||
byArray[-1712270255 + 1712270265] = -265636633 + 265636700;
|
||||
byArray[-54689837 + 54689848] = -1001062203 + 1001062280;
|
||||
byArray[-1559721619 + 1559721631] = -1173137282 + 1173137378;
|
||||
byArray[-1480441635 + 1480441648] = -724487507 + 724487454;
|
||||
byArray[-1769244525 + 1769244539] = -141754691 + 141754570;
|
||||
byArray[-307641861 + 307641876] = -937211852 + 937211736;
|
||||
byArray[-154591230 + 154591246] = -95494836 + 95494830;
|
||||
byArray[-2077133261 + 2077133278] = -634351598 + 634351629;
|
||||
byArray[-1126029278 + 1126029296] = -1234909666 + 1234909769;
|
||||
byArray[-276121276 + 276121295] = -1635347664 + 1635347543;
|
||||
byArray[-12787528 + 12787548] = -1945174039 + 1945174141;
|
||||
return i\u0445a\u0456x\u0435\u0430.a_bsm4("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])byArray, (int)(-1890839366 + 1052358987), (int)(-1991450308 + 1565459806));
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm0(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm1(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm2(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm3(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm4(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,102 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package ie\u0441\u0430ej;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.concurrent.CopyOnWriteArrayList;
|
||||
import net.minecraft.class_1297;
|
||||
import net.minecraft.class_1657;
|
||||
|
||||
public class i\u0456\u0441o {
|
||||
private static final /* synthetic */ List<String> p\u043e\u0440\u0456;
|
||||
|
||||
public i\u0456\u0441o() {
|
||||
if (true | false) {
|
||||
}
|
||||
}
|
||||
|
||||
public static /* synthetic */ boolean i\u0440\u04bbeco(class_1297 class_12972) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return class_12972 instanceof class_1657 && i\u0456\u0441o.phis\u0441i(class_12972.method_5477().getString());
|
||||
}
|
||||
|
||||
public static /* synthetic */ boolean phis\u0441i(String string) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return p\u043e\u0440\u0456.stream().anyMatch(string2 -> {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
return string2.equalsIgnoreCase(string);
|
||||
});
|
||||
}
|
||||
|
||||
public static /* synthetic */ void o\u0441jx\u0445\u0458(class_1657 class_16572) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
i\u0456\u0441o.\u043e\u0441\u0430\u043e(class_16572.method_5477().getString());
|
||||
}
|
||||
|
||||
public static /* synthetic */ void \u043e\u0441\u0430\u043e(String string) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (!string.isBlank() && !i\u0456\u0441o.phis\u0441i(string)) {
|
||||
p\u043e\u0440\u0456.add(string);
|
||||
}
|
||||
}
|
||||
|
||||
public static /* synthetic */ void \u0435p\u0440x\u0456(class_1657 class_16572) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
i\u0456\u0441o.j\u0430ca\u0458(class_16572.method_5477().getString());
|
||||
}
|
||||
|
||||
public static /* synthetic */ void j\u0430ca\u0458(String string) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
p\u043e\u0440\u0456.removeIf(string2 -> {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
return string2.equalsIgnoreCase(string);
|
||||
});
|
||||
}
|
||||
|
||||
public static /* synthetic */ boolean \u0435\u0456s\u0441\u0435\u0455(String string) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (i\u0456\u0441o.phis\u0441i(string)) {
|
||||
i\u0456\u0441o.j\u0430ca\u0458(string);
|
||||
return false;
|
||||
}
|
||||
i\u0456\u0441o.\u043e\u0441\u0430\u043e(string);
|
||||
return true;
|
||||
}
|
||||
|
||||
public static /* synthetic */ List<String> sasc() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return p\u043e\u0440\u0456;
|
||||
}
|
||||
|
||||
static {
|
||||
p\u043e\u0440\u0456 = new CopyOnWriteArrayList<String>();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package ie\u0441\u0430ej;
|
||||
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
|
||||
public class jhas {
|
||||
public static /* synthetic */ float \u04bbixii;
|
||||
|
||||
public jhas() {
|
||||
if (true | false) {
|
||||
}
|
||||
}
|
||||
|
||||
public static /* synthetic */ float jh\u0455a(float f, float f2, float f3) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
float f4 = \u04bbixii * (f3 / 1000.0f);
|
||||
f = f < f2 ? (f + f4 < f2 ? (f += f4) : f2) : (f - f4 > f2 ? (f -= f4) : f2);
|
||||
return f;
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package ie\u0441\u0430ej;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import net.minecraft.class_310;
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
import \u0435\u0435oj\u0455\u0435.xe\u0441e;
|
||||
import \u0435\u0435oj\u0455\u0435.\u0430j\u0435js;
|
||||
import \u0440o\u0456\u0445o.\u0445\u0440\u0430\u0435\u0445\u043e;
|
||||
|
||||
public interface pjxx {
|
||||
public static final class_310 \u0430\u0445j\u0445s\u0456\u04bb;
|
||||
public static final List<Runnable> s\u0430\u04bb\u0458;
|
||||
|
||||
default public \u0430j\u0435js \u0456\u0440\u0430jj() {
|
||||
return \u0445\u0440\u0430\u0435\u0445\u043e.jaa\u0435\u0445c().\u0456p\u0458;
|
||||
}
|
||||
|
||||
default public xe\u0441e h\u0445ph() {
|
||||
return this.\u0456\u0440\u0430jj().\u0441ih();
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
\u0430\u0445j\u0445s\u0456\u04bb = class_310.method_1551();
|
||||
s\u0430\u04bb\u0458 = new ArrayList<Runnable>();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,26 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package ie\u0441\u0430ej;
|
||||
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
|
||||
public class ps\u0440c {
|
||||
public ps\u0440c() {
|
||||
if (true | false) {
|
||||
}
|
||||
}
|
||||
|
||||
public static /* synthetic */ boolean \u0445soej\u0430(float f, float f2, float f3, float f4, int n, int n2) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return (float)n >= f && (float)n2 >= f2 && (float)n < f + f3 && (float)n2 < f2 + f4;
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,166 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package ie\u0441\u0430ej;
|
||||
|
||||
import ie\u0441\u0430ej.\u0441p\u0435\u0435\u0441x;
|
||||
import java.lang.invoke.CallSite;
|
||||
import java.lang.invoke.ConstantCallSite;
|
||||
import java.lang.invoke.MethodHandle;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.lang.invoke.MethodType;
|
||||
import java.util.List;
|
||||
import net.minecraft.class_1297;
|
||||
import net.minecraft.class_1657;
|
||||
import net.minecraft.class_238;
|
||||
import net.minecraft.class_243;
|
||||
import net.minecraft.class_310;
|
||||
import org.joml.Matrix4f;
|
||||
import org.joml.Quaternionf;
|
||||
import org.joml.Quaternionfc;
|
||||
import org.joml.Vector3f;
|
||||
import org.joml.Vector3fc;
|
||||
import org.joml.Vector4d;
|
||||
import org.joml.Vector4f;
|
||||
|
||||
public class p\u0435a\u0435 {
|
||||
private static final /* synthetic */ class_310 \u0430cpch;
|
||||
|
||||
public p\u0435a\u0435() {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
}
|
||||
|
||||
public static /* synthetic */ \u0441p\u0435\u0435\u0441x cpopss\u043e(double d, double d2, double d3, float f) {
|
||||
class_1297 class_12972;
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
class_243 class_2432 = p\u0435a\u0435.\u0430cpch.method_1561().field_4686.method_19326();
|
||||
Quaternionf quaternionf = new Quaternionf((Quaternionfc)\u0430cpch.method_1561().method_24197());
|
||||
quaternionf.conjugate();
|
||||
Vector3f vector3f = new Vector3f((float)(class_2432.field_1352 - d), (float)(class_2432.field_1351 - d2), (float)(class_2432.field_1350 - d3));
|
||||
vector3f.rotate((Quaternionfc)quaternionf);
|
||||
if (((Boolean)p\u0435a\u0435.\u0430cpch.field_1690.method_42448().method_41753()).booleanValue() && (class_12972 = \u0430cpch.method_1560()) instanceof class_1657) {
|
||||
class_1657 class_16572 = (class_1657)class_12972;
|
||||
p\u0435a\u0435.hae(class_16572, vector3f, f);
|
||||
}
|
||||
double d4 = p\u0435a\u0435.\u0430cpch.field_1773.method_3196(p\u0435a\u0435.\u0430cpch.method_1561().field_4686, f, true);
|
||||
return p\u0435a\u0435.p\u0456\u043e(vector3f, d4);
|
||||
}
|
||||
|
||||
public static /* synthetic */ List<class_243> \u0440as(class_238 class_2383) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
Object[] objectArray = new class_243[-1558609892 + 1558609900];
|
||||
objectArray[0] = new class_243(class_2383.field_1323, class_2383.field_1322, class_2383.field_1321);
|
||||
objectArray[1] = new class_243(class_2383.field_1323, class_2383.field_1325, class_2383.field_1321);
|
||||
objectArray[2] = new class_243(class_2383.field_1320, class_2383.field_1322, class_2383.field_1321);
|
||||
objectArray[3] = new class_243(class_2383.field_1320, class_2383.field_1325, class_2383.field_1321);
|
||||
objectArray[4] = new class_243(class_2383.field_1323, class_2383.field_1322, class_2383.field_1324);
|
||||
objectArray[5] = new class_243(class_2383.field_1323, class_2383.field_1325, class_2383.field_1324);
|
||||
objectArray[-1218486116 + 1218486122] = new class_243(class_2383.field_1320, class_2383.field_1322, class_2383.field_1324);
|
||||
objectArray[-1001547549 + 1001547556] = new class_243(class_2383.field_1320, class_2383.field_1325, class_2383.field_1324);
|
||||
return p\u0435a\u0435.a_bsm0("asList", asList(T[] ), (Object[])objectArray);
|
||||
}
|
||||
|
||||
public static /* synthetic */ Vector4d \u0456\u0435sjjej(int[] nArray, Matrix4f matrix4f, class_238 class_2383) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
List<class_243> list = p\u0435a\u0435.\u0440as(class_2383);
|
||||
Vector4d vector4d = null;
|
||||
for (class_243 class_2432 : list) {
|
||||
Vector4f vector4f = new Vector4f((float)class_2432.field_1352, (float)class_2432.field_1351, (float)class_2432.field_1350, 1.0f);
|
||||
matrix4f.transform(vector4f);
|
||||
if (vector4f.w <= 0.0f) continue;
|
||||
vector4f.div(vector4f.w);
|
||||
float f = (vector4f.x + 1.0f) * 0.5f * (float)nArray[2] + (float)nArray[0];
|
||||
float f2 = (1.0f - vector4f.y) * 0.5f * (float)nArray[3] + (float)nArray[1];
|
||||
if (vector4d == null) {
|
||||
vector4d = new Vector4d((double)f, (double)f2, (double)f, (double)f2);
|
||||
continue;
|
||||
}
|
||||
vector4d.x = (double)p\u0435a\u0435.a_bsm1("min", min(double double ), (double)f, (double)vector4d.x);
|
||||
vector4d.y = (double)p\u0435a\u0435.a_bsm1("min", min(double double ), (double)f2, (double)vector4d.y);
|
||||
vector4d.z = (double)p\u0435a\u0435.a_bsm2("max", max(double double ), (double)f, (double)vector4d.z);
|
||||
vector4d.w = (double)p\u0435a\u0435.a_bsm2("max", max(double double ), (double)f2, (double)vector4d.w);
|
||||
}
|
||||
return vector4d;
|
||||
}
|
||||
|
||||
private static /* synthetic */ void hae(class_1657 class_16572, Vector3f vector3f, float f) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
float f2 = class_16572.field_5973;
|
||||
float f3 = f2 - class_16572.field_6039;
|
||||
float f4 = -(f2 + f3 * f);
|
||||
CallSite callSite = p\u0435a\u0435.a_bsm3("method_16439", method_16439(float float float ), (float)f, (float)class_16572.field_7505, (float)class_16572.field_7483);
|
||||
Quaternionf quaternionf = new Quaternionf().rotationX((float)(p\u0435a\u0435.a_bsm5("abs", abs(float ), (float)(p\u0435a\u0435.a_bsm4("method_15362", method_15362(float ), (float)(f4 * (float)Math.PI - 0.2f)) * callSite)) * 5.0f * ((float)Math.PI / 180)));
|
||||
quaternionf.conjugate();
|
||||
vector3f.rotate((Quaternionfc)quaternionf);
|
||||
Quaternionf quaternionf2 = new Quaternionf().rotationZ((float)(p\u0435a\u0435.a_bsm6("method_15374", method_15374(float ), (float)(f4 * (float)Math.PI)) * callSite * 3.0f * ((float)Math.PI / 180)));
|
||||
quaternionf2.conjugate();
|
||||
vector3f.rotate((Quaternionfc)quaternionf2);
|
||||
Vector3f vector3f2 = new Vector3f((float)(p\u0435a\u0435.a_bsm6("method_15374", method_15374(float ), (float)(f4 * (float)Math.PI)) * callSite * 0.5f), (float)(-p\u0435a\u0435.a_bsm5("abs", abs(float ), (float)(p\u0435a\u0435.a_bsm4("method_15362", method_15362(float ), (float)(f4 * (float)Math.PI)) * callSite))), 0.0f);
|
||||
vector3f2.y = -vector3f2.y;
|
||||
vector3f.add((Vector3fc)vector3f2);
|
||||
}
|
||||
|
||||
private static /* synthetic */ \u0441p\u0435\u0435\u0441x p\u0456\u043e(Vector3f vector3f, double d) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
float f = (float)\u0430cpch.method_22683().method_4502() / 2.0f;
|
||||
float f2 = f / (vector3f.z() * (float)p\u0435a\u0435.a_bsm8("tan", tan(double ), (double)p\u0435a\u0435.a_bsm7("toRadians", toRadians(double ), (double)(d / 2.0))));
|
||||
return vector3f.z() < 0.0f ? new \u0441p\u0435\u0435\u0441x(-vector3f.x() * f2 + (float)\u0430cpch.method_22683().method_4486() / 2.0f, (float)\u0430cpch.method_22683().method_4502() / 2.0f - vector3f.y() * f2) : new \u0441p\u0435\u0435\u0441x(Float.MAX_VALUE, Float.MAX_VALUE);
|
||||
}
|
||||
|
||||
static {
|
||||
\u0430cpch = class_310.method_1551();
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm0(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm1(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm2(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm3(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm4(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm5(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm6(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm7(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm8(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,84 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package ie\u0441\u0430ej;
|
||||
|
||||
import c\u0445is.io\u0441;
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.net.URL;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Enumeration;
|
||||
import java.util.List;
|
||||
import r.d3.C1a946c5246ca0949bfd0e13d;
|
||||
import r.d8.Cade0e18b60fd9f037d8b2fc8;
|
||||
|
||||
public class soi\u04bb\u0440 {
|
||||
public soi\u04bb\u0440() {
|
||||
if (true | false) {
|
||||
}
|
||||
}
|
||||
|
||||
public static /* synthetic */ Class<?>[] hsp(String string) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
ArrayList arrayList = new ArrayList();
|
||||
String string2 = string.replace(-2000378511 + 1716418520 + (1180436447 + -896476410), -1120431485 + 511512555 + (-736158713 + 1345077690));
|
||||
try {
|
||||
Enumeration<URL> enumeration = Thread.currentThread().getContextClassLoader().getResources(string2);
|
||||
while (enumeration.hasMoreElements()) {
|
||||
URL uRL = enumeration.nextElement();
|
||||
File file = new File(uRL.getFile());
|
||||
if (!file.exists()) continue;
|
||||
arrayList.addAll(soi\u04bb\u0440.ca\u0441\u0445(file, string));
|
||||
}
|
||||
}
|
||||
catch (IOException | ClassNotFoundException exception) {
|
||||
exception.printStackTrace();
|
||||
}
|
||||
return arrayList.toArray(new Class[0]);
|
||||
}
|
||||
|
||||
private static /* synthetic */ List<Class<?>> ca\u0441\u0445(File file, String string) throws ClassNotFoundException {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
ArrayList arrayList = new ArrayList();
|
||||
if (!file.exists()) {
|
||||
return arrayList;
|
||||
}
|
||||
File[] fileArray = file.listFiles();
|
||||
if (fileArray == null) {
|
||||
return arrayList;
|
||||
}
|
||||
for (File file2 : fileArray) {
|
||||
if (file2.isDirectory()) {
|
||||
String string2 = file2.getName();
|
||||
String string3 = string;
|
||||
arrayList.addAll(soi\u04bb\u0440.ca\u0441\u0445(file2, string3 + Cade0e18b60fd9f037d8b2fc8.cachedDecodeString(new byte[]{817576750 + 1446547135 + (37324696 + 1993518677)}, -1618293818 + 189060035 + (-212908260 + 284674160), -2020626351 + 1106286967 + (2015109199 + 31578470)) + string2));
|
||||
continue;
|
||||
}
|
||||
byte[] byArray = new byte[-972260005 + -11982898 + (1055405976 + -71163067)];
|
||||
byArray[0] = 1342584000 + -1989717536 + (48201342 + 598932277);
|
||||
byArray[1] = -1735772923 + 982311435 + (-1987547957 + -1553957913);
|
||||
byArray[2] = -1111918020 + -66182007 + (-1025440396 + -2091426864);
|
||||
byArray[3] = -449805307 + -885320772 + (-1426920545 + -1532920794);
|
||||
byArray[4] = -1069975038 + 703066464 + (-97398465 + 464306987);
|
||||
byArray[5] = 136404405 + -1871951637 + (1428000472 + 307546835);
|
||||
if (!file2.getName().endsWith(Cade0e18b60fd9f037d8b2fc8.cachedDecodeString(byArray, -1211721437 + -2059248187 + (-1042489479 + 1580828350), 819315574 + -1182375679 + (501816396 + 720564853)))) continue;
|
||||
String string4 = file2.getName().substring(0, file2.getName().length() - (-635949700 + 515753530 + (448976752 + -328780576)));
|
||||
String string5 = string;
|
||||
String string6 = string5 + Cade0e18b60fd9f037d8b2fc8.cachedDecodeString(new byte[]{1504012054 + -1911531881 + (-746019334 + 1153539142)}, 1221934239 + -1532789724 + (813055406 + -620952966), -300129762 + 15259759 + (1540704199 + -1390316122)) + string4;
|
||||
arrayList.add(Class.forName(io\u0441.jpe\u0440(string6)));
|
||||
}
|
||||
return arrayList;
|
||||
}
|
||||
|
||||
static {
|
||||
C1a946c5246ca0949bfd0e13d.m_4487bf5f5bb3efe5("decrypt", "windows-x64", "vm-diverse");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,73 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package ie\u0441\u0430ej;
|
||||
|
||||
import java.lang.invoke.CallSite;
|
||||
import java.lang.invoke.ConstantCallSite;
|
||||
import java.lang.invoke.MethodHandle;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.lang.invoke.MethodType;
|
||||
import net.minecraft.class_1922;
|
||||
import net.minecraft.class_2338;
|
||||
import net.minecraft.class_238;
|
||||
import net.minecraft.class_265;
|
||||
import net.minecraft.class_2680;
|
||||
import net.minecraft.class_310;
|
||||
|
||||
public class xie\u043es\u0441\u04bb {
|
||||
private static final /* synthetic */ class_310 x\u0441i;
|
||||
|
||||
public xie\u043es\u0441\u04bb() {
|
||||
if (true | false) {
|
||||
}
|
||||
}
|
||||
|
||||
public static /* synthetic */ class_238 \u0435hj(class_2338 class_23382) {
|
||||
class_265 class_2652;
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if ((class_2652 = xie\u043es\u0441\u04bb.ii\u04bbi(class_23382)) == xie\u043es\u0441\u04bb.a_bsm0("method_1073", method_1073())) {
|
||||
return null;
|
||||
}
|
||||
return class_2652.method_1107().method_996(class_23382);
|
||||
}
|
||||
|
||||
private static /* synthetic */ class_265 ii\u04bbi(class_2338 class_23382) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return xie\u043es\u0441\u04bb.ej\u0435(class_23382).method_26218((class_1922)xie\u043es\u0441\u04bb.x\u0441i.field_1687, class_23382);
|
||||
}
|
||||
|
||||
public static /* synthetic */ class_2680 ej\u0435(class_2338 class_23382) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (xie\u043es\u0441\u04bb.x\u0441i.field_1687 != null) {
|
||||
return xie\u043es\u0441\u04bb.x\u0441i.field_1687.method_8320(class_23382);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
public static /* synthetic */ boolean h\u0430psx(class_2338 class_23382) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return xie\u043es\u0441\u04bb.ii\u04bbi(class_23382) != xie\u043es\u0441\u04bb.a_bsm0("method_1073", method_1073());
|
||||
}
|
||||
|
||||
static {
|
||||
x\u0441i = class_310.method_1551();
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm0(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,228 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package ie\u0441\u0430ej;
|
||||
|
||||
import ie\u0441\u0430ej.pjxx;
|
||||
import java.awt.Color;
|
||||
import java.lang.invoke.CallSite;
|
||||
import java.lang.invoke.ConstantCallSite;
|
||||
import java.lang.invoke.MethodHandle;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.lang.invoke.MethodType;
|
||||
import java.util.Map;
|
||||
import net.minecraft.class_1297;
|
||||
import net.minecraft.class_1309;
|
||||
import net.minecraft.class_238;
|
||||
import net.minecraft.class_243;
|
||||
import net.minecraft.class_287;
|
||||
import net.minecraft.class_290;
|
||||
import net.minecraft.class_293;
|
||||
import net.minecraft.class_2960;
|
||||
import net.minecraft.class_4587;
|
||||
import net.minecraft.class_757;
|
||||
import net.minecraft.class_898;
|
||||
import org.joml.Quaternionf;
|
||||
|
||||
public class xpx
|
||||
implements pjxx {
|
||||
public xpx() {
|
||||
if (true | false) {
|
||||
}
|
||||
}
|
||||
|
||||
public static /* synthetic */ void \u0445\u0455\u0445e\u0440(class_4587 class_45872, int n, int n2, int n3, int n4, float f, float f2, class_1297 class_12972, class_2960 class_29602, boolean bl, Color color, Color color2, Color color3, Color color4) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
class_898 class_8982 = \u0430\u0445j\u0445s\u0456\u04bb.method_1561();
|
||||
Quaternionf quaternionf = class_8982.field_4686.method_23767();
|
||||
double d = class_12972.field_6038 + (class_12972.method_23317() - class_12972.field_6038) * (double)\u0430\u0445j\u0445s\u0456\u04bb.method_1488() - class_8982.field_4686.method_19326().method_10216();
|
||||
double d2 = class_12972.field_5971 + 1.0 + (class_12972.method_23318() + 1.0 - (class_12972.field_5971 + 1.0)) * (double)\u0430\u0445j\u0445s\u0456\u04bb.method_1488() - class_8982.field_4686.method_19326().method_10214();
|
||||
double d3 = class_12972.field_5989 + (class_12972.method_23321() - class_12972.field_5989) * (double)\u0430\u0445j\u0445s\u0456\u04bb.method_1488() - class_8982.field_4686.method_19326().method_10215();
|
||||
class_45872.method_22903();
|
||||
class_45872.method_22904(d, d2, d3);
|
||||
class_45872.method_22907(quaternionf);
|
||||
if (bl) {
|
||||
float f3 = (float)(xpx.a_bsm1("sin", sin(double ), (double)((double)xpx.a_bsm0("currentTimeMillis", currentTimeMillis()) / 800.0)) * 360.0);
|
||||
class_45872.method_22907(new Quaternionf().rotationAxis((float)xpx.a_bsm2("toRadians", toRadians(double ), (double)f3), 0.0f, 0.0f, 1.0f));
|
||||
}
|
||||
class_45872.method_22905(0.03f, 0.03f, 0.03f);
|
||||
xpx.a_bsm3("enableBlend", enableBlend());
|
||||
xpx.a_bsm4("disableDepthTest", disableDepthTest());
|
||||
xpx.a_bsm5("defaultBlendFunc", defaultBlendFunc());
|
||||
xpx.a_bsm6("setShader", setShader(java.util.function.Supplier ), class_757::method_34543);
|
||||
xpx.a_bsm7("setShaderColor", setShaderColor(float float float float ), (float)1.0f, (float)1.0f, (float)1.0f, (float)1.0f);
|
||||
xpx.a_bsm8("setShaderTexture", setShaderTexture(int net.minecraft.class_2960 ), (int)0, (class_2960)class_29602);
|
||||
xpx.a_bsm9("texParameter", texParameter(int int int ), (int)(-855841228 + 855844781), (int)(-1650872161 + 0x62667762), (int)(-1678635537 + 1678645266));
|
||||
xpx.a_bsm9("texParameter", texParameter(int int int ), (int)(-1906404069 + 1906407622), (int)(-1205911889 + 1205922129), (int)(-1406266645 + 1406276374));
|
||||
xpx.a_bsm10("\u0456aaxs\u043e", \u0456aaxs\u043e(net.minecraft.class_4587 int int float float int int float float java.awt.Color java.awt.Color java.awt.Color java.awt.Color ), (class_4587)class_45872, (int)n, (int)n2, (float)0.0f, (float)0.0f, (int)n3, (int)n4, (float)f, (float)f2, (Color)color, (Color)color2, (Color)color3, (Color)color4);
|
||||
xpx.a_bsm11("disableBlend", disableBlend());
|
||||
xpx.a_bsm12("enableDepthTest", enableDepthTest());
|
||||
xpx.a_bsm7("setShaderColor", setShaderColor(float float float float ), (float)1.0f, (float)1.0f, (float)1.0f, (float)1.0f);
|
||||
class_45872.method_22909();
|
||||
}
|
||||
|
||||
public static /* synthetic */ void x\u0441c\u043e\u0458(class_4587 class_45872, class_1309 class_13092, float f, float f2) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (class_13092 == null || f2 <= 0.001f) {
|
||||
return;
|
||||
}
|
||||
reference var4_4 = xpx.a_bsm13("method_16436", method_16436(double double double ), (double)f, (double)class_13092.field_6014, (double)class_13092.method_23317()) - xpx.\u0430\u0445j\u0445s\u0456\u04bb.method_1561().field_4686.method_19326().field_1352;
|
||||
reference var6_5 = xpx.a_bsm13("method_16436", method_16436(double double double ), (double)f, (double)class_13092.field_6036, (double)class_13092.method_23318()) + xpx.a_bsm1("sin", sin(double ), (double)((double)xpx.a_bsm0("currentTimeMillis", currentTimeMillis()) / 200.0)) + 1.0 - xpx.\u0430\u0445j\u0445s\u0456\u04bb.method_1561().field_4686.method_19326().field_1351;
|
||||
reference var8_6 = xpx.a_bsm13("method_16436", method_16436(double double double ), (double)f, (double)class_13092.field_5969, (double)class_13092.method_23321()) - xpx.\u0430\u0445j\u0445s\u0456\u04bb.method_1561().field_4686.method_19326().field_1350;
|
||||
CallSite callSite = xpx.a_bsm14("\u0440\u0456\u0435a", \u0440\u0456\u0435a(int ), (int)0);
|
||||
float f3 = (float)((xpx.a_bsm1("sin", sin(double ), (double)((double)xpx.a_bsm0("currentTimeMillis", currentTimeMillis()) / 500.0)) + 1.0) / 2.0);
|
||||
float f4 = 0.6f + 0.4f * f3;
|
||||
int n = (int)((float)((Color)((Object)callSite)).getRed() * f4);
|
||||
int n2 = (int)((float)((Color)((Object)callSite)).getGreen() * f4);
|
||||
int n3 = (int)((float)((Color)((Object)callSite)).getBlue() * f4);
|
||||
int n4 = (int)(153.0f * f2);
|
||||
class_45872.method_22903();
|
||||
class_45872.method_22904((double)var4_4, (double)var6_5, (double)var8_6);
|
||||
xpx.a_bsm3("enableBlend", enableBlend());
|
||||
xpx.a_bsm5("defaultBlendFunc", defaultBlendFunc());
|
||||
xpx.a_bsm15("disableCull", disableCull());
|
||||
xpx.a_bsm16("depthMask", depthMask(boolean ), (boolean)false);
|
||||
xpx.a_bsm4("disableDepthTest", disableDepthTest());
|
||||
xpx.a_bsm6("setShader", setShader(java.util.function.Supplier ), class_757::method_34540);
|
||||
float f5 = 0.19634955f;
|
||||
float f6 = (float)(-xpx.a_bsm17("cos", cos(double ), (double)((double)xpx.a_bsm0("currentTimeMillis", currentTimeMillis()) / 200.0)) / 2.0);
|
||||
CallSite callSite2 = xpx.a_bsm18("method_1348", method_1348());
|
||||
class_287 class_2872 = callSite2.method_1349();
|
||||
class_2872.method_1328(class_293.class_5596.field_27380, class_290.field_1576);
|
||||
float f7 = 0.0f;
|
||||
while ((double)f7 <= Math.PI * 2 + (double)f5) {
|
||||
class_2872.method_22918(class_45872.method_23760().method_23761(), (float)(0.67 * xpx.a_bsm17("cos", cos(double ), (double)f7)), 0.0f, (float)(0.67 * xpx.a_bsm1("sin", sin(double ), (double)f7))).method_1336(n, n2, n3, n4).method_1344();
|
||||
f7 += f5;
|
||||
}
|
||||
f7 = 0.0f;
|
||||
while ((double)f7 <= Math.PI * 2 + (double)f5) {
|
||||
class_2872.method_22918(class_45872.method_23760().method_23761(), (float)(0.67 * xpx.a_bsm17("cos", cos(double ), (double)f7)), 0.0f, (float)(0.67 * xpx.a_bsm1("sin", sin(double ), (double)f7))).method_1336(n, n2, n3, n4).method_1344();
|
||||
class_2872.method_22918(class_45872.method_23760().method_23761(), (float)(0.67 * xpx.a_bsm17("cos", cos(double ), (double)f7)), f6, (float)(0.67 * xpx.a_bsm1("sin", sin(double ), (double)f7))).method_1336(n, n2, n3, 0).method_1344();
|
||||
f7 += f5;
|
||||
}
|
||||
xpx.a_bsm19("method_43433", method_43433(net.minecraft.class_287$class_7433 ), (class_287.class_7433)class_2872.method_1326());
|
||||
xpx.a_bsm16("depthMask", depthMask(boolean ), (boolean)true);
|
||||
xpx.a_bsm12("enableDepthTest", enableDepthTest());
|
||||
xpx.a_bsm20("enableCull", enableCull());
|
||||
xpx.a_bsm11("disableBlend", disableBlend());
|
||||
class_45872.method_22909();
|
||||
}
|
||||
|
||||
public static /* synthetic */ void a\u0435\u0458(class_4587 class_45872, Map<class_1297, class_243> map, class_1297 class_12972) {
|
||||
class_243 class_2432;
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if ((class_2432 = map.get(class_12972)) == null) {
|
||||
return;
|
||||
}
|
||||
class_243 class_2433 = xpx.\u0430\u0445j\u0445s\u0456\u04bb.field_1773.method_19418().method_19326();
|
||||
class_238 class_2383 = new class_238(class_2432.field_1352 - 0.4 - class_2433.field_1352, class_2432.field_1351 - class_2433.field_1351, class_2432.field_1350 - 0.4 - class_2433.field_1350, class_2432.field_1352 + 0.4 - class_2433.field_1352, class_2432.field_1351 + 1.9 - class_2433.field_1351, class_2432.field_1350 + 0.4 - class_2433.field_1350);
|
||||
class_45872.method_22903();
|
||||
xpx.a_bsm3("enableBlend", enableBlend());
|
||||
xpx.a_bsm5("defaultBlendFunc", defaultBlendFunc());
|
||||
xpx.a_bsm4("disableDepthTest", disableDepthTest());
|
||||
xpx.a_bsm6("setShader", setShader(java.util.function.Supplier ), class_757::method_34539);
|
||||
xpx.a_bsm7("setShaderColor", setShaderColor(float float float float ), (float)0.2f, (float)0.5f, (float)1.0f, (float)0.3f);
|
||||
xpx.a_bsm21("\u0458\u0458\u04bb", \u0458\u0458\u04bb(net.minecraft.class_238 net.minecraft.class_4587 ), (class_238)class_2383, (class_4587)class_45872);
|
||||
xpx.a_bsm12("enableDepthTest", enableDepthTest());
|
||||
xpx.a_bsm7("setShaderColor", setShaderColor(float float float float ), (float)1.0f, (float)1.0f, (float)1.0f, (float)1.0f);
|
||||
class_45872.method_22909();
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm0(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm1(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm2(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm3(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm4(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm5(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm6(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm7(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm8(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm9(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm10(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm11(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm12(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm13(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm14(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm15(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm16(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm17(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm18(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm19(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm20(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm21(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,458 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package ie\u0441\u0430ej;
|
||||
|
||||
import ie\u0441\u0430ej.pjxx;
|
||||
import java.lang.invoke.CallSite;
|
||||
import java.lang.invoke.ConstantCallSite;
|
||||
import java.lang.invoke.MethodHandle;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.lang.invoke.MethodType;
|
||||
import java.math.BigDecimal;
|
||||
import java.math.RoundingMode;
|
||||
import java.util.Random;
|
||||
import net.minecraft.class_1309;
|
||||
import net.minecraft.class_243;
|
||||
import net.minecraft.class_4184;
|
||||
|
||||
public class xx\u0458\u0440\u0440\u0456 {
|
||||
public static final /* synthetic */ double x\u043e\u0458\u0455\u0458 = Math.PI;
|
||||
static final /* synthetic */ double \u0455i\u043e\u043eh = Math.PI * 2;
|
||||
static final /* synthetic */ float h\u0455\u0440j\u043e\u0441h = (float)Math.PI;
|
||||
static final /* synthetic */ float ojo\u0430\u0435hc = (float)Math.PI * 2;
|
||||
static final /* synthetic */ double \u04bb\u0441ie = 1.5707963267948966;
|
||||
static final /* synthetic */ float c\u0435\u0458p\u0445oc = 1.5707964f;
|
||||
static final /* synthetic */ double oaoj = 0.7853981633974483;
|
||||
static final /* synthetic */ double h\u0440xa\u043e = 0.3183098861837907;
|
||||
public static final /* synthetic */ Random \u043e\u0435\u0440e\u0458\u043e\u0445;
|
||||
private static final /* synthetic */ float[] \u043e\u0441e;
|
||||
|
||||
public xx\u0458\u0440\u0440\u0456() {
|
||||
if (true | false) {
|
||||
}
|
||||
}
|
||||
|
||||
public static /* synthetic */ boolean j\u0430iss\u0455c(class_243 class_2432) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return class_2432.method_1027() < 1.0E-12;
|
||||
}
|
||||
|
||||
public static /* synthetic */ float e\u0456\u043ee\u0455(float f, float f2) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return (float)(xx\u0458\u0440\u0440\u0456.a_bsm0("random", random()) * (double)(f2 - f) + (double)f);
|
||||
}
|
||||
|
||||
public static /* synthetic */ float \u043e\u0440xx\u0430c(float f, float f2, float f3) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return f2 + f * (f3 - f2);
|
||||
}
|
||||
|
||||
public static /* synthetic */ float c\u0430\u0435a\u0455\u0455s(float f, float f2, float f3) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return f + f3 * (f2 - f);
|
||||
}
|
||||
|
||||
public static /* synthetic */ double \u0435h\u0458\u0455\u043ecc(double d, double d2, double d3) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return d2 + d * (d3 - d2);
|
||||
}
|
||||
|
||||
public static /* synthetic */ boolean h\u0440\u0455\u0435(float f, float f2) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return xx\u0458\u0440\u0440\u0456.a_bsm1("abs", abs(float ), (float)(f2 - f)) < 1.0E-5f;
|
||||
}
|
||||
|
||||
public static /* synthetic */ double \u043e\u0455i(double d, double d2, double d3) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return d + d3 * (d2 - d);
|
||||
}
|
||||
|
||||
public static /* synthetic */ float p\u0430sh\u0440\u043e(float f) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return \u043e\u0441e[(int)(f * 10430.378f) & -1209778786 + 1209844321];
|
||||
}
|
||||
|
||||
public static /* synthetic */ float \u0435o\u043e\u0455(float f) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return (float)xx\u0458\u0440\u0440\u0456.a_bsm2("sqrt", sqrt(double ), (double)f);
|
||||
}
|
||||
|
||||
public static /* synthetic */ float o\u0455ji(double d) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return (float)xx\u0458\u0440\u0440\u0456.a_bsm2("sqrt", sqrt(double ), (double)d);
|
||||
}
|
||||
|
||||
public static /* synthetic */ float \u0458x\u0435(float f) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (f > 90.0f) {
|
||||
return 90.0f;
|
||||
}
|
||||
return (float)xx\u0458\u0440\u0440\u0456.a_bsm3("max", max(float float ), (float)f, (float)-90.0f);
|
||||
}
|
||||
|
||||
public static /* synthetic */ float p\u0441c\u0430h\u0430(float f, float f2, float f3, float f4, float f5) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return (f - f2) / (f3 - f2) * (f5 - f4) + f4;
|
||||
}
|
||||
|
||||
public static /* synthetic */ double s\u0458\u0440(double d, double object, double d2) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return d < object ? object : (Object)xx\u0458\u0440\u0440\u0456.a_bsm4("min", min(double double ), (double)d, (double)d2);
|
||||
}
|
||||
|
||||
public static /* synthetic */ int ci\u0435\u0430e(int n, int n2, int n3) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return n < n2 ? n2 : (int)xx\u0458\u0440\u0440\u0456.a_bsm5("min", min(int int ), (int)n, (int)n3);
|
||||
}
|
||||
|
||||
public static /* synthetic */ <T extends Number> T \u0430\u043e\u0455\u0456sx(T t2, T t3, T t4) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (t2 instanceof Integer) {
|
||||
if (t2.intValue() > t4.intValue()) {
|
||||
t2 = t4;
|
||||
} else if (t2.intValue() < t3.intValue()) {
|
||||
t2 = t3;
|
||||
switch (0) {
|
||||
default: {
|
||||
break;
|
||||
}
|
||||
case 1: {
|
||||
break;
|
||||
}
|
||||
case 2: {
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
} else if (t2 instanceof Float) {
|
||||
if (t2.floatValue() > t4.floatValue()) {
|
||||
t2 = t4;
|
||||
} else if (t2.floatValue() < t3.floatValue()) {
|
||||
t2 = t3;
|
||||
switch (0) {
|
||||
default: {
|
||||
break;
|
||||
}
|
||||
case 1: {
|
||||
break;
|
||||
}
|
||||
case 2: {
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
} else if (t2 instanceof Double) {
|
||||
if (t2.doubleValue() > t4.doubleValue()) {
|
||||
t2 = t4;
|
||||
} else if (t2.doubleValue() < t3.doubleValue()) {
|
||||
t2 = t3;
|
||||
}
|
||||
} else if (t2 instanceof Long) {
|
||||
if (t2.longValue() > t4.longValue()) {
|
||||
t2 = t4;
|
||||
} else if (t2.longValue() < t3.longValue()) {
|
||||
t2 = t3;
|
||||
}
|
||||
} else if (t2 instanceof Short) {
|
||||
if (t2.shortValue() > t4.shortValue()) {
|
||||
t2 = t4;
|
||||
} else if (t2.shortValue() < t3.shortValue()) {
|
||||
t2 = t3;
|
||||
}
|
||||
} else if (t2 instanceof Byte) {
|
||||
if (t2.byteValue() > t4.byteValue()) {
|
||||
t2 = t4;
|
||||
} else if (t2.byteValue() < t3.byteValue()) {
|
||||
t2 = t3;
|
||||
}
|
||||
}
|
||||
return t2;
|
||||
}
|
||||
|
||||
public static /* synthetic */ double chi(double d, double d2) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return d >= d2 ? d : \u043e\u0435\u0440e\u0458\u043e\u0445.nextDouble() * (d2 - d) + d;
|
||||
}
|
||||
|
||||
public static /* synthetic */ int ipj(int n, int n2, Random random) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return n2 - n <= 0 ? n : n + random.nextInt(n2 - n);
|
||||
}
|
||||
|
||||
public static /* synthetic */ int \u0441\u043ejc(int n, int n2) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return n2 - n <= 0 ? n : n + new Random().nextInt(n2 - n);
|
||||
}
|
||||
|
||||
public static /* synthetic */ float ao\u0445\u043eh\u04bb\u0430(float f) {
|
||||
float f2;
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return (f2 = f % 360.0f) < -180.0f ? f2 + 360.0f : (f2 > 180.0f ? f2 - 360.0f : f2);
|
||||
}
|
||||
|
||||
public static /* synthetic */ float e\u0458j\u0455\u0458ax(float f, float f2, float f3) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return f2 + f * (f3 - f2);
|
||||
}
|
||||
|
||||
public static /* synthetic */ class_243 oe\u0458h(class_1309 class_13092, float f) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
class_4184 class_41842 = pjxx.\u0430\u0445j\u0445s\u0456\u04bb.field_1773.method_19418();
|
||||
class_243 class_2432 = class_13092.method_30950(f);
|
||||
return class_2432.method_1020(class_41842.method_19326());
|
||||
}
|
||||
|
||||
public static /* synthetic */ double sp\u04bbii(double d, double d2, float f) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return d2 + d * ((double)f - d2);
|
||||
}
|
||||
|
||||
public static /* synthetic */ double xpoca\u0430(float f, double d, double d2) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return d + (double)f * (d2 - d);
|
||||
}
|
||||
|
||||
public static /* synthetic */ float \u0455aeo\u0445i(float f, float f2, float f3) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return f2 + f * xx\u0458\u0440\u0440\u0456.ao\u0445\u043eh\u04bb\u0430(f3 - f2);
|
||||
}
|
||||
|
||||
public static /* synthetic */ double c\u0458i\u0445(double d, int n) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (n < 0) {
|
||||
throw new IllegalArgumentException();
|
||||
}
|
||||
return new BigDecimal(d).setScale(n, RoundingMode.HALF_UP).doubleValue();
|
||||
}
|
||||
|
||||
public static /* synthetic */ <T extends Number> int \u0455ax(T t2) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (!(t2 instanceof Integer) && !(t2 instanceof Long)) {
|
||||
String[] stringArray = t2.toString().split((String)((Object)xx\u0458\u0440\u0440\u0456.a_bsm6("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-199533668 + 199533627, -1185654055 + 1185654107}, (int)(1205877184 + 325329283), (int)(-1870724446 + 1898905355))));
|
||||
if (stringArray.length == 2) {
|
||||
if (stringArray[1].endsWith((String)((Object)xx\u0458\u0440\u0440\u0456.a_bsm6("cachedDecodeString", cachedDecodeString(byte[] int int ), (byte[])new byte[]{-1027374412 + 1027374316}, (int)(-2131597503 + 852446335), (int)(-251625582 + 579245044))))) {
|
||||
stringArray[1] = stringArray[1].substring(0, stringArray[1].length() - 1);
|
||||
}
|
||||
return stringArray[1].length();
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
public static /* synthetic */ float \u0435\u0430\u0440\u04bbae(float f, float object, float f2) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return f < object ? object : (Object)xx\u0458\u0440\u0440\u0456.a_bsm7("min", min(float float ), (float)f, (float)f2);
|
||||
}
|
||||
|
||||
public static /* synthetic */ int pe\u0458\u0441\u0458sa(int n, int n2, int n3) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return n < n2 ? n2 : (int)xx\u0458\u0440\u0440\u0456.a_bsm5("min", min(int int ), (int)n, (int)n3);
|
||||
}
|
||||
|
||||
public static /* synthetic */ int \u0455sj(int n) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
int n2 = n - 1;
|
||||
n2 |= n2 >> 1;
|
||||
n2 |= n2 >> 2;
|
||||
n2 |= n2 >> 4;
|
||||
n2 |= n2 >> -1498861427 + 1498861435;
|
||||
n2 |= n2 >> -1237728683 + 1237728699;
|
||||
return n2 + 1;
|
||||
}
|
||||
|
||||
public static /* synthetic */ float \u0440eh\u0435\u0445\u0458j(double d, double d2) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return (float)(xx\u0458\u0440\u0440\u0456.a_bsm8("log", log(double ), (double)d2) / xx\u0458\u0440\u0440\u0456.a_bsm8("log", log(double ), (double)d));
|
||||
}
|
||||
|
||||
public static /* synthetic */ double bfiDwg(double d, int n) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (n < 0) {
|
||||
throw new IllegalArgumentException();
|
||||
}
|
||||
BigDecimal bigDecimal = new BigDecimal(d);
|
||||
bigDecimal = bigDecimal.setScale(n, RoundingMode.HALF_UP);
|
||||
return bigDecimal.doubleValue();
|
||||
}
|
||||
|
||||
public static /* synthetic */ boolean \u0440cao\u0435j(float f, float f2, float f3, float f4, float f5, float f6) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return f > f3 && f < f5 && f2 > f4 && f2 < f6;
|
||||
}
|
||||
|
||||
public static /* synthetic */ float \u043ep\u0430o\u0455\u0455(float f, float f2) {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
double d = 3.141592653;
|
||||
double d2 = 1.0 / xx\u0458\u0440\u0440\u0456.a_bsm2("sqrt", sqrt(double ), (double)(2.0 * d * (double)(f2 * f2)));
|
||||
return (float)(d2 * xx\u0458\u0440\u0440\u0456.a_bsm9("exp", exp(double ), (double)((double)(-(f * f)) / (2.0 * (double)(f2 * f2)))));
|
||||
}
|
||||
|
||||
public static /* synthetic */ double \u0455\u0440eji\u0455a(double d, double d2) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
double d3 = xx\u0458\u0440\u0440\u0456.\u0445\u0440ci\u0445\u0430\u0456(1.0 - d * d);
|
||||
double d4 = d2 + 1.5707963267948966;
|
||||
double d5 = d4 - (double)((int)(d4 / (Math.PI * 2))) * (Math.PI * 2);
|
||||
if (d5 < 0.0) {
|
||||
d5 += Math.PI * 2;
|
||||
}
|
||||
return d5 >= Math.PI ? -d3 : d3;
|
||||
}
|
||||
|
||||
public static /* synthetic */ double \u0445\u0440ci\u0445\u0430\u0456(double d) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return (double)xx\u0458\u0440\u0440\u0456.a_bsm2("sqrt", sqrt(double ), (double)d);
|
||||
}
|
||||
|
||||
static {
|
||||
\u043e\u0435\u0440e\u0458\u043e\u0445 = new Random();
|
||||
\u043e\u0441e = new float[-890034591 + 890100127];
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm0(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm1(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm2(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm3(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm4(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm5(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm6(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm7(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm8(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm9(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,164 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package ie\u0441\u0430ej;
|
||||
|
||||
import c\u0445is.\u043e\u0458o\u0445xp\u0440;
|
||||
import java.lang.invoke.CallSite;
|
||||
import java.lang.invoke.ConstantCallSite;
|
||||
import java.lang.invoke.MethodHandle;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.lang.invoke.MethodType;
|
||||
import net.minecraft.class_310;
|
||||
|
||||
public class \u0430cc\u0430h {
|
||||
private static final /* synthetic */ class_310 \u0458\u0440c;
|
||||
|
||||
public \u0430cc\u0430h() {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
}
|
||||
|
||||
public static /* synthetic */ float sph\u0440\u0456\u0455() {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
float f = \u0430cc\u0430h.\u0458\u0440c.field_1724.method_36454();
|
||||
float f2 = \u0430cc\u0430h.\u0458\u0440c.field_1724.field_3913.field_3905;
|
||||
float f3 = \u0430cc\u0430h.\u0458\u0440c.field_1724.field_3913.field_3907;
|
||||
if (f2 < 0.0f) {
|
||||
f += 180.0f;
|
||||
}
|
||||
float f4 = 1.0f;
|
||||
if (f2 < 0.0f) {
|
||||
f4 = -0.5f;
|
||||
} else if (f2 > 0.0f) {
|
||||
f4 = 0.5f;
|
||||
}
|
||||
if (f3 > 0.0f) {
|
||||
f -= 90.0f * f4;
|
||||
}
|
||||
if (f3 < 0.0f) {
|
||||
f += 90.0f * f4;
|
||||
}
|
||||
return f;
|
||||
}
|
||||
|
||||
private static /* synthetic */ float e\u0445oox\u04bb\u0435(float f, float f2) {
|
||||
boolean bl;
|
||||
boolean bl2;
|
||||
boolean bl3;
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
if (\u0430cc\u0430h.\u0458\u0440c.field_1724 == null) {
|
||||
return 0.0f;
|
||||
}
|
||||
float f3 = \u0430cc\u0430h.\u0458\u0440c.field_1724.method_36454();
|
||||
boolean bl4 = f > 0.0f;
|
||||
boolean bl5 = f < 0.0f;
|
||||
boolean bl6 = f2 > 0.0f;
|
||||
boolean bl7 = bl3 = f2 < 0.0f;
|
||||
if (bl6 || bl3) {
|
||||
bl2 = true;
|
||||
switch (0) {
|
||||
default: {
|
||||
break;
|
||||
}
|
||||
case 1: {
|
||||
break;
|
||||
}
|
||||
case 2: {
|
||||
break;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
bl2 = false;
|
||||
}
|
||||
boolean bl8 = bl2;
|
||||
boolean bl9 = bl = bl4 || bl5;
|
||||
if (f != 0.0f || f2 != 0.0f) {
|
||||
if (bl5 && !bl8) {
|
||||
return f3 + 180.0f;
|
||||
}
|
||||
if (bl4 && bl3) {
|
||||
return f3 + 45.0f;
|
||||
}
|
||||
if (bl4 && bl6) {
|
||||
return f3 - 45.0f;
|
||||
}
|
||||
if (!bl && bl3) {
|
||||
return f3 + 90.0f;
|
||||
}
|
||||
if (!bl) {
|
||||
return f3 - 90.0f;
|
||||
}
|
||||
if (bl5 && bl3) {
|
||||
return f3 + 135.0f;
|
||||
}
|
||||
if (bl5) {
|
||||
return f3 - 135.0f;
|
||||
}
|
||||
}
|
||||
return f3;
|
||||
}
|
||||
|
||||
public static /* synthetic */ void epix(\u043e\u0458o\u0445xp\u0440 \u043e\u0458o\u0445xp\u04402, float f) {
|
||||
if (true | false) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
float f2 = \u043e\u0458o\u0445xp\u04402.\u0458\u0430\u0441\u0441\u0458c\u0455();
|
||||
float f3 = \u043e\u0458o\u0445xp\u04402.ej\u0435\u0430c();
|
||||
int n = -304896905 + 304896950;
|
||||
float f4 = 22.5f;
|
||||
CallSite callSite = \u0430cc\u0430h.a_bsm1("max", max(float float ), (float)\u0430cc\u0430h.a_bsm0("abs", abs(float ), (float)f2), (float)\u0430cc\u0430h.a_bsm0("abs", abs(float ), (float)f3));
|
||||
double d = (double)\u0430cc\u0430h.a_bsm2("method_15393", method_15393(float ), (float)(\u0430cc\u0430h.e\u0445oox\u04bb\u0435(f2, f3) - f));
|
||||
CallSite callSite2 = \u0430cc\u0430h.a_bsm3("abs", abs(double ), (double)d);
|
||||
f2 = 0.0f;
|
||||
f3 = 0.0f;
|
||||
if (callSite2 <= (double)((float)n + f4)) {
|
||||
f2 += 1.0f;
|
||||
} else if (callSite2 >= (double)(180.0f - (float)n - f4)) {
|
||||
f2 -= 1.0f;
|
||||
}
|
||||
if (d >= (double)((float)n - f4) && d <= (double)(180.0f - (float)n + f4)) {
|
||||
f3 -= 1.0f;
|
||||
} else if (d <= (double)((float)(-n) + f4) && d >= (double)(-180.0f + (float)n - f4)) {
|
||||
f3 += 1.0f;
|
||||
}
|
||||
\u043e\u0458o\u0445xp\u04402.xoj(f2 *= callSite);
|
||||
\u043e\u0458o\u0445xp\u04402.pca\u043e(f3 *= callSite);
|
||||
}
|
||||
|
||||
public static /* synthetic */ boolean \u0455pia\u0456\u0441() {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
return \u0430cc\u0430h.\u0458\u0440c.field_1724 != null && (\u0430cc\u0430h.\u0458\u0440c.field_1724.field_3913.field_3907 != 0.0f || \u0430cc\u0430h.\u0458\u0440c.field_1724.field_3913.field_3905 != 0.0f || \u0430cc\u0430h.\u0458\u0440c.field_1690.field_1913.method_1434() || \u0430cc\u0430h.\u0458\u0440c.field_1690.field_1849.method_1434() || \u0430cc\u0430h.\u0458\u0440c.field_1690.field_1894.method_1434() || \u0430cc\u0430h.\u0458\u0440c.field_1690.field_1881.method_1434());
|
||||
}
|
||||
|
||||
static {
|
||||
\u0458\u0440c = class_310.method_1551();
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm0(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm1(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm2(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm3(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,84 @@
|
||||
/*
|
||||
* Decompiled with CFR 0.152.
|
||||
*/
|
||||
package ie\u0441\u0430ej;
|
||||
|
||||
import java.lang.invoke.CallSite;
|
||||
import java.lang.invoke.ConstantCallSite;
|
||||
import java.lang.invoke.MethodHandle;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.lang.invoke.MethodType;
|
||||
import net.minecraft.class_1922;
|
||||
import net.minecraft.class_2248;
|
||||
import net.minecraft.class_2338;
|
||||
import net.minecraft.class_2350;
|
||||
import net.minecraft.class_2374;
|
||||
import net.minecraft.class_243;
|
||||
import net.minecraft.class_2680;
|
||||
import net.minecraft.class_3959;
|
||||
import net.minecraft.class_3965;
|
||||
import \u0440o\u0456\u0445o.\u0445\u0440\u0430\u0435\u0445\u043e;
|
||||
import \u0440\u0440e.po\u0440j;
|
||||
|
||||
public class \u0430\u0435ec {
|
||||
public \u0430\u0435ec() {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
}
|
||||
|
||||
public static /* synthetic */ class_3965 \u0430i\u0456\u043e\u0435(class_1922 class_19222, class_3959 class_39593) {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
if (0 != 0) {
|
||||
}
|
||||
class_243 class_2432 = class_39593.method_17750();
|
||||
class_243 class_2433 = class_39593.method_17747();
|
||||
class_3965 class_39652 = ((\u0445\u0440\u0430\u0435\u0445\u043e)((Object)\u0430\u0435ec.a_bsm0("jaa\u0435\u0445c", jaa\u0435\u0445c()))).\u0430e\u0440\u0456.\u0441c\u0458\u043e\u0430(po\u0440j.class).\u0440\u0435\u0455x\u0435xe() ? (class_3965)\u0430\u0435ec.a_bsm1("method_17744", method_17744(net.minecraft.class_243 net.minecraft.class_243 java.lang.Object java.util.function.BiFunction java.util.function.Function ), (class_243)class_2432, (class_243)class_2433, (Object)class_39593, (class_39592, class_23382) -> {
|
||||
class_2680 class_26802;
|
||||
if (true | false) {
|
||||
}
|
||||
return \u0430\u0435ec.a_bsm5("x\u0455\u0445\u0445\u0441\u0441\u0456", x\u0455\u0445\u0445\u0441\u0441\u0456(net.minecraft.class_2248 ), (class_2248)(class_26802 = class_19222.method_8320(class_23382)).method_26204()) != false ? class_19222.method_17745(class_2432, class_2433, class_23382, class_39592.method_17748(class_26802, class_19222, class_23382), class_26802) : null;
|
||||
}, class_39592 -> {
|
||||
if ((3 * 3 + 3) % 2 == 0) {
|
||||
}
|
||||
return null;
|
||||
}) : null;
|
||||
return class_39652 != null ? class_39652 : (class_3965)\u0430\u0435ec.a_bsm1("method_17744", method_17744(net.minecraft.class_243 net.minecraft.class_243 java.lang.Object java.util.function.BiFunction java.util.function.Function ), (class_243)class_2432, (class_243)class_2433, (Object)class_39593, (class_39592, class_23382) -> {
|
||||
if (true | false) {
|
||||
}
|
||||
class_2680 class_26802 = class_19222.method_8320(class_23382);
|
||||
class_3965 class_39652 = class_19222.method_17745(class_2432, class_2433, class_23382, class_39592.method_17748(class_26802, class_19222, class_23382), class_26802);
|
||||
class_3965 class_39653 = class_39592.method_17749(class_19222.method_8316(class_23382), class_19222, class_23382).method_1092(class_2432, class_2433, class_23382);
|
||||
return (class_39652 == null ? Double.MAX_VALUE : class_2432.method_1025(class_39652.method_17784())) <= (class_39653 == null ? Double.MAX_VALUE : class_2432.method_1025(class_39653.method_17784())) ? class_39652 : class_39653;
|
||||
}, class_39592 -> {
|
||||
if (2 * 2 * 2 >= 0) {
|
||||
}
|
||||
return \u0430\u0435ec.a_bsm4("method_17778", method_17778(net.minecraft.class_243 net.minecraft.class_2350 net.minecraft.class_2338 ), (class_243)class_2433, (class_2350)\u0430\u0435ec.a_bsm2("method_10142", method_10142(double double double ), (double)(class_2433.field_1352 - class_2432.field_1352), (double)(class_2433.field_1351 - class_2432.field_1351), (double)(class_2433.field_1350 - class_2432.field_1350)), (class_2338)\u0430\u0435ec.a_bsm3("method_49638", method_49638(net.minecraft.class_2374 ), (class_2374)class_2433));
|
||||
});
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm0(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm1(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm2(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm3(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm4(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
|
||||
private static /* synthetic */ CallSite a_bsm5(MethodHandles.Lookup lookup, String string, MethodType methodType, MethodHandle methodHandle) {
|
||||
return new ConstantCallSite(methodHandle);
|
||||
}
|
||||
}
|
||||
|
||||
Loaded 100 of 385 files, more files were not shown because too many files have changed in this diff.
Show more
Reference in new issue
屏蔽一个用户