function gib(address to, uint256 assetAmount) external nonReentrant requiresLocalOrMasterAuth {
    emit SafeGibbed(msg.sender, to, assetAmount);

    // Withdraw the specified amount of assets from the Turbo Fuse Pool.
    require(assetTurboCToken.redeemUnderlying(assetAmount) == 0, "REDEEM_FAILED");

    // Transfer the assets to the authorized caller.
    asset.safeTransfer(to, assetAmount);
}
