```
G_Coordinates = (0x79be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798, 0x483ada7726a3c4655da4fbfc0e1108a8fd17b448a68554199c47d08ffb10d4b8)
```
and knowing that we are in `x^3 + 7` and knowing that the modulus is
```
p = 0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffefffffc2f
```
than we can calculate the order of point G
```
n = 0xfffffffffffffffffffffffffffffffebaaedce6af48a03bbfd25e8cd0364141
```
but do all valid point coordinates on secp256k1's field have the same order `n` as standard G's one or can some point have smaller/bigger orders?
and are they reachable throught standard G using some `k`?