Import existing certificate to letsencrypt

Well this is the directory that I have as backup:

.
├── accounts
│ └── acme-v02.api.letsencrypt.org
│ └── directory
│ └── bf8beee8d2a1ff97b4b11bc659651df5
│ ├── meta.json
│ ├── private_key.json
│ └── regr.json
├── archive
│ └── mydomain.com
│ ├── cert1.pem
│ ├── chain1.pem
│ ├── fullchain1.pem
│ └── privkey1.pem
├── csr
│ └── 0000_csr-certbot.pem
├── keys
│ └── 0000_key-certbot.pem
├── live
│ ├── hellozink.com
│ │ ├── cert.pem -> …/…/archive/mydomain.com/cert1.pem
│ │ ├── chain.pem -> …/…/archive/mydomain.com/chain1.pem
│ │ ├── fullchain.pem -> …/…/archive/mydomain.com/fullchain1.pem
│ │ ├── privkey.pem -> …/…/archive/mydomain.com/privkey1.pem
│ │ └── README
│ └── README
├── renewal
│ └── mydomain.com.conf
└── renewal-hooks
├── deploy
├── post
└── pre

But I have all these data as backup in my home directory and would like to create correct structure out of it in /etc/letsencrypt/ so I would be able to renew my certificate using certbot because I guess certbot will automatically search for certificates in /etc/letsencrypt.

Thanks,

Danesh