convert cisco nat pool to mikrotik OS

Here is a list of my cisco nat pools, anyone know how
to migrate these pools to a MT power router?

ip nat pool pool_129 xxx.xxx.17.129 xxx.xxx.17.129 prefix-length 25
ip nat pool pool_130 xxx.xxx.17.130 xxx.xxx.17.130 prefix-length 25
ip nat pool pool_137 xxx.xxx.17.137 xxx.xxx.17.137 prefix-length 25
ip nat pool pool_148 xxx.xxx.17.148 xxx.xxx.17.148 prefix-length 25
ip nat pool pool_156 xxx.xxx.17.156 xxx.xxx.17.156 prefix-length 25
ip nat pool pool_150 xxx.xxx.17.150 xxx.xxx.17.150 prefix-length 25
ip nat pool pool_131 xxx.xxx.17.131 xxx.xxx.17.131 prefix-length 25
ip nat pool pool_135 xxx.xxx.17.135 xxx.xxx.17.135 prefix-length 25
ip nat pool pool_154 xxx.xxx.17.154 xxx.xxx.17.154 prefix-length 25
ip nat pool pool_157 xxx.xxx.17.157 xxx.xxx.17.157 prefix-length 25
ip nat pool pool_132 xxx.xxx.17.132 xxx.xxx.17.132 prefix-length 25

ip nat inside source list 129 pool pool_129 overload
ip nat inside source list 130 pool pool_130 overload
ip nat inside source list 131 pool pool_131 overload
ip nat inside source list 132 pool pool_132 overload
ip nat inside source list 135 pool pool_135 overload
ip nat inside source list 137 pool pool_137 overload
ip nat inside source list 148 pool pool_148 overload
ip nat inside source list 150 pool pool_150 overload
ip nat inside source list 154 pool pool_154 overload
ip nat inside source list 156 pool pool_156 overload
ip nat inside source list 157 pool pool_157 overload

That’s missing the access lists, so that info is made up below

/ip address
add address=x.x.17.129/25 interface=WAN
add address=x.x.17.130/25 interface=WAN
/ip firewall address-list
add list=acl129 address=192.168.0.0/24
add list=acl130 address=192.168.1.0/24
add list=acl130 address=192.168.2.0/24
/ip firewall nat
add chain=srcnat src-address-list=acl129 out-interface=WAN action=src-nat to-address=x.x.17.129
add chain=srcnat src-address-list=acl130 out-interface=WAN action=src-nat to-address=x.x.17.130