The game of Tetris is played on a grid of squares that is 10 squares across and 20 squares high. Over the course of the game, tetrominoes (geometric shapes consisting of four squares connected orthogonally) fall from above and lock into place whenever the tetromino makes contact with either the bottom of the grid or the top of another tetromino.
Since rotation is allowed in Tetris, there are 7 total tetrominoes that exist and each can be assigned a specific color or symbol to represent squares on the grid that belong to a specific type of tetromino, similar to the below image example.
Within the rules of Tetris, if any square of a tetromino goes outside of the height boundary (in this case 20), then the game is over. If a row has been completely filled with tetromino squares, however, that row disappears, freeing space above and allowing all above pieces to fall. This means that the largest number of squares that can appear on a given row is 9 and that the overall number of occupied grid squares that can exist at any point in time is $9 \times 20 = 180$.
Assuming that a cell containing a square of color $x$ is not equivalent to a cell containing a square of color $y$ and that an empty cell is not equivalent to any cell containing a square of any color, how many possible boards exist in which the maximum number of grid squares are occupied and no rows have been cleared?
