}
    }
    public void upload(String username, String section, long bytes, long time) {
        StatisticsEntry us = getUserStatistics(username, section);
        us.upload(bytes, time);
        store(us);
        if (!"default".equals(section)) {
            // always add the data to the default section as well, since that keeps track of ALL the statistics
            us = getUserStatistics(username, "default");