Initial version -- added millennium read funcionality

This commit is contained in:
Pablo
2026-03-09 22:05:28 +01:00
commit 77c2ded482
2770 changed files with 141927 additions and 0 deletions
@@ -0,0 +1,68 @@
package com.sistemasolton.itranvias.home.presentation.linedetail;
import kotlin.Metadata;
/* JADX INFO: compiled from: LineDetailScreen.kt */
/* JADX INFO: loaded from: classes2.dex */
@Metadata(d1 = {"\u0000&\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u0006\n\u0002\b\n\n\u0002\u0010\u000b\n\u0002\b\u0002\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u000e\n\u0000\b\u0087\b\u0018\u00002\u00020\u0001B\u0017\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0003¢\u0006\u0004\b\u0005\u0010\u0006J\t\u0010\n\u001a\u00020\u0003HÆ\u0003J\t\u0010\u000b\u001a\u00020\u0003HÆ\u0003J\u001d\u0010\f\u001a\u00020\u00002\b\b\u0002\u0010\u0002\u001a\u00020\u00032\b\b\u0002\u0010\u0004\u001a\u00020\u0003HÆ\u0001J\u0013\u0010\r\u001a\u00020\u000e2\b\u0010\u000f\u001a\u0004\u0018\u00010\u0001HÖ\u0003J\t\u0010\u0010\u001a\u00020\u0011HÖ\u0001J\t\u0010\u0012\u001a\u00020\u0013HÖ\u0001R\u0011\u0010\u0002\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\u0007\u0010\bR\u0011\u0010\u0004\u001a\u00020\u0003¢\u0006\b\n\u0000\u001a\u0004\b\t\u0010\\u0006\u0014"}, d2 = {"Lcom/sistemasolton/itranvias/home/presentation/linedetail/Punto;", "", "posX", "", "posY", "<init>", "(DD)V", "getPosX", "()D", "getPosY", "component1", "component2", "copy", "equals", "", "other", "hashCode", "", "toString", "", "composeApp_release"}, k = 1, mv = {2, 1, 0}, xi = 48)
public final /* data */ class Punto {
public static final int $stable = 0;
private final double posX;
private final double posY;
public static /* synthetic */ Punto copy$default(Punto punto, double d, double d2, int i, Object obj) {
if ((i & 1) != 0) {
d = punto.posX;
}
if ((i & 2) != 0) {
d2 = punto.posY;
}
return punto.copy(d, d2);
}
/* JADX INFO: renamed from: component1, reason: from getter */
public final double getPosX() {
return this.posX;
}
/* JADX INFO: renamed from: component2, reason: from getter */
public final double getPosY() {
return this.posY;
}
public final Punto copy(double posX, double posY) {
return new Punto(posX, posY);
}
public boolean equals(Object other) {
if (this == other) {
return true;
}
if (!(other instanceof Punto)) {
return false;
}
Punto punto = (Punto) other;
return Double.compare(this.posX, punto.posX) == 0 && Double.compare(this.posY, punto.posY) == 0;
}
public int hashCode() {
return (Double.hashCode(this.posX) * 31) + Double.hashCode(this.posY);
}
public String toString() {
return "Punto(posX=" + this.posX + ", posY=" + this.posY + ")";
}
public Punto(double d, double d2) {
this.posX = d;
this.posY = d2;
}
public final double getPosX() {
return this.posX;
}
public final double getPosY() {
return this.posY;
}
}