Ok, so your "raw" transaction is this:
0100000001bab68eb6c47543c8fc09e9440f4398bf67e4105e48c578feb0956e3454151722000000008b483045022100aa7228ded24c8344b016836aeba57e57f1ca7d3e08da47f30c1f5805fc5a38730220123b3f04cfb570f358ac2140aefdbc685535425e57eba83b6265d4f47a14253f0141043740f7db5616626e52a5df8b54ce4a66dcca603db54f861aeec42d3270f01c9da1c4b5787fd19ffe613c98b71cea552a4355b97006d96354111de9046b484705fdffffff017312a000000000001976a914d70286a0b68da0df83b7dbd86d02b0d90e93a76688ac241c0800
That will decode to this:
{
"addresses": [
"17m2JVuSzyzFafWiiecJjGAW52HzRUCrk1",
"1LbsJkEfAwr2od324NLvDTFPqo7uATfuv3"
],
"block_height": -1,
"block_index": -1,
"confirmations": 0,
"double_spend": false,
"fees": 70000,
"hash": "967f8dce8ff6cd0cba70fee2843c4ddeb9e4ab193f66551606dd855ee983fc5c",
"inputs": [
{
"addresses": [
"17m2JVuSzyzFafWiiecJjGAW52HzRUCrk1"
],
"age": 530694,
"output_index": 0,
"output_value": 10560483,
"prev_hash": "22171554346e95b0fe78c5485e10e467bf98430f44e909fcc84375c4b68eb6ba",
"script": "483045022100aa7228ded24c8344b016836aeba57e57f1ca7d3e08da47f30c1f5805fc5a3873022 0123b3f04cfb570f358ac2140aefdbc685535425e57eba83b6265d4f47a14253f0141043740f7db 5616626e52a5df8b54ce4a66dcca603db54f861aeec42d3270f01c9da1c4b5787fd19ffe613c98b 71cea552a4355b97006d96354111de9046b484705",
"script_type": "pay-to-pubkey-hash",
"sequence": 4294967293
}
],
"lock_time": 531492,
"opt_in_rbf": true,
"outputs": [
{
"addresses": [
"1LbsJkEfAwr2od324NLvDTFPqo7uATfuv3"
],
"script": "76a914d70286a0b68da0df83b7dbd86d02b0d90e93a76688ac",
"script_type": "pay-to-pubkey-hash",
"value": 10490483
}
],
"preference": "high",
"received": "2018-07-15T02:53:17.037085381Z",
"relayed_by": "54.198.32.59",
"size": 224,
"total": 10490483,
"ver": 1,
"vin_sz": 1,
"vout_sz": 1
}
If you are happy with all of that data (ie. sending 10490483 satoshis or 0.10490483 from 17m2JVuSzyzFafWiiecJjGAW52HzRUCrk1 to 1LbsJkEfAwr2od324NLvDTFPqo7uATfuv3 with
a 70000 sat fee!!?! )...
I'd suggest confirming it all yourself using:
https://live.blockcypher.com/btc/decodetx/ or
https://coinb.in/#verify, you can then "push" that transaction to the network (using
https://live.blockcypher.com/btc/pushtx/ or
https://coinb.in/#broadcast)... or use the
sendrawtransaction command with Bitcoin Core to send that raw data.
NOTE: this won't solve your issues with Armory/Bitcoin Core... but it will get your BTC sent if that is an urgent requirement.