{
    "Function": "_popExpressExecutorWithToken",
    "File": "contracts/gmp-sdk/express/ExpressExecutorTracker.sol",
    "Parent Contracts": [
        "contracts/gmp-sdk/interfaces/IAxelarExpressExecutable.sol",
        "contracts/gmp-sdk/interfaces/IAxelarExecutable.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "_expressExecuteWithTokenSlot",
        "sstore(uint256,uint256)",
        "sload(uint256)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _popExpressExecutorWithToken(\n        bytes32 commandId,\n        string calldata sourceChain,\n        string calldata sourceAddress,\n        bytes32 payloadHash,\n        string calldata symbol,\n        uint256 amount\n    ) internal returns (address expressExecutor) {\n        uint256 slot = _expressExecuteWithTokenSlot(commandId, sourceChain, sourceAddress, payloadHash, symbol, amount);\n\n        assembly {\n            expressExecutor := sload(slot)\n            if expressExecutor {\n                sstore(slot, 0)\n            }\n        }\n    }"
}