The first stat is "BB v SB Steal - Raise" and is available by default.
The second stat is not available by default but you can build it.
Create these two new columns:
cnt_p_bb_button_steal_def_raise: sum(if[holdem_hand_player_statistics.flg_blind_b and holdem_hand_player_statistics.flg_blind_def_opp and not(holdem_hand_player_statistics.flg_p_squeeze_opp) and holdem_hand_player_detail.val_p_raise_aggressor_pos = 0 and holdem_hand_player_statistics.flg_p_3bet, 1, 0])
and
cnt_p_bb_button_steal_def_opp: sum(if[holdem_hand_player_statistics.flg_blind_b and holdem_hand_player_statistics.flg_blind_def_opp and not(holdem_hand_player_statistics.flg_p_squeeze_opp) and holdem_hand_player_detail.val_p_raise_aggressor_pos = 0 and holdem_hand_player_statistics.flg_p_3bet_opp, 1, 0])
For more on creating custom statistics please see the
Tutorial: Using Custom Statistics and Reports.