Transaction error with multi-asset balance (native token)

I want to retire a Testnet Pool but I am unable to complete the transaction due some native tokens which are available in the UTXOs but not included in the transaction.

The error:

Command failed: transaction submit Error: Error while submitting tx: ShelleyTxValidationError ShelleyBasedEraBabbage (ApplyTxError [UtxowFailure (UtxoFailure (FromAlonzoUtxoFail (ValueNotConservedUTxO (Value 2498731853 (fromList [(PolicyID {policyID = ScriptHash “6b8d07d69639e9413dd637a1a815a7323c69c86abbafb66dbfdb1aa7”},fromList [(,2)])])) (Value 2498731853 (fromList )))))])

The balance:

                       TxHash                                 TxIx        Amount

03f41e039112dd650a013f33fd0bfd7886919b08c99cf85226cad967cf5edf8e 0 1000000000 lovelace + TxOutDatumNone
c1dc1efb0695029b5b05213c519097cfa97b431d1c8abacf11011c44bf6030ba 0 1497421613 lovelace + TxOutDatumNone
e051dc9a25002cefef83660a2d389076a96c6fcf6329f5d075a4bb16bff1a739 0 1310240 lovelace + 2 6b8d07d69639e9413dd637a1a815a7323c69c86abbafb66dbfdb1aa7 + TxOutDatumNone

The question:

Is there a way to include the native tokens in the transaction or just get rid of them?

You just add them to one of the outputs of your transaction.
Described in: https://developers.cardano.org/docs/native-tokens/minting#sending-token-to-a-wallet
It’s basically adding "+<amount> <policy id>.<name in hex>" at the end of the --tx-out.

If you have minted them yourself, have the policy key, and the policy is still unlocked, then you could burn them and get rid of them. Otherwise not.

Thank you.