// 
// Decompiled by Procyon v0.6.0
// 

package org.bouncycastle.math.ec;

import java.math.BigInteger;

class ZTauElement
{
    public final BigInteger u;
    public final BigInteger v;
    
    public ZTauElement(final BigInteger u, final BigInteger v) {
        this.u = u;
        this.v = v;
    }
}
