if (listGroup != null && listGroup.size() > 0) {
                int fromIndex = 0;
                while (true) {
                    int toIndex = fromIndex + 100;
                    if (toIndex > listGroup.size()) {
                        toIndex = listGroup.size();
                        tpasGpsService.addTpasGps(listGroup.subList(
                                fromIndex, toIndex));
                        break;
                    }
                    tpasGpsService.addTpasGps(listGroup.subList(fromIndex,
                            toIndex));
                    fromIndex = toIndex;
                }

            }