1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
13   */
14  
15  package com.liferay.portlet.messageboards.service.persistence;
16  
17  import com.liferay.portal.kernel.bean.PortalBeanLocatorUtil;
18  import com.liferay.portal.kernel.dao.orm.DynamicQuery;
19  import com.liferay.portal.kernel.exception.SystemException;
20  
21  import com.liferay.portlet.messageboards.model.MBMessageFlag;
22  
23  import java.util.List;
24  
25  /**
26   * <a href="MBMessageFlagUtil.java.html"><b><i>View Source</i></b></a>
27   *
28   * <p>
29   * ServiceBuilder generated this class. Modifications in this class will be
30   * overwritten the next time is generated.
31   * </p>
32   *
33   * @author    Brian Wing Shun Chan
34   * @see       MBMessageFlagPersistence
35   * @see       MBMessageFlagPersistenceImpl
36   * @generated
37   */
38  public class MBMessageFlagUtil {
39      /**
40       * @see com.liferay.portal.service.persistence.BasePersistence#clearCache()
41       */
42      public static void clearCache() {
43          getPersistence().clearCache();
44      }
45  
46      /**
47       * @see com.liferay.portal.service.persistence.BasePersistence#clearCache(MBMessageFlag)
48       */
49      public static void clearCache(MBMessageFlag mbMessageFlag) {
50          getPersistence().clearCache(mbMessageFlag);
51      }
52  
53      /**
54       * @see com.liferay.portal.service.persistence.BasePersistence#countWithDynamicQuery(DynamicQuery)
55       */
56      public long countWithDynamicQuery(DynamicQuery dynamicQuery)
57          throws SystemException {
58          return getPersistence().countWithDynamicQuery(dynamicQuery);
59      }
60  
61      /**
62       * @see com.liferay.portal.service.persistence.BasePersistence#findWithDynamicQuery(DynamicQuery)
63       */
64      public static List<MBMessageFlag> findWithDynamicQuery(
65          DynamicQuery dynamicQuery) throws SystemException {
66          return getPersistence().findWithDynamicQuery(dynamicQuery);
67      }
68  
69      /**
70       * @see com.liferay.portal.service.persistence.BasePersistence#findWithDynamicQuery(DynamicQuery, int, int)
71       */
72      public static List<MBMessageFlag> findWithDynamicQuery(
73          DynamicQuery dynamicQuery, int start, int end)
74          throws SystemException {
75          return getPersistence().findWithDynamicQuery(dynamicQuery, start, end);
76      }
77  
78      /**
79       * @see com.liferay.portal.service.persistence.BasePersistence#remove(com.liferay.portal.model.BaseModel)
80       */
81      public static MBMessageFlag remove(MBMessageFlag mbMessageFlag)
82          throws SystemException {
83          return getPersistence().remove(mbMessageFlag);
84      }
85  
86      /**
87       * @see com.liferay.portal.service.persistence.BasePersistence#update(com.liferay.portal.model.BaseModel, boolean)
88       */
89      public static MBMessageFlag update(MBMessageFlag mbMessageFlag,
90          boolean merge) throws SystemException {
91          return getPersistence().update(mbMessageFlag, merge);
92      }
93  
94      public static void cacheResult(
95          com.liferay.portlet.messageboards.model.MBMessageFlag mbMessageFlag) {
96          getPersistence().cacheResult(mbMessageFlag);
97      }
98  
99      public static void cacheResult(
100         java.util.List<com.liferay.portlet.messageboards.model.MBMessageFlag> mbMessageFlags) {
101         getPersistence().cacheResult(mbMessageFlags);
102     }
103 
104     public static com.liferay.portlet.messageboards.model.MBMessageFlag create(
105         long messageFlagId) {
106         return getPersistence().create(messageFlagId);
107     }
108 
109     public static com.liferay.portlet.messageboards.model.MBMessageFlag remove(
110         long messageFlagId)
111         throws com.liferay.portal.kernel.exception.SystemException,
112             com.liferay.portlet.messageboards.NoSuchMessageFlagException {
113         return getPersistence().remove(messageFlagId);
114     }
115 
116     public static com.liferay.portlet.messageboards.model.MBMessageFlag updateImpl(
117         com.liferay.portlet.messageboards.model.MBMessageFlag mbMessageFlag,
118         boolean merge)
119         throws com.liferay.portal.kernel.exception.SystemException {
120         return getPersistence().updateImpl(mbMessageFlag, merge);
121     }
122 
123     public static com.liferay.portlet.messageboards.model.MBMessageFlag findByPrimaryKey(
124         long messageFlagId)
125         throws com.liferay.portal.kernel.exception.SystemException,
126             com.liferay.portlet.messageboards.NoSuchMessageFlagException {
127         return getPersistence().findByPrimaryKey(messageFlagId);
128     }
129 
130     public static com.liferay.portlet.messageboards.model.MBMessageFlag fetchByPrimaryKey(
131         long messageFlagId)
132         throws com.liferay.portal.kernel.exception.SystemException {
133         return getPersistence().fetchByPrimaryKey(messageFlagId);
134     }
135 
136     public static java.util.List<com.liferay.portlet.messageboards.model.MBMessageFlag> findByUserId(
137         long userId) throws com.liferay.portal.kernel.exception.SystemException {
138         return getPersistence().findByUserId(userId);
139     }
140 
141     public static java.util.List<com.liferay.portlet.messageboards.model.MBMessageFlag> findByUserId(
142         long userId, int start, int end)
143         throws com.liferay.portal.kernel.exception.SystemException {
144         return getPersistence().findByUserId(userId, start, end);
145     }
146 
147     public static java.util.List<com.liferay.portlet.messageboards.model.MBMessageFlag> findByUserId(
148         long userId, int start, int end,
149         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
150         throws com.liferay.portal.kernel.exception.SystemException {
151         return getPersistence()
152                    .findByUserId(userId, start, end, orderByComparator);
153     }
154 
155     public static com.liferay.portlet.messageboards.model.MBMessageFlag findByUserId_First(
156         long userId,
157         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
158         throws com.liferay.portal.kernel.exception.SystemException,
159             com.liferay.portlet.messageboards.NoSuchMessageFlagException {
160         return getPersistence().findByUserId_First(userId, orderByComparator);
161     }
162 
163     public static com.liferay.portlet.messageboards.model.MBMessageFlag findByUserId_Last(
164         long userId,
165         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
166         throws com.liferay.portal.kernel.exception.SystemException,
167             com.liferay.portlet.messageboards.NoSuchMessageFlagException {
168         return getPersistence().findByUserId_Last(userId, orderByComparator);
169     }
170 
171     public static com.liferay.portlet.messageboards.model.MBMessageFlag[] findByUserId_PrevAndNext(
172         long messageFlagId, long userId,
173         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
174         throws com.liferay.portal.kernel.exception.SystemException,
175             com.liferay.portlet.messageboards.NoSuchMessageFlagException {
176         return getPersistence()
177                    .findByUserId_PrevAndNext(messageFlagId, userId,
178             orderByComparator);
179     }
180 
181     public static java.util.List<com.liferay.portlet.messageboards.model.MBMessageFlag> findByThreadId(
182         long threadId)
183         throws com.liferay.portal.kernel.exception.SystemException {
184         return getPersistence().findByThreadId(threadId);
185     }
186 
187     public static java.util.List<com.liferay.portlet.messageboards.model.MBMessageFlag> findByThreadId(
188         long threadId, int start, int end)
189         throws com.liferay.portal.kernel.exception.SystemException {
190         return getPersistence().findByThreadId(threadId, start, end);
191     }
192 
193     public static java.util.List<com.liferay.portlet.messageboards.model.MBMessageFlag> findByThreadId(
194         long threadId, int start, int end,
195         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
196         throws com.liferay.portal.kernel.exception.SystemException {
197         return getPersistence()
198                    .findByThreadId(threadId, start, end, orderByComparator);
199     }
200 
201     public static com.liferay.portlet.messageboards.model.MBMessageFlag findByThreadId_First(
202         long threadId,
203         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
204         throws com.liferay.portal.kernel.exception.SystemException,
205             com.liferay.portlet.messageboards.NoSuchMessageFlagException {
206         return getPersistence().findByThreadId_First(threadId, orderByComparator);
207     }
208 
209     public static com.liferay.portlet.messageboards.model.MBMessageFlag findByThreadId_Last(
210         long threadId,
211         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
212         throws com.liferay.portal.kernel.exception.SystemException,
213             com.liferay.portlet.messageboards.NoSuchMessageFlagException {
214         return getPersistence().findByThreadId_Last(threadId, orderByComparator);
215     }
216 
217     public static com.liferay.portlet.messageboards.model.MBMessageFlag[] findByThreadId_PrevAndNext(
218         long messageFlagId, long threadId,
219         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
220         throws com.liferay.portal.kernel.exception.SystemException,
221             com.liferay.portlet.messageboards.NoSuchMessageFlagException {
222         return getPersistence()
223                    .findByThreadId_PrevAndNext(messageFlagId, threadId,
224             orderByComparator);
225     }
226 
227     public static java.util.List<com.liferay.portlet.messageboards.model.MBMessageFlag> findByMessageId(
228         long messageId)
229         throws com.liferay.portal.kernel.exception.SystemException {
230         return getPersistence().findByMessageId(messageId);
231     }
232 
233     public static java.util.List<com.liferay.portlet.messageboards.model.MBMessageFlag> findByMessageId(
234         long messageId, int start, int end)
235         throws com.liferay.portal.kernel.exception.SystemException {
236         return getPersistence().findByMessageId(messageId, start, end);
237     }
238 
239     public static java.util.List<com.liferay.portlet.messageboards.model.MBMessageFlag> findByMessageId(
240         long messageId, int start, int end,
241         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
242         throws com.liferay.portal.kernel.exception.SystemException {
243         return getPersistence()
244                    .findByMessageId(messageId, start, end, orderByComparator);
245     }
246 
247     public static com.liferay.portlet.messageboards.model.MBMessageFlag findByMessageId_First(
248         long messageId,
249         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
250         throws com.liferay.portal.kernel.exception.SystemException,
251             com.liferay.portlet.messageboards.NoSuchMessageFlagException {
252         return getPersistence()
253                    .findByMessageId_First(messageId, orderByComparator);
254     }
255 
256     public static com.liferay.portlet.messageboards.model.MBMessageFlag findByMessageId_Last(
257         long messageId,
258         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
259         throws com.liferay.portal.kernel.exception.SystemException,
260             com.liferay.portlet.messageboards.NoSuchMessageFlagException {
261         return getPersistence()
262                    .findByMessageId_Last(messageId, orderByComparator);
263     }
264 
265     public static com.liferay.portlet.messageboards.model.MBMessageFlag[] findByMessageId_PrevAndNext(
266         long messageFlagId, long messageId,
267         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
268         throws com.liferay.portal.kernel.exception.SystemException,
269             com.liferay.portlet.messageboards.NoSuchMessageFlagException {
270         return getPersistence()
271                    .findByMessageId_PrevAndNext(messageFlagId, messageId,
272             orderByComparator);
273     }
274 
275     public static java.util.List<com.liferay.portlet.messageboards.model.MBMessageFlag> findByT_F(
276         long threadId, int flag)
277         throws com.liferay.portal.kernel.exception.SystemException {
278         return getPersistence().findByT_F(threadId, flag);
279     }
280 
281     public static java.util.List<com.liferay.portlet.messageboards.model.MBMessageFlag> findByT_F(
282         long threadId, int flag, int start, int end)
283         throws com.liferay.portal.kernel.exception.SystemException {
284         return getPersistence().findByT_F(threadId, flag, start, end);
285     }
286 
287     public static java.util.List<com.liferay.portlet.messageboards.model.MBMessageFlag> findByT_F(
288         long threadId, int flag, int start, int end,
289         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
290         throws com.liferay.portal.kernel.exception.SystemException {
291         return getPersistence()
292                    .findByT_F(threadId, flag, start, end, orderByComparator);
293     }
294 
295     public static com.liferay.portlet.messageboards.model.MBMessageFlag findByT_F_First(
296         long threadId, int flag,
297         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
298         throws com.liferay.portal.kernel.exception.SystemException,
299             com.liferay.portlet.messageboards.NoSuchMessageFlagException {
300         return getPersistence()
301                    .findByT_F_First(threadId, flag, orderByComparator);
302     }
303 
304     public static com.liferay.portlet.messageboards.model.MBMessageFlag findByT_F_Last(
305         long threadId, int flag,
306         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
307         throws com.liferay.portal.kernel.exception.SystemException,
308             com.liferay.portlet.messageboards.NoSuchMessageFlagException {
309         return getPersistence().findByT_F_Last(threadId, flag, orderByComparator);
310     }
311 
312     public static com.liferay.portlet.messageboards.model.MBMessageFlag[] findByT_F_PrevAndNext(
313         long messageFlagId, long threadId, int flag,
314         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
315         throws com.liferay.portal.kernel.exception.SystemException,
316             com.liferay.portlet.messageboards.NoSuchMessageFlagException {
317         return getPersistence()
318                    .findByT_F_PrevAndNext(messageFlagId, threadId, flag,
319             orderByComparator);
320     }
321 
322     public static java.util.List<com.liferay.portlet.messageboards.model.MBMessageFlag> findByM_F(
323         long messageId, int flag)
324         throws com.liferay.portal.kernel.exception.SystemException {
325         return getPersistence().findByM_F(messageId, flag);
326     }
327 
328     public static java.util.List<com.liferay.portlet.messageboards.model.MBMessageFlag> findByM_F(
329         long messageId, int flag, int start, int end)
330         throws com.liferay.portal.kernel.exception.SystemException {
331         return getPersistence().findByM_F(messageId, flag, start, end);
332     }
333 
334     public static java.util.List<com.liferay.portlet.messageboards.model.MBMessageFlag> findByM_F(
335         long messageId, int flag, int start, int end,
336         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
337         throws com.liferay.portal.kernel.exception.SystemException {
338         return getPersistence()
339                    .findByM_F(messageId, flag, start, end, orderByComparator);
340     }
341 
342     public static com.liferay.portlet.messageboards.model.MBMessageFlag findByM_F_First(
343         long messageId, int flag,
344         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
345         throws com.liferay.portal.kernel.exception.SystemException,
346             com.liferay.portlet.messageboards.NoSuchMessageFlagException {
347         return getPersistence()
348                    .findByM_F_First(messageId, flag, orderByComparator);
349     }
350 
351     public static com.liferay.portlet.messageboards.model.MBMessageFlag findByM_F_Last(
352         long messageId, int flag,
353         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
354         throws com.liferay.portal.kernel.exception.SystemException,
355             com.liferay.portlet.messageboards.NoSuchMessageFlagException {
356         return getPersistence()
357                    .findByM_F_Last(messageId, flag, orderByComparator);
358     }
359 
360     public static com.liferay.portlet.messageboards.model.MBMessageFlag[] findByM_F_PrevAndNext(
361         long messageFlagId, long messageId, int flag,
362         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
363         throws com.liferay.portal.kernel.exception.SystemException,
364             com.liferay.portlet.messageboards.NoSuchMessageFlagException {
365         return getPersistence()
366                    .findByM_F_PrevAndNext(messageFlagId, messageId, flag,
367             orderByComparator);
368     }
369 
370     public static java.util.List<com.liferay.portlet.messageboards.model.MBMessageFlag> findByU_T_F(
371         long userId, long threadId, int flag)
372         throws com.liferay.portal.kernel.exception.SystemException {
373         return getPersistence().findByU_T_F(userId, threadId, flag);
374     }
375 
376     public static java.util.List<com.liferay.portlet.messageboards.model.MBMessageFlag> findByU_T_F(
377         long userId, long threadId, int flag, int start, int end)
378         throws com.liferay.portal.kernel.exception.SystemException {
379         return getPersistence().findByU_T_F(userId, threadId, flag, start, end);
380     }
381 
382     public static java.util.List<com.liferay.portlet.messageboards.model.MBMessageFlag> findByU_T_F(
383         long userId, long threadId, int flag, int start, int end,
384         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
385         throws com.liferay.portal.kernel.exception.SystemException {
386         return getPersistence()
387                    .findByU_T_F(userId, threadId, flag, start, end,
388             orderByComparator);
389     }
390 
391     public static com.liferay.portlet.messageboards.model.MBMessageFlag findByU_T_F_First(
392         long userId, long threadId, int flag,
393         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
394         throws com.liferay.portal.kernel.exception.SystemException,
395             com.liferay.portlet.messageboards.NoSuchMessageFlagException {
396         return getPersistence()
397                    .findByU_T_F_First(userId, threadId, flag, orderByComparator);
398     }
399 
400     public static com.liferay.portlet.messageboards.model.MBMessageFlag findByU_T_F_Last(
401         long userId, long threadId, int flag,
402         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
403         throws com.liferay.portal.kernel.exception.SystemException,
404             com.liferay.portlet.messageboards.NoSuchMessageFlagException {
405         return getPersistence()
406                    .findByU_T_F_Last(userId, threadId, flag, orderByComparator);
407     }
408 
409     public static com.liferay.portlet.messageboards.model.MBMessageFlag[] findByU_T_F_PrevAndNext(
410         long messageFlagId, long userId, long threadId, int flag,
411         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
412         throws com.liferay.portal.kernel.exception.SystemException,
413             com.liferay.portlet.messageboards.NoSuchMessageFlagException {
414         return getPersistence()
415                    .findByU_T_F_PrevAndNext(messageFlagId, userId, threadId,
416             flag, orderByComparator);
417     }
418 
419     public static com.liferay.portlet.messageboards.model.MBMessageFlag findByU_M_F(
420         long userId, long messageId, int flag)
421         throws com.liferay.portal.kernel.exception.SystemException,
422             com.liferay.portlet.messageboards.NoSuchMessageFlagException {
423         return getPersistence().findByU_M_F(userId, messageId, flag);
424     }
425 
426     public static com.liferay.portlet.messageboards.model.MBMessageFlag fetchByU_M_F(
427         long userId, long messageId, int flag)
428         throws com.liferay.portal.kernel.exception.SystemException {
429         return getPersistence().fetchByU_M_F(userId, messageId, flag);
430     }
431 
432     public static com.liferay.portlet.messageboards.model.MBMessageFlag fetchByU_M_F(
433         long userId, long messageId, int flag, boolean retrieveFromCache)
434         throws com.liferay.portal.kernel.exception.SystemException {
435         return getPersistence()
436                    .fetchByU_M_F(userId, messageId, flag, retrieveFromCache);
437     }
438 
439     public static java.util.List<com.liferay.portlet.messageboards.model.MBMessageFlag> findAll()
440         throws com.liferay.portal.kernel.exception.SystemException {
441         return getPersistence().findAll();
442     }
443 
444     public static java.util.List<com.liferay.portlet.messageboards.model.MBMessageFlag> findAll(
445         int start, int end)
446         throws com.liferay.portal.kernel.exception.SystemException {
447         return getPersistence().findAll(start, end);
448     }
449 
450     public static java.util.List<com.liferay.portlet.messageboards.model.MBMessageFlag> findAll(
451         int start, int end,
452         com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
453         throws com.liferay.portal.kernel.exception.SystemException {
454         return getPersistence().findAll(start, end, orderByComparator);
455     }
456 
457     public static void removeByUserId(long userId)
458         throws com.liferay.portal.kernel.exception.SystemException {
459         getPersistence().removeByUserId(userId);
460     }
461 
462     public static void removeByThreadId(long threadId)
463         throws com.liferay.portal.kernel.exception.SystemException {
464         getPersistence().removeByThreadId(threadId);
465     }
466 
467     public static void removeByMessageId(long messageId)
468         throws com.liferay.portal.kernel.exception.SystemException {
469         getPersistence().removeByMessageId(messageId);
470     }
471 
472     public static void removeByT_F(long threadId, int flag)
473         throws com.liferay.portal.kernel.exception.SystemException {
474         getPersistence().removeByT_F(threadId, flag);
475     }
476 
477     public static void removeByM_F(long messageId, int flag)
478         throws com.liferay.portal.kernel.exception.SystemException {
479         getPersistence().removeByM_F(messageId, flag);
480     }
481 
482     public static void removeByU_T_F(long userId, long threadId, int flag)
483         throws com.liferay.portal.kernel.exception.SystemException {
484         getPersistence().removeByU_T_F(userId, threadId, flag);
485     }
486 
487     public static void removeByU_M_F(long userId, long messageId, int flag)
488         throws com.liferay.portal.kernel.exception.SystemException,
489             com.liferay.portlet.messageboards.NoSuchMessageFlagException {
490         getPersistence().removeByU_M_F(userId, messageId, flag);
491     }
492 
493     public static void removeAll()
494         throws com.liferay.portal.kernel.exception.SystemException {
495         getPersistence().removeAll();
496     }
497 
498     public static int countByUserId(long userId)
499         throws com.liferay.portal.kernel.exception.SystemException {
500         return getPersistence().countByUserId(userId);
501     }
502 
503     public static int countByThreadId(long threadId)
504         throws com.liferay.portal.kernel.exception.SystemException {
505         return getPersistence().countByThreadId(threadId);
506     }
507 
508     public static int countByMessageId(long messageId)
509         throws com.liferay.portal.kernel.exception.SystemException {
510         return getPersistence().countByMessageId(messageId);
511     }
512 
513     public static int countByT_F(long threadId, int flag)
514         throws com.liferay.portal.kernel.exception.SystemException {
515         return getPersistence().countByT_F(threadId, flag);
516     }
517 
518     public static int countByM_F(long messageId, int flag)
519         throws com.liferay.portal.kernel.exception.SystemException {
520         return getPersistence().countByM_F(messageId, flag);
521     }
522 
523     public static int countByU_T_F(long userId, long threadId, int flag)
524         throws com.liferay.portal.kernel.exception.SystemException {
525         return getPersistence().countByU_T_F(userId, threadId, flag);
526     }
527 
528     public static int countByU_M_F(long userId, long messageId, int flag)
529         throws com.liferay.portal.kernel.exception.SystemException {
530         return getPersistence().countByU_M_F(userId, messageId, flag);
531     }
532 
533     public static int countAll()
534         throws com.liferay.portal.kernel.exception.SystemException {
535         return getPersistence().countAll();
536     }
537 
538     public static MBMessageFlagPersistence getPersistence() {
539         if (_persistence == null) {
540             _persistence = (MBMessageFlagPersistence)PortalBeanLocatorUtil.locate(MBMessageFlagPersistence.class.getName());
541         }
542 
543         return _persistence;
544     }
545 
546     public void setPersistence(MBMessageFlagPersistence persistence) {
547         _persistence = persistence;
548     }
549 
550     private static MBMessageFlagPersistence _persistence;
551 }