92.3 - Alpha (92203)

This commit is contained in:
Juby210 2021-09-09 08:47:34 +02:00
parent 5e06b23d22
commit 6941636ca5
236 changed files with 9762 additions and 9398 deletions

View File

@ -10,8 +10,8 @@ android {
applicationId 'com.discord'
minSdkVersion 21
targetSdkVersion 29
versionCode 92202
versionName "92.2 - Alpha"
versionCode 92203
versionName "92.3 - Alpha"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="92202" android:versionName="92.2 - Alpha" android:installLocation="auto" android:compileSdkVersion="30" android:compileSdkVersionCodename="11" package="com.discord" platformBuildVersionCode="30" platformBuildVersionName="11">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="92203" android:versionName="92.3 - Alpha" android:installLocation="auto" android:compileSdkVersion="30" android:compileSdkVersionCodename="11" package="com.discord" platformBuildVersionCode="30" platformBuildVersionName="11">
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="29"/>
<uses-feature android:name="android.hardware.camera" android:required="false"/>
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>

View File

@ -4,6 +4,7 @@ import c.a.q.m0.a;
import c.a.q.o0.b;
import c.a.q.o0.c;
import c.a.q.o0.d;
import c.a.q.o0.e;
import co.discord.media_engine.MediaType;
import co.discord.media_engine.StreamParameters;
import co.discord.media_engine.VoiceQuality;
@ -180,6 +181,22 @@ public final class b0 implements MediaEngineConnection.d {
}
}
@Override // com.discord.rtcconnection.mediaengine.MediaEngineConnection.d
public void onTargetBitrate(int i) {
e eVar = this.a.A;
synchronized (eVar) {
eVar.l.k = i;
}
}
@Override // com.discord.rtcconnection.mediaengine.MediaEngineConnection.d
public void onTargetFrameRate(int i) {
e eVar = this.a.A;
synchronized (eVar) {
eVar.l.l = i;
}
}
@Override // com.discord.rtcconnection.mediaengine.MediaEngineConnection.d
public void onVideo(long j, Integer num, int i, int i2, int i3, StreamParameters[] streamParametersArr) {
m.checkNotNullParameter(streamParametersArr, "streams");

View File

@ -126,8 +126,8 @@ public final class h0 implements a.d {
long j2 = (long) i2;
synchronized (eVar) {
if (j2 != 0) {
eVar.n.put(Long.valueOf(j2), Long.valueOf(eVar.r.currentTimeMillis()));
Logger.i$default(eVar.q, "VideoQuality: handleVideoStreamUpdate(userId: " + j + ", videoSsrc: " + j2 + ')', null, 2, null);
eVar.n.put(Long.valueOf(j2), Long.valueOf(eVar.q.currentTimeMillis()));
Logger.i$default(eVar.p, "VideoQuality: handleVideoStreamUpdate(userId: " + j + ", videoSsrc: " + j2 + ')', null, 2, null);
}
}
if (j != rtcConnection.S) {
@ -303,10 +303,10 @@ public final class h0 implements a.d {
@Override // c.a.q.n0.a.d
public void j(long j) {
Map<String, Object> b;
Map<String, Object> c2;
RtcConnection rtcConnection = this.a;
if ((rtcConnection.W instanceof RtcConnection.d.a) && (b = rtcConnection.A.b(String.valueOf(j))) != null) {
rtcConnection.l(j, b);
if ((rtcConnection.W instanceof RtcConnection.d.a) && (c2 = rtcConnection.A.c(String.valueOf(j))) != null) {
rtcConnection.l(j, c2);
}
MediaSinkWantsManager mediaSinkWantsManager = rtcConnection.G;
if (mediaSinkWantsManager != null) {

View File

@ -413,15 +413,57 @@ public final class e implements MediaEngineConnection {
}
/* compiled from: MediaEngineConnectionLegacy.kt */
public static final class p extends d0.z.d.o implements Function1<Connection, Unit> {
public final /* synthetic */ int $framerate;
public static final class p extends d0.z.d.o implements Function1<MediaEngineConnection.d, Unit> {
public final /* synthetic */ int $frameRate;
/* JADX INFO: super call moved to the top of the method (can break code semantics) */
public p(int i) {
super(1);
this.$frameRate = i;
}
/* Return type fixed from 'java.lang.Object' to match base method */
/* JADX DEBUG: Method arguments types fixed to match base method, original types: [java.lang.Object] */
@Override // kotlin.jvm.functions.Function1
public Unit invoke(MediaEngineConnection.d dVar) {
MediaEngineConnection.d dVar2 = dVar;
d0.z.d.m.checkNotNullParameter(dVar2, "it");
dVar2.onTargetFrameRate(this.$frameRate);
return Unit.a;
}
}
/* compiled from: MediaEngineConnectionLegacy.kt */
public static final class q extends d0.z.d.o implements Function1<MediaEngineConnection.d, Unit> {
public final /* synthetic */ MediaEngineConnection.b $quality;
/* JADX INFO: super call moved to the top of the method (can break code semantics) */
public p(MediaEngineConnection.b bVar, int i) {
public q(MediaEngineConnection.b bVar) {
super(1);
this.$quality = bVar;
this.$framerate = i;
}
/* Return type fixed from 'java.lang.Object' to match base method */
/* JADX DEBUG: Method arguments types fixed to match base method, original types: [java.lang.Object] */
@Override // kotlin.jvm.functions.Function1
public Unit invoke(MediaEngineConnection.d dVar) {
MediaEngineConnection.d dVar2 = dVar;
d0.z.d.m.checkNotNullParameter(dVar2, "it");
dVar2.onTargetBitrate(this.$quality.b);
return Unit.a;
}
}
/* compiled from: MediaEngineConnectionLegacy.kt */
public static final class r extends d0.z.d.o implements Function1<Connection, Unit> {
public final /* synthetic */ int $frameRate;
public final /* synthetic */ MediaEngineConnection.b $quality;
/* JADX INFO: super call moved to the top of the method (can break code semantics) */
public r(MediaEngineConnection.b bVar, int i) {
super(1);
this.$quality = bVar;
this.$frameRate = i;
}
/* Return type fixed from 'java.lang.Object' to match base method */
@ -431,17 +473,17 @@ public final class e implements MediaEngineConnection {
Connection connection2 = connection;
d0.z.d.m.checkNotNullParameter(connection2, "$receiver");
MediaEngineConnection.b bVar = this.$quality;
connection2.setEncodingQuality(bVar.a, bVar.b, bVar.f2176c, bVar.d, this.$framerate);
connection2.setEncodingQuality(bVar.a, bVar.b, bVar.f2176c, bVar.d, this.$frameRate);
return Unit.a;
}
}
/* compiled from: MediaEngineConnectionLegacy.kt */
public static final class q extends d0.z.d.o implements Function1<Connection, Unit> {
public static final class s extends d0.z.d.o implements Function1<Connection, Unit> {
public final /* synthetic */ boolean $selfDeaf;
/* JADX INFO: super call moved to the top of the method (can break code semantics) */
public q(boolean z2) {
public s(boolean z2) {
super(1);
this.$selfDeaf = z2;
}
@ -458,11 +500,11 @@ public final class e implements MediaEngineConnection {
}
/* compiled from: MediaEngineConnectionLegacy.kt */
public static final class r extends d0.z.d.o implements Function1<Connection, Unit> {
public static final class t extends d0.z.d.o implements Function1<Connection, Unit> {
public final /* synthetic */ boolean $selfMute;
/* JADX INFO: super call moved to the top of the method (can break code semantics) */
public r(boolean z2) {
public t(boolean z2) {
super(1);
this.$selfMute = z2;
}
@ -479,11 +521,11 @@ public final class e implements MediaEngineConnection {
}
/* compiled from: MediaEngineConnectionLegacy.kt */
public static final class s extends d0.z.d.o implements Function1<Connection, Unit> {
public static final class u extends d0.z.d.o implements Function1<Connection, Unit> {
public final /* synthetic */ boolean $isVideoBroadcast;
/* JADX INFO: super call moved to the top of the method (can break code semantics) */
public s(boolean z2) {
public u(boolean z2) {
super(1);
this.$isVideoBroadcast = z2;
}
@ -500,11 +542,11 @@ public final class e implements MediaEngineConnection {
}
/* compiled from: MediaEngineConnectionLegacy.kt */
public static final class t extends d0.z.d.o implements Function1<Connection, Unit> {
public static final class v extends d0.z.d.o implements Function1<Connection, Unit> {
public final /* synthetic */ c.a.q.m0.b $screenCapturer;
/* JADX INFO: super call moved to the top of the method (can break code semantics) */
public t(c.a.q.m0.b bVar) {
public v(c.a.q.m0.b bVar) {
super(1);
this.$screenCapturer = bVar;
}
@ -522,17 +564,17 @@ public final class e implements MediaEngineConnection {
}
/* compiled from: MediaEngineConnectionLegacy.kt */
public static final class u extends MediaProjection.Callback {
public static final class w extends MediaProjection.Callback {
@Override // android.media.projection.MediaProjection.Callback
public void onStop() {
}
}
/* compiled from: MediaEngineConnectionLegacy.kt */
public static final class v extends d0.z.d.o implements Function1<Connection, Unit> {
public static final v i = new v();
public static final class x extends d0.z.d.o implements Function1<Connection, Unit> {
public static final x i = new x();
public v() {
public x() {
super(1);
}
@ -589,7 +631,7 @@ public final class e implements MediaEngineConnection {
@Override // com.discord.rtcconnection.mediaengine.MediaEngineConnection
public synchronized void a(Intent intent, ThumbnailEmitter thumbnailEmitter) {
d0.z.d.m.checkNotNullParameter(intent, "permission");
z(new t(new c.a.q.m0.b(intent, new u(), this.l, thumbnailEmitter)));
z(new v(new c.a.q.m0.b(intent, new w(), this.l, thumbnailEmitter)));
}
@Override // com.discord.rtcconnection.mediaengine.MediaEngineConnection
@ -600,7 +642,7 @@ public final class e implements MediaEngineConnection {
@Override // com.discord.rtcconnection.mediaengine.MediaEngineConnection
public void c(boolean z2) {
this.f223c = z2;
z(new r(z2));
z(new t(z2));
}
@Override // com.discord.rtcconnection.mediaengine.MediaEngineConnection
@ -643,7 +685,7 @@ public final class e implements MediaEngineConnection {
@Override // com.discord.rtcconnection.mediaengine.MediaEngineConnection
public synchronized void h() {
z(v.i);
z(x.i);
}
@Override // com.discord.rtcconnection.mediaengine.MediaEngineConnection
@ -653,7 +695,7 @@ public final class e implements MediaEngineConnection {
@Override // com.discord.rtcconnection.mediaengine.MediaEngineConnection
public void j(boolean z2) {
z(new s(z2));
z(new u(z2));
}
@Override // com.discord.rtcconnection.mediaengine.MediaEngineConnection
@ -678,7 +720,10 @@ public final class e implements MediaEngineConnection {
@Override // com.discord.rtcconnection.mediaengine.MediaEngineConnection
public void m(MediaEngineConnection.b bVar) {
d0.z.d.m.checkNotNullParameter(bVar, "quality");
z(new p(bVar, this.f223c ? bVar.e : bVar.f));
int i2 = this.f223c ? bVar.e : bVar.f;
y(new p(i2));
y(new q(bVar));
z(new r(bVar, i2));
}
@Override // com.discord.rtcconnection.mediaengine.MediaEngineConnection
@ -799,7 +844,7 @@ public final class e implements MediaEngineConnection {
@Override // com.discord.rtcconnection.mediaengine.MediaEngineConnection
public void v(boolean z2) {
z(new q(z2));
z(new s(z2));
}
@Override // com.discord.rtcconnection.mediaengine.MediaEngineConnection

View File

@ -46,17 +46,17 @@ public final /* synthetic */ class a extends k implements Function1<Stats, Unit>
synchronized (eVar2) {
try {
m.checkNotNullParameter(stats2, "stats");
long currentTimeMillis = eVar2.r.currentTimeMillis();
long currentTimeMillis = eVar2.q.currentTimeMillis();
Transport transport = stats2.getTransport();
eVar2.e(null, Integer.valueOf((transport == null || (receiverReports = transport.getReceiverReports()) == null) ? 0 : receiverReports.length), currentTimeMillis);
eVar2.f(null, Integer.valueOf((transport == null || (receiverReports = transport.getReceiverReports()) == null) ? 0 : receiverReports.length), currentTimeMillis);
if (!eVar2.k.a() && (outboundRtpVideo = stats2.getOutboundRtpVideo()) != null) {
eVar2.a(eVar2.l, new e.g((long) outboundRtpVideo.getResolution().getHeight(), currentTimeMillis, new e.a(outboundRtpVideo.getFramesEncoded(), outboundRtpVideo.getFramesSent(), outboundRtpVideo.getPacketsSent(), (long) outboundRtpVideo.getPacketsLost(), 0, outboundRtpVideo.getBytesSent(), outboundRtpVideo.getNackCount(), outboundRtpVideo.getPliCount())));
eVar2.a(eVar2.l, new e.h((long) outboundRtpVideo.getResolution().getHeight(), currentTimeMillis, new e.a(outboundRtpVideo.getFramesEncoded(), outboundRtpVideo.getFramesSent(), outboundRtpVideo.getPacketsSent(), (long) outboundRtpVideo.getPacketsLost(), 0, outboundRtpVideo.getBytesSent(), outboundRtpVideo.getNackCount(), outboundRtpVideo.getPliCount())));
if (eVar2.l.d == null && outboundRtpVideo.getFramesEncoded() > 0) {
eVar2.e.notifyAsync(g.i);
eVar2.l.d = Long.valueOf(currentTimeMillis - eVar2.g);
Logger.i$default(eVar2.q, "VideoQuality: outboundStats.timeToFirstFrame: " + eVar2.l.d, null, 2, null);
Logger.i$default(eVar2.p, "VideoQuality: outboundStats.timeToFirstFrame: " + eVar2.l.d, null, 2, null);
}
eVar2.o = outboundRtpVideo.getBitrateTarget();
eVar2.b(outboundRtpVideo.getBitrateTarget());
}
if (!eVar2.i.a()) {
Iterator<Map.Entry<String, InboundRtpVideo>> it = stats2.getInboundRtpVideo().entrySet().iterator();
@ -73,37 +73,37 @@ public final /* synthetic */ class a extends k implements Function1<Stats, Unit>
e.C0043e eVar4 = eVar3;
try {
eVar = eVar2;
} catch (Throwable th2) {
th = th2;
eVar = eVar2;
throw th;
}
try {
eVar.a(eVar4, new e.g((long) value.getResolution().getHeight(), currentTimeMillis, new e.a((long) value.getFramesDecoded(), (long) value.getFramesReceived(), (long) value.getPacketsReceived(), (long) value.getPacketsLost(), (long) value.getFramesDropped(), value.getBytesReceived(), value.getNackCount(), value.getPliCount())));
if (eVar4.d == null && value.getFramesDecoded() > 0) {
byte[] bArr = c.a;
m.checkParameterIsNotNull(key, "$this$toLongOrDefault");
try {
j = Long.parseLong(key);
} catch (NumberFormatException unused) {
j = 0;
}
Long l = eVar.n.get(Long.valueOf(value.getSsrc()));
if (l != null) {
eVar.e.notifyAsync(new h(value));
eVar4.d = Long.valueOf(currentTimeMillis - l.longValue());
Logger.i$default(eVar.q, "VideoQuality: inbound.timeToFirstFrame: " + eVar4.d + " (userId: " + j + ", ssrc: " + value.getSsrc() + ')', null, 2, null);
} else {
Logger.e$default(eVar.q, "VideoQuality: inbound.timeToFirstFrame: Unable to locate start time. (userId: " + j + ", ssrc: " + value.getSsrc() + ')', null, null, 6, null);
try {
eVar.a(eVar4, new e.h((long) value.getResolution().getHeight(), currentTimeMillis, new e.a((long) value.getFramesDecoded(), (long) value.getFramesReceived(), (long) value.getPacketsReceived(), (long) value.getPacketsLost(), (long) value.getFramesDropped(), value.getBytesReceived(), value.getNackCount(), value.getPliCount())));
if (eVar4.d == null && value.getFramesDecoded() > 0) {
byte[] bArr = c.a;
m.checkParameterIsNotNull(key, "$this$toLongOrDefault");
try {
j = Long.parseLong(key);
} catch (NumberFormatException unused) {
j = 0;
}
Long l = eVar.n.get(Long.valueOf(value.getSsrc()));
if (l != null) {
eVar.e.notifyAsync(new h(value));
eVar4.d = Long.valueOf(currentTimeMillis - l.longValue());
Logger.i$default(eVar.p, "VideoQuality: inbound.timeToFirstFrame: " + eVar4.d + " (userId: " + j + ", ssrc: " + value.getSsrc() + ')', null, 2, null);
} else {
Logger.e$default(eVar.p, "VideoQuality: inbound.timeToFirstFrame: Unable to locate start time. (userId: " + j + ", ssrc: " + value.getSsrc() + ')', null, null, 6, null);
}
}
eVar2 = eVar;
it = it;
stats2 = stats2;
dVar = dVar;
currentTimeMillis = currentTimeMillis;
} catch (Throwable th2) {
th = th2;
throw th;
}
eVar2 = eVar;
it = it;
stats2 = stats2;
dVar = dVar;
currentTimeMillis = currentTimeMillis;
} catch (Throwable th3) {
th = th3;
eVar = eVar2;
throw th;
}
}

View File

@ -38,13 +38,12 @@ public final class e {
public final d i;
public final d j;
public final d k;
public final C0043e l = new C0043e();
public final g l = new g();
public final Map<String, C0043e> m = new LinkedHashMap();
public final Map<Long, Long> n = new LinkedHashMap();
public int o;
public final DeviceResourceUsageMonitor p;
public final Logger q;
public final Clock r;
public final DeviceResourceUsageMonitor o;
public final Logger p;
public final Clock q;
/* compiled from: VideoQuality.kt */
public static final class a {
@ -176,8 +175,8 @@ public final class e {
/* compiled from: VideoQuality.kt */
/* renamed from: c.a.q.o0.e$e reason: collision with other inner class name */
public static final class C0043e {
public List<g> a = new ArrayList();
public static class C0043e {
public List<h> a = new ArrayList();
public final Histogram b = new Histogram(5, 0, 2, null);
/* renamed from: c reason: collision with root package name */
@ -211,18 +210,27 @@ public final class e {
}
/* compiled from: VideoQuality.kt */
public static final class g {
public static final class g extends C0043e {
public int k = 2500000;
public int l = 30;
public long m;
public long n;
public long o;
}
/* compiled from: VideoQuality.kt */
public static final class h {
public final long a;
public final long b;
/* renamed from: c reason: collision with root package name */
public final a f234c;
public g() {
public h() {
this(0, 0, new a(0, 0, 0, 0, 0, 0, 0, 0, 255));
}
public g(long j, long j2, a aVar) {
public h(long j, long j2, a aVar) {
m.checkNotNullParameter(aVar, "aggregatedProperties");
this.a = j;
this.b = j2;
@ -233,11 +241,11 @@ public final class e {
if (this == obj) {
return true;
}
if (!(obj instanceof g)) {
if (!(obj instanceof h)) {
return false;
}
g gVar = (g) obj;
return this.a == gVar.a && this.b == gVar.b && m.areEqual(this.f234c, gVar.f234c);
h hVar = (h) obj;
return this.a == hVar.a && this.b == hVar.b && m.areEqual(this.f234c, hVar.f234c);
}
public int hashCode() {
@ -259,11 +267,11 @@ public final class e {
}
/* compiled from: VideoQuality.kt */
public static final class h extends o implements Function1<DeviceResourceUsageMonitor.ResourceUsage, Unit> {
public static final class i extends o implements Function1<DeviceResourceUsageMonitor.ResourceUsage, Unit> {
public final /* synthetic */ e this$0;
/* JADX INFO: super call moved to the top of the method (can break code semantics) */
public h(e eVar) {
public i(e eVar) {
super(1);
this.this$0 = eVar;
}
@ -292,8 +300,8 @@ public final class e {
public e(Logger logger, Clock clock) {
m.checkNotNullParameter(logger, "logger");
m.checkNotNullParameter(clock, "clock");
this.q = logger;
this.r = clock;
this.p = logger;
this.q = clock;
ListenerCollectionSubject<f> listenerCollectionSubject = new ListenerCollectionSubject<>();
this.e = listenerCollectionSubject;
this.f = listenerCollectionSubject;
@ -302,23 +310,23 @@ public final class e {
this.i = new d(false, currentTimeMillis);
this.j = new d(false, currentTimeMillis);
this.k = new d(false, currentTimeMillis);
DeviceResourceUsageMonitor deviceResourceUsageMonitor = new DeviceResourceUsageMonitor(new TimeSpan(1, TimeUnit.SECONDS), clock, new h(this));
this.p = deviceResourceUsageMonitor;
DeviceResourceUsageMonitor deviceResourceUsageMonitor = new DeviceResourceUsageMonitor(new TimeSpan(1, TimeUnit.SECONDS), clock, new i(this));
this.o = deviceResourceUsageMonitor;
deviceResourceUsageMonitor.start();
}
public final void a(C0043e eVar, g gVar) {
eVar.a.add(gVar);
public final void a(C0043e eVar, h hVar) {
eVar.a.add(hVar);
if (eVar.a.size() >= 2) {
List<g> list = eVar.a;
g gVar2 = list.get(list.size() - 1);
List<g> list2 = eVar.a;
g gVar3 = list2.get(list2.size() - 2);
List<h> list = eVar.a;
h hVar2 = list.get(list.size() - 1);
List<h> list2 = eVar.a;
h hVar3 = list2.get(list2.size() - 2);
f fVar = f.i;
eVar.f = (gVar2.b - gVar3.b) + eVar.f;
eVar.f = (hVar2.b - hVar3.b) + eVar.f;
a aVar = eVar.e;
a aVar2 = gVar2.f234c;
a aVar3 = gVar3.f234c;
a aVar2 = hVar2.f234c;
a aVar3 = hVar3.f234c;
aVar.a = fVar.a(aVar2.a, aVar3.a) + aVar.a;
aVar.b = fVar.a(aVar2.b, aVar3.b) + aVar.b;
aVar.f232c = fVar.a(aVar2.f232c, aVar3.f232c) + aVar.f232c;
@ -327,20 +335,20 @@ public final class e {
aVar.f = fVar.a(aVar2.f, aVar3.f) + aVar.f;
aVar.g = fVar.a(aVar2.g, aVar3.g) + aVar.g;
aVar.h = fVar.a(aVar2.h, aVar3.h) + aVar.h;
a aVar4 = gVar2.f234c;
a aVar4 = hVar2.f234c;
long j = aVar4.f;
long j2 = aVar4.a;
long j3 = gVar2.b;
long j4 = gVar2.a;
float f2 = ((float) (j3 - gVar3.b)) / 1000.0f;
long j3 = hVar2.b;
long j4 = hVar2.a;
float f2 = ((float) (j3 - hVar3.b)) / 1000.0f;
eVar.i = (((float) j4) * f2) + eVar.i;
if (eVar.a.size() >= 6) {
List<g> list3 = eVar.a;
g gVar4 = list3.get(list3.size() - 3);
a aVar5 = gVar4.f234c;
List<h> list3 = eVar.a;
h hVar4 = list3.get(list3.size() - 3);
a aVar5 = hVar4.f234c;
long j5 = aVar5.f;
long j6 = aVar5.a;
long j7 = gVar4.b;
long j7 = hVar4.b;
Iterator<T> it = f231c.iterator();
while (true) {
float f3 = 0.0f;
@ -386,17 +394,51 @@ public final class e {
}
}
@AnyThread
public final synchronized Map<String, Object> b(String str) {
C0043e eVar;
m.checkNotNullParameter(str, "userId");
eVar = this.m.get(str);
return eVar != null ? d(eVar) : null;
public final void b(int i2) {
if (this.l.a.size() >= 2) {
List<h> list = this.l.a;
long j = list.get(list.size() - 1).b;
List<h> list2 = this.l.a;
float f2 = ((float) (j - list2.get(list2.size() - 2).b)) / 1000.0f;
g gVar = this.l;
long j2 = gVar.m;
Float valueOf = Float.valueOf(((float) gVar.l) * f2);
long j3 = 0;
gVar.m = j2 + (valueOf != null ? d0.a0.a.roundToLong(valueOf.floatValue()) : 0);
g gVar2 = this.l;
long j4 = gVar2.n;
Float valueOf2 = Float.valueOf((((float) i2) / 8.0f) * f2);
gVar2.n = j4 + (valueOf2 != null ? d0.a0.a.roundToLong(valueOf2.floatValue()) : 0);
g gVar3 = this.l;
long j5 = gVar3.o;
Float valueOf3 = Float.valueOf((((float) gVar3.k) / 8.0f) * f2);
if (valueOf3 != null) {
j3 = d0.a0.a.roundToLong(valueOf3.floatValue());
}
gVar3.o = j5 + j3;
}
}
@AnyThread
public final synchronized Map<String, Object> c() {
return h0.plus(d(this.l), h0.mapOf(d0.o.to("target_bitrate", Integer.valueOf(this.o)), d0.o.to("duration_encoder_nvidia_cuda", 0), d0.o.to("duration_encoder_nvidia_direct3d", 0), d0.o.to("duration_encoder_openh264", 0), d0.o.to("duration_encoder_videotoolbox", 0), d0.o.to("duration_encoder_amd_direct3d", 0), d0.o.to("duration_encoder_intel", 0), d0.o.to("duration_encoder_intel_direct3d", 0), d0.o.to("duration_encoder_unknown", 0)));
public final synchronized Map<String, Object> c(String str) {
C0043e eVar;
m.checkNotNullParameter(str, "userId");
eVar = this.m.get(str);
return eVar != null ? e(eVar) : null;
}
@AnyThread
public final synchronized Map<String, Object> d() {
g gVar;
float f2;
int i2;
Float valueOf;
Float valueOf2;
Float valueOf3;
gVar = this.l;
f2 = ((float) gVar.f) / 1000.0f;
i2 = (f2 > ((float) 0) ? 1 : (f2 == ((float) 0) ? 0 : -1));
return h0.plus(e(this.l), h0.mapOf(d0.o.to("target_bitrate_max", Long.valueOf((i2 <= 0 || (valueOf3 = Float.valueOf(((float) (gVar.o * ((long) 8))) / f2)) == null) ? 0 : d0.a0.a.roundToLong(valueOf3.floatValue()))), d0.o.to("target_bitrate_network", Long.valueOf((i2 <= 0 || (valueOf2 = Float.valueOf(((float) (this.l.n * ((long) 8))) / f2)) == null) ? 0 : d0.a0.a.roundToLong(valueOf2.floatValue()))), d0.o.to("target_fps", Long.valueOf((i2 <= 0 || (valueOf = Float.valueOf(((float) this.l.m) / f2)) == null) ? 0 : d0.a0.a.roundToLong(valueOf.floatValue()))), d0.o.to("duration_encoder_nvidia_cuda", 0L), d0.o.to("duration_encoder_nvidia_direct3d", 0L), d0.o.to("duration_encoder_openh264", 0L), d0.o.to("duration_encoder_videotoolbox", 0L), d0.o.to("duration_encoder_amd_direct3d", 0L), d0.o.to("duration_encoder_intel", 0L), d0.o.to("duration_encoder_intel_direct3d", 0L), d0.o.to("duration_encoder_unknown", 0L)));
}
/* JADX DEBUG: Can't convert new array creation: APUT found in different block: 0x04e0: APUT
@ -407,22 +449,22 @@ public final class e {
(wrap: java.lang.Long : 0x04d4: INVOKE (r1v2 java.lang.Long) = (r4v22 long) type: STATIC call: java.lang.Long.valueOf(long):java.lang.Long)
type: STATIC call: d0.o.to(java.lang.Object, java.lang.Object):kotlin.Pair)
*/
public final Map<String, Object> d(C0043e eVar) {
public final Map<String, Object> e(C0043e eVar) {
Float valueOf;
long currentTimeMillis = this.r.currentTimeMillis();
long currentTimeMillis = this.q.currentTimeMillis();
Long l = this.h;
float longValue = ((float) (l != null ? l.longValue() - this.g : currentTimeMillis - this.g)) / 1000.0f;
float f2 = ((float) eVar.f) / 1000.0f;
int i = (f2 > ((float) 0) ? 1 : (f2 == ((float) 0) ? 0 : -1));
long roundToLong = (i <= 0 || (valueOf = Float.valueOf(eVar.i / f2)) == null) ? 0 : d0.a0.a.roundToLong(valueOf.floatValue());
int i2 = (f2 > ((float) 0) ? 1 : (f2 == ((float) 0) ? 0 : -1));
long roundToLong = (i2 <= 0 || (valueOf = Float.valueOf(eVar.i / f2)) == null) ? 0 : d0.a0.a.roundToLong(valueOf.floatValue());
Histogram.Report report = eVar.b.getReport();
Histogram.Report report2 = eVar.f233c.getReport();
b bVar = d;
long j = (long) 1024;
Map mapOf = h0.mapOf(d0.o.to("duration", Double.valueOf(Math.floor((double) longValue))), c.d.b.a.a.Y(bVar, eVar.g.get(8000000), "duration_stream_under_8mbps"), c.d.b.a.a.Y(bVar, eVar.g.get(7000000), "duration_stream_under_7mbps"), c.d.b.a.a.Y(bVar, eVar.g.get(6000000), "duration_stream_under_6mbps"), c.d.b.a.a.Y(bVar, eVar.g.get(5000000), "duration_stream_under_5mbps"), c.d.b.a.a.Y(bVar, eVar.g.get(4000000), "duration_stream_under_4mbps"), c.d.b.a.a.Y(bVar, eVar.g.get(3000000), "duration_stream_under_3mbps"), c.d.b.a.a.Y(bVar, eVar.g.get(2000000), "duration_stream_under_2mbps"), c.d.b.a.a.Y(bVar, eVar.g.get(1500000), "duration_stream_under_1_5mbps"), c.d.b.a.a.Y(bVar, eVar.g.get(1000000), "duration_stream_under_1mbps"), c.d.b.a.a.Y(bVar, eVar.g.get(500000), "duration_stream_under_0_5mbps"), c.d.b.a.a.Y(bVar, eVar.g.get(0), "duration_stream_at_0mbps"), c.d.b.a.a.Y(bVar, eVar.h.get(60), "duration_fps_under_60"), c.d.b.a.a.Y(bVar, eVar.h.get(55), "duration_fps_under_55"), c.d.b.a.a.Y(bVar, eVar.h.get(50), "duration_fps_under_50"), c.d.b.a.a.Y(bVar, eVar.h.get(45), "duration_fps_under_45"), c.d.b.a.a.Y(bVar, eVar.h.get(40), "duration_fps_under_40"), c.d.b.a.a.Y(bVar, eVar.h.get(35), "duration_fps_under_35"), c.d.b.a.a.Y(bVar, eVar.h.get(30), "duration_fps_under_30"), c.d.b.a.a.Y(bVar, eVar.h.get(25), "duration_fps_under_25"), c.d.b.a.a.Y(bVar, eVar.h.get(20), "duration_fps_under_20"), c.d.b.a.a.Y(bVar, eVar.h.get(15), "duration_fps_under_15"), c.d.b.a.a.Y(bVar, eVar.h.get(10), "duration_fps_under_10"), c.d.b.a.a.Y(bVar, eVar.h.get(5), "duration_fps_under_5"), c.d.b.a.a.Y(bVar, eVar.h.get(0), "duration_fps_at_0"), d0.o.to("avg_resolution", Long.valueOf(roundToLong)), c.d.b.a.a.Y(bVar, eVar.j.get(720), "duration_resolution_under_720"), c.d.b.a.a.Y(bVar, eVar.j.get(480), "duration_resolution_under_480"), c.d.b.a.a.Y(bVar, eVar.j.get(360), "duration_resolution_under_360"), d0.o.to("num_pauses", 0), d0.o.to("duration_paused", Long.valueOf(b.a(bVar, Float.valueOf(((float) this.i.c(currentTimeMillis)) / 1000.0f)))), d0.o.to("duration_zero_receivers", Long.valueOf(b.a(bVar, Float.valueOf(((float) this.j.c(currentTimeMillis)) / 1000.0f)))), d0.o.to("duration_video_stopped", Long.valueOf(b.a(bVar, Float.valueOf(((float) this.k.c(currentTimeMillis)) / 1000.0f)))), d0.o.to("client_performance_cpu_percentile25", Long.valueOf(report.getPercentile25())), d0.o.to("client_performance_cpu_percentile50", Long.valueOf(report.getPercentile50())), d0.o.to("client_performance_cpu_percentile75", Long.valueOf(report.getPercentile75())), d0.o.to("client_performance_cpu_percentile90", Long.valueOf(report.getPercentile90())), d0.o.to("client_performance_cpu_percentile95", Long.valueOf(report.getPercentile95())), d0.o.to("client_performance_memory_percentile25", Long.valueOf(report2.getPercentile25() / j)), d0.o.to("client_performance_memory_percentile50", Long.valueOf(report2.getPercentile50() / j)), d0.o.to("client_performance_memory_percentile75", Long.valueOf(report2.getPercentile75() / j)), d0.o.to("client_performance_memory_percentile90", Long.valueOf(report2.getPercentile90() / j)), d0.o.to("client_performance_memory_percentile95", Long.valueOf(report2.getPercentile95() / j)), d0.o.to("client_performance_memory_min", Long.valueOf(report2.getMin() / j)), d0.o.to("client_performance_memory_max", Long.valueOf(report2.getMax() / j)));
a aVar = eVar.e;
long a2 = i > 0 ? b.a(bVar, Float.valueOf(((float) (aVar.f * ((long) 8))) / f2)) : 0;
long a3 = i > 0 ? b.a(bVar, Float.valueOf(((float) aVar.a) / f2)) : 0;
long a2 = i2 > 0 ? b.a(bVar, Float.valueOf(((float) (aVar.f * ((long) 8))) / f2)) : 0;
long a3 = i2 > 0 ? b.a(bVar, Float.valueOf(((float) aVar.a) / f2)) : 0;
Pair[] pairArr = new Pair[10];
pairArr[0] = d0.o.to("avg_bitrate", Long.valueOf(a2));
pairArr[1] = d0.o.to("avg_fps", Long.valueOf(a3));
@ -438,7 +480,7 @@ public final class e {
return h0.plus(mapOf, h0.mapOf(pairArr));
}
public final void e(Boolean bool, Integer num, long j) {
public final void f(Boolean bool, Integer num, long j) {
boolean z2 = false;
if (num != null) {
this.j.b(num.intValue() == 0, j);

View File

@ -6,7 +6,7 @@ import android.widget.ImageView;
import androidx.annotation.NonNull;
import androidx.viewbinding.ViewBinding;
import com.google.android.material.button.MaterialButton;
public final class WidgetProfileMarketingSheetBinding implements ViewBinding {
public final class WidgetGuildIdentityMarketingSheetBinding implements ViewBinding {
@NonNull
public final FrameLayout a;
@NonNull
@ -14,12 +14,12 @@ public final class WidgetProfileMarketingSheetBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final MaterialButton f1924c;
public final MaterialButton f1849c;
public WidgetProfileMarketingSheetBinding(@NonNull FrameLayout frameLayout, @NonNull ImageView imageView, @NonNull MaterialButton materialButton, @NonNull MaterialButton materialButton2) {
public WidgetGuildIdentityMarketingSheetBinding(@NonNull FrameLayout frameLayout, @NonNull ImageView imageView, @NonNull MaterialButton materialButton, @NonNull MaterialButton materialButton2) {
this.a = frameLayout;
this.b = materialButton;
this.f1924c = materialButton2;
this.f1849c = materialButton2;
}
@Override // androidx.viewbinding.ViewBinding

View File

@ -17,7 +17,7 @@ public final class WidgetGuildInviteBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final MaterialButton f1849c;
public final MaterialButton f1850c;
@Nullable
public final GuildScheduledEventItemView d;
@NonNull
@ -28,7 +28,7 @@ public final class WidgetGuildInviteBinding implements ViewBinding {
public WidgetGuildInviteBinding(@NonNull CoordinatorLayout coordinatorLayout, @NonNull MaterialButton materialButton, @NonNull View view, @NonNull MaterialButton materialButton2, @Nullable GuildScheduledEventItemView guildScheduledEventItemView, @NonNull WidgetInviteInfo widgetInviteInfo, @NonNull SimpleDraweeView simpleDraweeView) {
this.a = coordinatorLayout;
this.b = materialButton;
this.f1849c = materialButton2;
this.f1850c = materialButton2;
this.d = guildScheduledEventItemView;
this.e = widgetInviteInfo;
this.f = simpleDraweeView;

View File

@ -17,7 +17,7 @@ public final class WidgetGuildInviteInfoBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final SimpleDraweeView f1850c;
public final SimpleDraweeView f1851c;
@NonNull
public final CardView d;
@NonNull
@ -44,7 +44,7 @@ public final class WidgetGuildInviteInfoBinding implements ViewBinding {
public WidgetGuildInviteInfoBinding(@NonNull View view, @NonNull SimpleDraweeView simpleDraweeView, @NonNull SimpleDraweeView simpleDraweeView2, @NonNull CardView cardView, @NonNull RelativeLayout relativeLayout, @NonNull RelativeLayout relativeLayout2, @NonNull ImageView imageView, @NonNull TextView textView, @NonNull CardView cardView2, @NonNull TextView textView2, @NonNull CardView cardView3, @NonNull LinearLayout linearLayout, @NonNull TextView textView3, @NonNull TextView textView4) {
this.a = view;
this.b = simpleDraweeView;
this.f1850c = simpleDraweeView2;
this.f1851c = simpleDraweeView2;
this.d = cardView;
this.e = relativeLayout;
this.f = relativeLayout2;

View File

@ -16,7 +16,7 @@ public final class WidgetGuildInviteSettingsBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final RadioGroup f1851c;
public final RadioGroup f1852c;
@NonNull
public final MaterialButton d;
@NonNull
@ -27,7 +27,7 @@ public final class WidgetGuildInviteSettingsBinding implements ViewBinding {
public WidgetGuildInviteSettingsBinding(@NonNull LinearLayout linearLayout, @NonNull Spinner spinner, @NonNull RadioGroup radioGroup, @NonNull MaterialButton materialButton, @NonNull RadioGroup radioGroup2, @NonNull CheckedSetting checkedSetting) {
this.a = linearLayout;
this.b = spinner;
this.f1851c = radioGroup;
this.f1852c = radioGroup;
this.d = materialButton;
this.e = radioGroup2;
this.f = checkedSetting;

View File

@ -20,7 +20,7 @@ public final class WidgetGuildInviteShareBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final TextView f1852c;
public final TextView f1853c;
@NonNull
public final TextView d;
@NonNull
@ -41,7 +41,7 @@ public final class WidgetGuildInviteShareBinding implements ViewBinding {
public WidgetGuildInviteShareBinding(@NonNull CoordinatorLayout coordinatorLayout, @NonNull View view, @NonNull TextView textView, @NonNull TextView textView2, @NonNull CheckedSetting checkedSetting, @NonNull ImageView imageView, @NonNull MaterialButton materialButton, @NonNull TextInputLayout textInputLayout, @NonNull RecyclerView recyclerView, @NonNull AppViewFlipper appViewFlipper, @NonNull ViewInviteSettingsSheet viewInviteSettingsSheet) {
this.a = coordinatorLayout;
this.b = view;
this.f1852c = textView;
this.f1853c = textView;
this.d = textView2;
this.e = checkedSetting;
this.f = imageView;

View File

@ -19,7 +19,7 @@ public final class WidgetGuildInviteShareCompactBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final TextView f1853c;
public final TextView f1854c;
@NonNull
public final TextView d;
@NonNull
@ -38,7 +38,7 @@ public final class WidgetGuildInviteShareCompactBinding implements ViewBinding {
public WidgetGuildInviteShareCompactBinding(@NonNull CoordinatorLayout coordinatorLayout, @NonNull View view, @NonNull TextView textView, @NonNull TextView textView2, @NonNull ImageView imageView, @NonNull MaterialButton materialButton, @NonNull TextInputLayout textInputLayout, @NonNull RecyclerView recyclerView, @NonNull AppViewFlipper appViewFlipper, @NonNull ViewInviteSettingsSheet viewInviteSettingsSheet) {
this.a = coordinatorLayout;
this.b = view;
this.f1853c = textView;
this.f1854c = textView;
this.d = textView2;
this.e = imageView;
this.f = materialButton;

View File

@ -16,7 +16,7 @@ public final class WidgetGuildInviteShareEmptySuggestionsBinding implements View
@NonNull
/* renamed from: c reason: collision with root package name */
public final TextView f1854c;
public final TextView f1855c;
@NonNull
public final MaterialButton d;
@NonNull
@ -29,7 +29,7 @@ public final class WidgetGuildInviteShareEmptySuggestionsBinding implements View
public WidgetGuildInviteShareEmptySuggestionsBinding(@NonNull CoordinatorLayout coordinatorLayout, @NonNull View view, @NonNull TextView textView, @NonNull MaterialButton materialButton, @NonNull ImageButton imageButton, @NonNull TextView textView2, @NonNull ViewInviteSettingsSheet viewInviteSettingsSheet) {
this.a = coordinatorLayout;
this.b = view;
this.f1854c = textView;
this.f1855c = textView;
this.d = materialButton;
this.e = imageButton;
this.f = textView2;

View File

@ -16,7 +16,7 @@ public final class WidgetGuildInviteShareItemBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final MaterialButton f1855c;
public final MaterialButton f1856c;
@NonNull
public final TextView d;
@NonNull
@ -25,7 +25,7 @@ public final class WidgetGuildInviteShareItemBinding implements ViewBinding {
public WidgetGuildInviteShareItemBinding(@NonNull LinearLayout linearLayout, @NonNull SimpleDraweeView simpleDraweeView, @NonNull MaterialButton materialButton, @NonNull TextView textView, @NonNull MaterialButton materialButton2) {
this.a = linearLayout;
this.b = simpleDraweeView;
this.f1855c = materialButton;
this.f1856c = materialButton;
this.d = textView;
this.e = materialButton2;
}

View File

@ -23,7 +23,7 @@ public final class WidgetGuildInviteShareSheetBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final TextView f1856c;
public final TextView f1857c;
@NonNull
public final TextView d;
@NonNull
@ -50,7 +50,7 @@ public final class WidgetGuildInviteShareSheetBinding implements ViewBinding {
public WidgetGuildInviteShareSheetBinding(@NonNull FrameLayout frameLayout, @NonNull ConstraintLayout constraintLayout, @NonNull FrameLayout frameLayout2, @NonNull Barrier barrier, @NonNull TextView textView, @NonNull TextView textView2, @NonNull TextView textView3, @NonNull ImageView imageView, @NonNull TextView textView4, @NonNull ImageButton imageButton, @NonNull NestedScrollView nestedScrollView, @NonNull TextView textView5, @NonNull MaterialButton materialButton, @NonNull TextView textView6, @NonNull FrameLayout frameLayout3, @NonNull TextView textView7, @NonNull Barrier barrier2, @NonNull FrameLayout frameLayout4, @NonNull Barrier barrier3, @NonNull SearchInputView searchInputView, @NonNull CardView cardView, @NonNull RecyclerView recyclerView, @NonNull AppViewFlipper appViewFlipper) {
this.a = frameLayout;
this.b = constraintLayout;
this.f1856c = textView;
this.f1857c = textView;
this.d = textView4;
this.e = imageButton;
this.f = nestedScrollView;

View File

@ -14,12 +14,12 @@ public final class WidgetGuildJoinBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final TextInputLayout f1857c;
public final TextInputLayout f1858c;
public WidgetGuildJoinBinding(@NonNull CoordinatorLayout coordinatorLayout, @NonNull MaterialButton materialButton, @NonNull TextInputLayout textInputLayout) {
this.a = coordinatorLayout;
this.b = materialButton;
this.f1857c = textInputLayout;
this.f1858c = textInputLayout;
}
@Override // androidx.viewbinding.ViewBinding

View File

@ -21,7 +21,7 @@ public final class WidgetGuildProfileActionsBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final TextView f1858c;
public final TextView f1859c;
@NonNull
public final LinearLayout d;
@NonNull
@ -55,7 +55,7 @@ public final class WidgetGuildProfileActionsBinding implements ViewBinding {
@NonNull
/* renamed from: s reason: collision with root package name */
public final TextView f1859s;
public final TextView f1860s;
@NonNull
public final CardView t;
@NonNull
@ -67,20 +67,20 @@ public final class WidgetGuildProfileActionsBinding implements ViewBinding {
@NonNull
/* renamed from: x reason: collision with root package name */
public final CardView f1860x;
public final CardView f1861x;
@NonNull
/* renamed from: y reason: collision with root package name */
public final MaterialButton f1861y;
public final MaterialButton f1862y;
@NonNull
/* renamed from: z reason: collision with root package name */
public final MaterialButton f1862z;
public final MaterialButton f1863z;
public WidgetGuildProfileActionsBinding(@NonNull LinearLayout linearLayout, @NonNull LinearLayout linearLayout2, @NonNull TextView textView, @NonNull LinearLayout linearLayout3, @NonNull CheckedSetting checkedSetting, @NonNull LinearLayout linearLayout4, @NonNull LinearLayout linearLayout5, @NonNull TextView textView2, @NonNull TextView textView3, @NonNull TextView textView4, @NonNull CardView cardView, @NonNull RecyclerView recyclerView, @NonNull CardView cardView2, @NonNull TextView textView5, @NonNull SimpleDraweeView simpleDraweeView, @NonNull CheckedSetting checkedSetting2, @NonNull MaterialButton materialButton, @NonNull TextView textView6, @NonNull TextView textView7, @NonNull CardView cardView3, @NonNull TextView textView8, @NonNull ImageView imageView, @NonNull TextView textView9, @NonNull CardView cardView4, @NonNull CardView cardView5, @NonNull MaterialButton materialButton2, @NonNull MaterialButton materialButton3, @NonNull LinearLayout linearLayout6) {
this.a = linearLayout;
this.b = linearLayout2;
this.f1858c = textView;
this.f1859c = textView;
this.d = linearLayout3;
this.e = checkedSetting;
this.f = linearLayout4;
@ -96,14 +96,14 @@ public final class WidgetGuildProfileActionsBinding implements ViewBinding {
this.p = checkedSetting2;
this.q = materialButton;
this.r = textView6;
this.f1859s = textView7;
this.f1860s = textView7;
this.t = cardView3;
this.u = textView8;
this.v = imageView;
this.w = textView9;
this.f1860x = cardView4;
this.f1861y = materialButton2;
this.f1862z = materialButton3;
this.f1861x = cardView4;
this.f1862y = materialButton2;
this.f1863z = materialButton3;
this.A = linearLayout6;
}

View File

@ -22,7 +22,7 @@ public final class WidgetGuildProfileSheetBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final MaterialButton f1863c;
public final MaterialButton f1864c;
@NonNull
public final ConstraintLayout d;
@NonNull
@ -56,7 +56,7 @@ public final class WidgetGuildProfileSheetBinding implements ViewBinding {
@NonNull
/* renamed from: s reason: collision with root package name */
public final MaterialButton f1864s;
public final MaterialButton f1865s;
@NonNull
public final LinearLayout t;
@NonNull
@ -67,7 +67,7 @@ public final class WidgetGuildProfileSheetBinding implements ViewBinding {
public WidgetGuildProfileSheetBinding(@NonNull NestedScrollView nestedScrollView, @NonNull Barrier barrier, @NonNull SimpleDraweeView simpleDraweeView, @NonNull MaterialButton materialButton, @NonNull ConstraintLayout constraintLayout, @NonNull LinearLayout linearLayout, @NonNull View view, @NonNull TextView textView, @NonNull AppViewFlipper appViewFlipper, @NonNull ImageView imageView, @NonNull SimpleDraweeView simpleDraweeView2, @NonNull CardView cardView, @NonNull TextView textView2, @NonNull MaterialButton materialButton2, @NonNull LinearLayout linearLayout2, @NonNull TextView textView3, @NonNull TextView textView4, @NonNull MaterialButton materialButton3, @NonNull LinearLayout linearLayout3, @NonNull TextView textView5, @NonNull MaterialButton materialButton4, @NonNull LinearLayout linearLayout4, @NonNull ViewStub viewStub, @NonNull ViewStub viewStub2) {
this.a = nestedScrollView;
this.b = simpleDraweeView;
this.f1863c = materialButton;
this.f1864c = materialButton;
this.d = constraintLayout;
this.e = view;
this.f = textView;
@ -83,7 +83,7 @@ public final class WidgetGuildProfileSheetBinding implements ViewBinding {
this.p = materialButton3;
this.q = linearLayout3;
this.r = textView5;
this.f1864s = materialButton4;
this.f1865s = materialButton4;
this.t = linearLayout4;
this.u = viewStub;
this.v = viewStub2;

View File

@ -16,7 +16,7 @@ public final class WidgetGuildRoleSubscriptionDetailsBinding implements ViewBind
@NonNull
/* renamed from: c reason: collision with root package name */
public final TextInputLayout f1865c;
public final TextInputLayout f1866c;
@NonNull
public final GuildSubscriptionRoleImageUploadView d;
@NonNull
@ -33,7 +33,7 @@ public final class WidgetGuildRoleSubscriptionDetailsBinding implements ViewBind
public WidgetGuildRoleSubscriptionDetailsBinding(@NonNull ScrollView scrollView, @NonNull TextInputEditText textInputEditText, @NonNull TextInputLayout textInputLayout, @NonNull ScrollView scrollView2, @NonNull GuildSubscriptionRoleImageUploadView guildSubscriptionRoleImageUploadView, @NonNull TextInputEditText textInputEditText2, @NonNull TextInputLayout textInputLayout2, @NonNull TextView textView, @NonNull TextView textView2, @NonNull TextView textView3) {
this.a = scrollView;
this.b = textInputEditText;
this.f1865c = textInputLayout;
this.f1866c = textInputLayout;
this.d = guildSubscriptionRoleImageUploadView;
this.e = textInputEditText2;
this.f = textInputLayout2;

View File

@ -14,14 +14,14 @@ public final class WidgetGuildRoleSubscriptionTierBenefitsBinding implements Vie
@NonNull
/* renamed from: c reason: collision with root package name */
public final TextView f1866c;
public final TextView f1867c;
@NonNull
public final RecyclerView d;
public WidgetGuildRoleSubscriptionTierBenefitsBinding(@NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull TextView textView2, @NonNull RecyclerView recyclerView) {
this.a = linearLayout;
this.b = textView;
this.f1866c = textView2;
this.f1867c = textView2;
this.d = recyclerView;
}

View File

@ -17,7 +17,7 @@ public final class WidgetGuildRoleSubscriptionTierChannelBenefitBinding implemen
@NonNull
/* renamed from: c reason: collision with root package name */
public final MaterialButton f1867c;
public final MaterialButton f1868c;
@NonNull
public final TextInputLayout d;
@NonNull
@ -34,7 +34,7 @@ public final class WidgetGuildRoleSubscriptionTierChannelBenefitBinding implemen
public WidgetGuildRoleSubscriptionTierChannelBenefitBinding(@NonNull CoordinatorLayout coordinatorLayout, @NonNull TextView textView, @NonNull MaterialButton materialButton, @NonNull TextInputLayout textInputLayout, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView2, @NonNull MaterialButton materialButton2, @NonNull MaterialButton materialButton3, @NonNull LinearLayout linearLayout, @NonNull TextView textView3, @NonNull TextView textView4) {
this.a = coordinatorLayout;
this.b = textView;
this.f1867c = materialButton;
this.f1868c = materialButton;
this.d = textInputLayout;
this.e = simpleDraweeView;
this.f = textView2;

View File

@ -15,7 +15,7 @@ public final class WidgetGuildRoleSubscriptionTierDesignBinding implements ViewB
@NonNull
/* renamed from: c reason: collision with root package name */
public final LinearLayout f1868c;
public final LinearLayout f1869c;
@NonNull
public final TextView d;
@NonNull
@ -28,7 +28,7 @@ public final class WidgetGuildRoleSubscriptionTierDesignBinding implements ViewB
public WidgetGuildRoleSubscriptionTierDesignBinding(@NonNull LinearLayout linearLayout, @NonNull View view, @NonNull LinearLayout linearLayout2, @NonNull TextView textView, @NonNull TextView textView2, @NonNull TextView textView3, @NonNull GuildSubscriptionRoleImageUploadView guildSubscriptionRoleImageUploadView, @NonNull GuildRoleSubscriptionMemberPreview guildRoleSubscriptionMemberPreview, @NonNull GuildRoleSubscriptionMemberPreview guildRoleSubscriptionMemberPreview2) {
this.a = linearLayout;
this.b = view;
this.f1868c = linearLayout2;
this.f1869c = linearLayout2;
this.d = textView;
this.e = guildSubscriptionRoleImageUploadView;
this.f = guildRoleSubscriptionMemberPreview;

View File

@ -18,7 +18,7 @@ public final class WidgetGuildRoleSubscriptionTierIntangibleBenefitBinding imple
@NonNull
/* renamed from: c reason: collision with root package name */
public final TextInputEditText f1869c;
public final TextInputEditText f1870c;
@NonNull
public final TextInputLayout d;
@NonNull
@ -39,7 +39,7 @@ public final class WidgetGuildRoleSubscriptionTierIntangibleBenefitBinding imple
public WidgetGuildRoleSubscriptionTierIntangibleBenefitBinding(@NonNull CoordinatorLayout coordinatorLayout, @NonNull MaterialButton materialButton, @NonNull TextInputEditText textInputEditText, @NonNull TextInputLayout textInputLayout, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView, @NonNull TextInputEditText textInputEditText2, @NonNull TextInputLayout textInputLayout2, @NonNull MaterialButton materialButton2, @NonNull MaterialButton materialButton3, @NonNull LinearLayout linearLayout, @NonNull TextView textView2, @NonNull TextView textView3) {
this.a = coordinatorLayout;
this.b = materialButton;
this.f1869c = textInputEditText;
this.f1870c = textInputEditText;
this.d = textInputLayout;
this.e = simpleDraweeView;
this.f = textView;

View File

@ -18,7 +18,7 @@ public final class WidgetGuildScheduledEventDetailsBottomSheetBinding implements
@NonNull
/* renamed from: c reason: collision with root package name */
public final ImageView f1870c;
public final ImageView f1871c;
@NonNull
public final TextView d;
@NonNull
@ -39,7 +39,7 @@ public final class WidgetGuildScheduledEventDetailsBottomSheetBinding implements
public WidgetGuildScheduledEventDetailsBottomSheetBinding(@NonNull ConstraintLayout constraintLayout, @NonNull GuildScheduledEventBottomButtonView guildScheduledEventBottomButtonView, @NonNull ImageView imageView, @NonNull TextView textView, @NonNull GuildScheduledEventDateView guildScheduledEventDateView, @NonNull LinkifiedTextView linkifiedTextView, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView2, @NonNull TextView textView3, @NonNull ImageView imageView2, @NonNull TextView textView4) {
this.a = constraintLayout;
this.b = guildScheduledEventBottomButtonView;
this.f1870c = imageView;
this.f1871c = imageView;
this.d = textView;
this.e = guildScheduledEventDateView;
this.f = linkifiedTextView;

View File

@ -15,7 +15,7 @@ public final class WidgetGuildScheduledEventListBottomSheetBinding implements Vi
@NonNull
/* renamed from: c reason: collision with root package name */
public final ConstraintLayout f1871c;
public final ConstraintLayout f1872c;
@NonNull
public final RecyclerView d;
@NonNull
@ -24,7 +24,7 @@ public final class WidgetGuildScheduledEventListBottomSheetBinding implements Vi
public WidgetGuildScheduledEventListBottomSheetBinding(@NonNull ConstraintLayout constraintLayout, @NonNull TextView textView, @NonNull ConstraintLayout constraintLayout2, @NonNull ImageView imageView, @NonNull TextView textView2, @NonNull TextView textView3, @NonNull RecyclerView recyclerView, @NonNull ConstraintLayout constraintLayout3, @NonNull TextView textView4) {
this.a = constraintLayout;
this.b = textView;
this.f1871c = constraintLayout2;
this.f1872c = constraintLayout2;
this.d = recyclerView;
this.e = textView4;
}

View File

@ -21,7 +21,7 @@ public final class WidgetGuildScheduledEventLocationSelectBinding implements Vie
@NonNull
/* renamed from: c reason: collision with root package name */
public final TextInputLayout f1872c;
public final TextInputLayout f1873c;
@NonNull
public final ImageView d;
@NonNull
@ -44,7 +44,7 @@ public final class WidgetGuildScheduledEventLocationSelectBinding implements Vie
public WidgetGuildScheduledEventLocationSelectBinding(@NonNull ConstraintLayout constraintLayout, @NonNull TextInputEditText textInputEditText, @NonNull TextInputLayout textInputLayout, @NonNull ImageView imageView, @NonNull TextInputEditText textInputEditText2, @NonNull TextInputLayout textInputLayout2, @NonNull CheckedSetting checkedSetting, @NonNull NestedScrollView nestedScrollView, @NonNull TextView textView, @NonNull LinearLayout linearLayout, @NonNull MaterialButton materialButton, @NonNull CheckedSetting checkedSetting2, @NonNull TextView textView2, @NonNull ScreenTitleView screenTitleView, @NonNull ConstraintLayout constraintLayout2, @NonNull CheckedSetting checkedSetting3) {
this.a = constraintLayout;
this.b = textInputEditText;
this.f1872c = textInputLayout;
this.f1873c = textInputLayout;
this.d = imageView;
this.e = textInputEditText2;
this.f = textInputLayout2;

View File

@ -19,7 +19,7 @@ public final class WidgetGuildScheduledEventSettingsBinding implements ViewBindi
@NonNull
/* renamed from: c reason: collision with root package name */
public final TextView f1873c;
public final TextView f1874c;
@NonNull
public final TextInputEditText d;
@NonNull
@ -52,7 +52,7 @@ public final class WidgetGuildScheduledEventSettingsBinding implements ViewBindi
public WidgetGuildScheduledEventSettingsBinding(@NonNull ConstraintLayout constraintLayout, @NonNull ImageView imageView, @NonNull TextView textView, @NonNull TextInputEditText textInputEditText, @NonNull TextInputLayout textInputLayout, @NonNull TextView textView2, @NonNull TextInputEditText textInputEditText2, @NonNull TextInputLayout textInputLayout2, @NonNull TextView textView3, @NonNull TextInputEditText textInputEditText3, @NonNull TextInputLayout textInputLayout3, @NonNull MaterialButton materialButton, @NonNull NestedScrollView nestedScrollView, @NonNull TextView textView4, @NonNull TextInputEditText textInputEditText4, @NonNull TextInputLayout textInputLayout4, @NonNull TextView textView5, @NonNull TextInputEditText textInputEditText5, @NonNull TextInputLayout textInputLayout5, @NonNull TextView textView6, @NonNull ScreenTitleView screenTitleView, @NonNull ConstraintLayout constraintLayout2, @NonNull TextView textView7, @NonNull TextInputEditText textInputEditText6, @NonNull TextInputLayout textInputLayout6, @NonNull TextView textView8, @NonNull TextInputEditText textInputEditText7, @NonNull TextInputLayout textInputLayout7) {
this.a = constraintLayout;
this.b = imageView;
this.f1873c = textView;
this.f1874c = textView;
this.d = textInputEditText;
this.e = textInputLayout;
this.f = textView2;

View File

@ -15,7 +15,7 @@ public final class WidgetGuildSelectorItemBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final SimpleDraweeView f1874c;
public final SimpleDraweeView f1875c;
@NonNull
public final TextView d;
@NonNull
@ -24,7 +24,7 @@ public final class WidgetGuildSelectorItemBinding implements ViewBinding {
public WidgetGuildSelectorItemBinding(@NonNull LinearLayout linearLayout, @NonNull FrameLayout frameLayout, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView, @NonNull TextView textView2) {
this.a = linearLayout;
this.b = frameLayout;
this.f1874c = simpleDraweeView;
this.f1875c = simpleDraweeView;
this.d = textView;
this.e = textView2;
}

View File

@ -18,7 +18,7 @@ public final class WidgetGuildStickerSheetBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final TextView f1875c;
public final TextView f1876c;
@NonNull
public final AppViewFlipper d;
@NonNull
@ -45,7 +45,7 @@ public final class WidgetGuildStickerSheetBinding implements ViewBinding {
public WidgetGuildStickerSheetBinding(@NonNull AppViewFlipper appViewFlipper, @NonNull View view, @NonNull FrameLayout frameLayout, @NonNull TextView textView, @NonNull AppViewFlipper appViewFlipper2, @NonNull LinearLayout linearLayout, @NonNull TextView textView2, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView3, @NonNull FrameLayout frameLayout2, @NonNull TextView textView4, @NonNull TextView textView5, @NonNull MaterialButton materialButton, @NonNull MaterialButton materialButton2, @NonNull StickerView stickerView, @NonNull TextView textView6) {
this.a = appViewFlipper;
this.b = frameLayout;
this.f1875c = textView;
this.f1876c = textView;
this.d = appViewFlipper2;
this.e = linearLayout;
this.f = simpleDraweeView;

View File

@ -15,7 +15,7 @@ public final class WidgetGuildTransferOwnershipBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final MaterialButton f1876c;
public final MaterialButton f1877c;
@NonNull
public final MaterialButton d;
@NonNull
@ -26,7 +26,7 @@ public final class WidgetGuildTransferOwnershipBinding implements ViewBinding {
public WidgetGuildTransferOwnershipBinding(@NonNull LinearLayout linearLayout, @NonNull CheckedSetting checkedSetting, @NonNull MaterialButton materialButton, @NonNull MaterialButton materialButton2, @NonNull TextInputLayout textInputLayout, @NonNull LinearLayout linearLayout2) {
this.a = linearLayout;
this.b = checkedSetting;
this.f1876c = materialButton;
this.f1877c = materialButton;
this.d = materialButton2;
this.e = textInputLayout;
this.f = linearLayout2;

View File

@ -16,7 +16,7 @@ public final class WidgetGuildWelcomeChannelBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final TextView f1877c;
public final TextView f1878c;
@NonNull
public final SimpleDraweeView d;
@NonNull
@ -27,7 +27,7 @@ public final class WidgetGuildWelcomeChannelBinding implements ViewBinding {
public WidgetGuildWelcomeChannelBinding(@NonNull CardView cardView, @NonNull CardView cardView2, @NonNull TextView textView, @NonNull ConstraintLayout constraintLayout, @NonNull SimpleDraweeView simpleDraweeView, @NonNull ImageView imageView, @NonNull ConstraintLayout constraintLayout2, @NonNull TextView textView2, @NonNull ConstraintLayout constraintLayout3, @NonNull TextView textView3) {
this.a = cardView;
this.b = cardView2;
this.f1877c = textView;
this.f1878c = textView;
this.d = simpleDraweeView;
this.e = textView2;
this.f = textView3;

View File

@ -17,7 +17,7 @@ public final class WidgetGuildWelcomeSheetBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final TextView f1878c;
public final TextView f1879c;
@NonNull
public final AppViewFlipper d;
@NonNull
@ -30,7 +30,7 @@ public final class WidgetGuildWelcomeSheetBinding implements ViewBinding {
public WidgetGuildWelcomeSheetBinding(@NonNull NestedScrollView nestedScrollView, @NonNull RecyclerView recyclerView, @NonNull TextView textView, @NonNull AppViewFlipper appViewFlipper, @NonNull SimpleDraweeView simpleDraweeView, @NonNull CardView cardView, @NonNull TextView textView2, @NonNull TextView textView3) {
this.a = nestedScrollView;
this.b = recyclerView;
this.f1878c = textView;
this.f1879c = textView;
this.d = appViewFlipper;
this.e = simpleDraweeView;
this.f = textView2;

View File

@ -14,12 +14,12 @@ public final class WidgetGuildsListBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final ViewStub f1879c;
public final ViewStub f1880c;
public WidgetGuildsListBinding(@NonNull RelativeLayout relativeLayout, @NonNull RecyclerView recyclerView, @NonNull ViewStub viewStub) {
this.a = relativeLayout;
this.b = recyclerView;
this.f1879c = viewStub;
this.f1880c = viewStub;
}
@Override // androidx.viewbinding.ViewBinding

View File

@ -14,12 +14,12 @@ public final class WidgetGuildsListItemDmBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final TextView f1880c;
public final TextView f1881c;
public WidgetGuildsListItemDmBinding(@NonNull View view, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView) {
this.a = view;
this.b = simpleDraweeView;
this.f1880c = textView;
this.f1881c = textView;
}
@NonNull

View File

@ -16,7 +16,7 @@ public final class WidgetGuildsListItemFolderBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final FrameLayout f1881c;
public final FrameLayout f1882c;
@NonNull
public final View d;
@NonNull
@ -31,7 +31,7 @@ public final class WidgetGuildsListItemFolderBinding implements ViewBinding {
public WidgetGuildsListItemFolderBinding(@NonNull RelativeLayout relativeLayout, @NonNull ServerFolderView serverFolderView, @NonNull FrameLayout frameLayout, @NonNull View view, @NonNull TextView textView, @NonNull View view2, @NonNull ImageView imageView, @NonNull ImageView imageView2) {
this.a = relativeLayout;
this.b = serverFolderView;
this.f1881c = frameLayout;
this.f1882c = frameLayout;
this.d = view;
this.e = textView;
this.f = view2;

View File

@ -16,7 +16,7 @@ public final class WidgetGuildsListItemGuildBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final ImageView f1882c;
public final ImageView f1883c;
@NonNull
public final SimpleDraweeView d;
@NonNull
@ -31,7 +31,7 @@ public final class WidgetGuildsListItemGuildBinding implements ViewBinding {
public WidgetGuildsListItemGuildBinding(@NonNull View view, @NonNull ImageView imageView, @NonNull ImageView imageView2, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView, @NonNull FrameLayout frameLayout, @NonNull TextView textView2, @NonNull ImageView imageView3) {
this.a = view;
this.b = imageView;
this.f1882c = imageView2;
this.f1883c = imageView2;
this.d = simpleDraweeView;
this.e = textView;
this.f = frameLayout;

View File

@ -13,12 +13,12 @@ public final class WidgetGuildsListItemGuildVerticalBinding implements ViewBindi
@NonNull
/* renamed from: c reason: collision with root package name */
public final ImageView f1883c;
public final ImageView f1884c;
public WidgetGuildsListItemGuildVerticalBinding(@NonNull RelativeLayout relativeLayout, @NonNull ImageView imageView, @NonNull ImageView imageView2) {
this.a = relativeLayout;
this.b = imageView;
this.f1883c = imageView2;
this.f1884c = imageView2;
}
@Override // androidx.viewbinding.ViewBinding

View File

@ -14,14 +14,14 @@ public final class WidgetGuildsListItemProfileBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final FrameLayout f1884c;
public final FrameLayout f1885c;
@NonNull
public final ImageView d;
public WidgetGuildsListItemProfileBinding(@NonNull RelativeLayout relativeLayout, @NonNull ImageView imageView, @NonNull FrameLayout frameLayout, @NonNull ImageView imageView2) {
this.a = relativeLayout;
this.b = imageView;
this.f1884c = frameLayout;
this.f1885c = frameLayout;
this.d = imageView2;
}

View File

@ -18,7 +18,7 @@ public final class WidgetHomeBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final HomePanelsLayout f1885c;
public final HomePanelsLayout f1886c;
@NonNull
public final f5 d;
@NonNull
@ -33,7 +33,7 @@ public final class WidgetHomeBinding implements ViewBinding {
public WidgetHomeBinding(@NonNull FrameLayout frameLayout, @NonNull j5 j5Var, @NonNull HomePanelsLayout homePanelsLayout, @NonNull f5 f5Var, @NonNull i5 i5Var, @NonNull k5 k5Var, @NonNull ImageView imageView, @NonNull FrameLayout frameLayout2) {
this.a = frameLayout;
this.b = j5Var;
this.f1885c = homePanelsLayout;
this.f1886c = homePanelsLayout;
this.d = f5Var;
this.e = i5Var;
this.f = k5Var;

View File

@ -16,7 +16,7 @@ public final class WidgetHomePanelCenterNsfwBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final MaterialButton f1886c;
public final MaterialButton f1887c;
@NonNull
public final MaterialButton d;
@NonNull
@ -27,7 +27,7 @@ public final class WidgetHomePanelCenterNsfwBinding implements ViewBinding {
public WidgetHomePanelCenterNsfwBinding(@NonNull LinearLayout linearLayout, @NonNull LinearLayout linearLayout2, @NonNull ImageView imageView, @NonNull MaterialButton materialButton, @NonNull MaterialButton materialButton2, @NonNull LinkifiedTextView linkifiedTextView, @NonNull TextView textView) {
this.a = linearLayout;
this.b = imageView;
this.f1886c = materialButton;
this.f1887c = materialButton;
this.d = materialButton2;
this.e = linkifiedTextView;
this.f = textView;

View File

@ -17,7 +17,7 @@ public final class WidgetHubAddNameBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final TextInputEditText f1887c;
public final TextInputEditText f1888c;
@NonNull
public final TextInputLayout d;
@NonNull
@ -28,7 +28,7 @@ public final class WidgetHubAddNameBinding implements ViewBinding {
public WidgetHubAddNameBinding(@NonNull LinearLayout linearLayout, @NonNull GuildView guildView, @NonNull TextInputEditText textInputEditText, @NonNull TextInputLayout textInputLayout, @NonNull TextView textView, @NonNull LoadingButton loadingButton) {
this.a = linearLayout;
this.b = guildView;
this.f1887c = textInputEditText;
this.f1888c = textInputEditText;
this.d = textInputLayout;
this.e = textView;
this.f = loadingButton;

View File

@ -17,7 +17,7 @@ public final class WidgetHubAddServerBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final ScreenTitleView f1888c;
public final ScreenTitleView f1889c;
@NonNull
public final RecyclerView d;
@NonNull
@ -30,7 +30,7 @@ public final class WidgetHubAddServerBinding implements ViewBinding {
public WidgetHubAddServerBinding(@NonNull LinearLayout linearLayout, @NonNull MaterialButton materialButton, @NonNull ScreenTitleView screenTitleView, @NonNull RecyclerView recyclerView, @NonNull SegmentedControlContainer segmentedControlContainer, @NonNull CardSegment cardSegment, @NonNull CardSegment cardSegment2) {
this.a = linearLayout;
this.b = materialButton;
this.f1888c = screenTitleView;
this.f1889c = screenTitleView;
this.d = recyclerView;
this.e = segmentedControlContainer;
this.f = cardSegment;

View File

@ -15,12 +15,12 @@ public final class WidgetHubAuthenticationBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final CodeVerificationView f1889c;
public final CodeVerificationView f1890c;
public WidgetHubAuthenticationBinding(@NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull LinkifiedTextView linkifiedTextView, @NonNull TextView textView2, @NonNull CodeVerificationView codeVerificationView) {
this.a = linearLayout;
this.b = linkifiedTextView;
this.f1889c = codeVerificationView;
this.f1890c = codeVerificationView;
}
@Override // androidx.viewbinding.ViewBinding

View File

@ -17,7 +17,7 @@ public final class WidgetHubDescriptionBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final TextView f1890c;
public final TextView f1891c;
@NonNull
public final TextView d;
@NonNull
@ -32,7 +32,7 @@ public final class WidgetHubDescriptionBinding implements ViewBinding {
public WidgetHubDescriptionBinding(@NonNull LinearLayout linearLayout, @NonNull LoadingButton loadingButton, @NonNull TextView textView, @NonNull TextView textView2, @NonNull LinearLayout linearLayout2, @NonNull TextView textView3, @NonNull TextInputEditText textInputEditText, @NonNull TextInputLayout textInputLayout, @NonNull ScreenTitleView screenTitleView) {
this.a = linearLayout;
this.b = loadingButton;
this.f1890c = textView;
this.f1891c = textView;
this.d = textView2;
this.e = linearLayout2;
this.f = textInputEditText;

View File

@ -21,7 +21,7 @@ public final class WidgetHubDomainSearchBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final LinearLayout f1891c;
public final LinearLayout f1892c;
@NonNull
public final RecyclerView d;
@NonNull
@ -34,7 +34,7 @@ public final class WidgetHubDomainSearchBinding implements ViewBinding {
public WidgetHubDomainSearchBinding(@NonNull ConstraintLayout constraintLayout, @NonNull AppBarLayout appBarLayout, @NonNull Barrier barrier, @NonNull LinkifiedTextView linkifiedTextView, @NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull RecyclerView recyclerView, @NonNull FloatingActionButton floatingActionButton, @NonNull TextInputLayout textInputLayout, @NonNull TextInputEditText textInputEditText) {
this.a = constraintLayout;
this.b = linkifiedTextView;
this.f1891c = linearLayout;
this.f1892c = linearLayout;
this.d = recyclerView;
this.e = floatingActionButton;
this.f = textInputLayout;

View File

@ -15,12 +15,12 @@ public final class WidgetHubDomainsBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final MaterialButton f1892c;
public final MaterialButton f1893c;
public WidgetHubDomainsBinding(@NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull RecyclerView recyclerView, @NonNull MaterialButton materialButton) {
this.a = linearLayout;
this.b = recyclerView;
this.f1892c = materialButton;
this.f1893c = materialButton;
}
@Override // androidx.viewbinding.ViewBinding

View File

@ -17,7 +17,7 @@ public final class WidgetHubEmailFlowBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final b5 f1893c;
public final b5 f1894c;
@NonNull
public final MaterialButton d;
@NonNull
@ -28,7 +28,7 @@ public final class WidgetHubEmailFlowBinding implements ViewBinding {
public WidgetHubEmailFlowBinding(@NonNull LinearLayout linearLayout, @NonNull LinearLayout linearLayout2, @NonNull l5 l5Var, @NonNull b5 b5Var, @NonNull MaterialButton materialButton, @NonNull LoadingButton loadingButton, @NonNull m5 m5Var) {
this.a = linearLayout;
this.b = l5Var;
this.f1893c = b5Var;
this.f1894c = b5Var;
this.d = materialButton;
this.e = loadingButton;
this.f = m5Var;

View File

@ -16,14 +16,14 @@ public final class WidgetHubWaitlistBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final TextInputEditText f1894c;
public final TextInputEditText f1895c;
@NonNull
public final TextInputLayout d;
public WidgetHubWaitlistBinding(@NonNull LinearLayout linearLayout, @NonNull LoadingButton loadingButton, @NonNull TextInputEditText textInputEditText, @NonNull ScreenTitleView screenTitleView, @NonNull TextInputLayout textInputLayout) {
this.a = linearLayout;
this.b = loadingButton;
this.f1894c = textInputEditText;
this.f1895c = textInputEditText;
this.d = textInputLayout;
}

View File

@ -21,7 +21,7 @@ public final class WidgetIncomingShareBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final ViewEmbedGameInvite f1895c;
public final ViewEmbedGameInvite f1896c;
@NonNull
public final TextInputLayout d;
@NonNull
@ -46,7 +46,7 @@ public final class WidgetIncomingShareBinding implements ViewBinding {
public WidgetIncomingShareBinding(@NonNull CoordinatorLayout coordinatorLayout, @NonNull DimmerView dimmerView, @NonNull ViewEmbedGameInvite viewEmbedGameInvite, @NonNull TextInputLayout textInputLayout, @NonNull RecyclerView recyclerView, @NonNull CardView cardView, @NonNull TextInputLayout textInputLayout2, @NonNull RecyclerView recyclerView2, @NonNull ImageView imageView, @NonNull AppViewFlipper appViewFlipper, @NonNull NestedScrollView nestedScrollView, @NonNull AppViewFlipper appViewFlipper2, @NonNull ViewGlobalSearchItem viewGlobalSearchItem, @NonNull ImageView imageView2) {
this.a = coordinatorLayout;
this.b = dimmerView;
this.f1895c = viewEmbedGameInvite;
this.f1896c = viewEmbedGameInvite;
this.d = textInputLayout;
this.e = recyclerView;
this.f = cardView;

View File

@ -15,14 +15,14 @@ public final class WidgetIssueDetailsFormBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final TextInputLayout f1896c;
public final TextInputLayout f1897c;
@NonNull
public final MaterialButton d;
public WidgetIssueDetailsFormBinding(@NonNull NestedScrollView nestedScrollView, @NonNull LinkifiedTextView linkifiedTextView, @NonNull TextInputLayout textInputLayout, @NonNull MaterialButton materialButton) {
this.a = nestedScrollView;
this.b = linkifiedTextView;
this.f1896c = textInputLayout;
this.f1897c = textInputLayout;
this.d = materialButton;
}

View File

@ -15,7 +15,7 @@ public final class WidgetKickUserBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final MaterialButton f1897c;
public final MaterialButton f1898c;
@NonNull
public final MaterialButton d;
@NonNull
@ -26,7 +26,7 @@ public final class WidgetKickUserBinding implements ViewBinding {
public WidgetKickUserBinding(@NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull MaterialButton materialButton, @NonNull MaterialButton materialButton2, @NonNull TextInputLayout textInputLayout, @NonNull TextView textView2) {
this.a = linearLayout;
this.b = textView;
this.f1897c = materialButton;
this.f1898c = materialButton;
this.d = materialButton2;
this.e = textInputLayout;
this.f = textView2;

View File

@ -13,12 +13,12 @@ public final class WidgetManageReactionsBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final RecyclerView f1898c;
public final RecyclerView f1899c;
public WidgetManageReactionsBinding(@NonNull CoordinatorLayout coordinatorLayout, @NonNull RecyclerView recyclerView, @NonNull RecyclerView recyclerView2) {
this.a = coordinatorLayout;
this.b = recyclerView;
this.f1898c = recyclerView2;
this.f1899c = recyclerView2;
}
@Override // androidx.viewbinding.ViewBinding

View File

@ -15,14 +15,14 @@ public final class WidgetManageReactionsEmojiBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final SimpleDraweeSpanTextView f1899c;
public final SimpleDraweeSpanTextView f1900c;
@NonNull
public final View d;
public WidgetManageReactionsEmojiBinding(@NonNull RelativeLayout relativeLayout, @NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull SimpleDraweeSpanTextView simpleDraweeSpanTextView, @NonNull View view) {
this.a = relativeLayout;
this.b = textView;
this.f1899c = simpleDraweeSpanTextView;
this.f1900c = simpleDraweeSpanTextView;
this.d = view;
}

View File

@ -15,14 +15,14 @@ public final class WidgetManageReactionsResultUserBinding implements ViewBinding
@NonNull
/* renamed from: c reason: collision with root package name */
public final SimpleDraweeView f1900c;
public final SimpleDraweeView f1901c;
@NonNull
public final TextView d;
public WidgetManageReactionsResultUserBinding(@NonNull RelativeLayout relativeLayout, @NonNull ImageView imageView, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView) {
this.a = relativeLayout;
this.b = imageView;
this.f1900c = simpleDraweeView;
this.f1901c = simpleDraweeView;
this.d = textView;
}

View File

@ -17,7 +17,7 @@ public final class WidgetMediaBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final FrameLayout f1901c;
public final FrameLayout f1902c;
@NonNull
public final ZoomableDraweeView d;
@NonNull
@ -30,7 +30,7 @@ public final class WidgetMediaBinding implements ViewBinding {
public WidgetMediaBinding(@NonNull FrameLayout frameLayout, @NonNull AppBarLayout appBarLayout, @NonNull FrameLayout frameLayout2, @NonNull ZoomableDraweeView zoomableDraweeView, @NonNull ProgressBar progressBar, @NonNull PlayerControlView playerControlView, @NonNull PlayerView playerView) {
this.a = frameLayout;
this.b = appBarLayout;
this.f1901c = frameLayout2;
this.f1902c = frameLayout2;
this.d = zoomableDraweeView;
this.e = progressBar;
this.f = playerControlView;

View File

@ -21,7 +21,7 @@ public final class WidgetMemberVerificationBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final SimpleDraweeView f1902c;
public final SimpleDraweeView f1903c;
@NonNull
public final MemberVerificationView d;
@NonNull
@ -36,7 +36,7 @@ public final class WidgetMemberVerificationBinding implements ViewBinding {
public WidgetMemberVerificationBinding(@NonNull CoordinatorLayout coordinatorLayout, @NonNull CustomAppBarLayout customAppBarLayout, @NonNull CollapsingToolbarLayout collapsingToolbarLayout, @NonNull DimmerView dimmerView, @NonNull SimpleDraweeView simpleDraweeView, @NonNull MemberVerificationView memberVerificationView, @NonNull MemberVerificationAvatarView memberVerificationAvatarView, @NonNull LoadingButton loadingButton, @NonNull RecyclerView recyclerView, @NonNull NestedScrollView nestedScrollView) {
this.a = coordinatorLayout;
this.b = dimmerView;
this.f1902c = simpleDraweeView;
this.f1903c = simpleDraweeView;
this.d = memberVerificationView;
this.e = memberVerificationAvatarView;
this.f = loadingButton;

View File

@ -15,7 +15,7 @@ public final class WidgetMemberVerificationPendingDialogBinding implements ViewB
@NonNull
/* renamed from: c reason: collision with root package name */
public final MaterialButton f1903c;
public final MaterialButton f1904c;
@NonNull
public final MaterialButton d;
@NonNull
@ -28,7 +28,7 @@ public final class WidgetMemberVerificationPendingDialogBinding implements ViewB
public WidgetMemberVerificationPendingDialogBinding(@NonNull RelativeLayout relativeLayout, @NonNull ImageView imageView, @NonNull MaterialButton materialButton, @NonNull MaterialButton materialButton2, @NonNull TextView textView, @NonNull TextView textView2, @NonNull TextView textView3) {
this.a = relativeLayout;
this.b = imageView;
this.f1903c = materialButton;
this.f1904c = materialButton;
this.d = materialButton2;
this.e = textView;
this.f = textView2;

View File

@ -15,7 +15,7 @@ public final class WidgetMemberVerificationRuleItemBinding implements ViewBindin
@NonNull
/* renamed from: c reason: collision with root package name */
public final View f1904c;
public final View f1905c;
@NonNull
public final TextView d;
@NonNull
@ -24,7 +24,7 @@ public final class WidgetMemberVerificationRuleItemBinding implements ViewBindin
public WidgetMemberVerificationRuleItemBinding(@NonNull RoundedRelativeLayout roundedRelativeLayout, @NonNull LinearLayout linearLayout, @NonNull SimpleDraweeSpanTextView simpleDraweeSpanTextView, @NonNull View view, @NonNull TextView textView, @NonNull RoundedRelativeLayout roundedRelativeLayout2) {
this.a = roundedRelativeLayout;
this.b = simpleDraweeSpanTextView;
this.f1904c = view;
this.f1905c = view;
this.d = textView;
this.e = roundedRelativeLayout2;
}

View File

@ -15,12 +15,12 @@ public final class WidgetMemberVerificationSuccessBinding implements ViewBinding
@NonNull
/* renamed from: c reason: collision with root package name */
public final TextView f1905c;
public final TextView f1906c;
public WidgetMemberVerificationSuccessBinding(@NonNull RelativeLayout relativeLayout, @NonNull MaterialButton materialButton, @NonNull TextView textView, @NonNull CardView cardView) {
this.a = relativeLayout;
this.b = materialButton;
this.f1905c = textView;
this.f1906c = textView;
}
@Override // androidx.viewbinding.ViewBinding

View File

@ -14,12 +14,12 @@ public final class WidgetMobileReportsBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final ProgressBar f1906c;
public final ProgressBar f1907c;
public WidgetMobileReportsBinding(@NonNull CoordinatorLayout coordinatorLayout, @NonNull FrameLayout frameLayout, @NonNull ProgressBar progressBar) {
this.a = coordinatorLayout;
this.b = frameLayout;
this.f1906c = progressBar;
this.f1907c = progressBar;
}
@Override // androidx.viewbinding.ViewBinding

View File

@ -17,14 +17,14 @@ public final class WidgetModeratorStartStageBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final RecyclerView f1907c;
public final RecyclerView f1908c;
@NonNull
public final CallEventsButtonView d;
public WidgetModeratorStartStageBinding(@NonNull ConstraintLayout constraintLayout, @NonNull Toolbar toolbar, @NonNull AppBarLayout appBarLayout, @NonNull Button button, @NonNull RecyclerView recyclerView, @NonNull CallEventsButtonView callEventsButtonView) {
this.a = constraintLayout;
this.b = button;
this.f1907c = recyclerView;
this.f1908c = recyclerView;
this.d = callEventsButtonView;
}

View File

@ -15,7 +15,7 @@ public final class WidgetMuteSettingsSheetBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final LinearLayout f1908c;
public final LinearLayout f1909c;
@NonNull
public final LinearLayout d;
@NonNull
@ -48,7 +48,7 @@ public final class WidgetMuteSettingsSheetBinding implements ViewBinding {
public WidgetMuteSettingsSheetBinding(@NonNull NestedScrollView nestedScrollView, @NonNull TextView textView, @NonNull LinearLayout linearLayout, @NonNull LinearLayout linearLayout2, @NonNull FrameLayout frameLayout, @NonNull TextView textView2, @NonNull TextView textView3, @NonNull TextView textView4, @NonNull TextView textView5, @NonNull TextView textView6, @NonNull TextView textView7, @NonNull TextView textView8, @NonNull TextView textView9, @NonNull TextView textView10, @NonNull LinearLayout linearLayout3, @NonNull TextView textView11, @NonNull TextView textView12) {
this.a = nestedScrollView;
this.b = textView;
this.f1908c = linearLayout;
this.f1909c = linearLayout;
this.d = linearLayout2;
this.e = frameLayout;
this.f = textView2;

View File

@ -15,14 +15,14 @@ public final class WidgetNavigationHelpBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final TabLayout f1909c;
public final TabLayout f1910c;
@NonNull
public final ViewPager2 d;
public WidgetNavigationHelpBinding(@NonNull LinearLayout linearLayout, @NonNull ImageView imageView, @NonNull TabLayout tabLayout, @NonNull ViewPager2 viewPager2) {
this.a = linearLayout;
this.b = imageView;
this.f1909c = tabLayout;
this.f1910c = tabLayout;
this.d = viewPager2;
}

View File

@ -15,7 +15,7 @@ public final class WidgetNoticeDialogBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final LinkifiedTextView f1910c;
public final LinkifiedTextView f1911c;
@NonNull
public final MaterialButton d;
@NonNull
@ -28,7 +28,7 @@ public final class WidgetNoticeDialogBinding implements ViewBinding {
public WidgetNoticeDialogBinding(@NonNull LinearLayout linearLayout, @NonNull LinearLayout linearLayout2, @NonNull LinkifiedTextView linkifiedTextView, @NonNull MaterialButton materialButton, @NonNull TextView textView, @NonNull LinearLayout linearLayout3, @NonNull MaterialButton materialButton2) {
this.a = linearLayout;
this.b = linearLayout2;
this.f1910c = linkifiedTextView;
this.f1911c = linkifiedTextView;
this.d = materialButton;
this.e = textView;
this.f = linearLayout3;

View File

@ -13,12 +13,12 @@ public final class WidgetNoticeNuxOverlayBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final MaterialButton f1911c;
public final MaterialButton f1912c;
public WidgetNoticeNuxOverlayBinding(@NonNull LinearLayout linearLayout, @NonNull MaterialButton materialButton, @NonNull MaterialButton materialButton2) {
this.a = linearLayout;
this.b = materialButton;
this.f1911c = materialButton2;
this.f1912c = materialButton2;
}
@Override // androidx.viewbinding.ViewBinding

View File

@ -13,12 +13,12 @@ public final class WidgetNoticeNuxSamsungLinkBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final MaterialButton f1912c;
public final MaterialButton f1913c;
public WidgetNoticeNuxSamsungLinkBinding(@NonNull LinearLayout linearLayout, @NonNull MaterialButton materialButton, @NonNull MaterialButton materialButton2) {
this.a = linearLayout;
this.b = materialButton;
this.f1912c = materialButton2;
this.f1913c = materialButton2;
}
@Override // androidx.viewbinding.ViewBinding

View File

@ -17,7 +17,7 @@ public final class WidgetNoticePopupBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final SimpleDraweeSpanTextView f1913c;
public final SimpleDraweeSpanTextView f1914c;
@NonNull
public final ImageView d;
@NonNull
@ -32,7 +32,7 @@ public final class WidgetNoticePopupBinding implements ViewBinding {
public WidgetNoticePopupBinding(@NonNull RelativeLayout relativeLayout, @NonNull SimpleDraweeView simpleDraweeView, @NonNull SimpleDraweeSpanTextView simpleDraweeSpanTextView, @NonNull ImageView imageView, @NonNull SimpleDraweeView simpleDraweeView2, @NonNull StickerView stickerView, @NonNull TextView textView, @NonNull TextView textView2, @NonNull RelativeLayout relativeLayout2) {
this.a = relativeLayout;
this.b = simpleDraweeView;
this.f1913c = simpleDraweeSpanTextView;
this.f1914c = simpleDraweeSpanTextView;
this.d = imageView;
this.e = simpleDraweeView2;
this.f = stickerView;

View File

@ -17,7 +17,7 @@ public final class WidgetNuxChannelPromptBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final SimpleDraweeView f1914c;
public final SimpleDraweeView f1915c;
@NonNull
public final TextView d;
@NonNull
@ -30,7 +30,7 @@ public final class WidgetNuxChannelPromptBinding implements ViewBinding {
public WidgetNuxChannelPromptBinding(@NonNull RelativeLayout relativeLayout, @NonNull LoadingButton loadingButton, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView, @NonNull TextView textView2, @NonNull TextView textView3, @NonNull TextInputLayout textInputLayout, @NonNull Toolbar toolbar) {
this.a = relativeLayout;
this.b = loadingButton;
this.f1914c = simpleDraweeView;
this.f1915c = simpleDraweeView;
this.d = textView;
this.e = textView2;
this.f = textView3;

View File

@ -15,7 +15,7 @@ public final class WidgetNuxGuildTemplateBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final LinearLayout f1915c;
public final LinearLayout f1916c;
@NonNull
public final TextView d;
@NonNull
@ -26,7 +26,7 @@ public final class WidgetNuxGuildTemplateBinding implements ViewBinding {
public WidgetNuxGuildTemplateBinding(@NonNull LinearLayout linearLayout, @NonNull MaterialButton materialButton, @NonNull LinearLayout linearLayout2, @NonNull TextView textView, @NonNull TextView textView2, @NonNull RecyclerView recyclerView) {
this.a = linearLayout;
this.b = materialButton;
this.f1915c = linearLayout2;
this.f1916c = linearLayout2;
this.d = textView;
this.e = textView2;
this.f = recyclerView;

View File

@ -19,7 +19,7 @@ public final class WidgetOauthAuthorizeBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final SimpleDraweeView f1916c;
public final SimpleDraweeView f1917c;
@NonNull
public final TextView d;
@NonNull
@ -50,7 +50,7 @@ public final class WidgetOauthAuthorizeBinding implements ViewBinding {
public WidgetOauthAuthorizeBinding(@NonNull CoordinatorLayout coordinatorLayout, @NonNull TextView textView, @NonNull ImageView imageView, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView2, @NonNull MaterialCardView materialCardView, @NonNull TextView textView3, @NonNull LinearLayout linearLayout, @NonNull MaterialButton materialButton, @NonNull MaterialButton materialButton2, @NonNull LinearLayout linearLayout2, @NonNull MaterialButton materialButton3, @NonNull ImageView imageView2, @NonNull LinearLayout linearLayout3, @NonNull TextView textView4, @NonNull RecyclerView recyclerView, @NonNull TextView textView5, @NonNull ImageView imageView3, @NonNull MaterialButton materialButton4, @NonNull MaterialButton materialButton5, @NonNull SimpleDraweeView simpleDraweeView2) {
this.a = coordinatorLayout;
this.b = textView;
this.f1916c = simpleDraweeView;
this.f1917c = simpleDraweeView;
this.d = textView2;
this.e = linearLayout;
this.f = materialButton;

View File

@ -14,12 +14,12 @@ public final class WidgetOutboundPromoTermsBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final LinkifiedTextView f1917c;
public final LinkifiedTextView f1918c;
public WidgetOutboundPromoTermsBinding(@NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull LinkifiedTextView linkifiedTextView) {
this.a = linearLayout;
this.b = textView;
this.f1917c = linkifiedTextView;
this.f1918c = linkifiedTextView;
}
@Override // androidx.viewbinding.ViewBinding

View File

@ -19,7 +19,7 @@ public final class WidgetPaymentSourceEditDialogBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final MaterialButton f1918c;
public final MaterialButton f1919c;
@NonNull
public final LoadingButton d;
@NonNull
@ -48,7 +48,7 @@ public final class WidgetPaymentSourceEditDialogBinding implements ViewBinding {
public WidgetPaymentSourceEditDialogBinding(@NonNull LinearLayout linearLayout, @NonNull Toolbar toolbar, @NonNull MaterialButton materialButton, @NonNull LoadingButton loadingButton, @NonNull TextInputLayout textInputLayout, @NonNull TextInputLayout textInputLayout2, @NonNull TextInputLayout textInputLayout3, @NonNull TextInputLayout textInputLayout4, @NonNull CheckBox checkBox, @NonNull TextView textView, @NonNull TextView textView2, @NonNull TextInputLayout textInputLayout5, @NonNull TextInputLayout textInputLayout6, @NonNull TextInputLayout textInputLayout7, @NonNull PaymentSourceView paymentSourceView) {
this.a = linearLayout;
this.b = toolbar;
this.f1918c = materialButton;
this.f1919c = materialButton;
this.d = loadingButton;
this.e = textInputLayout;
this.f = textInputLayout2;

View File

@ -14,12 +14,12 @@ public final class WidgetPhoneCountryCodeBottomSheetBinding implements ViewBindi
@NonNull
/* renamed from: c reason: collision with root package name */
public final TextInputLayout f1919c;
public final TextInputLayout f1920c;
public WidgetPhoneCountryCodeBottomSheetBinding(@NonNull LinearLayout linearLayout, @NonNull RecyclerView recyclerView, @NonNull TextInputLayout textInputLayout) {
this.a = linearLayout;
this.b = recyclerView;
this.f1919c = textInputLayout;
this.f1920c = textInputLayout;
}
@Override // androidx.viewbinding.ViewBinding

View File

@ -13,14 +13,14 @@ public final class WidgetPhoneCountryCodeListItemBinding implements ViewBinding
@NonNull
/* renamed from: c reason: collision with root package name */
public final ConstraintLayout f1920c;
public final ConstraintLayout f1921c;
@NonNull
public final TextView d;
public WidgetPhoneCountryCodeListItemBinding(@NonNull ConstraintLayout constraintLayout, @NonNull TextView textView, @NonNull ConstraintLayout constraintLayout2, @NonNull TextView textView2) {
this.a = constraintLayout;
this.b = textView;
this.f1920c = constraintLayout2;
this.f1921c = constraintLayout2;
this.d = textView2;
}

View File

@ -16,7 +16,7 @@ public final class WidgetPremiumGuildTransferBinding implements ViewBinding {
@NonNull
/* renamed from: c reason: collision with root package name */
public final TextView f1921c;
public final TextView f1922c;
@NonNull
public final TextView d;
@NonNull
@ -33,7 +33,7 @@ public final class WidgetPremiumGuildTransferBinding implements ViewBinding {
public WidgetPremiumGuildTransferBinding(@NonNull CoordinatorLayout coordinatorLayout, @NonNull DimmerView dimmerView, @NonNull TextView textView, @NonNull TextView textView2, @NonNull PremiumGuildConfirmationView premiumGuildConfirmationView, @NonNull TextView textView3, @NonNull MaterialButton materialButton, @NonNull PremiumGuildConfirmationView premiumGuildConfirmationView2, @NonNull TextView textView4) {
this.a = coordinatorLayout;
this.b = dimmerView;
this.f1921c = textView;
this.f1922c = textView;
this.d = textView2;
this.e = premiumGuildConfirmationView;
this.f = textView3;

View File

@ -17,7 +17,7 @@ public final class WidgetPreviewGuildScheduledEventBinding implements ViewBindin
@NonNull
/* renamed from: c reason: collision with root package name */
public final CheckedSetting f1922c;
public final CheckedSetting f1923c;
@NonNull
public final GuildScheduledEventItemView d;
@NonNull
@ -34,7 +34,7 @@ public final class WidgetPreviewGuildScheduledEventBinding implements ViewBindin
public WidgetPreviewGuildScheduledEventBinding(@NonNull ConstraintLayout constraintLayout, @NonNull ImageView imageView, @NonNull CheckedSetting checkedSetting, @NonNull GuildScheduledEventItemView guildScheduledEventItemView, @NonNull TextView textView, @NonNull TextView textView2, @NonNull TextView textView3, @NonNull ConstraintLayout constraintLayout2, @NonNull MaterialButton materialButton) {
this.a = constraintLayout;
this.b = imageView;
this.f1922c = checkedSetting;
this.f1923c = checkedSetting;
this.d = guildScheduledEventItemView;
this.e = textView;
this.f = textView2;

View File

@ -16,12 +16,12 @@ public final class WidgetPriceTierPickerBottomSheetBinding implements ViewBindin
@NonNull
/* renamed from: c reason: collision with root package name */
public final RecyclerView f1923c;
public final RecyclerView f1924c;
public WidgetPriceTierPickerBottomSheetBinding(@NonNull CoordinatorLayout coordinatorLayout, @NonNull AppBarLayout appBarLayout, @NonNull AppViewFlipper appViewFlipper, @NonNull RecyclerView recyclerView, @NonNull Toolbar toolbar) {
this.a = coordinatorLayout;
this.b = appViewFlipper;
this.f1923c = recyclerView;
this.f1924c = recyclerView;
}
@Override // androidx.viewbinding.ViewBinding

View File

@ -891,6 +891,9 @@ public interface RestAPIInterface {
@n("/guilds/{guildId}/role-subscriptions/group-listings/{groupListingId}/subscription-listings/{listingId}")
Observable<GuildRoleSubscriptionTierListing> updateGuildRoleSubscriptionTierListing(@s("guildId") long j, @s("groupListingId") long j2, @s("listingId") long j3, @a RestAPIParams.UpdateGuildRoleSubscriptionTierListing updateGuildRoleSubscriptionTierListing);
@n("guild-events/{eventId}")
Observable<Unit> updateGuildScheduledEvent(@s("eventId") long j, @a RestAPIParams.UpdateGuildScheduledEventBody updateGuildScheduledEventBody);
@n("guilds/{guildId}/members/@me")
Observable<Void> updateMeGuildMember(@s("guildId") long j, @a PatchGuildMemberBody patchGuildMemberBody);

View File

@ -17,6 +17,7 @@ import com.discord.api.guild.GuildVerificationLevel;
import com.discord.api.guildrolesubscription.GuildRoleSubscriptionBenefit;
import com.discord.api.guildscheduledevent.GuildScheduledEventEntityMetadata;
import com.discord.api.guildscheduledevent.GuildScheduledEventEntityType;
import com.discord.api.guildscheduledevent.GuildScheduledEventStatus;
import com.discord.api.message.activity.MessageActivityType;
import com.discord.api.message.allowedmentions.MessageAllowedMentions;
import com.discord.api.message.allowedmentions.MessageAllowedMentionsTypes;
@ -3533,6 +3534,58 @@ public final class RestAPIParams {
}
}
/* compiled from: RestAPIParams.kt */
public static final class UpdateGuildScheduledEventBody {
private final GuildScheduledEventStatus status;
public UpdateGuildScheduledEventBody(GuildScheduledEventStatus guildScheduledEventStatus) {
m.checkNotNullParameter(guildScheduledEventStatus, "status");
this.status = guildScheduledEventStatus;
}
public static /* synthetic */ UpdateGuildScheduledEventBody copy$default(UpdateGuildScheduledEventBody updateGuildScheduledEventBody, GuildScheduledEventStatus guildScheduledEventStatus, int i, Object obj) {
if ((i & 1) != 0) {
guildScheduledEventStatus = updateGuildScheduledEventBody.status;
}
return updateGuildScheduledEventBody.copy(guildScheduledEventStatus);
}
public final GuildScheduledEventStatus component1() {
return this.status;
}
public final UpdateGuildScheduledEventBody copy(GuildScheduledEventStatus guildScheduledEventStatus) {
m.checkNotNullParameter(guildScheduledEventStatus, "status");
return new UpdateGuildScheduledEventBody(guildScheduledEventStatus);
}
public boolean equals(Object obj) {
if (this != obj) {
return (obj instanceof UpdateGuildScheduledEventBody) && m.areEqual(this.status, ((UpdateGuildScheduledEventBody) obj).status);
}
return true;
}
public final GuildScheduledEventStatus getStatus() {
return this.status;
}
public int hashCode() {
GuildScheduledEventStatus guildScheduledEventStatus = this.status;
if (guildScheduledEventStatus != null) {
return guildScheduledEventStatus.hashCode();
}
return 0;
}
public String toString() {
StringBuilder P = a.P("UpdateGuildScheduledEventBody(status=");
P.append(this.status);
P.append(")");
return P.toString();
}
}
/* compiled from: RestAPIParams.kt */
public static final class UpdateStageInstanceBody {
private final StageInstancePrivacyLevel privacyLevel;

View File

@ -405,6 +405,14 @@ public final class MediaSinkWantsManager implements MediaEngineConnection.d {
public void onSpeaking(long j, int i, boolean z2) {
}
@Override // com.discord.rtcconnection.mediaengine.MediaEngineConnection.d
public void onTargetBitrate(int i) {
}
@Override // com.discord.rtcconnection.mediaengine.MediaEngineConnection.d
public void onTargetFrameRate(int i) {
}
@Override // com.discord.rtcconnection.mediaengine.MediaEngineConnection.d
public void onVideo(long j, Integer num, int i, int i2, int i3, StreamParameters[] streamParametersArr) {
m.checkNotNullParameter(streamParametersArr, "streams");

View File

@ -687,19 +687,19 @@ public final class RtcConnection implements DebugPrintable, MediaSinkWantsManage
this.v = null;
c.a.q.o0.e eVar = this.A;
synchronized (eVar) {
eVar.p.stop();
eVar.h = Long.valueOf(eVar.r.currentTimeMillis());
eVar.o.stop();
eVar.h = Long.valueOf(eVar.q.currentTimeMillis());
}
if (!(this.r.a instanceof State.d)) {
n(false, str);
d dVar = this.W;
if (dVar instanceof d.b) {
Map<String, Object> b2 = this.A.b(String.valueOf(((d.b) dVar).a));
if (b2 != null) {
l(((d.b) this.W).a, b2);
Map<String, Object> c2 = this.A.c(String.valueOf(((d.b) dVar).a));
if (c2 != null) {
l(((d.b) this.W).a, c2);
}
if (this.o) {
m(this.S, this.A.c());
m(this.S, this.A.d());
}
}
}
@ -846,11 +846,11 @@ public final class RtcConnection implements DebugPrintable, MediaSinkWantsManage
for (String str4 : list) {
Long longOrNull = s.toLongOrNull(str4);
if (longOrNull != null) {
l(longOrNull.longValue(), this.A.b(str4));
l(longOrNull.longValue(), this.A.c(str4));
}
}
if (this.o) {
m(this.S, this.A.c());
m(this.S, this.A.d());
}
}
}

View File

@ -184,6 +184,14 @@ public interface MediaEngineConnection {
public void onSpeaking(long j, int i, boolean z2) {
}
@Override // com.discord.rtcconnection.mediaengine.MediaEngineConnection.d
public void onTargetBitrate(int i) {
}
@Override // com.discord.rtcconnection.mediaengine.MediaEngineConnection.d
public void onTargetFrameRate(int i) {
}
@Override // com.discord.rtcconnection.mediaengine.MediaEngineConnection.d
public void onVideo(long j, Integer num, int i, int i2, int i3, StreamParameters[] streamParametersArr) {
m.checkNotNullParameter(streamParametersArr, "streams");
@ -343,6 +351,10 @@ public interface MediaEngineConnection {
void onSpeaking(long j, int i, boolean z2);
void onTargetBitrate(int i);
void onTargetFrameRate(int i);
void onVideo(long j, Integer num, int i, int i2, int i3, StreamParameters[] streamParametersArr);
}

View File

@ -2131,8 +2131,8 @@ public final class AnalyticsTracker {
tracker.track("notification_settings_updated", CollectionExtensionsKt.filterNonNullValues(hashMap));
}
public final void trackProfileMarketingSheet() {
tracker.track("tooltip_viewed", g0.mapOf(o.to("type", "Custom Profiles Marketing Bottom Sheet")));
public final void trackGuildIdentityMarketingSheet() {
tracker.track("tooltip_viewed", g0.mapOf(o.to("type", "per server identity tooltip")));
}
public final void trackStartStageOpened(boolean z2, Long l, Long l2) {

View File

@ -19,7 +19,7 @@ import kotlin.coroutines.Continuation;
import kotlin.jvm.functions.Function2;
import kotlinx.coroutines.CoroutineScope;
/* compiled from: RepresentativeColors.kt */
@e(c = "com.discord.utilities.colors.RepresentativeColors$handleBitmap$1", f = "RepresentativeColors.kt", l = {55}, m = "invokeSuspend")
@e(c = "com.discord.utilities.colors.RepresentativeColors$handleBitmap$1", f = "RepresentativeColors.kt", l = {59}, m = "invokeSuspend")
public final class RepresentativeColors$handleBitmap$1 extends k implements Function2<CoroutineScope, Continuation<? super Unit>, Object> {
public final /* synthetic */ Bitmap $bitmap;
public final /* synthetic */ Object $id;
@ -48,21 +48,28 @@ public final class RepresentativeColors$handleBitmap$1 extends k implements Func
return ((RepresentativeColors$handleBitmap$1) create(coroutineScope, continuation)).invokeSuspend(Unit.a);
}
/* JADX DEBUG: Can't convert new array creation: APUT found in different block: 0x00ac: APUT
/* JADX DEBUG: Can't convert new array creation: APUT found in different block: 0x00ba: APUT
(r4v1 kotlin.Pair[])
(3 ??[int, float, short, byte, char])
(wrap: kotlin.Pair : 0x00a8: INVOKE (r3v7 kotlin.Pair) = ("url"), (r3v6 java.lang.String) type: STATIC call: d0.o.to(java.lang.Object, java.lang.Object):kotlin.Pair)
(wrap: kotlin.Pair : 0x00b6: INVOKE (r3v7 kotlin.Pair) = ("url"), (r3v6 java.lang.String) type: STATIC call: d0.o.to(java.lang.Object, java.lang.Object):kotlin.Pair)
*/
@Override // d0.w.i.a.a
public final Object invokeSuspend(Object obj) {
int i;
int i2;
Object coroutine_suspended = c.getCOROUTINE_SUSPENDED();
int i2 = this.label;
if (i2 == 0) {
int i3 = this.label;
if (i3 == 0) {
l.throwOnFailure(obj);
if (RepresentativeColors.access$getRepresentativeColors$p(this.this$0).containsKey(this.$id)) {
return Unit.a;
}
if (this.$bitmap.isRecycled()) {
i = RepresentativeColors.access$getBLURPLE$cp();
RepresentativeColors.access$getRepresentativeColors$p(this.this$0).put(this.$id, b.boxInt(i));
RepresentativeColors.access$getRepresentativeColorsSubject$p(this.this$0).onNext(RepresentativeColors.access$getRepresentativeColors$p(this.this$0));
return Unit.a;
}
Bitmap copy = this.$bitmap.copy(Bitmap.Config.ARGB_8888, false);
RepresentativeColors representativeColors = this.this$0;
m.checkNotNullExpressionValue(copy, "copiedBitmap");
@ -71,16 +78,16 @@ public final class RepresentativeColors$handleBitmap$1 extends k implements Func
if (obj == coroutine_suspended) {
return coroutine_suspended;
}
} else if (i2 == 1) {
} else if (i3 == 1) {
l.throwOnFailure(obj);
} else {
throw new IllegalStateException("call to 'resume' before 'invoke' with coroutine");
}
RepresentativeColors.RepresentativeColorResult representativeColorResult = (RepresentativeColors.RepresentativeColorResult) obj;
if (representativeColorResult instanceof RepresentativeColors.RepresentativeColorResult.Success) {
i = ((RepresentativeColors.RepresentativeColorResult.Success) representativeColorResult).getColor();
i2 = ((RepresentativeColors.RepresentativeColorResult.Success) representativeColorResult).getColor();
} else if (representativeColorResult instanceof RepresentativeColors.RepresentativeColorResult.Failure) {
i = RepresentativeColors.access$getBLURPLE$cp();
i2 = RepresentativeColors.access$getBLURPLE$cp();
} else {
throw new NoWhenBranchMatchedException();
}
@ -98,6 +105,7 @@ public final class RepresentativeColors$handleBitmap$1 extends k implements Func
pairArr[3] = o.to("url", str);
appLog.e("Failed to get representative color for entity", exception, h0.mapOf(pairArr));
}
i = i2;
RepresentativeColors.access$getRepresentativeColors$p(this.this$0).put(this.$id, b.boxInt(i));
RepresentativeColors.access$getRepresentativeColorsSubject$p(this.this$0).onNext(RepresentativeColors.access$getRepresentativeColors$p(this.this$0));
return Unit.a;

View File

@ -0,0 +1,38 @@
package com.discord.utilities.guildscheduledevent;
import com.discord.api.guildscheduledevent.GuildScheduledEvent;
import com.discord.api.guildscheduledevent.GuildScheduledEventStatus;
import java.util.Comparator;
/* compiled from: GuildScheduledEventUtilities.kt */
public final class GuildScheduledEventsComparator implements Comparator<GuildScheduledEvent> {
public static final GuildScheduledEventsComparator INSTANCE = new GuildScheduledEventsComparator();
private GuildScheduledEventsComparator() {
}
/* JADX WARNING: Code restructure failed: missing block: B:9:0x0017, code lost:
if ((r7 != null ? r7.k() : null) != r2) goto L_0x0019;
*/
public int compare(GuildScheduledEvent guildScheduledEvent, GuildScheduledEvent guildScheduledEvent2) {
GuildScheduledEventStatus guildScheduledEventStatus = null;
GuildScheduledEventStatus k = guildScheduledEvent != null ? guildScheduledEvent.k() : null;
GuildScheduledEventStatus guildScheduledEventStatus2 = GuildScheduledEventStatus.ACTIVE;
if (k == guildScheduledEventStatus2) {
}
if ((guildScheduledEvent != null ? guildScheduledEvent.k() : null) != guildScheduledEventStatus2) {
if (guildScheduledEvent2 != null) {
guildScheduledEventStatus = guildScheduledEvent2.k();
}
if (guildScheduledEventStatus == guildScheduledEventStatus2) {
return 1;
}
}
if (guildScheduledEvent != null && guildScheduledEvent2 != null) {
return guildScheduledEvent.j().compareTo(guildScheduledEvent2.j());
}
if (guildScheduledEvent == null) {
return 1;
}
return guildScheduledEvent2 == null ? -1 : 0;
}
}

View File

@ -2168,6 +2168,13 @@ public final class RestAPI implements RestAPIInterface {
return this._api.updateGuildRoleSubscriptionTierListing(j, j2, j3, updateGuildRoleSubscriptionTierListing);
}
@Override // com.discord.restapi.RestAPIInterface
@i0.f0.n("guild-events/{eventId}")
public Observable<Unit> updateGuildScheduledEvent(@s("eventId") long j, @i0.f0.a RestAPIParams.UpdateGuildScheduledEventBody updateGuildScheduledEventBody) {
m.checkNotNullParameter(updateGuildScheduledEventBody, "body");
return this._api.updateGuildScheduledEvent(j, updateGuildScheduledEventBody);
}
@Override // com.discord.restapi.RestAPIInterface
@i0.f0.n("guilds/{guildId}/members/@me")
public Observable<Void> updateMeGuildMember(@s("guildId") long j, @i0.f0.a PatchGuildMemberBody patchGuildMemberBody) {

View File

@ -52,6 +52,12 @@ public final class LazyViewStubDelegate {
return (View) this.view$delegate.getValue();
}
public final View getForceInitializedView() {
View view = getView();
m.checkNotNullExpressionValue(view, "view");
return view;
}
public final View getMaybeView() {
if (!this.viewField.isInitialized()) {
return null;

View File

@ -584,7 +584,7 @@ public class WidgetOauth2Authorize extends AppFragment {
TextView textView2 = getBinding().k;
d0.z.d.m.checkNotNullExpressionValue(textView2, "binding.oauthAuthorizePermissionsLabelTv");
b.n(textView2, R.string.oauth2_scopes_label, new Object[]{application.g()}, null, 4);
SimpleDraweeView simpleDraweeView2 = getBinding().f1916c;
SimpleDraweeView simpleDraweeView2 = getBinding().f1917c;
d0.z.d.m.checkNotNullExpressionValue(simpleDraweeView2, "binding.oauthAuthorizeApplicationIcon");
String e = application.e();
MGImages.setImage$default(simpleDraweeView2, e != null ? IconUtils.getApplicationIcon$default(application.f(), e, 0, 4, null) : null, 0, 0, false, null, null, 124, null);

View File

@ -175,7 +175,7 @@ public final class ManageReactionsEmojisAdapter extends MGRecyclerAdapterSimple<
m.checkNotNullParameter(reactionEmojiItem, "data");
super.onConfigure(i, (int) reactionEmojiItem);
EmojiNode.Companion companion = EmojiNode.Companion;
SimpleDraweeSpanTextView simpleDraweeSpanTextView = this.binding.f1899c;
SimpleDraweeSpanTextView simpleDraweeSpanTextView = this.binding.f1900c;
m.checkNotNullExpressionValue(simpleDraweeSpanTextView, "binding.manageReactionsEmojiEmojiTextview");
companion.renderEmoji(simpleDraweeSpanTextView, reactionEmojiItem.getReaction().b(), true, emojiSizePx);
TextView textView = this.binding.b;

View File

@ -314,7 +314,7 @@ public final class ManageReactionsResultsAdapter extends MGRecyclerAdapterSimple
str = reactionUserItem.getUser().getUsername();
}
textView.setText(str);
SimpleDraweeView simpleDraweeView = this.binding.f1900c;
SimpleDraweeView simpleDraweeView = this.binding.f1901c;
m.checkNotNullExpressionValue(simpleDraweeView, "binding.manageReactionsResultUserAvatar");
IconUtils.setIcon$default(simpleDraweeView, reactionUserItem.getUser(), R.dimen.avatar_size_standard, null, null, reactionUserItem.getGuildMember(), 24, null);
ImageView imageView = this.binding.b;

View File

@ -119,7 +119,7 @@ public final class WidgetManageReactions extends AppFragment {
RecyclerView recyclerView = getBinding().b;
m.checkNotNullExpressionValue(recyclerView, "binding.manageReactionsEmojisRecycler");
this.emojisAdapter = (ManageReactionsEmojisAdapter) companion.configure(new ManageReactionsEmojisAdapter(recyclerView));
RecyclerView recyclerView2 = getBinding().f1898c;
RecyclerView recyclerView2 = getBinding().f1899c;
m.checkNotNullExpressionValue(recyclerView2, "binding.manageReactionsResultsRecycler");
this.resultsAdapter = (ManageReactionsResultsAdapter) companion.configure(new ManageReactionsResultsAdapter(recyclerView2));
ManageReactionsEmojisAdapter manageReactionsEmojisAdapter = this.emojisAdapter;

View File

@ -135,7 +135,7 @@ public final class WidgetPriceTierPickerBottomSheet extends AppBottomSheet {
m.checkNotNullParameter(view, "view");
super.onViewCreated(view, bundle);
this.adapter = new PriceTierPickerAdapter(this.itemClickListener);
RecyclerView recyclerView = getBinding().f1923c;
RecyclerView recyclerView = getBinding().f1924c;
m.checkNotNullExpressionValue(recyclerView, "binding.priceTierPickerRecycler");
PriceTierPickerAdapter priceTierPickerAdapter = this.adapter;
if (priceTierPickerAdapter == null) {
@ -145,6 +145,6 @@ public final class WidgetPriceTierPickerBottomSheet extends AppBottomSheet {
int dimensionPixelSize = getResources().getDimensionPixelSize(R.dimen.guild_role_subscription_setup_default_padding);
Context requireContext = requireContext();
m.checkNotNullExpressionValue(requireContext, "requireContext()");
getBinding().f1923c.addItemDecoration(new f(requireContext, 1, 0, dimensionPixelSize, dimensionPixelSize, 4));
getBinding().f1924c.addItemDecoration(new f(requireContext, 1, 0, dimensionPixelSize, dimensionPixelSize, 4));
}
}

View File

@ -110,7 +110,7 @@ public final class WidgetGuildRoleSubscriptionTierDesign extends AppFragment {
}
if (drawable != null) {
view.setBackground(drawable);
getBinding().f1868c.setOnClickListener(new WidgetGuildRoleSubscriptionTierDesign$setupMemberColor$2(this, i));
getBinding().f1869c.setOnClickListener(new WidgetGuildRoleSubscriptionTierDesign$setupMemberColor$2(this, i));
getBinding().g.setMemberColor(Integer.valueOf(i));
getBinding().f.setMemberColor(Integer.valueOf(i));
TextView textView = getBinding().d;

View File

@ -88,7 +88,7 @@ public final class WidgetGuildRoleSubscriptionTierDetails extends AppFragment {
TextInputLayout textInputLayout = getBinding().f;
m.checkNotNullExpressionValue(textInputLayout, "binding.createSubscriptionTierNameLayout");
ViewExtensions.setTextIfDifferent(textInputLayout, viewState.getGuildRoleSubscriptionTier().getName());
TextInputLayout textInputLayout2 = getBinding().f1865c;
TextInputLayout textInputLayout2 = getBinding().f1866c;
m.checkNotNullExpressionValue(textInputLayout2, "binding.createSubscriptionTierDescriptionLayout");
ViewExtensions.setTextIfDifferent(textInputLayout2, viewState.getGuildRoleSubscriptionTier().getDescription());
getBinding().d.updateImage(viewState.getGuildRoleSubscriptionTier().getImage());

View File

@ -180,7 +180,7 @@ public final class WidgetGuildRoleSubscriptionTierBenefits extends AppFragment {
m.checkNotNullParameter(view, "view");
super.onViewBound(view);
setUpBenefitsRecycler();
TextView textView = getBinding().f1866c;
TextView textView = getBinding().f1867c;
m.checkNotNullExpressionValue(textView, "binding.guildRoleSubscriptionTierBenefitsTitle");
int i = 0;
textView.setVisibility(getHideHeader() ^ true ? 0 : 8);

View File

@ -192,7 +192,7 @@ public final class WidgetGuildRoleSubscriptionTierChannelBenefit extends AppFrag
super.onViewBound(view);
WidgetChannelPickerBottomSheet.Companion.registerForResult(this, REQUEST_KEY_CHANNEL_PICKER, new WidgetGuildRoleSubscriptionTierChannelBenefit$onViewBound$1(this), new WidgetGuildRoleSubscriptionTierChannelBenefit$onViewBound$2(this));
getBinding().h.setOnClickListener(new WidgetGuildRoleSubscriptionTierChannelBenefit$onViewBound$3(this));
getBinding().f1867c.setOnClickListener(new WidgetGuildRoleSubscriptionTierChannelBenefit$onViewBound$4(this));
getBinding().f1868c.setOnClickListener(new WidgetGuildRoleSubscriptionTierChannelBenefit$onViewBound$4(this));
getBinding().i.setOnClickListener(new WidgetGuildRoleSubscriptionTierChannelBenefit$onViewBound$5(this));
TextInputLayout textInputLayout = getBinding().d;
m.checkNotNullExpressionValue(textInputLayout, "binding.guildRoleSubscri…ChannelBenefitDescription");

View File

@ -169,7 +169,7 @@ public final class WidgetGuildRoleSubscriptionTierIntangibleBenefit extends AppF
TextInputEditText textInputEditText = getBinding().g;
m.checkNotNullExpressionValue(textInputEditText, "binding.guildRoleSubscriptionIntangibleBenefitName");
TextWatcherKt.addLifecycleAwareTextWatcher(textInputEditText, this, new WidgetGuildRoleSubscriptionTierIntangibleBenefit$onViewBound$4(this));
TextInputEditText textInputEditText2 = getBinding().f1869c;
TextInputEditText textInputEditText2 = getBinding().f1870c;
m.checkNotNullExpressionValue(textInputEditText2, "binding.guildRoleSubscri…angibleBenefitDescription");
TextWatcherKt.addLifecycleAwareTextWatcher(textInputEditText2, this, new WidgetGuildRoleSubscriptionTierIntangibleBenefit$onViewBound$5(this));
getBinding().i.setOnClickListener(new WidgetGuildRoleSubscriptionTierIntangibleBenefit$onViewBound$6(this));

View File

@ -130,13 +130,13 @@ public final class WidgetGuildSelector extends AppBottomSheet {
z2 = true;
}
}
SimpleDraweeView simpleDraweeView = this.binding.f1874c;
SimpleDraweeView simpleDraweeView = this.binding.f1875c;
m.checkNotNullExpressionValue(simpleDraweeView, "binding.itemIcon");
Guild guild4 = item.getGuild();
View view = this.itemView;
m.checkNotNullExpressionValue(view, "itemView");
Integer valueOf = Integer.valueOf(ColorCompat.getThemedColor(view, (int) R.attr.colorBackgroundPrimary));
SimpleDraweeView simpleDraweeView2 = this.binding.f1874c;
SimpleDraweeView simpleDraweeView2 = this.binding.f1875c;
m.checkNotNullExpressionValue(simpleDraweeView2, "binding.itemIcon");
SimpleDraweeViewExtensionsKt.setGuildIcon$default(simpleDraweeView, false, guild4, (float) simpleDraweeView2.getResources().getDimensionPixelSize(R.dimen.guild_icon_radius), null, valueOf, null, null, true, null, 360, null);
FrameLayout frameLayout = this.binding.b;

View File

@ -87,13 +87,13 @@ public final class InviteSuggestionsAdapter extends MGRecyclerAdapterSimple<Invi
m.checkNotNullExpressionValue(materialButton, "binding.itemSent");
int i2 = 0;
materialButton.setVisibility(inviteSuggestionItemV2.hasSentInvite() ? 0 : 8);
MaterialButton materialButton2 = this.binding.f1855c;
MaterialButton materialButton2 = this.binding.f1856c;
m.checkNotNullExpressionValue(materialButton2, "binding.itemInviteBtn");
if (!(!inviteSuggestionItemV2.hasSentInvite())) {
i2 = 8;
}
materialButton2.setVisibility(i2);
this.binding.f1855c.setOnClickListener(new InviteSuggestionsAdapter$InviteSuggestionViewHolder$onConfigure$1(this, inviteSuggestionItemV2));
this.binding.f1856c.setOnClickListener(new InviteSuggestionsAdapter$InviteSuggestionViewHolder$onConfigure$1(this, inviteSuggestionItemV2));
}
}
}

Some files were not shown because too many files have changed in this diff Show More