uint256 public focus = 0;
event Gm();
event NewWeek();
function startNewWeek() public {
emit Gm();
emit NewWeek();
builderMode = true;
focus = 100;
}