Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1256)

Side by Side Diff: mojo/dart/packages/_mojo_for_test_only/lib/mojo/test/versioning/versioning_test_client.mojom.dart

Issue 1753013002: Mojom runtime type info: New implementation for Dart. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: No changes to sha1s Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 library versioning_test_client_mojom; 5 library versioning_test_client_mojom;
6 import 'dart:async'; 6 import 'dart:async';
7 import 'dart:collection'; 7 import 'dart:collection';
8 import 'dart:typed_data';
8 import 'package:mojo/bindings.dart' as bindings; 9 import 'package:mojo/bindings.dart' as bindings;
9 import 'package:mojo/core.dart' as core; 10 import 'package:mojo/core.dart' as core;
10 import 'package:mojo/mojo/bindings/types/mojom_types.mojom.dart' as mojom_types; 11 import 'package:mojo/mojo/bindings/types/mojom_types.mojom.dart' as mojom_types;
11 import 'package:mojo/mojo/bindings/types/service_describer.mojom.dart' as servic e_describer; 12 import 'package:mojo/mojo/bindings/types/service_describer.mojom.dart' as servic e_describer;
12 13
13 class Department extends bindings.MojoEnum { 14 class Department extends bindings.MojoEnum {
14 static const Department sales = const Department._(0); 15 static const Department sales = const Department._(0);
15 static const Department dev = const Department._(1); 16 static const Department dev = const Department._(1);
16 17
17 const Department._(int v) : super(v); 18 const Department._(int v) : super(v);
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 case dev: 56 case dev:
56 return 'Department.dev'; 57 return 'Department.dev';
57 default: 58 default:
58 return null; 59 return null;
59 } 60 }
60 } 61 }
61 62
62 int toJson() => mojoEnumValue; 63 int toJson() => mojoEnumValue;
63 } 64 }
64 65
65 mojom_types.MojomEnum _versioningTestClientDepartment() {
66 return new mojom_types.MojomEnum()
67 ..declData = (new mojom_types.DeclarationData()
68 ..shortName = 'Department'
69 ..fullIdentifier = 'mojo.test.versioning.Department')
70 ..values = <mojom_types.EnumValue>[
71 new mojom_types.EnumValue()
72 ..declData = (new mojom_types.DeclarationData()
73 ..shortName = 'Sales')
74 ..enumTypeKey = 'versioning_test_client_Department__'
75 ..intValue = 0,
76 new mojom_types.EnumValue()
77 ..declData = (new mojom_types.DeclarationData()
78 ..shortName = 'Dev')
79 ..enumTypeKey = 'versioning_test_client_Department__'
80 ..intValue = 1,];
81 }
82
83 66
84 67
85 class Employee extends bindings.Struct { 68 class Employee extends bindings.Struct {
86 static const List<bindings.StructDataHeader> kVersions = const [ 69 static const List<bindings.StructDataHeader> kVersions = const [
87 const bindings.StructDataHeader(32, 0) 70 const bindings.StructDataHeader(32, 0)
88 ]; 71 ];
89 int employeeId = 0; 72 int employeeId = 0;
90 String name = null; 73 String name = null;
91 Department department = null; 74 Department department = null;
92 75
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 161
179 Map toJson() { 162 Map toJson() {
180 Map map = new Map(); 163 Map map = new Map();
181 map["employeeId"] = employeeId; 164 map["employeeId"] = employeeId;
182 map["name"] = name; 165 map["name"] = name;
183 map["department"] = department; 166 map["department"] = department;
184 return map; 167 return map;
185 } 168 }
186 } 169 }
187 170
188 mojom_types.MojomStruct _versioningTestClientEmployee() {
189 return new mojom_types.MojomStruct()
190 ..declData = (new mojom_types.DeclarationData()
191 ..shortName = 'Employee'
192 ..fullIdentifier = 'mojo.test.versioning.Employee')
193 ..fields = <mojom_types.StructField>[
194 new mojom_types.StructField()
195 ..declData = (new mojom_types.DeclarationData()
196 ..shortName = 'EmployeeId')
197 ..type = (new mojom_types.Type()
198 ..simpleType = mojom_types.SimpleType.uint64),
199 new mojom_types.StructField()
200 ..declData = (new mojom_types.DeclarationData()
201 ..shortName = 'Name')
202 ..type = (new mojom_types.Type()
203 ..stringType = (new mojom_types.StringType())),
204 new mojom_types.StructField()
205 ..declData = (new mojom_types.DeclarationData()
206 ..shortName = 'Department')
207 ..type = (new mojom_types.Type()
208 ..typeReference = (new mojom_types.TypeReference()
209 ..identifier = 'versioning_test_client_Department__'
210 ..typeKey = 'versioning_test_client_Department__'
211 )),];
212 }
213
214 171
215 class _HumanResourceDatabaseAddEmployeeParams extends bindings.Struct { 172 class _HumanResourceDatabaseAddEmployeeParams extends bindings.Struct {
216 static const List<bindings.StructDataHeader> kVersions = const [ 173 static const List<bindings.StructDataHeader> kVersions = const [
217 const bindings.StructDataHeader(16, 0) 174 const bindings.StructDataHeader(16, 0)
218 ]; 175 ];
219 Employee employee = null; 176 Employee employee = null;
220 177
221 _HumanResourceDatabaseAddEmployeeParams() : super(kVersions.last.size); 178 _HumanResourceDatabaseAddEmployeeParams() : super(kVersions.last.size);
222 179
223 static _HumanResourceDatabaseAddEmployeeParams deserialize(bindings.Message me ssage) { 180 static _HumanResourceDatabaseAddEmployeeParams deserialize(bindings.Message me ssage) {
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
277 "employee: $employee" ")"; 234 "employee: $employee" ")";
278 } 235 }
279 236
280 Map toJson() { 237 Map toJson() {
281 Map map = new Map(); 238 Map map = new Map();
282 map["employee"] = employee; 239 map["employee"] = employee;
283 return map; 240 return map;
284 } 241 }
285 } 242 }
286 243
287 mojom_types.MojomStruct _versioningTestClientHumanResourceDatabaseAddEmployeePar ams() {
288 return new mojom_types.MojomStruct()
289 ..declData = (new mojom_types.DeclarationData()
290 ..shortName = 'HumanResourceDatabaseAddEmployeeParams'
291 ..fullIdentifier = 'mojo.test.versioning.HumanResourceDatabase_AddEmployee _Params')
292 ..fields = <mojom_types.StructField>[
293 new mojom_types.StructField()
294 ..declData = (new mojom_types.DeclarationData()
295 ..shortName = 'Employee')
296 ..type = (new mojom_types.Type()
297 ..typeReference = (new mojom_types.TypeReference()
298 ..identifier = 'versioning_test_client_Employee__'
299 ..typeKey = 'versioning_test_client_Employee__'
300 )),];
301 }
302
303 244
304 class HumanResourceDatabaseAddEmployeeResponseParams extends bindings.Struct { 245 class HumanResourceDatabaseAddEmployeeResponseParams extends bindings.Struct {
305 static const List<bindings.StructDataHeader> kVersions = const [ 246 static const List<bindings.StructDataHeader> kVersions = const [
306 const bindings.StructDataHeader(16, 0) 247 const bindings.StructDataHeader(16, 0)
307 ]; 248 ];
308 bool success = false; 249 bool success = false;
309 250
310 HumanResourceDatabaseAddEmployeeResponseParams() : super(kVersions.last.size); 251 HumanResourceDatabaseAddEmployeeResponseParams() : super(kVersions.last.size);
311 252
312 static HumanResourceDatabaseAddEmployeeResponseParams deserialize(bindings.Mes sage message) { 253 static HumanResourceDatabaseAddEmployeeResponseParams deserialize(bindings.Mes sage message) {
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 "success: $success" ")"; 306 "success: $success" ")";
366 } 307 }
367 308
368 Map toJson() { 309 Map toJson() {
369 Map map = new Map(); 310 Map map = new Map();
370 map["success"] = success; 311 map["success"] = success;
371 return map; 312 return map;
372 } 313 }
373 } 314 }
374 315
375 mojom_types.MojomStruct _versioningTestClientHumanResourceDatabaseAddEmployeeRes ponseParams() {
376 return new mojom_types.MojomStruct()
377 ..declData = (new mojom_types.DeclarationData()
378 ..shortName = 'HumanResourceDatabaseAddEmployeeResponseParams'
379 ..fullIdentifier = 'mojo.test.versioning.HumanResourceDatabase_AddEmployee _ResponseParams')
380 ..fields = <mojom_types.StructField>[
381 new mojom_types.StructField()
382 ..declData = (new mojom_types.DeclarationData()
383 ..shortName = 'Success')
384 ..type = (new mojom_types.Type()
385 ..simpleType = mojom_types.SimpleType.bool),];
386 }
387
388 316
389 class _HumanResourceDatabaseQueryEmployeeParams extends bindings.Struct { 317 class _HumanResourceDatabaseQueryEmployeeParams extends bindings.Struct {
390 static const List<bindings.StructDataHeader> kVersions = const [ 318 static const List<bindings.StructDataHeader> kVersions = const [
391 const bindings.StructDataHeader(16, 0), 319 const bindings.StructDataHeader(16, 0),
392 const bindings.StructDataHeader(24, 1) 320 const bindings.StructDataHeader(24, 1)
393 ]; 321 ];
394 int id = 0; 322 int id = 0;
395 bool retrieveFingerPrint = false; 323 bool retrieveFingerPrint = false;
396 324
397 _HumanResourceDatabaseQueryEmployeeParams() : super(kVersions.last.size); 325 _HumanResourceDatabaseQueryEmployeeParams() : super(kVersions.last.size);
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
465 } 393 }
466 394
467 Map toJson() { 395 Map toJson() {
468 Map map = new Map(); 396 Map map = new Map();
469 map["id"] = id; 397 map["id"] = id;
470 map["retrieveFingerPrint"] = retrieveFingerPrint; 398 map["retrieveFingerPrint"] = retrieveFingerPrint;
471 return map; 399 return map;
472 } 400 }
473 } 401 }
474 402
475 mojom_types.MojomStruct _versioningTestClientHumanResourceDatabaseQueryEmployeeP arams() {
476 return new mojom_types.MojomStruct()
477 ..declData = (new mojom_types.DeclarationData()
478 ..shortName = 'HumanResourceDatabaseQueryEmployeeParams'
479 ..fullIdentifier = 'mojo.test.versioning.HumanResourceDatabase_QueryEmploy ee_Params')
480 ..fields = <mojom_types.StructField>[
481 new mojom_types.StructField()
482 ..declData = (new mojom_types.DeclarationData()
483 ..shortName = 'Id')
484 ..type = (new mojom_types.Type()
485 ..simpleType = mojom_types.SimpleType.uint64),
486 new mojom_types.StructField()
487 ..declData = (new mojom_types.DeclarationData()
488 ..shortName = 'RetrieveFingerPrint')
489 ..type = (new mojom_types.Type()
490 ..simpleType = mojom_types.SimpleType.bool),];
491 }
492
493 403
494 class HumanResourceDatabaseQueryEmployeeResponseParams extends bindings.Struct { 404 class HumanResourceDatabaseQueryEmployeeResponseParams extends bindings.Struct {
495 static const List<bindings.StructDataHeader> kVersions = const [ 405 static const List<bindings.StructDataHeader> kVersions = const [
496 const bindings.StructDataHeader(16, 0), 406 const bindings.StructDataHeader(16, 0),
497 const bindings.StructDataHeader(24, 1) 407 const bindings.StructDataHeader(24, 1)
498 ]; 408 ];
499 Employee employee = null; 409 Employee employee = null;
500 List<int> fingerPrint = null; 410 List<int> fingerPrint = null;
501 411
502 HumanResourceDatabaseQueryEmployeeResponseParams() : super(kVersions.last.size ); 412 HumanResourceDatabaseQueryEmployeeResponseParams() : super(kVersions.last.size );
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
571 } 481 }
572 482
573 Map toJson() { 483 Map toJson() {
574 Map map = new Map(); 484 Map map = new Map();
575 map["employee"] = employee; 485 map["employee"] = employee;
576 map["fingerPrint"] = fingerPrint; 486 map["fingerPrint"] = fingerPrint;
577 return map; 487 return map;
578 } 488 }
579 } 489 }
580 490
581 mojom_types.MojomStruct _versioningTestClientHumanResourceDatabaseQueryEmployeeR esponseParams() {
582 return new mojom_types.MojomStruct()
583 ..declData = (new mojom_types.DeclarationData()
584 ..shortName = 'HumanResourceDatabaseQueryEmployeeResponseParams'
585 ..fullIdentifier = 'mojo.test.versioning.HumanResourceDatabase_QueryEmploy ee_ResponseParams')
586 ..fields = <mojom_types.StructField>[
587 new mojom_types.StructField()
588 ..declData = (new mojom_types.DeclarationData()
589 ..shortName = 'Employee')
590 ..type = (new mojom_types.Type()
591 ..typeReference = (new mojom_types.TypeReference()
592 ..nullable = true
593
594 ..identifier = 'versioning_test_client_Employee__'
595 ..typeKey = 'versioning_test_client_Employee__'
596 )),
597 new mojom_types.StructField()
598 ..declData = (new mojom_types.DeclarationData()
599 ..shortName = 'FingerPrint')
600 ..type = (new mojom_types.Type()
601 ..arrayType = (new mojom_types.ArrayType()
602 ..nullable = true
603 ..elementType = (new mojom_types.Type()
604 ..simpleType = mojom_types.SimpleType.uint8))),];
605 }
606
607 491
608 class _HumanResourceDatabaseAttachFingerPrintParams extends bindings.Struct { 492 class _HumanResourceDatabaseAttachFingerPrintParams extends bindings.Struct {
609 static const List<bindings.StructDataHeader> kVersions = const [ 493 static const List<bindings.StructDataHeader> kVersions = const [
610 const bindings.StructDataHeader(24, 0) 494 const bindings.StructDataHeader(24, 0)
611 ]; 495 ];
612 int id = 0; 496 int id = 0;
613 List<int> fingerPrint = null; 497 List<int> fingerPrint = null;
614 498
615 _HumanResourceDatabaseAttachFingerPrintParams() : super(kVersions.last.size); 499 _HumanResourceDatabaseAttachFingerPrintParams() : super(kVersions.last.size);
616 500
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
683 } 567 }
684 568
685 Map toJson() { 569 Map toJson() {
686 Map map = new Map(); 570 Map map = new Map();
687 map["id"] = id; 571 map["id"] = id;
688 map["fingerPrint"] = fingerPrint; 572 map["fingerPrint"] = fingerPrint;
689 return map; 573 return map;
690 } 574 }
691 } 575 }
692 576
693 mojom_types.MojomStruct _versioningTestClientHumanResourceDatabaseAttachFingerPr intParams() {
694 return new mojom_types.MojomStruct()
695 ..declData = (new mojom_types.DeclarationData()
696 ..shortName = 'HumanResourceDatabaseAttachFingerPrintParams'
697 ..fullIdentifier = 'mojo.test.versioning.HumanResourceDatabase_AttachFinge rPrint_Params')
698 ..fields = <mojom_types.StructField>[
699 new mojom_types.StructField()
700 ..declData = (new mojom_types.DeclarationData()
701 ..shortName = 'Id')
702 ..type = (new mojom_types.Type()
703 ..simpleType = mojom_types.SimpleType.uint64),
704 new mojom_types.StructField()
705 ..declData = (new mojom_types.DeclarationData()
706 ..shortName = 'FingerPrint')
707 ..type = (new mojom_types.Type()
708 ..arrayType = (new mojom_types.ArrayType()
709 ..elementType = (new mojom_types.Type()
710 ..simpleType = mojom_types.SimpleType.uint8))),];
711 }
712
713 577
714 class HumanResourceDatabaseAttachFingerPrintResponseParams extends bindings.Stru ct { 578 class HumanResourceDatabaseAttachFingerPrintResponseParams extends bindings.Stru ct {
715 static const List<bindings.StructDataHeader> kVersions = const [ 579 static const List<bindings.StructDataHeader> kVersions = const [
716 const bindings.StructDataHeader(16, 0) 580 const bindings.StructDataHeader(16, 0)
717 ]; 581 ];
718 bool success = false; 582 bool success = false;
719 583
720 HumanResourceDatabaseAttachFingerPrintResponseParams() : super(kVersions.last. size); 584 HumanResourceDatabaseAttachFingerPrintResponseParams() : super(kVersions.last. size);
721 585
722 static HumanResourceDatabaseAttachFingerPrintResponseParams deserialize(bindin gs.Message message) { 586 static HumanResourceDatabaseAttachFingerPrintResponseParams deserialize(bindin gs.Message message) {
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
775 "success: $success" ")"; 639 "success: $success" ")";
776 } 640 }
777 641
778 Map toJson() { 642 Map toJson() {
779 Map map = new Map(); 643 Map map = new Map();
780 map["success"] = success; 644 map["success"] = success;
781 return map; 645 return map;
782 } 646 }
783 } 647 }
784 648
785 mojom_types.MojomStruct _versioningTestClientHumanResourceDatabaseAttachFingerPr intResponseParams() {
786 return new mojom_types.MojomStruct()
787 ..declData = (new mojom_types.DeclarationData()
788 ..shortName = 'HumanResourceDatabaseAttachFingerPrintResponseParams'
789 ..fullIdentifier = 'mojo.test.versioning.HumanResourceDatabase_AttachFinge rPrint_ResponseParams')
790 ..fields = <mojom_types.StructField>[
791 new mojom_types.StructField()
792 ..declData = (new mojom_types.DeclarationData()
793 ..shortName = 'Success')
794 ..type = (new mojom_types.Type()
795 ..simpleType = mojom_types.SimpleType.bool),];
796 }
797
798 649
799 class _HumanResourceDatabaseListEmployeeIdsParams extends bindings.Struct { 650 class _HumanResourceDatabaseListEmployeeIdsParams extends bindings.Struct {
800 static const List<bindings.StructDataHeader> kVersions = const [ 651 static const List<bindings.StructDataHeader> kVersions = const [
801 const bindings.StructDataHeader(8, 0) 652 const bindings.StructDataHeader(8, 0)
802 ]; 653 ];
803 654
804 _HumanResourceDatabaseListEmployeeIdsParams() : super(kVersions.last.size); 655 _HumanResourceDatabaseListEmployeeIdsParams() : super(kVersions.last.size);
805 656
806 static _HumanResourceDatabaseListEmployeeIdsParams deserialize(bindings.Messag e message) { 657 static _HumanResourceDatabaseListEmployeeIdsParams deserialize(bindings.Messag e message) {
807 var decoder = new bindings.Decoder(message); 658 var decoder = new bindings.Decoder(message);
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
846 String toString() { 697 String toString() {
847 return "_HumanResourceDatabaseListEmployeeIdsParams("")"; 698 return "_HumanResourceDatabaseListEmployeeIdsParams("")";
848 } 699 }
849 700
850 Map toJson() { 701 Map toJson() {
851 Map map = new Map(); 702 Map map = new Map();
852 return map; 703 return map;
853 } 704 }
854 } 705 }
855 706
856 mojom_types.MojomStruct _versioningTestClientHumanResourceDatabaseListEmployeeId sParams() {
857 return new mojom_types.MojomStruct()
858 ..declData = (new mojom_types.DeclarationData()
859 ..shortName = 'HumanResourceDatabaseListEmployeeIdsParams'
860 ..fullIdentifier = 'mojo.test.versioning.HumanResourceDatabase_ListEmploye eIds_Params')
861 ..fields = <mojom_types.StructField>[];
862 }
863
864 707
865 class HumanResourceDatabaseListEmployeeIdsResponseParams extends bindings.Struct { 708 class HumanResourceDatabaseListEmployeeIdsResponseParams extends bindings.Struct {
866 static const List<bindings.StructDataHeader> kVersions = const [ 709 static const List<bindings.StructDataHeader> kVersions = const [
867 const bindings.StructDataHeader(16, 0) 710 const bindings.StructDataHeader(16, 0)
868 ]; 711 ];
869 List<int> ids = null; 712 List<int> ids = null;
870 713
871 HumanResourceDatabaseListEmployeeIdsResponseParams() : super(kVersions.last.si ze); 714 HumanResourceDatabaseListEmployeeIdsResponseParams() : super(kVersions.last.si ze);
872 715
873 static HumanResourceDatabaseListEmployeeIdsResponseParams deserialize(bindings .Message message) { 716 static HumanResourceDatabaseListEmployeeIdsResponseParams deserialize(bindings .Message message) {
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
926 "ids: $ids" ")"; 769 "ids: $ids" ")";
927 } 770 }
928 771
929 Map toJson() { 772 Map toJson() {
930 Map map = new Map(); 773 Map map = new Map();
931 map["ids"] = ids; 774 map["ids"] = ids;
932 return map; 775 return map;
933 } 776 }
934 } 777 }
935 778
936 mojom_types.MojomStruct _versioningTestClientHumanResourceDatabaseListEmployeeId sResponseParams() {
937 return new mojom_types.MojomStruct()
938 ..declData = (new mojom_types.DeclarationData()
939 ..shortName = 'HumanResourceDatabaseListEmployeeIdsResponseParams'
940 ..fullIdentifier = 'mojo.test.versioning.HumanResourceDatabase_ListEmploye eIds_ResponseParams')
941 ..fields = <mojom_types.StructField>[
942 new mojom_types.StructField()
943 ..declData = (new mojom_types.DeclarationData()
944 ..shortName = 'Ids')
945 ..type = (new mojom_types.Type()
946 ..arrayType = (new mojom_types.ArrayType()
947 ..nullable = true
948 ..elementType = (new mojom_types.Type()
949 ..simpleType = mojom_types.SimpleType.uint64))),];
950 }
951
952
953 const int _HumanResourceDatabase_addEmployeeName = 0; 779 const int _HumanResourceDatabase_addEmployeeName = 0;
954 const int _HumanResourceDatabase_queryEmployeeName = 1; 780 const int _HumanResourceDatabase_queryEmployeeName = 1;
955 const int _HumanResourceDatabase_attachFingerPrintName = 2; 781 const int _HumanResourceDatabase_attachFingerPrintName = 2;
956 const int _HumanResourceDatabase_listEmployeeIdsName = 3; 782 const int _HumanResourceDatabase_listEmployeeIdsName = 3;
957 783
958 mojom_types.MojomInterface _versioningTestClientHumanResourceDatabase() {
959 return new mojom_types.MojomInterface()
960 ..declData = (new mojom_types.DeclarationData()
961 ..shortName = 'HumanResourceDatabase'
962 ..fullIdentifier = 'mojo.test.versioning.HumanResourceDatabase')
963 ..serviceName_ = 'HumanResourceDatabase'
964 ..methods = <int, mojom_types.MojomMethod>{
965 _HumanResourceDatabase_addEmployeeName: new mojom_types.MojomMethod()
966 ..declData = (new mojom_types.DeclarationData()
967 ..shortName = 'AddEmployee')
968 ..ordinal = _HumanResourceDatabase_addEmployeeName
969 ..responseParams = _versioningTestClientHumanResourceDatabaseAddEmployee ResponseParams()
970 ..parameters = _versioningTestClientHumanResourceDatabaseAddEmployeePara ms(),
971 _HumanResourceDatabase_queryEmployeeName: new mojom_types.MojomMethod()
972 ..declData = (new mojom_types.DeclarationData()
973 ..shortName = 'QueryEmployee')
974 ..ordinal = _HumanResourceDatabase_queryEmployeeName
975 ..responseParams = _versioningTestClientHumanResourceDatabaseQueryEmploy eeResponseParams()
976 ..parameters = _versioningTestClientHumanResourceDatabaseQueryEmployeePa rams(),
977 _HumanResourceDatabase_attachFingerPrintName: new mojom_types.MojomMethod( )
978 ..declData = (new mojom_types.DeclarationData()
979 ..shortName = 'AttachFingerPrint')
980 ..ordinal = _HumanResourceDatabase_attachFingerPrintName
981 ..responseParams = _versioningTestClientHumanResourceDatabaseAttachFinge rPrintResponseParams()
982 ..parameters = _versioningTestClientHumanResourceDatabaseAttachFingerPri ntParams(),
983 _HumanResourceDatabase_listEmployeeIdsName: new mojom_types.MojomMethod()
984 ..declData = (new mojom_types.DeclarationData()
985 ..shortName = 'ListEmployeeIds')
986 ..ordinal = _HumanResourceDatabase_listEmployeeIdsName
987 ..responseParams = _versioningTestClientHumanResourceDatabaseListEmploye eIdsResponseParams()
988 ..parameters = _versioningTestClientHumanResourceDatabaseListEmployeeIds Params(),
989 };
990 }
991
992 class _HumanResourceDatabaseServiceDescription implements service_describer.Serv iceDescription { 784 class _HumanResourceDatabaseServiceDescription implements service_describer.Serv iceDescription {
993 dynamic getTopLevelInterface([Function responseFactory]) => 785 dynamic getTopLevelInterface([Function responseFactory]){
994 responseFactory(_versioningTestClientHumanResourceDatabase()); 786 var interfaceTypeKey = getRuntimeTypeInfo().servicesByName["mojo::test::vers ioning::HumanResourceDatabase"].topLevelInterface;
787 var userDefinedType = getAllMojomTypeDefinitions()[interfaceTypeKey];
788 return responseFactory(userDefinedType.interfaceType);
789 }
995 790
996 dynamic getTypeDefinition(String typeKey, [Function responseFactory]) => 791 dynamic getTypeDefinition(String typeKey, [Function responseFactory]) =>
997 responseFactory(getAllMojomTypeDefinitions()[typeKey]); 792 responseFactory(getAllMojomTypeDefinitions()[typeKey]);
998 793
999 dynamic getAllTypeDefinitions([Function responseFactory]) => 794 dynamic getAllTypeDefinitions([Function responseFactory]) =>
1000 responseFactory(getAllMojomTypeDefinitions()); 795 responseFactory(getAllMojomTypeDefinitions());
1001 } 796 }
1002 797
1003 abstract class HumanResourceDatabase { 798 abstract class HumanResourceDatabase {
1004 static const String serviceName = "mojo::test::versioning::HumanResourceDataba se"; 799 static const String serviceName = "mojo::test::versioning::HumanResourceDataba se";
(...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after
1384 static service_describer.ServiceDescription _cachedServiceDescription; 1179 static service_describer.ServiceDescription _cachedServiceDescription;
1385 static service_describer.ServiceDescription get serviceDescription { 1180 static service_describer.ServiceDescription get serviceDescription {
1386 if (_cachedServiceDescription == null) { 1181 if (_cachedServiceDescription == null) {
1387 _cachedServiceDescription = new _HumanResourceDatabaseServiceDescription() ; 1182 _cachedServiceDescription = new _HumanResourceDatabaseServiceDescription() ;
1388 } 1183 }
1389 return _cachedServiceDescription; 1184 return _cachedServiceDescription;
1390 } 1185 }
1391 } 1186 }
1392 1187
1393 1188
1394 Map<String, mojom_types.UserDefinedType> _initDescriptions() { 1189 mojom_types.RuntimeTypeInfo getRuntimeTypeInfo() => _runtimeTypeInfo ??
1395 var map = new HashMap<String, mojom_types.UserDefinedType>(); 1190 _initRuntimeTypeInfo();
1396 map["versioning_test_client_Department__"] = 1191
1397 new mojom_types.UserDefinedType() 1192 Map<String, mojom_types.UserDefinedType> getAllMojomTypeDefinitions() {
1398 ..enumType = _versioningTestClientDepartment(); 1193 return getRuntimeTypeInfo().typeMap;
1399 map["versioning_test_client_Employee__"] =
1400 new mojom_types.UserDefinedType()
1401 ..structType = _versioningTestClientEmployee();
1402 map["versioning_test_client_HumanResourceDatabase_AddEmployee_Params__"] =
1403 new mojom_types.UserDefinedType()
1404 ..structType = _versioningTestClientHumanResourceDatabaseAddEmployeeParams ();
1405 map["versioning_test_client_HumanResourceDatabase_AddEmployee_ResponseParams__ "] =
1406 new mojom_types.UserDefinedType()
1407 ..structType = _versioningTestClientHumanResourceDatabaseAddEmployeeRespon seParams();
1408 map["versioning_test_client_HumanResourceDatabase_QueryEmployee_Params__"] =
1409 new mojom_types.UserDefinedType()
1410 ..structType = _versioningTestClientHumanResourceDatabaseQueryEmployeePara ms();
1411 map["versioning_test_client_HumanResourceDatabase_QueryEmployee_ResponseParams __"] =
1412 new mojom_types.UserDefinedType()
1413 ..structType = _versioningTestClientHumanResourceDatabaseQueryEmployeeResp onseParams();
1414 map["versioning_test_client_HumanResourceDatabase_AttachFingerPrint_Params__"] =
1415 new mojom_types.UserDefinedType()
1416 ..structType = _versioningTestClientHumanResourceDatabaseAttachFingerPrint Params();
1417 map["versioning_test_client_HumanResourceDatabase_AttachFingerPrint_ResponsePa rams__"] =
1418 new mojom_types.UserDefinedType()
1419 ..structType = _versioningTestClientHumanResourceDatabaseAttachFingerPrint ResponseParams();
1420 map["versioning_test_client_HumanResourceDatabase_ListEmployeeIds_Params__"] =
1421 new mojom_types.UserDefinedType()
1422 ..structType = _versioningTestClientHumanResourceDatabaseListEmployeeIdsPa rams();
1423 map["versioning_test_client_HumanResourceDatabase_ListEmployeeIds_ResponsePara ms__"] =
1424 new mojom_types.UserDefinedType()
1425 ..structType = _versioningTestClientHumanResourceDatabaseListEmployeeIdsRe sponseParams();
1426 map["versioning_test_client_HumanResourceDatabase__"] =
1427 new mojom_types.UserDefinedType()
1428 ..interfaceType = _versioningTestClientHumanResourceDatabase();
1429 return map;
1430 } 1194 }
1431 1195
1432 var _mojomDesc; 1196 var _runtimeTypeInfo;
1433 Map<String, mojom_types.UserDefinedType> getAllMojomTypeDefinitions() { 1197 mojom_types.RuntimeTypeInfo _initRuntimeTypeInfo() {
1434 if (_mojomDesc == null) { 1198 // serializedRuntimeTypeInfo contains the bytes of the Mojo serialization of
1435 _mojomDesc = _initDescriptions(); 1199 // a mojom_types.RuntimeTypeInfo struct describing the Mojom types in this
1436 } 1200 // file.
1437 return _mojomDesc; 1201 var serializedRuntimeTypeInfo = new Uint8List.fromList(const [24,0,0,0,0,0,0,0 ,16,0,0,0,0,0,0,0,144,1,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,80,0,0,0,0 ,0,0,0,16,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,53,0,0,0,45,0,0,0,109,111,106,111,58,58, 116,101,115,116,58,58,118,101,114,115,105,111,110,105,110,103,58,58,72,117,109,9 7,110,82,101,115,111,117,114,99,101,68,97,116,97,98,97,115,101,0,0,0,16,0,0,0,1, 0,0,0,8,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,59,0,0, 0,51,0,0,0,84,89,80,69,95,75,69,89,58,109,111,106,111,46,116,101,115,116,46,118, 101,114,115,105,111,110,105,110,103,46,72,117,109,97,110,82,101,115,111,117,114, 99,101,68,97,116,97,98,97,115,101,0,0,0,0,0,32,0,0,0,3,0,0,0,24,0,0,0,0,0,0,0,64 ,0,0,0,0,0,0,0,104,0,0,0,0,0,0,0,48,0,0,0,40,0,0,0,84,89,80,69,95,75,69,89,58,10 9,111,106,111,46,116,101,115,116,46,118,101,114,115,105,111,110,105,110,103,46,6 8,101,112,97,114,116,109,101,110,116,46,0,0,0,38,0,0,0,84,89,80,69,95,75,69,89,5 8,109,111,106,111,46,116,101,115,116,46,118,101,114,115,105,111,110,105,110,103, 46,69,109,112,108,111,121,101,101,0,0,59,0,0,0,51,0,0,0,84,89,80,69,95,75,69,89, 58,109,111,106,111,46,116,101,115,116,46,118,101,114,115,105,111,110,105,110,103 ,46,72,117,109,97,110,82,101,115,111,117,114,99,101,68,97,116,97,98,97,115,101,0 ,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,32,0,0,0,3,0,0,0,24 ,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,59,0,0,0,51,0,0,0,84,89,80,69, 95,75,69,89,58,109,111,106,111,46,116,101,115,116,46,118,101,114,115,105,111,110 ,105,110,103,46,72,117,109,97,110,82,101,115,111,117,114,99,101,68,97,116,97,98, 97,115,101,0,0,0,0,0,46,0,0,0,38,0,0,0,84,89,80,69,95,75,69,89,58,109,111,106,11 1,46,116,101,115,116,46,118,101,114,115,105,111,110,105,110,103,46,69,109,112,10 8,111,121,101,101,0,0,48,0,0,0,40,0,0,0,84,89,80,69,95,75,69,89,58,109,111,106,1 11,46,116,101,115,116,46,118,101,114,115,105,111,110,105,110,103,46,68,101,112,9 7,114,116,109,101,110,116,56,0,0,0,3,0,0,0,16,0,0,0,3,0,0,0,40,0,0,0,0,0,0,0,16, 0,0,0,1,0,0,0,112,28,0,0,0,0,0,0,16,0,0,0,0,0,0,0,88,33,0,0,0,0,0,0,32,0,0,0,0,0 ,0,0,24,0,0,0,0,0,0,0,176,1,0,0,0,0,0,0,224,1,0,0,0,0,0,0,72,0,0,0,0,0,0,0,64,0, 0,0,0,0,0,0,0,0,0,0,255,255,255,255,176,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,255,255, 255,255,0,0,0,0,240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,1,0,0 ,0,8,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,7,0,0,0,32,0,0,0,0 ,0,0,0,19,0,0,0,11,0,0,0,83,101,114,118,105,99,101,78,97,109,101,0,0,0,0,0,53,0, 0,0,45,0,0,0,109,111,106,111,58,58,116,101,115,116,58,58,118,101,114,115,105,111 ,110,105,110,103,58,58,72,117,109,97,110,82,101,115,111,117,114,99,101,68,97,116 ,97,98,97,115,101,0,0,0,29,0,0,0,21,0,0,0,72,117,109,97,110,82,101,115,111,117,1 14,99,101,68,97,116,97,98,97,115,101,0,0,0,50,0,0,0,42,0,0,0,109,111,106,111,46, 116,101,115,116,46,118,101,114,115,105,111,110,105,110,103,46,72,117,109,97,110, 82,101,115,111,117,114,99,101,68,97,116,97,98,97,
1202 115,101,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,23,0,0,0,10,0,0,0,99,0,0,0 ,91,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,1 06,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116, 101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,1 15,47,118,101,114,115,105,111,110,105,110,103,95,116,101,115,116,95,99,108,105,1 01,110,116,46,109,111,106,111,109,0,0,0,0,0,53,0,0,0,45,0,0,0,109,111,106,111,58 ,58,116,101,115,116,58,58,118,101,114,115,105,111,110,105,110,103,58,58,72,117,1 09,97,110,82,101,115,111,117,114,99,101,68,97,116,97,98,97,115,101,0,0,0,24,0,0, 0,0,0,0,0,16,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,24,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,0 ,0,0,3,0,0,0,40,0,0,0,4,0,0,0,32,0,0,0,0,0,0,0,208,5,0,0,0,0,0,0,120,14,0,0,0,0, 0,0,104,21,0,0,0,0,0,0,40,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,248,0,0,0,0,0,0,0,120,3 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,25 5,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,48,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,11,0,0,0,65,100,100,69,109,112,108,111, 121,101,101,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,24,0,0,0,2,0,0,0,99,0,0, 0,91,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111, 106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116 ,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116, 115,47,118,101,114,115,105,111,110,105,110,103,95,116,101,115,116,95,99,108,105, 101,110,116,46,109,111,106,111,109,0,0,0,0,0,32,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,2 48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,25 5,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,56,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,19,0,0,0,65,100,100,69,109,112,108, 111,121,101,101,45,114,101,113,117,101,115,116,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0 ,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,91,0,0,0,47,104,111,109,101,47,114,117,100,1 11,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,11 2,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,1 05,110,103,115,47,116,101,115,116,115,47,118,101,114,115,105,111,110,105,110,103 ,95,116,101,115,116,95,99,108,105,101,110,116,46,109,111,106,111,109,0,0,0,0,0,1 6,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,5,0,0 ,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2 55,255,255,255,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0 ,8,0,0,0,101,109,112,108,111,121,101,101,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,24,0, 0,0,23,0,0,0,99,0,0,0,91,0,0,0,
1203 47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47, 115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,10 2,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,118, 101,114,115,105,111,110,105,110,103,95,116,101,115,116,95,99,108,105,101,110,116 ,46,109,111,106,111,109,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0, 0,0,24,0,0,0,0,0,0,0,16,0,0,0,8,0,0,0,69,109,112,108,111,121,101,101,46,0,0,0,38 ,0,0,0,84,89,80,69,95,75,69,89,58,109,111,106,111,46,116,101,115,116,46,118,101, 114,115,105,111,110,105,110,103,46,69,109,112,108,111,121,101,101,0,0,32,0,0,0,0 ,0,0,0,24,0,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255, 255,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,20,0,0,0,6 5,100,100,69,109,112,108,111,121,101,101,45,114,101,115,112,111,110,115,101,0,0, 0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,91,0,0,0,47,104,1 11,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114, 99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99, 101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,118,101,114, 115,105,111,110,105,110,103,95,116,101,115,116,95,99,108,105,101,110,116,46,109, 111,106,111,109,0,0,0,0,0,16,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,48,0 ,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,0,0,0,0,15,0,0,0,7,0,0,0,115,117,99,99,101,115,115,0,24,0,0,0,0,0,0,0,1 6,0,0,0,0,0,0,0,24,0,0,0,42,0,0,0,99,0,0,0,91,0,0,0,47,104,111,109,101,47,114,11 7,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,11 1,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,11 0,100,105,110,103,115,47,116,101,115,116,115,47,118,101,114,115,105,111,110,105, 110,103,95,116,101,115,116,95,99,108,105,101,110,116,46,109,111,106,111,109,0,0, 0,0,0,40,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,248,0,0,0,0,0,0,0,136,4,0,0,0,0,0,0,1,0, 0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,0,0,0,21,0,0,0,13,0,0,0,81,117,101,114,121,69,109,112,108,111,121,101,1 01,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,26,0,0,0,2,0,0,0,99,0,0,0,91,0,0,0,47 ,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,11 5,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102, 97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,118,10 1,114,115,105,111,110,105,110,103,95,116,101,115,116,95,99,108,105,101,110,116,4 6,109,111,
1204 106,111,109,0,0,0,0,0,32,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,0,0,29,0,0,0,21,0,0,0,81,117,101,114,121,69,109,112,108,111,121,101,101 ,45,114,101,113,117,101,115,116,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,99,0,0,0,91,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101, 114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99 ,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,1 16,101,115,116,115,47,118,101,114,115,105,111,110,105,110,103,95,116,101,115,116 ,95,99,108,105,101,110,116,46,109,111,106,111,109,0,0,0,0,0,24,0,0,0,2,0,0,0,16, 0,0,0,0,0,0,0,24,1,0,0,0,0,0,0,56,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,0,0,0, 0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255 ,255,255,255,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,2 ,0,0,0,105,100,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,26,0,0,0,23,0,0,0,9 9,0,0,0,91,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,10 9,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,1 10,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,11 5,116,115,47,118,101,114,115,105,111,110,105,110,103,95,116,101,115,116,95,99,10 8,105,101,110,116,46,109,111,106,111,109,0,0,0,0,0,56,0,0,0,0,0,0,0,48,0,0,0,0,0 ,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,72,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,120,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,16,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,1 6,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,18,0,0,0,10,0,0,0,77,105,110,86,101,114,115,105, 111,110,0,0,0,0,0,0,29,0,0,0,21,0,0,0,114,101,116,114,105,101,118,101,95,102,105 ,110,103,101,114,95,112,114,105,110,116,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0, 26,0,0,0,47,0,0,0,99,0,0,0,91,0,0,0,47,104,111,109,101,47,114,117,100,111,109,10 5,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98, 108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,10 3,115,47,116,101,115,116,115,47,118,101,114,115,105,111,110,105,110,103,95,116,1 01,115,116,95,99,108,105,101,110,116,46,109,111,106,111,109,0,0,0,0,0,32,0,0,0,0 ,0,0,0,24,0,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
1205 255,255,255,255,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0, 0,22,0,0,0,81,117,101,114,121,69,109,112,108,111,121,101,101,45,114,101,115,112, 111,110,115,101,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,9 1,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106 ,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,10 1,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115 ,47,118,101,114,115,105,111,110,105,110,103,95,116,101,115,116,95,99,108,105,101 ,110,116,46,109,111,106,111,109,0,0,0,0,0,24,0,0,0,2,0,0,0,16,0,0,0,0,0,0,0,120, 1,0,0,0,0,0,0,56,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,5,0,0,0,248,0,0,0,0,0,0 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0 ,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,8,0,0,0,101,109,1 12,108,111,121,101,101,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,27,0,0,0,20,0,0,0,99,0, 0,0,91,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,11 1,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,1 16,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,11 6,115,47,118,101,114,115,105,111,110,105,110,103,95,116,101,115,116,95,99,108,10 5,101,110,116,46,109,111,106,111,109,0,0,0,0,0,32,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0, 16,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,8,0,0,0,69,109,112,108,111,121,101,10 1,46,0,0,0,38,0,0,0,84,89,80,69,95,75,69,89,58,109,111,106,111,46,116,101,115,11 6,46,118,101,114,115,105,111,110,105,110,103,46,69,109,112,108,111,121,101,101,0 ,0,56,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,2,0,0,0,72,1,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0 ,255,255,255,255,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,120,0 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,32 ,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,18,0,0,0,10,0,0 ,0,77,105,110,86,101,114,115,105,111,110,0,0,0,0,0,0,20,0,0,0,12,0,0,0,102,105,1 10,103,101,114,95,112,114,105,110,116,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0, 27,0,0,0,59,0,0,0,99,0,0,0,91,0,0,0,47,104,111,109,101,47,114,117,100,111,109,10 5,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98, 108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,10 3,115,47,116,101,115,116,115,47,118,101,114,115,105,111,110,105,110,103,95,116,1 01,115,116,95,99,108,105,101,110,116,46,109,111,106,111,109,0,0,0,0,0,32,0,0,0,0 ,0,0,0,1,0,0,0,255,255,255,255,16,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0 ,32,0,0,0,0,0,0,0,72,1,0,0,0,0,0,0,176,4,0,0,0,0,0,0,
1206 2,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,120,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,24,0,0,0 ,0,0,0,0,16,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,18,0,0,0,10,0,0,0,77,105,110,86,101,11 4,115,105,111,110,0,0,0,0,0,0,25,0,0,0,17,0,0,0,65,116,116,97,99,104,70,105,110, 103,101,114,80,114,105,110,116,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,3 0,0,0,0,2,0,0,0,99,0,0,0,91,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105, 110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,10 8,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103, 115,47,116,101,115,116,115,47,118,101,114,115,105,111,110,105,110,103,95,116,101 ,115,116,95,99,108,105,101,110,116,46,109,111,106,111,109,0,0,0,0,0,32,0,0,0,0,0 ,0,0,24,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255, 0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,25,0,0,0,65,11 6,116,97,99,104,70,105,110,103,101,114,80,114,105,110,116,45,114,101,113,117,101 ,115,116,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0, 0,91,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111, 106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116 ,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116, 115,47,118,101,114,115,105,111,110,105,110,103,95,116,101,115,116,95,99,108,105, 101,110,116,46,109,111,106,111,109,0,0,0,0,0,24,0,0,0,2,0,0,0,16,0,0,0,0,0,0,0,2 4,1,0,0,0,0,0,0,56,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,10,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0, 0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,2,0,0,0,105,100, 0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,30,0,0,0,27,0,0,0,99,0,0,0,91,0,0, 0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,4 7,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114, 102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,11 8,101,114,115,105,111,110,105,110,103,95,116,101,115,116,95,99,108,105,101,110,1 16,46,109,111,106,111,109,0,0,0,0,0,56,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,2 ,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,255,255,255,255,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
1207 0,0,0,0,0,0,0,0,20,0,0,0,12,0,0,0,102,105,110,103,101,114,95,112,114,105,110,116 ,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,30,0,0,0,44,0,0,0,99,0,0,0,91,0,0,0,4 7,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,1 15,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102 ,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,118,1 01,114,115,105,111,110,105,110,103,95,116,101,115,116,95,99,108,105,101,110,116, 46,109,111,106,111,109,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,16,0,0 ,0,0,0,0,0,7,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0 ,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0 ,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,34,0,0,0,26,0,0,0,65,116,116,97,99,104,70,105,110,103,101,114,80 ,114,105,110,116,45,114,101,115,112,111,110,115,101,0,0,0,0,0,0,24,0,0,0,0,0,0,0 ,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,91,0,0,0,47,104,111,109,101,47,114,11 7,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,11 1,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,11 0,100,105,110,103,115,47,116,101,115,116,115,47,118,101,114,115,105,111,110,105, 110,103,95,116,101,115,116,95,99,108,105,101,110,116,46,109,111,106,111,109,0,0, 0,0,0,16,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,255,255,255,255,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15, 0,0,0,7,0,0,0,115,117,99,99,101,115,115,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,31,0 ,0,0,15,0,0,0,99,0,0,0,91,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,11 0,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108, 105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,11 5,47,116,101,115,116,115,47,118,101,114,115,105,111,110,105,110,103,95,116,101,1 15,116,95,99,108,105,101,110,116,46,109,111,106,111,109,0,0,0,0,0,40,0,0,0,0,0,0 ,0,32,0,0,0,0,0,0,0,64,1,0,0,0,0,0,0,72,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,72,0,0,0,0 ,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,255,255,255,255,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0 ,0,0,1,0,0,0,8,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,3,0,0,0, 2,0,0,0,0,0,0,0,18,0,0,0,10,0,0,0,77,105,110,86,101,114,115,105,111,110,0,0,0,0, 0,0,23,0,0,0,15,0,0,0,76,105,115,116,69,109,112,108,111,121,101,101,73,100,115,0 ,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,34,0,0,0,2,0,0,0,99,0,0,0,91,0,0,0,47,104,111 ,109,101,47,114,117,
1208 100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111, 47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110, 100,105,110,103,115,47,116,101,115,116,115,47,118,101,114,115,105,111,110,105,11 0,103,95,116,101,115,116,95,99,108,105,101,110,116,46,109,111,106,111,109,0,0,0, 0,0,32,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,255,255,255,255,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0, 0,0,23,0,0,0,76,105,115,116,69,109,112,108,111,121,101,101,73,100,115,45,114,101 ,113,117,101,115,116,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0, 0,91,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111, 106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116 ,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116, 115,47,118,101,114,115,105,111,110,105,110,103,95,116,101,115,116,95,99,108,105, 101,110,116,46,109,111,106,111,109,0,0,0,0,0,8,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,24 ,0,0,0,0,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0 ,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,24,0,0,0,76,105,115 ,116,69,109,112,108,111,121,101,101,73,100,115,45,114,101,115,112,111,110,115,10 1,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,91,0,0,0,47,104,111 ,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99 ,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,10 1,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,118,101,114,11 5,105,111,110,105,110,103,95,116,101,115,116,95,99,108,105,101,110,116,46,109,11 1,106,111,109,0,0,0,0,0,16,0,0,0,1,0,0,0,8,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,48,0,0 ,0,0,0,0,0,16,0,0,0,2,0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,0,0,0,0,11,0,0,0,3,0,0,0,105,100,115,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0, 0,0,0,0,0,34,0,0,0,39,0,0,0,99,0,0,0,91,0,0,0,47,104,111,109,101,47,114,117,100, 111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,1 12,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100, 105,110,103,115,47,116,101,115,116,115,47,118,101,114,115,105,111,110,105,110,10 3,95,116,101,115,116,95,99,108,105,101,110,116,46,109,111,106,111,109,0,0,0,0,0, 32,0,0,0,0,0,0,0,1,0,0,0,255,255,255,255,16,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,32,0, 0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0 ,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,
1209 48,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,8,0,0,0,69,109,112,108,111,121,101,101,37,0, 0,0,29,0,0,0,109,111,106,111,46,116,101,115,116,46,118,101,114,115,105,111,110,1 05,110,103,46,69,109,112,108,111,121,101,101,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0 ,0,0,16,0,0,0,7,0,0,0,99,0,0,0,91,0,0,0,47,104,111,109,101,47,114,117,100,111,10 9,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117 ,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,11 0,103,115,47,116,101,115,116,115,47,118,101,114,115,105,111,110,105,110,103,95,1 16,101,115,116,95,99,108,105,101,110,116,46,109,111,106,111,109,0,0,0,0,0,32,0,0 ,0,3,0,0,0,24,0,0,0,0,0,0,0,40,1,0,0,0,0,0,0,64,2,0,0,0,0,0,0,56,0,0,0,0,0,0,0,4 8,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,0,0,0,0,0,0,19,0,0,0,11,0,0,0,101,109,112,108,111,121,101,101,95,105,10 0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,17,0,0,0,9,0,0,0,99,0,0,0,91,0,0,0 ,47,104,111,109,101,47,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47 ,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,1 02,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116,101,115,116,115,47,118 ,101,114,115,105,111,110,105,110,103,95,116,101,115,116,95,99,108,105,101,110,11 6,46,109,111,106,111,109,0,0,0,0,0,56,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,1, 0,0,0,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0 ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,255,255,255,255,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0, 0,0,4,0,0,0,110,97,109,101,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,18,0,0,0,9, 0,0,0,99,0,0,0,91,0,0,0,47,104,111,109,101,47,114,117,100,111,109,105,110,101,11 4,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98,108,105,99,4 7,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,103,115,47,116 ,101,115,116,115,47,118,101,114,115,105,111,110,105,110,103,95,116,101,115,116,9 5,99,108,105,101,110,116,46,109,111,106,111,109,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,0,56,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,16,0,0,0,5,0,0,0,0,1,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0, 48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,10,0,0,0,100,101,112,9 7,114,116,109,101,110,116,0,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,
1210 19,0,0,0,13,0,0,0,99,0,0,0,91,0,0,0,47,104,111,109,101,47,114,117,100,111,109,10 5,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98, 108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,10 3,115,47,116,101,115,116,115,47,118,101,114,115,105,111,110,105,110,103,95,116,1 01,115,116,95,99,108,105,101,110,116,46,109,111,106,111,109,0,0,0,0,0,32,0,0,0,0 ,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,18,0,0,0,10,0,0,0,68,10 1,112,97,114,116,109,101,110,116,0,0,0,0,0,0,48,0,0,0,40,0,0,0,84,89,80,69,95,75 ,69,89,58,109,111,106,111,46,116,101,115,116,46,118,101,114,115,105,111,110,105, 110,103,46,68,101,112,97,114,116,109,101,110,116,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0 ,0,16,1,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48, 0,0,0,0,0,0,0,64,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,10,0,0,0,68,101,112,97,114,116,109,101,110,116, 0,0,0,0,0,0,39,0,0,0,31,0,0,0,109,111,106,111,46,116,101,115,116,46,118,101,114, 115,105,111,110,105,110,103,46,68,101,112,97,114,116,109,101,110,116,0,24,0,0,0, 0,0,0,0,16,0,0,0,0,0,0,0,11,0,0,0,5,0,0,0,99,0,0,0,91,0,0,0,47,104,111,109,101,4 7,114,117,100,111,109,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,11 1,106,111,47,112,117,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,9 8,105,110,100,105,110,103,115,47,116,101,115,116,115,47,118,101,114,115,105,111, 110,105,110,103,95,116,101,115,116,95,99,108,105,101,110,116,46,109,111,106,111, 109,0,0,0,0,0,24,0,0,0,2,0,0,0,16,0,0,0,0,0,0,0,112,1,0,0,0,0,0,0,48,0,0,0,0,0,0 ,0,40,0,0,0,0,0,0,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0,0,0,0,0,5 6,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,13,0,0,0,5,0,0,0,83,65,76,69,83,0,0,0,45,0,0,0,37,0,0,0,109,111,106,111 ,46,116,101,115,116,46,118,101,114,115,105,111,110,105,110,103,46,68,101,112,97, 114,116,109,101,110,116,46,83,65,76,69,83,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0,0, 0,12,0,0,0,2,0,0,0,99,0,0,0,91,0,0,0,47,104,111,109,101,47,114,117,100,111,109,1 05,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117,98 ,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,110,1 03,115,47,116,101,115,116,115,47,118,101,114,115,105,111,110,105,110,103,95,116, 101,115,116,95,99,108,105,101,110,116,46,109,111,106,111,109,0,0,0,0,0,48,0,0,0, 40,0,0,0,84,89,80,69,95,75,69,89,58,109,111,106,111,46,116,101,115,116,46,118,10 1,114,115,105,111,110,105,110,103,46,68,101,112,97,114,116,109,101,110,116,48,0, 0,0,0,0,0,0,40,0,0,0,0,0,0,0,40,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, 0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,255,255,255,255,48,0,0,0, 0,0,0,0,56,0,0,0,0,0,0,0,255,255,255,255,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,
1211 0,0,0,0,0,0,0,0,11,0,0,0,3,0,0,0,68,69,86,0,0,0,0,0,43,0,0,0,35,0,0,0,109,111,10 6,111,46,116,101,115,116,46,118,101,114,115,105,111,110,105,110,103,46,68,101,11 2,97,114,116,109,101,110,116,46,68,69,86,0,0,0,0,0,24,0,0,0,0,0,0,0,16,0,0,0,0,0 ,0,0,13,0,0,0,2,0,0,0,99,0,0,0,91,0,0,0,47,104,111,109,101,47,114,117,100,111,10 9,105,110,101,114,47,109,111,106,111,47,115,114,99,47,109,111,106,111,47,112,117 ,98,108,105,99,47,105,110,116,101,114,102,97,99,101,115,47,98,105,110,100,105,11 0,103,115,47,116,101,115,116,115,47,118,101,114,115,105,111,110,105,110,103,95,1 16,101,115,116,95,99,108,105,101,110,116,46,109,111,106,111,109,0,0,0,0,0,48,0,0 ,0,40,0,0,0,84,89,80,69,95,75,69,89,58,109,111,106,111,46,116,101,115,116,46,118 ,101,114,115,105,111,110,105,110,103,46,68,101,112,97,114,116,109,101,110,116]);
1212
1213 // Deserialize RuntimeTypeInfo
1214 var bdata = new ByteData.view(serializedRuntimeTypeInfo.buffer);
1215 var message = new bindings.Message(bdata, null, serializedRuntimeTypeInfo.leng th, 0);
1216 _runtimeTypeInfo = mojom_types.RuntimeTypeInfo.deserialize(message);
1217 return _runtimeTypeInfo;
1438 } 1218 }
1439
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698