blob: ae6276b376b5ce99db4746fe12bb6b57eae7d6ff [file] [log] [blame]
Makoto Onukia4f11972015-10-01 13:19:58 -07001/*
2 * Copyright (C) 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.server.pm;
18
19import com.google.android.collect.Sets;
20
Makoto Onuki1a2cd742015-11-16 13:51:27 -080021import com.android.internal.util.Preconditions;
22
23import android.annotation.NonNull;
24import android.annotation.Nullable;
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -070025import android.app.ActivityManager;
26import android.app.ActivityManagerNative;
Makoto Onuki4f160732015-10-27 17:15:38 -070027import android.content.ContentResolver;
28import android.content.Context;
Makoto Onuki4f160732015-10-27 17:15:38 -070029import android.net.Uri;
30import android.os.Binder;
Makoto Onukia4f11972015-10-01 13:19:58 -070031import android.os.Bundle;
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -070032import android.os.RemoteException;
Makoto Onuki4f160732015-10-27 17:15:38 -070033import android.os.SystemProperties;
34import android.os.UserHandle;
Makoto Onukia4f11972015-10-01 13:19:58 -070035import android.os.UserManager;
Mahaver Chopra830e32c2016-05-17 18:53:09 +010036import android.service.persistentdata.PersistentDataBlockManager;
Mahaver Chopradea471e2015-12-17 11:02:37 +000037import android.telephony.SubscriptionInfo;
38import android.telephony.SubscriptionManager;
Makoto Onuki1a2cd742015-11-16 13:51:27 -080039import android.util.Log;
Makoto Onuki1f1ceef2016-01-28 11:32:32 -080040import android.util.Slog;
Makoto Onukia4f11972015-10-01 13:19:58 -070041
42import org.xmlpull.v1.XmlPullParser;
43import org.xmlpull.v1.XmlSerializer;
44
45import java.io.IOException;
46import java.io.PrintWriter;
Mahaver Chopradea471e2015-12-17 11:02:37 +000047import java.util.List;
Makoto Onukia4f11972015-10-01 13:19:58 -070048import java.util.Set;
49
Makoto Onukid45a4a22015-11-02 17:17:38 -080050/**
Mahaver Chopradea471e2015-12-17 11:02:37 +000051 * Utility methods for user restrictions.
Makoto Onukid45a4a22015-11-02 17:17:38 -080052 *
53 * <p>See {@link UserManagerService} for the method suffixes.
54 */
Makoto Onukia4f11972015-10-01 13:19:58 -070055public class UserRestrictionsUtils {
Makoto Onuki4f160732015-10-27 17:15:38 -070056 private static final String TAG = "UserRestrictionsUtils";
57
Makoto Onukia4f11972015-10-01 13:19:58 -070058 private UserRestrictionsUtils() {
59 }
60
Makoto Onuki1f1ceef2016-01-28 11:32:32 -080061 private static Set<String> newSetWithUniqueCheck(String[] strings) {
62 final Set<String> ret = Sets.newArraySet(strings);
63
64 // Make sure there's no overlap.
65 Preconditions.checkState(ret.size() == strings.length);
66 return ret;
67 }
68
69 public static final Set<String> USER_RESTRICTIONS = newSetWithUniqueCheck(new String[] {
Makoto Onukia4f11972015-10-01 13:19:58 -070070 UserManager.DISALLOW_CONFIG_WIFI,
71 UserManager.DISALLOW_MODIFY_ACCOUNTS,
72 UserManager.DISALLOW_INSTALL_APPS,
73 UserManager.DISALLOW_UNINSTALL_APPS,
74 UserManager.DISALLOW_SHARE_LOCATION,
75 UserManager.DISALLOW_INSTALL_UNKNOWN_SOURCES,
76 UserManager.DISALLOW_CONFIG_BLUETOOTH,
77 UserManager.DISALLOW_USB_FILE_TRANSFER,
78 UserManager.DISALLOW_CONFIG_CREDENTIALS,
79 UserManager.DISALLOW_REMOVE_USER,
80 UserManager.DISALLOW_DEBUGGING_FEATURES,
81 UserManager.DISALLOW_CONFIG_VPN,
82 UserManager.DISALLOW_CONFIG_TETHERING,
83 UserManager.DISALLOW_NETWORK_RESET,
84 UserManager.DISALLOW_FACTORY_RESET,
85 UserManager.DISALLOW_ADD_USER,
86 UserManager.ENSURE_VERIFY_APPS,
87 UserManager.DISALLOW_CONFIG_CELL_BROADCASTS,
88 UserManager.DISALLOW_CONFIG_MOBILE_NETWORKS,
89 UserManager.DISALLOW_APPS_CONTROL,
90 UserManager.DISALLOW_MOUNT_PHYSICAL_MEDIA,
91 UserManager.DISALLOW_UNMUTE_MICROPHONE,
92 UserManager.DISALLOW_ADJUST_VOLUME,
93 UserManager.DISALLOW_OUTGOING_CALLS,
94 UserManager.DISALLOW_SMS,
95 UserManager.DISALLOW_FUN,
96 UserManager.DISALLOW_CREATE_WINDOWS,
97 UserManager.DISALLOW_CROSS_PROFILE_COPY_PASTE,
98 UserManager.DISALLOW_OUTGOING_BEAM,
99 UserManager.DISALLOW_WALLPAPER,
100 UserManager.DISALLOW_SAFE_BOOT,
101 UserManager.ALLOW_PARENT_PROFILE_APP_LINKING,
102 UserManager.DISALLOW_RECORD_AUDIO,
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700103 UserManager.DISALLOW_CAMERA,
Mahaver Chopradea471e2015-12-17 11:02:37 +0000104 UserManager.DISALLOW_RUN_IN_BACKGROUND,
Oleksandr Peletskyi7f1f1df2016-01-18 15:40:21 +0100105 UserManager.DISALLOW_DATA_ROAMING,
Oleksandr Peletskyif2519812016-01-26 20:16:06 +0100106 UserManager.DISALLOW_SET_USER_ICON,
Mahaver Chopra3d9805d2016-07-07 16:25:05 +0100107 UserManager.DISALLOW_SET_WALLPAPER,
Tony Makc1205112016-07-22 16:02:59 +0100108 UserManager.DISALLOW_OEM_UNLOCK,
109 UserManager.DISALLLOW_UNMUTE_DEVICE,
Makoto Onuki1f1ceef2016-01-28 11:32:32 -0800110 });
Makoto Onukia4f11972015-10-01 13:19:58 -0700111
112 /**
113 * Set of user restriction which we don't want to persist.
114 */
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800115 private static final Set<String> NON_PERSIST_USER_RESTRICTIONS = Sets.newArraySet(
116 UserManager.DISALLOW_RECORD_AUDIO
117 );
Makoto Onukia4f11972015-10-01 13:19:58 -0700118
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800119 /**
120 * User restrictions that can not be set by profile owners.
121 */
122 private static final Set<String> DEVICE_OWNER_ONLY_RESTRICTIONS = Sets.newArraySet(
123 UserManager.DISALLOW_USB_FILE_TRANSFER,
124 UserManager.DISALLOW_CONFIG_TETHERING,
125 UserManager.DISALLOW_NETWORK_RESET,
126 UserManager.DISALLOW_FACTORY_RESET,
127 UserManager.DISALLOW_ADD_USER,
128 UserManager.DISALLOW_CONFIG_CELL_BROADCASTS,
129 UserManager.DISALLOW_CONFIG_MOBILE_NETWORKS,
130 UserManager.DISALLOW_MOUNT_PHYSICAL_MEDIA,
131 UserManager.DISALLOW_SMS,
132 UserManager.DISALLOW_FUN,
133 UserManager.DISALLOW_SAFE_BOOT,
Mahaver Chopradea471e2015-12-17 11:02:37 +0000134 UserManager.DISALLOW_CREATE_WINDOWS,
135 UserManager.DISALLOW_DATA_ROAMING
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800136 );
137
138 /**
139 * User restrictions that can't be changed by device owner or profile owner.
140 */
141 private static final Set<String> IMMUTABLE_BY_OWNERS = Sets.newArraySet(
142 UserManager.DISALLOW_RECORD_AUDIO,
Mahaver Chopra3d9805d2016-07-07 16:25:05 +0100143 UserManager.DISALLOW_WALLPAPER,
144 UserManager.DISALLOW_OEM_UNLOCK
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800145 );
146
147 /**
148 * Special user restrictions that can be applied to a user as well as to all users globally,
149 * depending on callers. When device owner sets them, they'll be applied to all users.
150 */
151 private static final Set<String> GLOBAL_RESTRICTIONS = Sets.newArraySet(
152 UserManager.DISALLOW_ADJUST_VOLUME,
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700153 UserManager.DISALLOW_RUN_IN_BACKGROUND,
Tony Makc1205112016-07-22 16:02:59 +0100154 UserManager.DISALLOW_UNMUTE_MICROPHONE,
155 UserManager.DISALLLOW_UNMUTE_DEVICE
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800156 );
157
Makoto Onuki1f1ceef2016-01-28 11:32:32 -0800158 /**
159 * Throws {@link IllegalArgumentException} if the given restriction name is invalid.
160 */
161 public static boolean isValidRestriction(@NonNull String restriction) {
162 if (!USER_RESTRICTIONS.contains(restriction)) {
Makoto Onukiad5619d2016-02-10 13:41:15 -0800163 Slog.e(TAG, "Unknown restriction: " + restriction);
Makoto Onuki1f1ceef2016-01-28 11:32:32 -0800164 return false;
165 }
166 return true;
167 }
168
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800169 public static void writeRestrictions(@NonNull XmlSerializer serializer,
170 @Nullable Bundle restrictions, @NonNull String tag) throws IOException {
171 if (restrictions == null) {
172 return;
173 }
174
Makoto Onukia4f11972015-10-01 13:19:58 -0700175 serializer.startTag(null, tag);
Makoto Onukiac65e1e2015-11-20 15:33:17 -0800176 for (String key : restrictions.keySet()) {
177 if (NON_PERSIST_USER_RESTRICTIONS.contains(key)) {
178 continue; // Don't persist.
Makoto Onukia4f11972015-10-01 13:19:58 -0700179 }
Makoto Onukiac65e1e2015-11-20 15:33:17 -0800180 if (USER_RESTRICTIONS.contains(key)) {
181 if (restrictions.getBoolean(key)) {
182 serializer.attribute(null, key, "true");
183 }
184 continue;
185 }
186 Log.w(TAG, "Unknown user restriction detected: " + key);
Makoto Onukia4f11972015-10-01 13:19:58 -0700187 }
188 serializer.endTag(null, tag);
189 }
190
191 public static void readRestrictions(XmlPullParser parser, Bundle restrictions)
192 throws IOException {
193 for (String key : USER_RESTRICTIONS) {
194 final String value = parser.getAttributeValue(null, key);
195 if (value != null) {
196 restrictions.putBoolean(key, Boolean.parseBoolean(value));
197 }
198 }
199 }
200
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800201 /**
202 * @return {@code in} itself when it's not null, or an empty bundle (which can writable).
203 */
204 public static Bundle nonNull(@Nullable Bundle in) {
205 return in != null ? in : new Bundle();
206 }
207
208 public static boolean isEmpty(@Nullable Bundle in) {
209 return (in == null) || (in.size() == 0);
210 }
211
212 /**
213 * Creates a copy of the {@code in} Bundle. If {@code in} is null, it'll return an empty
214 * bundle.
215 *
216 * <p>The resulting {@link Bundle} is always writable. (i.e. it won't return
217 * {@link Bundle#EMPTY})
218 */
219 public static @NonNull Bundle clone(@Nullable Bundle in) {
220 return (in != null) ? new Bundle(in) : new Bundle();
221 }
222
223 public static void merge(@NonNull Bundle dest, @Nullable Bundle in) {
224 Preconditions.checkNotNull(dest);
225 Preconditions.checkArgument(dest != in);
Makoto Onuki068c54a2015-10-13 14:34:03 -0700226 if (in == null) {
227 return;
228 }
229 for (String key : in.keySet()) {
230 if (in.getBoolean(key, false)) {
231 dest.putBoolean(key, true);
232 }
233 }
234 }
235
Makoto Onuki4f160732015-10-27 17:15:38 -0700236 /**
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800237 * @return true if a restriction is settable by device owner.
238 */
239 public static boolean canDeviceOwnerChange(String restriction) {
240 return !IMMUTABLE_BY_OWNERS.contains(restriction);
241 }
242
243 /**
Makoto Onuki5485ed42015-12-09 11:38:23 -0800244 * @return true if a restriction is settable by profile owner. Note it takes a user ID because
245 * some restrictions can be changed by PO only when it's running on the system user.
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800246 */
Makoto Onuki5485ed42015-12-09 11:38:23 -0800247 public static boolean canProfileOwnerChange(String restriction, int userId) {
248 return !IMMUTABLE_BY_OWNERS.contains(restriction)
249 && !(userId != UserHandle.USER_SYSTEM
250 && DEVICE_OWNER_ONLY_RESTRICTIONS.contains(restriction));
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800251 }
252
253 /**
254 * Takes restrictions that can be set by device owner, and sort them into what should be applied
255 * globally and what should be applied only on the current user.
256 */
257 public static void sortToGlobalAndLocal(@Nullable Bundle in, @NonNull Bundle global,
258 @NonNull Bundle local) {
259 if (in == null || in.size() == 0) {
260 return;
261 }
262 for (String key : in.keySet()) {
263 if (!in.getBoolean(key)) {
264 continue;
265 }
266 if (DEVICE_OWNER_ONLY_RESTRICTIONS.contains(key) || GLOBAL_RESTRICTIONS.contains(key)) {
267 global.putBoolean(key, true);
268 } else {
269 local.putBoolean(key, true);
270 }
271 }
272 }
273
274 /**
275 * @return true if two Bundles contain the same user restriction.
276 * A null bundle and an empty bundle are considered to be equal.
277 */
278 public static boolean areEqual(@Nullable Bundle a, @Nullable Bundle b) {
279 if (a == b) {
280 return true;
281 }
282 if (isEmpty(a)) {
283 return isEmpty(b);
284 }
285 if (isEmpty(b)) {
286 return false;
287 }
288 for (String key : a.keySet()) {
289 if (a.getBoolean(key) != b.getBoolean(key)) {
290 return false;
291 }
292 }
293 for (String key : b.keySet()) {
294 if (a.getBoolean(key) != b.getBoolean(key)) {
295 return false;
296 }
297 }
298 return true;
299 }
300
301 /**
Makoto Onuki4f160732015-10-27 17:15:38 -0700302 * Takes a new use restriction set and the previous set, and apply the restrictions that have
303 * changed.
Makoto Onukid45a4a22015-11-02 17:17:38 -0800304 *
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700305 * <p>Note this method is called by {@link UserManagerService} without holding any locks.
Makoto Onuki4f160732015-10-27 17:15:38 -0700306 */
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700307 public static void applyUserRestrictions(Context context, int userId,
Makoto Onukid45a4a22015-11-02 17:17:38 -0800308 Bundle newRestrictions, Bundle prevRestrictions) {
Makoto Onuki4f160732015-10-27 17:15:38 -0700309 for (String key : USER_RESTRICTIONS) {
310 final boolean newValue = newRestrictions.getBoolean(key);
311 final boolean prevValue = prevRestrictions.getBoolean(key);
312
313 if (newValue != prevValue) {
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700314 applyUserRestriction(context, userId, key, newValue);
Makoto Onuki4f160732015-10-27 17:15:38 -0700315 }
316 }
317 }
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700318
Makoto Onukid45a4a22015-11-02 17:17:38 -0800319 /**
320 * Apply each user restriction.
321 *
Makoto Onuki28da2e32015-11-20 11:30:44 -0800322 * <p>See also {@link
323 * com.android.providers.settings.SettingsProvider#isGlobalOrSecureSettingRestrictedForUser},
324 * which should be in sync with this method.
Makoto Onukid45a4a22015-11-02 17:17:38 -0800325 */
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700326 private static void applyUserRestriction(Context context, int userId, String key,
Makoto Onuki4f160732015-10-27 17:15:38 -0700327 boolean newValue) {
Makoto Onuki1a2cd742015-11-16 13:51:27 -0800328 if (UserManagerService.DBG) {
329 Log.d(TAG, "Applying user restriction: userId=" + userId
330 + " key=" + key + " value=" + newValue);
331 }
Makoto Onuki4f160732015-10-27 17:15:38 -0700332 // When certain restrictions are cleared, we don't update the system settings,
333 // because these settings are changeable on the Settings UI and we don't know the original
334 // value -- for example LOCATION_MODE might have been off already when the restriction was
335 // set, and in that case even if the restriction is lifted, changing it to ON would be
336 // wrong. So just don't do anything in such a case. If the user hopes to enable location
337 // later, they can do it on the Settings UI.
338
339 final ContentResolver cr = context.getContentResolver();
340 final long id = Binder.clearCallingIdentity();
341 try {
342 switch (key) {
Makoto Onuki4f160732015-10-27 17:15:38 -0700343 case UserManager.DISALLOW_CONFIG_WIFI:
344 if (newValue) {
345 android.provider.Settings.Secure.putIntForUser(cr,
Makoto Onuki28da2e32015-11-20 11:30:44 -0800346 android.provider.Settings.Global
Makoto Onuki4f160732015-10-27 17:15:38 -0700347 .WIFI_NETWORKS_AVAILABLE_NOTIFICATION_ON, 0, userId);
348 }
349 break;
Mahaver Chopradea471e2015-12-17 11:02:37 +0000350 case UserManager.DISALLOW_DATA_ROAMING:
351 if (newValue) {
352 // DISALLOW_DATA_ROAMING user restriction is set.
353
354 // Multi sim device.
355 SubscriptionManager subscriptionManager = new SubscriptionManager(context);
356 final List<SubscriptionInfo> subscriptionInfoList =
357 subscriptionManager.getActiveSubscriptionInfoList();
358 if (subscriptionInfoList != null) {
359 for (SubscriptionInfo subInfo : subscriptionInfoList) {
360 android.provider.Settings.Global.putStringForUser(cr,
361 android.provider.Settings.Global.DATA_ROAMING
362 + subInfo.getSubscriptionId(), "0", userId);
363 }
364 }
365
366 // Single sim device.
367 android.provider.Settings.Global.putStringForUser(cr,
368 android.provider.Settings.Global.DATA_ROAMING, "0", userId);
369 }
370 break;
Makoto Onuki4f160732015-10-27 17:15:38 -0700371 case UserManager.DISALLOW_SHARE_LOCATION:
372 if (newValue) {
373 android.provider.Settings.Secure.putIntForUser(cr,
374 android.provider.Settings.Secure.LOCATION_MODE,
375 android.provider.Settings.Secure.LOCATION_MODE_OFF,
376 userId);
Makoto Onuki4f160732015-10-27 17:15:38 -0700377 }
Makoto Onuki4f160732015-10-27 17:15:38 -0700378 break;
379 case UserManager.DISALLOW_DEBUGGING_FEATURES:
380 if (newValue) {
381 // Only disable adb if changing for system user, since it is global
382 // TODO: should this be admin user?
383 if (userId == UserHandle.USER_SYSTEM) {
384 android.provider.Settings.Global.putStringForUser(cr,
385 android.provider.Settings.Global.ADB_ENABLED, "0",
386 userId);
387 }
388 }
389 break;
390 case UserManager.ENSURE_VERIFY_APPS:
391 if (newValue) {
392 android.provider.Settings.Global.putStringForUser(
393 context.getContentResolver(),
394 android.provider.Settings.Global.PACKAGE_VERIFIER_ENABLE, "1",
395 userId);
396 android.provider.Settings.Global.putStringForUser(
397 context.getContentResolver(),
398 android.provider.Settings.Global.PACKAGE_VERIFIER_INCLUDE_ADB, "1",
399 userId);
400 }
401 break;
402 case UserManager.DISALLOW_INSTALL_UNKNOWN_SOURCES:
403 if (newValue) {
404 android.provider.Settings.Secure.putIntForUser(cr,
405 android.provider.Settings.Secure.INSTALL_NON_MARKET_APPS, 0,
406 userId);
407 }
408 break;
Fyodor Kupolov9cbfc9e2015-10-07 15:52:33 -0700409 case UserManager.DISALLOW_RUN_IN_BACKGROUND:
410 if (newValue) {
411 int currentUser = ActivityManager.getCurrentUser();
412 if (currentUser != userId && userId != UserHandle.USER_SYSTEM) {
413 try {
414 ActivityManagerNative.getDefault().stopUser(userId, false, null);
415 } catch (RemoteException e) {
416 throw e.rethrowAsRuntimeException();
417 }
418 }
419 }
Lenka Trochtova6474f0e2016-03-24 16:43:10 +0100420 break;
421 case UserManager.DISALLOW_SAFE_BOOT:
422 // Unlike with the other restrictions, we want to propagate the new value to
423 // the system settings even if it is false. The other restrictions modify
424 // settings which could be manually changed by the user from the Settings app
425 // after the policies enforcing these restrictions have been revoked, so we
426 // leave re-setting of those settings to the user.
427 android.provider.Settings.Global.putInt(
428 context.getContentResolver(),
429 android.provider.Settings.Global.SAFE_BOOT_DISALLOWED,
430 newValue ? 1 : 0);
431 break;
Mahaver Chopra830e32c2016-05-17 18:53:09 +0100432 case UserManager.DISALLOW_FACTORY_RESET:
Mahaver Chopra3d9805d2016-07-07 16:25:05 +0100433 case UserManager.DISALLOW_OEM_UNLOCK:
Mahaver Chopra830e32c2016-05-17 18:53:09 +0100434 if (newValue) {
435 PersistentDataBlockManager manager = (PersistentDataBlockManager) context
436 .getSystemService(Context.PERSISTENT_DATA_BLOCK_SERVICE);
Mahaver Choprad444ff12016-06-16 14:05:58 +0100437 if (manager != null && manager.getOemUnlockEnabled()) {
Mahaver Chopra830e32c2016-05-17 18:53:09 +0100438 manager.setOemUnlockEnabled(false);
439 }
440 }
Tony Makc1205112016-07-22 16:02:59 +0100441 break;
Makoto Onuki4f160732015-10-27 17:15:38 -0700442 }
Makoto Onuki4f160732015-10-27 17:15:38 -0700443 } finally {
444 Binder.restoreCallingIdentity(id);
445 }
446 }
447
Makoto Onukia4f11972015-10-01 13:19:58 -0700448 public static void dumpRestrictions(PrintWriter pw, String prefix, Bundle restrictions) {
449 boolean noneSet = true;
450 if (restrictions != null) {
451 for (String key : restrictions.keySet()) {
452 if (restrictions.getBoolean(key, false)) {
453 pw.println(prefix + key);
454 noneSet = false;
455 }
456 }
Makoto Onuki068c54a2015-10-13 14:34:03 -0700457 if (noneSet) {
458 pw.println(prefix + "none");
459 }
460 } else {
461 pw.println(prefix + "null");
Makoto Onukia4f11972015-10-01 13:19:58 -0700462 }
463 }
464}