Your CSV is not correct.
On the first one, you have that:
10000001,,10000001.jpg
But the three first columns are:
product_code,images,product_parent_id
The image should be in the second column, not the third.
I see that you didn't specify any product code on your other lines so HikaShop will generate it automatically.
Also, I see that in your product_parent_id column for your variants you didn't specify the product_code of the parent but something like that: 10000001_variant_X
If I'm following you, the product code of the first variant should be 1000000022Regular, so the first variant line in your CSV should start with this:
1000000022Regular,,10000001
First, the code of the variant, then the images if any, and then the code of the main product.