-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConfiguration.xml
1685 lines (1685 loc) · 130 KB
/
Configuration.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<MetaDataObject xmlns="http://v8.1c.ru/8.3/MDClasses" xmlns:app="http://v8.1c.ru/8.2/managed-application/core" xmlns:cfg="http://v8.1c.ru/8.1/data/enterprise/current-config" xmlns:cmi="http://v8.1c.ru/8.2/managed-application/cmi" xmlns:ent="http://v8.1c.ru/8.1/data/enterprise" xmlns:lf="http://v8.1c.ru/8.2/managed-application/logform" xmlns:style="http://v8.1c.ru/8.1/data/ui/style" xmlns:sys="http://v8.1c.ru/8.1/data/ui/fonts/system" xmlns:v8="http://v8.1c.ru/8.1/data/core" xmlns:v8ui="http://v8.1c.ru/8.1/data/ui" xmlns:web="http://v8.1c.ru/8.1/data/ui/colors/web" xmlns:win="http://v8.1c.ru/8.1/data/ui/colors/windows" xmlns:xen="http://v8.1c.ru/8.3/xcf/enums" xmlns:xpr="http://v8.1c.ru/8.3/xcf/predef" xmlns:xr="http://v8.1c.ru/8.3/xcf/readable" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.15">
<Configuration uuid="532b5ff4-c7d5-4bbb-8705-834579bbd49a">
<InternalInfo>
<xr:ContainedObject>
<xr:ClassId>9cd510cd-abfc-11d4-9434-004095e12fc7</xr:ClassId>
<xr:ObjectId>dcea819a-31c5-4f6d-add9-cd5a9b5553a4</xr:ObjectId>
</xr:ContainedObject>
<xr:ContainedObject>
<xr:ClassId>9fcd25a0-4822-11d4-9414-008048da11f9</xr:ClassId>
<xr:ObjectId>21339205-58fd-46d8-b038-643b583dff57</xr:ObjectId>
</xr:ContainedObject>
<xr:ContainedObject>
<xr:ClassId>e3687481-0a87-462c-a166-9f34594f9bba</xr:ClassId>
<xr:ObjectId>5659d03c-872b-4476-ac74-e450ff5d1f5f</xr:ObjectId>
</xr:ContainedObject>
<xr:ContainedObject>
<xr:ClassId>9de14907-ec23-4a07-96f0-85521cb6b53b</xr:ClassId>
<xr:ObjectId>2a692f2c-950f-4367-9afd-f1205bc8c295</xr:ObjectId>
</xr:ContainedObject>
<xr:ContainedObject>
<xr:ClassId>51f2d5d8-ea4d-4064-8892-82951750031e</xr:ClassId>
<xr:ObjectId>c0bef3d0-6261-43fa-89f1-55acac3926ba</xr:ObjectId>
</xr:ContainedObject>
<xr:ContainedObject>
<xr:ClassId>e68182ea-4237-4383-967f-90c1e3370bc7</xr:ClassId>
<xr:ObjectId>44170f19-151b-4dd7-8c4d-319a66f98aea</xr:ObjectId>
</xr:ContainedObject>
<xr:ContainedObject>
<xr:ClassId>fb282519-d103-4dd3-bc12-cb271d631dfc</xr:ClassId>
<xr:ObjectId>2c19628d-b08a-4e53-9537-b7674ab07f9e</xr:ObjectId>
</xr:ContainedObject>
</InternalInfo>
<Properties>
<Name>УправлениеРазработкой</Name>
<Synonym>
<v8:item>
<v8:lang>ru</v8:lang>
<v8:content>Управление разработкой</v8:content>
</v8:item>
</Synonym>
<Comment/>
<NamePrefix/>
<ConfigurationExtensionCompatibilityMode>Version8_3_22</ConfigurationExtensionCompatibilityMode>
<DefaultRunMode>ManagedApplication</DefaultRunMode>
<UsePurposes>
<v8:Value xsi:type="app:ApplicationUsePurpose">PlatformApplication</v8:Value>
</UsePurposes>
<ScriptVariant>Russian</ScriptVariant>
<DefaultRoles>
<xr:Item xsi:type="xr:MDObjectRef">Role.ПолныеПрава</xr:Item>
<xr:Item xsi:type="xr:MDObjectRef">Role.АдминистраторСистемы</xr:Item>
<xr:Item xsi:type="xr:MDObjectRef">Role.ИнтерактивноеОткрытиеВнешнихОтчетовИОбработок</xr:Item>
</DefaultRoles>
<Vendor>Мир инструментов</Vendor>
<Version>1.0.0.1</Version>
<UpdateCatalogAddress/>
<IncludeHelpInContents>false</IncludeHelpInContents>
<UseManagedFormInOrdinaryApplication>false</UseManagedFormInOrdinaryApplication>
<UseOrdinaryFormInManagedApplication>false</UseOrdinaryFormInManagedApplication>
<AdditionalFullTextSearchDictionaries/>
<CommonSettingsStorage/>
<ReportsUserSettingsStorage/>
<ReportsVariantsStorage/>
<FormDataSettingsStorage/>
<DynamicListsUserSettingsStorage/>
<URLExternalDataStorage/>
<Content/>
<DefaultReportForm/>
<DefaultReportVariantForm/>
<DefaultReportSettingsForm/>
<DefaultReportAppearanceTemplate/>
<DefaultDynamicListSettingsForm/>
<DefaultSearchForm/>
<DefaultDataHistoryChangeHistoryForm/>
<DefaultDataHistoryVersionDataForm/>
<DefaultDataHistoryVersionDifferencesForm/>
<DefaultCollaborationSystemUsersChoiceForm/>
<RequiredMobileApplicationPermissions/>
<UsedMobileApplicationFunctionalities>
<app:functionality>
<app:functionality>Biometrics</app:functionality>
<app:use>true</app:use>
</app:functionality>
<app:functionality>
<app:functionality>Location</app:functionality>
<app:use>false</app:use>
</app:functionality>
<app:functionality>
<app:functionality>BackgroundLocation</app:functionality>
<app:use>false</app:use>
</app:functionality>
<app:functionality>
<app:functionality>BluetoothPrinters</app:functionality>
<app:use>false</app:use>
</app:functionality>
<app:functionality>
<app:functionality>WiFiPrinters</app:functionality>
<app:use>false</app:use>
</app:functionality>
<app:functionality>
<app:functionality>Contacts</app:functionality>
<app:use>false</app:use>
</app:functionality>
<app:functionality>
<app:functionality>Calendars</app:functionality>
<app:use>false</app:use>
</app:functionality>
<app:functionality>
<app:functionality>PushNotifications</app:functionality>
<app:use>false</app:use>
</app:functionality>
<app:functionality>
<app:functionality>LocalNotifications</app:functionality>
<app:use>false</app:use>
</app:functionality>
<app:functionality>
<app:functionality>InAppPurchases</app:functionality>
<app:use>false</app:use>
</app:functionality>
<app:functionality>
<app:functionality>PersonalComputerFileExchange</app:functionality>
<app:use>false</app:use>
</app:functionality>
<app:functionality>
<app:functionality>Ads</app:functionality>
<app:use>false</app:use>
</app:functionality>
<app:functionality>
<app:functionality>NumberDialing</app:functionality>
<app:use>false</app:use>
</app:functionality>
<app:functionality>
<app:functionality>CallProcessing</app:functionality>
<app:use>false</app:use>
</app:functionality>
<app:functionality>
<app:functionality>CallLog</app:functionality>
<app:use>false</app:use>
</app:functionality>
<app:functionality>
<app:functionality>AutoSendSMS</app:functionality>
<app:use>false</app:use>
</app:functionality>
<app:functionality>
<app:functionality>ReceiveSMS</app:functionality>
<app:use>false</app:use>
</app:functionality>
<app:functionality>
<app:functionality>SMSLog</app:functionality>
<app:use>false</app:use>
</app:functionality>
<app:functionality>
<app:functionality>Camera</app:functionality>
<app:use>false</app:use>
</app:functionality>
<app:functionality>
<app:functionality>Microphone</app:functionality>
<app:use>false</app:use>
</app:functionality>
<app:functionality>
<app:functionality>MusicLibrary</app:functionality>
<app:use>false</app:use>
</app:functionality>
<app:functionality>
<app:functionality>PictureAndVideoLibraries</app:functionality>
<app:use>false</app:use>
</app:functionality>
<app:functionality>
<app:functionality>AudioPlaybackAndVibration</app:functionality>
<app:use>false</app:use>
</app:functionality>
<app:functionality>
<app:functionality>BackgroundAudioPlaybackAndVibration</app:functionality>
<app:use>false</app:use>
</app:functionality>
<app:functionality>
<app:functionality>InstallPackages</app:functionality>
<app:use>false</app:use>
</app:functionality>
<app:functionality>
<app:functionality>OSBackup</app:functionality>
<app:use>true</app:use>
</app:functionality>
<app:functionality>
<app:functionality>ApplicationUsageStatistics</app:functionality>
<app:use>false</app:use>
</app:functionality>
<app:functionality>
<app:functionality>BarcodeScanning</app:functionality>
<app:use>false</app:use>
</app:functionality>
<app:functionality>
<app:functionality>BackgroundAudioRecording</app:functionality>
<app:use>false</app:use>
</app:functionality>
<app:functionality>
<app:functionality>AllFilesAccess</app:functionality>
<app:use>false</app:use>
</app:functionality>
<app:functionality>
<app:functionality>Videoconferences</app:functionality>
<app:use>false</app:use>
</app:functionality>
</UsedMobileApplicationFunctionalities>
<StandaloneConfigurationRestrictionRoles/>
<MobileApplicationURLs/>
<MainClientApplicationWindowMode>Normal</MainClientApplicationWindowMode>
<DefaultInterface/>
<DefaultStyle/>
<DefaultLanguage>Language.Русский</DefaultLanguage>
<BriefInformation/>
<DetailedInformation/>
<Copyright/>
<VendorInformationAddress/>
<ConfigurationInformationAddress/>
<DataLockControlMode>Managed</DataLockControlMode>
<ObjectAutonumerationMode>NotAutoFree</ObjectAutonumerationMode>
<ModalityUseMode>UseWithWarnings</ModalityUseMode>
<SynchronousPlatformExtensionAndAddInCallUseMode>Use</SynchronousPlatformExtensionAndAddInCallUseMode>
<InterfaceCompatibilityMode>TaxiEnableVersion8_2</InterfaceCompatibilityMode>
<CompatibilityMode>Version8_3_22</CompatibilityMode>
<DefaultConstantsForm/>
</Properties>
<ChildObjects>
<Language>Русский</Language>
<Subsystem>Администрирование</Subsystem>
<Subsystem>ПодключаемыеОтчетыИОбработки</Subsystem>
<Subsystem>СтандартныеПодсистемы</Subsystem>
<Subsystem>УправлениеРазработкой</Subsystem>
<StyleItem>ВажнаяНадписьШрифт</StyleItem>
<StyleItem>ГруппаВариантовОтчетовЦвет</StyleItem>
<StyleItem>ГруппаВариантовОтчетовОбычнаяШрифт</StyleItem>
<StyleItem>ВычисленноеПравоДоступаЦвет</StyleItem>
<StyleItem>ГиперссылкаЦвет</StyleItem>
<StyleItem>ГруппаВариантовОтчетовЦвет82</StyleItem>
<StyleItem>ДействиеВКолонкеСпискаШрифт</StyleItem>
<StyleItem>ЗаголовокУдаленногоРеквизитаШрифт</StyleItem>
<StyleItem>ДобавленныйРеквизитФон</StyleItem>
<StyleItem>ВладелецФайловШрифт</StyleItem>
<StyleItem>ЗаблокированныйРеквизитЦвет</StyleItem>
<StyleItem>ГруппаВариантовОтчетовВажнаяШрифт</StyleItem>
<StyleItem>ЗапрещенноеПравоДоступаЦвет</StyleItem>
<StyleItem>ИзмененноеЗначениеРеквизитаФон</StyleItem>
<StyleItem>ИзмененноеЗначениеРеквизитаЦвет</StyleItem>
<StyleItem>ИтогиФонГруппы</StyleItem>
<StyleItem>КонтактнаяИнформацияСРедактированиемВДиалогеЦвет</StyleItem>
<StyleItem>МоиВариантыОтчетовЦвет</StyleItem>
<StyleItem>НеназначенноеПравоДоступаЦвет</StyleItem>
<StyleItem>ОбразецНастройкиКолонтитуловЦвет</StyleItem>
<StyleItem>ОбразецНастройкиКолонтитуловШрифт</StyleItem>
<StyleItem>ОсновнойЭлементСписка</StyleItem>
<StyleItem>ОшибкаПолнотекстовыйПоискФон</StyleItem>
<StyleItem>ПользовательВыбранный</StyleItem>
<StyleItem>ПоясняющийОшибкуТекст</StyleItem>
<StyleItem>ПоясняющийТекст</StyleItem>
<StyleItem>ПравоНедействительногоПользователяФон</StyleItem>
<StyleItem>ПравоПросмотраФон</StyleItem>
<StyleItem>ПравоРедактированияФон</StyleItem>
<StyleItem>ПравоСозданияФон</StyleItem>
<StyleItem>ПросроченныеДанныеЦвет</StyleItem>
<StyleItem>РазделВариантовОтчетовШрифт</StyleItem>
<StyleItem>РазрешенноеПравоДоступаЦвет</StyleItem>
<StyleItem>РезультатУспехЦвет</StyleItem>
<StyleItem>СкрытыйВариантОтчетаЦвет</StyleItem>
<StyleItem>ТекстЗапрещеннойЯчейкиЦвет</StyleItem>
<StyleItem>УдаленныйРеквизитФон</StyleItem>
<StyleItem>ФайлЗанятыйТекущимПользователем</StyleItem>
<StyleItem>ФонРезультатовПоиска</StyleItem>
<StyleItem>ФонУправляющегоПоля</StyleItem>
<StyleItem>ЦветМеткиГолубой</StyleItem>
<StyleItem>ЦветМеткиЖелтый</StyleItem>
<StyleItem>ЦветМеткиЗеленый</StyleItem>
<StyleItem>ЦветМеткиКрасный</StyleItem>
<StyleItem>ЦветМеткиЛаймовый</StyleItem>
<StyleItem>ЦветМеткиОранжевый</StyleItem>
<StyleItem>ЦветМеткиРозовый</StyleItem>
<StyleItem>ЦветМеткиСерый</StyleItem>
<StyleItem>ЦветМеткиСиний</StyleItem>
<StyleItem>ЦветМеткиФиолетовый</StyleItem>
<StyleItem>ЦветПустойГиперссылки</StyleItem>
<StyleItem>ЦветРазделаПанелиФункций</StyleItem>
<StyleItem>ЦветТекстаВнимание</StyleItem>
<StyleItem>ЦветТекстаМетки</StyleItem>
<StyleItem>ЦветТекстаНевыбраннойКартинки</StyleItem>
<StyleItem>ЦветТекстаОтрицательногоЗначения</StyleItem>
<StyleItem>ЦветТекстаПоложительногоЗначения</StyleItem>
<StyleItem>ЦветФонаВнимание</StyleItem>
<StyleItem>ЦветФонаОтрицательногоЗначения</StyleItem>
<StyleItem>ЦветФонаПоложительногоЗначения</StyleItem>
<StyleItem>ЦветФонаПредупреждения</StyleItem>
<StyleItem>ШрифтМеток</StyleItem>
<CommonPicture>GoogleMaps</CommonPicture>
<CommonPicture>ИнформацияПоНедоступнымПолям</CommonPicture>
<CommonPicture>ИспользованиеМакета</CommonPicture>
<CommonPicture>ДокументПроведенКоннекторЛевоВерх</CommonPicture>
<CommonPicture>ДокументПроведенКоннекторЛевоНиз</CommonPicture>
<CommonPicture>Адрес</CommonPicture>
<CommonPicture>ДополнительныеРеквизитыСведения</CommonPicture>
<CommonPicture>ДополнительныеСведения</CommonPicture>
<CommonPicture>Другое</CommonPicture>
<CommonPicture>ЗавершитьРаботу</CommonPicture>
<CommonPicture>ЗавершитьРедактированиеМакета</CommonPicture>
<CommonPicture>ЗакончитьРедактированиеФайла</CommonPicture>
<CommonPicture>Закрепить</CommonPicture>
<CommonPicture>ЗанятьФайл</CommonPicture>
<CommonPicture>ЗапланированноеВзаимодействие</CommonPicture>
<CommonPicture>ЗаполнитьФорму</CommonPicture>
<CommonPicture>ЗаставкаВнешнейОперации</CommonPicture>
<CommonPicture>Зашифрован</CommonPicture>
<CommonPicture>ЗнакСтоп</CommonPicture>
<CommonPicture>ЗначокЗаставкиВнешнейОперации</CommonPicture>
<CommonPicture>АнализДанных48</CommonPicture>
<CommonPicture>ИерархическийСписок</CommonPicture>
<CommonPicture>ИзменитьШрифт</CommonPicture>
<CommonPicture>Информация32</CommonPicture>
<CommonPicture>ИспользоватьПользовательскийМакет</CommonPicture>
<CommonPicture>ВажностьНизкая</CommonPicture>
<CommonPicture>БыстрыйДоступУдалить</CommonPicture>
<CommonPicture>БыстрыйДоступДобавить</CommonPicture>
<CommonPicture>ВнешняяКомпонентаДоступна</CommonPicture>
<CommonPicture>ВидыНавигацииПоВзаимодействиямОтПредметовВзаимодействий</CommonPicture>
<CommonPicture>ВидыНавигацииПоВзаимодействиямОтДопРеквизитовСведений</CommonPicture>
<CommonPicture>ВидыНавигацииПоВзаимодействиямОтКатегорий</CommonPicture>
<CommonPicture>ВебСтраница</CommonPicture>
<CommonPicture>ВидыСравнения</CommonPicture>
<CommonPicture>ВнешняяСсылкаНаОбъектИнформационнойБазы</CommonPicture>
<CommonPicture>ВажностьНеЗадана</CommonPicture>
<CommonPicture>ВидыНавигацииПоВзаимодействиямОтРеквизитаПредмета</CommonPicture>
<CommonPicture>ВертикальноеПоложениеЦентр</CommonPicture>
<CommonPicture>ВидыОпераций</CommonPicture>
<CommonPicture>Взаимодействия</CommonPicture>
<CommonPicture>ВводимыеСимволыВидны</CommonPicture>
<CommonPicture>БыстрыйДоступ</CommonPicture>
<CommonPicture>ВидСравнения</CommonPicture>
<CommonPicture>ДокументПроведенКоннекторНиз</CommonPicture>
<CommonPicture>ВажностьВысокая</CommonPicture>
<CommonPicture>ВертикальноеПоложениеНиз</CommonPicture>
<CommonPicture>ВидыКонтактнойИнформации</CommonPicture>
<CommonPicture>ВертикальноеПоложениеВерх</CommonPicture>
<CommonPicture>БыстрыйДоступСФлажком</CommonPicture>
<CommonPicture>ВыпадающийСписок</CommonPicture>
<CommonPicture>ЗначокЩита</CommonPicture>
<CommonPicture>Skype</CommonPicture>
<CommonPicture>ДобавитьЭлементНастроек</CommonPicture>
<CommonPicture>Вопрос32</CommonPicture>
<CommonPicture>ВосклицательныйЗнакКрасный</CommonPicture>
<CommonPicture>ВосклицательныйЗнакСерый</CommonPicture>
<CommonPicture>ВставитьГруппировкуВыше</CommonPicture>
<CommonPicture>ВставитьГруппировкуНиже</CommonPicture>
<CommonPicture>ВставитьИзБуфераОбмена</CommonPicture>
<CommonPicture>ВставитьКолонкуСлева</CommonPicture>
<CommonPicture>ВставитьКолонкуСправа</CommonPicture>
<CommonPicture>Встреча</CommonPicture>
<CommonPicture>ВыбратьВариантОтчета</CommonPicture>
<CommonPicture>ВводимыеСимволыСкрыты</CommonPicture>
<CommonPicture>ВыполнитьРегламентноеЗаданиеВручную</CommonPicture>
<CommonPicture>ВыравниваниеПоЛевомуКраю</CommonPicture>
<CommonPicture>ВыравниваниеПоПравомуКраю</CommonPicture>
<CommonPicture>ВыравниваниеПоЦентру</CommonPicture>
<CommonPicture>ВыравниваниеПоШирине</CommonPicture>
<CommonPicture>ВысотаСтроки</CommonPicture>
<CommonPicture>ГраницаВезде</CommonPicture>
<CommonPicture>ГраницаВнутри</CommonPicture>
<CommonPicture>ГраницаВокруг</CommonPicture>
<CommonPicture>ГраницаСверху</CommonPicture>
<CommonPicture>ГраницаСлева</CommonPicture>
<CommonPicture>ГраницаСнизу</CommonPicture>
<CommonPicture>ГраницаСправа</CommonPicture>
<CommonPicture>Группировка</CommonPicture>
<CommonPicture>ДлительнаяОперация16</CommonPicture>
<CommonPicture>ДлительнаяОперация48</CommonPicture>
<CommonPicture>ДобавитьРодительский</CommonPicture>
<CommonPicture>БыстрыеНастройкиОтчета</CommonPicture>
<CommonPicture>ДокументЗаписанКоннекторВерх</CommonPicture>
<CommonPicture>ДокументЗаписанКоннекторВерхНиз</CommonPicture>
<CommonPicture>ДокументЗаписанКоннекторЛево</CommonPicture>
<CommonPicture>ДокументЗаписанКоннекторЛевоВерх</CommonPicture>
<CommonPicture>ДокументЗаписанКоннекторЛевоНиз</CommonPicture>
<CommonPicture>ДокументЗаписанКоннекторНиз</CommonPicture>
<CommonPicture>ДокументПомеченНаУдалениеКоннекторВерх</CommonPicture>
<CommonPicture>ДокументПомеченНаУдалениеКоннекторВерхНиз</CommonPicture>
<CommonPicture>ДокументПомеченНаУдалениеКоннекторЛево</CommonPicture>
<CommonPicture>ДокументПомеченНаУдалениеКоннекторЛевоВерх</CommonPicture>
<CommonPicture>ДокументПомеченНаУдалениеКоннекторЛевоНиз</CommonPicture>
<CommonPicture>ДокументПомеченНаУдалениеКоннекторНиз</CommonPicture>
<CommonPicture>ДокументПроведенКоннекторВерх</CommonPicture>
<CommonPicture>ВариантыОтчетовДоступныеВсемПользователям</CommonPicture>
<CommonPicture>ВидыНавигацииПоВзаимодействиямОтКонтактов</CommonPicture>
<CommonPicture>ДокументПроведенКоннекторВерхНиз</CommonPicture>
<CommonPicture>ДокументПроведенКоннекторЛево</CommonPicture>
<CommonPicture>ИспользоватьПоставляемыйМакет</CommonPicture>
<CommonPicture>ИсторияИзменений</CommonPicture>
<CommonPicture>Количество</CommonPicture>
<CommonPicture>КоличествоРассмотрено</CommonPicture>
<CommonPicture>КоллекцияВариантыВажности</CommonPicture>
<CommonPicture>КоллекцияВидыАктивныхПользователей</CommonPicture>
<CommonPicture>КоллекцияВидыСобытийЖурналаРегистрации</CommonPicture>
<CommonPicture>КоллекцияДляПомеченныхНаУдалениеОбъектов</CommonPicture>
<CommonPicture>КоллекцияПиктограммПараметрыШаблонаСообщения</CommonPicture>
<CommonPicture>КоллекцияПиктограммФайлов</CommonPicture>
<CommonPicture>КоллекцияПиктограммЭлементов</CommonPicture>
<CommonPicture>КоллекцияСкрепка</CommonPicture>
<CommonPicture>Комментарий</CommonPicture>
<CommonPicture>КоннекторВерхНиз</CommonPicture>
<CommonPicture>КоннекторВерхПраво</CommonPicture>
<CommonPicture>КоннекторВерхПравоНиз</CommonPicture>
<CommonPicture>КоннекторЛевоНизПраво</CommonPicture>
<CommonPicture>КоннекторЛевоПраво</CommonPicture>
<CommonPicture>КоннекторПравоНиз</CommonPicture>
<CommonPicture>КонтактнаяИнформация</CommonPicture>
<CommonPicture>КонтактнаяИнформацияНеактуально</CommonPicture>
<CommonPicture>КонтактнаяИнформацияОтправитьЭлектронноеПисьмо</CommonPicture>
<CommonPicture>КонтактнаяИнформацияПерейтиПоСсылке</CommonPicture>
<CommonPicture>КурсивноеНачертание</CommonPicture>
<CommonPicture>Максимум</CommonPicture>
<CommonPicture>МенюДополнительныеФункции</CommonPicture>
<CommonPicture>МестоДляQRКода</CommonPicture>
<CommonPicture>МестоДляКартинки</CommonPicture>
<CommonPicture>МестоДляШтрихкода</CommonPicture>
<CommonPicture>МетаданныеHTTPСервисы</CommonPicture>
<CommonPicture>МетаданныеHTTPСервисыШаблоныURL</CommonPicture>
<CommonPicture>МетаданныеHTTPСервисыШаблоныURLМетоды</CommonPicture>
<CommonPicture>МетаданныеWebСервисы</CommonPicture>
<CommonPicture>МетаданныеWebСервисыОперации</CommonPicture>
<CommonPicture>МетаданныеWebСервисыОперацииПараметры</CommonPicture>
<CommonPicture>МетаданныеWSСсылки</CommonPicture>
<CommonPicture>МетаданныеБизнесПроцессы</CommonPicture>
<CommonPicture>МетаданныеБоты</CommonPicture>
<CommonPicture>МетаданныеВнешниеИсточникиДанных</CommonPicture>
<CommonPicture>МетаданныеВнешниеИсточникиКубы</CommonPicture>
<CommonPicture>МетаданныеВнешниеИсточникиТаблицы</CommonPicture>
<CommonPicture>МетаданныеВнешниеИсточникиТаблицыИзмерений</CommonPicture>
<CommonPicture>МетаданныеВнешниеИсточникиФункции</CommonPicture>
<CommonPicture>МетаданныеГрафы</CommonPicture>
<CommonPicture>МетаданныеГруппыКоманд</CommonPicture>
<CommonPicture>МетаданныеДокументы</CommonPicture>
<CommonPicture>МетаданныеЖурналыДокументов</CommonPicture>
<CommonPicture>МетаданныеЗадачи</CommonPicture>
<CommonPicture>МетаданныеЗначениеПеречисления</CommonPicture>
<CommonPicture>МетаданныеИзмерения</CommonPicture>
<CommonPicture>МетаданныеКоманды</CommonPicture>
<CommonPicture>МетаданныеКонстанты</CommonPicture>
<CommonPicture>МетаданныеКонфигурация</CommonPicture>
<CommonPicture>МетаданныеКритерииОтбора</CommonPicture>
<CommonPicture>МетаданныеМакеты</CommonPicture>
<CommonPicture>МетаданныеОбработки</CommonPicture>
<CommonPicture>МетаданныеОбщие</CommonPicture>
<CommonPicture>МетаданныеОбщиеКартинки</CommonPicture>
<CommonPicture>МетаданныеОбщиеКоманды</CommonPicture>
<CommonPicture>МетаданныеОбщиеМакеты</CommonPicture>
<CommonPicture>МетаданныеОбщиеМодули</CommonPicture>
<CommonPicture>МетаданныеОбщиеРеквизиты</CommonPicture>
<CommonPicture>МетаданныеОбщиеФормы</CommonPicture>
<CommonPicture>МетаданныеОпределяемыеТипы</CommonPicture>
<CommonPicture>МетаданныеОпределяемыйТип</CommonPicture>
<CommonPicture>МетаданныеОтчеты</CommonPicture>
<CommonPicture>МетаданныеПакетыXDTO</CommonPicture>
<CommonPicture>МетаданныеПараметрыСеанса</CommonPicture>
<CommonPicture>МетаданныеПараметрыФункциональныхОпций</CommonPicture>
<CommonPicture>МетаданныеПерерасчеты</CommonPicture>
<CommonPicture>МетаданныеПеречисления</CommonPicture>
<CommonPicture>МетаданныеПланыВидовРасчета</CommonPicture>
<CommonPicture>МетаданныеПланыВидовХарактеристик</CommonPicture>
<CommonPicture>МетаданныеПланыОбмена</CommonPicture>
<CommonPicture>МетаданныеПланыСчетов</CommonPicture>
<CommonPicture>МетаданныеПодпискиНаСобытия</CommonPicture>
<CommonPicture>МетаданныеПодсистемы</CommonPicture>
<CommonPicture>МетаданныеПоследовательности</CommonPicture>
<CommonPicture>МетаданныеПризнакиУчета</CommonPicture>
<CommonPicture>МетаданныеПризнакиУчетаСубконто</CommonPicture>
<CommonPicture>МетаданныеРегистрыБухгалтерии</CommonPicture>
<CommonPicture>МетаданныеРегистрыНакопления</CommonPicture>
<CommonPicture>МетаданныеРегистрыРасчета</CommonPicture>
<CommonPicture>МетаданныеРегистрыСведений</CommonPicture>
<CommonPicture>МетаданныеРегламентныеЗадания</CommonPicture>
<CommonPicture>МетаданныеРеквизиты</CommonPicture>
<CommonPicture>МетаданныеРеквизитыАдресации</CommonPicture>
<CommonPicture>МетаданныеРесурсы</CommonPicture>
<CommonPicture>МетаданныеРоли</CommonPicture>
<CommonPicture>МетаданныеСправочники</CommonPicture>
<CommonPicture>МетаданныеСтандартныеРеквизиты</CommonPicture>
<CommonPicture>МетаданныеСтандартныеТабличныеЧасти</CommonPicture>
<CommonPicture>МетаданныеСтили</CommonPicture>
<CommonPicture>МетаданныеТабличныеЧасти</CommonPicture>
<CommonPicture>МетаданныеФормы</CommonPicture>
<CommonPicture>МетаданныеФункциональныеОпции</CommonPicture>
<CommonPicture>МетаданныеХранилищаНастроек</CommonPicture>
<CommonPicture>МетаданныеЭлементыСтиля</CommonPicture>
<CommonPicture>МетаданныеЯзыки</CommonPicture>
<CommonPicture>Метка</CommonPicture>
<CommonPicture>МеткаГолубая</CommonPicture>
<CommonPicture>МеткаЖелтая</CommonPicture>
<CommonPicture>МеткаЗеленая</CommonPicture>
<CommonPicture>МеткаКрасная</CommonPicture>
<CommonPicture>МеткаЛаймовая</CommonPicture>
<CommonPicture>МеткаОранжевая</CommonPicture>
<CommonPicture>МеткаРозовая</CommonPicture>
<CommonPicture>МеткаСерая</CommonPicture>
<CommonPicture>МеткаСиняя</CommonPicture>
<CommonPicture>МеткаФиолетовая</CommonPicture>
<CommonPicture>Минимум</CommonPicture>
<CommonPicture>НазначенияВариантовОтчетов</CommonPicture>
<CommonPicture>НаписатьSMS</CommonPicture>
<CommonPicture>НаследованиеВключено</CommonPicture>
<CommonPicture>НаследованиеВключеноСПапкой</CommonPicture>
<CommonPicture>НаследованиеОтключено</CommonPicture>
<CommonPicture>НаследованиеОтключеноСПапкой</CommonPicture>
<CommonPicture>НезавершившаясяПроверка</CommonPicture>
<CommonPicture>НетГраницы</CommonPicture>
<CommonPicture>ОбновитьФайлИзФайлаНаДиске</CommonPicture>
<CommonPicture>ОбновлениеВнешнихКомпонентССайта</CommonPicture>
<CommonPicture>ОбъединитьЯчейки</CommonPicture>
<CommonPicture>ОбычныйДоступСФлажком</CommonPicture>
<CommonPicture>ОжидаемаяДлительнаяОперация16</CommonPicture>
<CommonPicture>ОжидаемаяДлительнаяОперация48</CommonPicture>
<CommonPicture>ОпубликоватьФайл</CommonPicture>
<CommonPicture>Органайзер</CommonPicture>
<CommonPicture>ОсвободитьФайл</CommonPicture>
<CommonPicture>Отборы</CommonPicture>
<CommonPicture>ОтветитьНаЭлектронноеПисьмо</CommonPicture>
<CommonPicture>ОтветитьНаЭлектронноеПисьмоВсем</CommonPicture>
<CommonPicture>Открепить</CommonPicture>
<CommonPicture>ОткрытьВыбранныйФайл</CommonPicture>
<CommonPicture>ОткрытьМакет</CommonPicture>
<CommonPicture>ОтложитьРассмотрениеВзаимодействия</CommonPicture>
<CommonPicture>ОтменитьДействие</CommonPicture>
<CommonPicture>ОтменитьРедактированиеМакета</CommonPicture>
<CommonPicture>ОтправитьSMS</CommonPicture>
<CommonPicture>ОтправитьПолучитьПочту</CommonPicture>
<CommonPicture>ОтправитьЭлектронноеПисьмо</CommonPicture>
<CommonPicture>ОтчетКроссТаблица</CommonPicture>
<CommonPicture>ОтчетТаблица</CommonPicture>
<CommonPicture>Отчеты</CommonPicture>
<CommonPicture>Оформление</CommonPicture>
<CommonPicture>Ошибка32</CommonPicture>
<CommonPicture>Папка</CommonPicture>
<CommonPicture>ПапкаОблачногоСервиса</CommonPicture>
<CommonPicture>Папки</CommonPicture>
<CommonPicture>ПапкиЭлектронныхПисем</CommonPicture>
<CommonPicture>ПерейтиВПолноэкранныйРежим</CommonPicture>
<CommonPicture>ПереместитьВЗакладкиВзаимодействия</CommonPicture>
<CommonPicture>ПереместитьВлевоВверх</CommonPicture>
<CommonPicture>ПереместитьВлевоВсе</CommonPicture>
<CommonPicture>ПереместитьВПапкуПисем</CommonPicture>
<CommonPicture>ПереместитьВправоВниз</CommonPicture>
<CommonPicture>ПереместитьГруппировкуВыше</CommonPicture>
<CommonPicture>ПереместитьГруппировкуНиже</CommonPicture>
<CommonPicture>ПереместитьКолонкуВлево</CommonPicture>
<CommonPicture>ПереместитьКолонкуВправо</CommonPicture>
<CommonPicture>ПереслатьПисьмоКакВложение</CommonPicture>
<CommonPicture>ПереслатьЭлектронноеПисьмо</CommonPicture>
<CommonPicture>ПечатьОрганизации</CommonPicture>
<CommonPicture>ПиктограммыДоступаКНастройкамОтчета</CommonPicture>
<CommonPicture>ПиктограммыНастроекОтчета</CommonPicture>
<CommonPicture>ПиктограммыСвойств</CommonPicture>
<CommonPicture>ПиктограммыТиповДанных</CommonPicture>
<CommonPicture>ПиктограммыЭлементов</CommonPicture>
<CommonPicture>ПовторитьДействие</CommonPicture>
<CommonPicture>ПовторятьВКонцеСтраницы</CommonPicture>
<CommonPicture>ПовторятьВНачалеСтраницы</CommonPicture>
<CommonPicture>Подменю</CommonPicture>
<CommonPicture>ПодменюСервис</CommonPicture>
<CommonPicture>ПодписанЗашифрованЗаголовок</CommonPicture>
<CommonPicture>ПодписанЗашифрованСостояния</CommonPicture>
<CommonPicture>Подпись</CommonPicture>
<CommonPicture>Подсистема</CommonPicture>
<CommonPicture>Подчеркивание</CommonPicture>
<CommonPicture>Позвонить</CommonPicture>
<CommonPicture>ПозвонитьИлиОтправитьSMS</CommonPicture>
<CommonPicture>ПоказатьНаКарте</CommonPicture>
<CommonPicture>ПоказатьОтличия</CommonPicture>
<CommonPicture>ПоказатьТолькоВыбранныеРоли</CommonPicture>
<CommonPicture>ПолужирноеНачертание</CommonPicture>
<CommonPicture>ПользовательБезФотографии</CommonPicture>
<CommonPicture>ПользовательскийМакетУдалить</CommonPicture>
<CommonPicture>ПоляИСортировки</CommonPicture>
<CommonPicture>Пометка</CommonPicture>
<CommonPicture>ПредварительныйПросмотрКартинка</CommonPicture>
<CommonPicture>ПредопределенныйЭлемент</CommonPicture>
<CommonPicture>Предупреждение</CommonPicture>
<CommonPicture>Предупреждение32</CommonPicture>
<CommonPicture>ПриложитьФайл</CommonPicture>
<CommonPicture>ПрименитьПравилаОбработкиПисем</CommonPicture>
<CommonPicture>ПримечаниеЖурналаРегистрации</CommonPicture>
<CommonPicture>ПроверитьФормулу</CommonPicture>
<CommonPicture>ПрочиеПользовательскиеНастройки</CommonPicture>
<CommonPicture>Пустая</CommonPicture>
<CommonPicture>РабочийКаталогПоУмолчанию</CommonPicture>
<CommonPicture>РазделАдминистрирование</CommonPicture>
<CommonPicture>РазделАдминистрирование48</CommonPicture>
<CommonPicture>РазорватьСоединение</CommonPicture>
<CommonPicture>РазрешитьРедактированиеРеквизитовОбъекта</CommonPicture>
<CommonPicture>Рассчитать</CommonPicture>
<CommonPicture>РассылкаОтчетов</CommonPicture>
<CommonPicture>РасширениеКонфигурацииИзГлавногоУзла</CommonPicture>
<CommonPicture>РедактироватьАдресСайта</CommonPicture>
<CommonPicture>РедактироватьМакет</CommonPicture>
<CommonPicture>РедактироватьМетки</CommonPicture>
<CommonPicture>РедактироватьФайл</CommonPicture>
<CommonPicture>СдвинутьВверх</CommonPicture>
<CommonPicture>СдвинутьВниз</CommonPicture>
<CommonPicture>СерыйКрест</CommonPicture>
<CommonPicture>Сканирование</CommonPicture>
<CommonPicture>Скачать</CommonPicture>
<CommonPicture>СкопироватьВБуферОбмена</CommonPicture>
<CommonPicture>Скрепка</CommonPicture>
<CommonPicture>СнятьПризнакРассмотреноУВзаимодействия</CommonPicture>
<CommonPicture>СортироватьСтрокиПоВозрастанию</CommonPicture>
<CommonPicture>СортироватьСтрокиПоУбыванию</CommonPicture>
<CommonPicture>СостояниеПользователя01</CommonPicture>
<CommonPicture>СостояниеПользователя02</CommonPicture>
<CommonPicture>СостояниеПользователя03</CommonPicture>
<CommonPicture>СостояниеПользователя04</CommonPicture>
<CommonPicture>СостояниеПользователя05</CommonPicture>
<CommonPicture>СостояниеПользователя06</CommonPicture>
<CommonPicture>СостояниеПользователя07</CommonPicture>
<CommonPicture>СостояниеПользователя08</CommonPicture>
<CommonPicture>СостояниеПользователя09</CommonPicture>
<CommonPicture>СостояниеПользователя10</CommonPicture>
<CommonPicture>СостояниеПользователя11</CommonPicture>
<CommonPicture>СостояниеПользователя12</CommonPicture>
<CommonPicture>СостояниеПользователя13</CommonPicture>
<CommonPicture>СостояниеПользователя14</CommonPicture>
<CommonPicture>СостояниеПользователя15</CommonPicture>
<CommonPicture>СостояниеПользователя16</CommonPicture>
<CommonPicture>СостояниеПользователя17</CommonPicture>
<CommonPicture>СостояниеПользователя18</CommonPicture>
<CommonPicture>СостояниеРассылкиОтчетов</CommonPicture>
<CommonPicture>СостоянияПользователей</CommonPicture>
<CommonPicture>СостоянияРасширенийБудетПодключено</CommonPicture>
<CommonPicture>СостоянияРасширенийКонфигурации</CommonPicture>
<CommonPicture>СостоянияРасширенийОшибка</CommonPicture>
<CommonPicture>СостоянияРасширенийПодключено</CommonPicture>
<CommonPicture>СохранитьВариантОтчета</CommonPicture>
<CommonPicture>СохранитьКак</CommonPicture>
<CommonPicture>СохранитьФайлКак</CommonPicture>
<CommonPicture>СправкаВНачало</CommonPicture>
<CommonPicture>СправкаПереходВниз</CommonPicture>
<CommonPicture>СправочникПВХКоннекторВверх</CommonPicture>
<CommonPicture>СправочникПВХКоннекторВерхНиз</CommonPicture>
<CommonPicture>СправочникПВХКоннекторЛево</CommonPicture>
<CommonPicture>СправочникПВХКоннекторЛевоВерх</CommonPicture>
<CommonPicture>СправочникПВХКоннекторЛевоНиз</CommonPicture>
<CommonPicture>СправочникПВХКоннекторНиз</CommonPicture>
<CommonPicture>СправочникПВХПомеченНаУдалениеКоннекторВерх</CommonPicture>
<CommonPicture>СправочникПВХПомеченНаУдалениеКоннекторВерхНиз</CommonPicture>
<CommonPicture>СправочникПВХПомеченНаУдалениеКоннекторЛево</CommonPicture>
<CommonPicture>СправочникПВХПомеченНаУдалениеКоннекторЛевоВерх</CommonPicture>
<CommonPicture>СправочникПВХПомеченНаУдалениеКоннекторЛевоНиз</CommonPicture>
<CommonPicture>СправочникПВХПомеченНаУдалениеКоннекторНиз</CommonPicture>
<CommonPicture>Среднее</CommonPicture>
<CommonPicture>СтатусыДокумента</CommonPicture>
<CommonPicture>СтрелкаВверх</CommonPicture>
<CommonPicture>СтрелкаВлево</CommonPicture>
<CommonPicture>СтрелкаВниз</CommonPicture>
<CommonPicture>СтрелкаВнизЗеленая</CommonPicture>
<CommonPicture>СтрелкаВнизСправка</CommonPicture>
<CommonPicture>СтрелкаВправо</CommonPicture>
<CommonPicture>СтрелкаВправоЗеленая</CommonPicture>
<CommonPicture>Структура</CommonPicture>
<CommonPicture>СтруктураПодчиненности</CommonPicture>
<CommonPicture>Сумма</CommonPicture>
<CommonPicture>ТелефонныйЗвонок</CommonPicture>
<CommonPicture>ТипБулево</CommonPicture>
<CommonPicture>ТипГиперссылка</CommonPicture>
<CommonPicture>ТипГруппа</CommonPicture>
<CommonPicture>ТипДата</CommonPicture>
<CommonPicture>ТипДерево</CommonPicture>
<CommonPicture>ТипИдентификатор</CommonPicture>
<CommonPicture>ТипКартинка</CommonPicture>
<CommonPicture>ТипКонстанта</CommonPicture>
<CommonPicture>ТипМакрос</CommonPicture>
<CommonPicture>ТипНеопределено</CommonPicture>
<CommonPicture>ТипПапка</CommonPicture>
<CommonPicture>ТипСоставнойДополнительный</CommonPicture>
<CommonPicture>ТипСоставнойОсновной</CommonPicture>
<CommonPicture>ТипСписок</CommonPicture>
<CommonPicture>ТипСсылка</CommonPicture>
<CommonPicture>ТипСтрока</CommonPicture>
<CommonPicture>ТипФильтр</CommonPicture>
<CommonPicture>ТипФункция</CommonPicture>
<CommonPicture>ТипЧисло</CommonPicture>
<CommonPicture>ТипыМакетов</CommonPicture>
<CommonPicture>ТолстаяГраницаВокруг</CommonPicture>
<CommonPicture>ТолстаяГраницаСверху</CommonPicture>
<CommonPicture>ТолстаяГраницаСнизу</CommonPicture>
<CommonPicture>УвеличитьШрифт</CommonPicture>
<CommonPicture>УменьшитьШрифт</CommonPicture>
<CommonPicture>УровеньДоступаАдминистрированиеИсточника</CommonPicture>
<CommonPicture>УровеньДоступаЕстьПраво</CommonPicture>
<CommonPicture>УровеньДоступаИспользование</CommonPicture>
<CommonPicture>УровеньДоступаИспользованиеИАдминистрированиеИсточника</CommonPicture>
<CommonPicture>УровеньДоступаИспользованиеИсточника</CommonPicture>
<CommonPicture>УровеньДоступаПолучение</CommonPicture>
<CommonPicture>УровеньДоступаПолучениеИУстановка</CommonPicture>
<CommonPicture>УровеньДоступаПросмотр</CommonPicture>
<CommonPicture>УровеньДоступаРедактирование</CommonPicture>
<CommonPicture>УровеньДоступаСоздание</CommonPicture>
<CommonPicture>УровеньДоступаУстановка</CommonPicture>
<CommonPicture>Успешно</CommonPicture>
<CommonPicture>Успешно32</CommonPicture>
<CommonPicture>УстановитьОтветственногоЗаВзаимодействие</CommonPicture>
<CommonPicture>УстановитьПредметВзаимодействия</CommonPicture>
<CommonPicture>УстановитьПризнакРассмотреноДляВзаимодействия</CommonPicture>
<CommonPicture>Факс</CommonPicture>
<CommonPicture>ФорматExcel</CommonPicture>
<CommonPicture>ФорматExcel2007</CommonPicture>
<CommonPicture>ФорматHTML</CommonPicture>
<CommonPicture>ФорматMXL</CommonPicture>
<CommonPicture>ФорматOpenOfficeCalc</CommonPicture>
<CommonPicture>ФорматOpenOfficeWriter</CommonPicture>
<CommonPicture>ФорматPDF</CommonPicture>
<CommonPicture>ФорматTXT</CommonPicture>
<CommonPicture>ФорматWord</CommonPicture>
<CommonPicture>ФорматWord2007</CommonPicture>
<CommonPicture>ФорматПустой</CommonPicture>
<CommonPicture>Фотокамера</CommonPicture>
<CommonPicture>ЦветГраницы</CommonPicture>
<CommonPicture>ЦветТекста</CommonPicture>
<CommonPicture>ЦветФона</CommonPicture>
<CommonPicture>ШиринаКолонки</CommonPicture>
<CommonPicture>Шрифт</CommonPicture>
<CommonPicture>ШтампЭлектроннойПодписи</CommonPicture>
<CommonPicture>ЭлектроннаяПочта</CommonPicture>
<CommonPicture>ЭлектронноеПисьмо</CommonPicture>
<CommonPicture>ЭлектронноеПисьмоВходящее</CommonPicture>
<CommonPicture>ЭлектронноеПисьмоИсходящее</CommonPicture>
<CommonPicture>ЯндексКарты</CommonPicture>
<CommonPicture>УдалитьИнформация</CommonPicture>
<CommonPicture>GitLab</CommonPicture>
<CommonPicture>ФонПаттерн</CommonPicture>
<SessionParameter>АвторизованныйПользователь</SessionParameter>
<SessionParameter>ВерсияРасширений</SessionParameter>
<SessionParameter>ВерсииШаблоновОграниченияДоступа</SessionParameter>
<SessionParameter>ВидыДоступаСОтключеннымИспользованием</SessionParameter>
<SessionParameter>ВсеВидыДоступаКромеСпециальных</SessionParameter>
<SessionParameter>ВидыДоступаБезГруппДляЗначенияДоступа</SessionParameter>
<SessionParameter>БуферОбмена</SessionParameter>
<SessionParameter>ВидыДоступаСОднойГруппойДляЗначенияДоступа</SessionParameter>
<SessionParameter>ВыполняетсяОбновлениеИБ</SessionParameter>
<SessionParameter>ВыполняетсяУдалениеОбъектов</SessionParameter>
<SessionParameter>ДлительныеОперации</SessionParameter>
<SessionParameter>ИдентификаторыТаблицСОтдельнымиНастройкамиПрав</SessionParameter>
<SessionParameter>ИнтерактивнаяПроверкаЗаполненияКонтактнойИнформации</SessionParameter>
<SessionParameter>ИнтерактивнаяПроверкаЗаполненияСвойств</SessionParameter>
<SessionParameter>КлючДанныхПовторногоИспользования</SessionParameter>
<SessionParameter>КомментарийЗамераВремени</SessionParameter>
<SessionParameter>ОбновлениеСправочниковИдентификаторов</SessionParameter>
<SessionParameter>ОбновлениеСправочниковПользователей</SessionParameter>
<SessionParameter>ОбщиеПараметрыШаблоновОграниченияДоступа</SessionParameter>
<SessionParameter>ОграничениеДоступаНаУровнеЗаписейИспользуется</SessionParameter>
<SessionParameter>ОграничениеДоступаНаУровнеЗаписейУниверсально</SessionParameter>
<SessionParameter>ОсновнойЯзык</SessionParameter>
<SessionParameter>ОтключениеОбновленияКлючейДоступа</SessionParameter>
<SessionParameter>ПараметрыКлиентаНаСервере</SessionParameter>
<SessionParameter>ПараметрыОбработчикаОбновления</SessionParameter>
<SessionParameter>ПараметрыОграниченияДоступа</SessionParameter>
<SessionParameter>ПодключенныеРасширения</SessionParameter>
<SessionParameter>РаботаСВнешнимиРесурсамиЗаблокирована</SessionParameter>
<SessionParameter>РазрешенныйНаборГруппДоступа</SessionParameter>
<SessionParameter>РазрешенныйНаборГруппПользователей</SessionParameter>
<SessionParameter>РазрешенныйПользователь</SessionParameter>
<SessionParameter>РазрешенныйПустойНаборГруппДоступа</SessionParameter>
<SessionParameter>СпискиСОграничениемПоПолям</SessionParameter>
<SessionParameter>СпискиСОграничениемЧерезКлючиДоступаГруппДоступа</SessionParameter>
<SessionParameter>СпискиСОграничениемЧерезКлючиДоступаПользователей</SessionParameter>
<SessionParameter>СпискиСОтключеннымОграничениемЧтения</SessionParameter>
<SessionParameter>ТаблицыРасширенийСОграничениемДоступа</SessionParameter>
<SessionParameter>ТаблицыСОтдельнымиНастройкамиПрав</SessionParameter>
<SessionParameter>ТекущийВнешнийПользователь</SessionParameter>
<SessionParameter>ТекущийПользователь</SessionParameter>
<SessionParameter>ТипыВладельцевНастроекПрав</SessionParameter>
<SessionParameter>ТипыЗначенийДоступаСГруппами</SessionParameter>
<SessionParameter>УстановленныеРасширения</SessionParameter>
<Role>АдминистраторСистемы</Role>
<Role>ДобавлениеИзменениеВариантовОтчетов</Role>
<Role>ДобавлениеИзменениеВидовКонтактнойИнформации</Role>
<Role>ВыводНаПринтерФайлБуферОбмена</Role>
<Role>ДобавлениеИзменениеВнешнихПользователей</Role>
<Role>БазовыеПраваВнешнихПользователейБСП</Role>
<Role>ДобавлениеИзменениеВзаимодействий</Role>
<Role>Администрирование</Role>
<Role>БазовыеПраваБСП</Role>
<Role>ДобавлениеИзменениеДополнительныхОтчетовИОбработок</Role>
<Role>ДобавлениеИзменениеДополнительныхРеквизитовИСведений</Role>
<Role>ДобавлениеИзменениеЛичныхВариантовОтчетов</Role>
<Role>ДобавлениеИзменениеЛичныхШаблоновСообщений</Role>
<Role>ДобавлениеИзменениеПапокИФайлов</Role>
<Role>ДобавлениеИзменениеПапокИФайловВнешнимиПользователями</Role>
<Role>ДобавлениеИзменениеПользователей</Role>
<Role>ДобавлениеИзменениеРассылокОтчетов</Role>
<Role>ДобавлениеИзменениеСнимковОтчетов</Role>
<Role>ДобавлениеИзменениеУчетныхЗаписейЭлектроннойПочты</Role>
<Role>ДобавлениеИзменениеШаблоновСообщений</Role>
<Role>ЗапускAutomation</Role>
<Role>ЗапускВебКлиента</Role>
<Role>ЗапускВнешнегоСоединения</Role>
<Role>ЗапускМобильногоКлиента</Role>
<Role>ЗапускТолстогоКлиента</Role>
<Role>ЗапускТонкогоКлиента</Role>
<Role>ИзменениеДополнительныхСведений</Role>
<Role>ИзменениеМакетовПечатныхФорм</Role>
<Role>ИзменениеУчастниковГруппДоступа</Role>
<Role>ИнтерактивноеОткрытиеВнешнихОтчетовИОбработок</Role>
<Role>ИспользованиеУниверсальногоОтчета</Role>
<Role>НастройкаИОценкаПроизводительности</Role>
<Role>НастройкаСинхронизацииФайлов</Role>
<Role>ОбновлениеКонфигурацииБазыДанных</Role>
<Role>ОтправкаSMS</Role>
<Role>ПолныеПрава</Role>
<Role>ПросмотрЖурналаРегистрации</Role>
<Role>ПросмотрОписанияИзмененийПрограммы</Role>
<Role>ПросмотрСвязанныеДокументы</Role>
<Role>РедактированиеПечатныхФорм</Role>
<Role>РедактированиеРеквизитовОбъектов</Role>
<Role>РежимТехническогоСпециалиста</Role>
<Role>СохранениеДанныхПользователя</Role>
<Role>УдаленныйДоступБазоваяФункциональность</Role>
<Role>ЧтениеВариантовОтчетов</Role>
<Role>ЧтениеВнешнихПользователей</Role>
<Role>ЧтениеДополнительныхОтчетовИОбработок</Role>
<Role>ЧтениеДополнительныхСведений</Role>
<Role>ЧтениеРассылокОтчетов</Role>
<Role>ЧтениеУчетныхЗаписейЭлектроннойПочты</Role>
<Role>ЧтениеШаблоновСообщений</Role>
<Role>Программист</Role>
<Role>Релизер</Role>
<Role>БизнесАналитик</Role>
<CommonTemplate>ДанныеПечатиОбщиеРеквизиты</CommonTemplate>
<CommonTemplate>ДанныеПечатиРегистрСимволов</CommonTemplate>
<CommonTemplate>ИнструкцияКакВыполнитьНастройкуМакетаOfficeOpen</CommonTemplate>
<CommonTemplate>ИнструкцияПоСозданиюФаксимильнойПодписиИПечати</CommonTemplate>
<CommonTemplate>КомпонентаПечатиQRКода</CommonTemplate>
<CommonTemplate>КомпонентаПоискаСтрок</CommonTemplate>
<CommonTemplate>КомпонентаСканированияДокументов_3_0_1_1021</CommonTemplate>
<CommonTemplate>МакетШтемпеляЭЦПOfficeOpen</CommonTemplate>
<CommonTemplate>ПолучениеДереваОбработчиковОбновления</CommonTemplate>
<CommonTemplate>ПустойМакетDOCX</CommonTemplate>
<CommonTemplate>СтруктураПодчиненности</CommonTemplate>
<FilterCriterion>СвязанныеДокументы</FilterCriterion>
<CommonModule>АдминистрированиеКластера</CommonModule>
<CommonModule>ВзаимодействияВызовСервера</CommonModule>
<CommonModule>ВзаимодействияКлиент</CommonModule>
<CommonModule>ВзаимодействияКлиентПереопределяемый</CommonModule>
<CommonModule>ВзаимодействияКлиентСервер</CommonModule>
<CommonModule>АдминистрированиеКластераCOM</CommonModule>
<CommonModule>ВзаимодействияКлиентСерверСлужебныйПовтИсп</CommonModule>
<CommonModule>ВзаимодействияЛокализация</CommonModule>
<CommonModule>ВариантыОтчетовВызовСервера</CommonModule>
<CommonModule>АнализЖурналаРегистрацииКлиент</CommonModule>
<CommonModule>АнализЖурналаРегистрацииСлужебный</CommonModule>
<CommonModule>БлокировкаРаботыСВнешнимиРесурсами</CommonModule>
<CommonModule>БлокировкаРаботыСВнешнимиРесурсамиПереопределяемый</CommonModule>
<CommonModule>ВариантыОтчетовСлужебный</CommonModule>
<CommonModule>ВариантыОтчетовКлиентСервер</CommonModule>
<CommonModule>ВзаимодействияПереопределяемый</CommonModule>
<CommonModule>ВариантыОтчетовКлиент</CommonModule>
<CommonModule>АдминистрированиеКластераRAS</CommonModule>
<CommonModule>ВзаимодействияКлиентСерверПереопределяемый</CommonModule>
<CommonModule>ВариантыОтчетов</CommonModule>
<CommonModule>АдминистрированиеКластераRASКлиентСервер</CommonModule>
<CommonModule>АдминистрированиеКластераCOMКлиентСервер</CommonModule>
<CommonModule>ВариантыОтчетовПовтИсп</CommonModule>
<CommonModule>ВариантыОтчетовПереопределяемый</CommonModule>
<CommonModule>ВариантыОтчетовСлужебныйКлиент</CommonModule>
<CommonModule>ВариантыОтчетовСлужебныйКлиентСервер</CommonModule>
<CommonModule>Взаимодействия</CommonModule>
<CommonModule>АдминистрированиеКластераКлиентСервер</CommonModule>
<CommonModule>ВзаимодействияСобытия</CommonModule>
<CommonModule>ВнешниеКомпонентыВызовСервера</CommonModule>
<CommonModule>ВнешниеКомпонентыКлиент</CommonModule>
<CommonModule>ВнешниеКомпонентыКлиентЛокализация</CommonModule>
<CommonModule>ВнешниеКомпонентыСервер</CommonModule>
<CommonModule>ВнешниеКомпонентыСлужебный</CommonModule>
<CommonModule>ВнешниеКомпонентыСлужебныйВызовСервера</CommonModule>
<CommonModule>ВнешниеКомпонентыСлужебныйКлиент</CommonModule>
<CommonModule>ВнешниеПользователи</CommonModule>
<CommonModule>ВнешниеПользователиКлиент</CommonModule>
<CommonModule>ГрупповоеИзменениеОбъектов</CommonModule>
<CommonModule>ГрупповоеИзменениеОбъектовКлиент</CommonModule>
<CommonModule>ГрупповоеИзменениеОбъектовПереопределяемый</CommonModule>
<CommonModule>ДлительныеОперации</CommonModule>
<CommonModule>ДлительныеОперацииВызовСервера</CommonModule>
<CommonModule>ДлительныеОперацииКлиент</CommonModule>
<CommonModule>ДополнительныеОтчетыИОбработки</CommonModule>
<CommonModule>ДополнительныеОтчетыИОбработкиВБезопасномРежимеСлужебный</CommonModule>
<CommonModule>ДополнительныеОтчетыИОбработкиВызовСервера</CommonModule>
<CommonModule>ДополнительныеОтчетыИОбработкиГлобальный</CommonModule>
<CommonModule>ДополнительныеОтчетыИОбработкиКлиент</CommonModule>
<CommonModule>ДополнительныеОтчетыИОбработкиКлиентПереопределяемый</CommonModule>
<CommonModule>ДополнительныеОтчетыИОбработкиКлиентСервер</CommonModule>
<CommonModule>ДополнительныеОтчетыИОбработкиПереопределяемый</CommonModule>
<CommonModule>ДополнительныеОтчетыИОбработкиПовтИсп</CommonModule>
<CommonModule>ЖурналРегистрации</CommonModule>
<CommonModule>ЖурналРегистрацииВызовСервера</CommonModule>
<CommonModule>ЖурналРегистрацииКлиент</CommonModule>
<CommonModule>ЗаполнениеОбъектов</CommonModule>
<CommonModule>ЗаполнениеОбъектовПереопределяемый</CommonModule>
<CommonModule>ЗапретРедактированияРеквизитовОбъектов</CommonModule>
<CommonModule>ЗапретРедактированияРеквизитовОбъектовКлиент</CommonModule>
<CommonModule>ЗапретРедактированияРеквизитовОбъектовПереопределяемый</CommonModule>
<CommonModule>ЗапретРедактированияРеквизитовОбъектовСлужебный</CommonModule>
<CommonModule>ЗапретРедактированияРеквизитовОбъектовСлужебныйКлиент</CommonModule>
<CommonModule>ИнтеграцияПодсистемБСП</CommonModule>
<CommonModule>ИнтеграцияПодсистемБСПКлиент</CommonModule>
<CommonModule>ИнтеграцияПодсистемБСПКлиентПовтИсп</CommonModule>
<CommonModule>ИнтеграцияПодсистемБСППовтИсп</CommonModule>
<CommonModule>КонструкторФормул</CommonModule>
<CommonModule>КонструкторФормулВызовСервера</CommonModule>
<CommonModule>КонструкторФормулКлиент</CommonModule>
<CommonModule>КонструкторФормулКлиентСервер</CommonModule>
<CommonModule>КонструкторФормулПовтИсп</CommonModule>
<CommonModule>КонструкторФормулСлужебный</CommonModule>
<CommonModule>НастройкаПорядкаЭлементов</CommonModule>
<CommonModule>НастройкаПорядкаЭлементовСлужебный</CommonModule>
<CommonModule>НастройкиПрограммы</CommonModule>
<CommonModule>НастройкиПрограммыКлиент</CommonModule>
<CommonModule>НастройкиПрограммыПереопределяемый</CommonModule>
<CommonModule>ОбновлениеИнформационнойБазы</CommonModule>
<CommonModule>ОбновлениеИнформационнойБазыБСП</CommonModule>
<CommonModule>ОбновлениеИнформационнойБазыВызовСервера</CommonModule>
<CommonModule>ОбновлениеИнформационнойБазыГлобальный</CommonModule>
<CommonModule>ОбновлениеИнформационнойБазыКлиент</CommonModule>
<CommonModule>ОбновлениеИнформационнойБазыКлиентПереопределяемый</CommonModule>
<CommonModule>ОбновлениеИнформационнойБазыПереопределяемый</CommonModule>
<CommonModule>ОбновлениеИнформационнойБазыСлужебный</CommonModule>
<CommonModule>ОбновлениеИнформационнойБазыСлужебныйВызовСервера</CommonModule>
<CommonModule>ОбновлениеИнформационнойБазыСлужебныйПовтИсп</CommonModule>
<CommonModule>ОбщегоНазначения</CommonModule>
<CommonModule>ОбщегоНазначенияВызовСервера</CommonModule>
<CommonModule>ОбщегоНазначенияГлобальный</CommonModule>
<CommonModule>ОбщегоНазначенияКлиент</CommonModule>
<CommonModule>ОбщегоНазначенияКлиентПереопределяемый</CommonModule>
<CommonModule>ОбщегоНазначенияКлиентПовтИсп</CommonModule>
<CommonModule>ОбщегоНазначенияКлиентСервер</CommonModule>
<CommonModule>ОбщегоНазначенияПереопределяемый</CommonModule>
<CommonModule>ОбщегоНазначенияСлужебныйКлиент</CommonModule>
<CommonModule>ОбщегоНазначенияСлужебныйКлиентСервер</CommonModule>
<CommonModule>ОтправкаSMS</CommonModule>
<CommonModule>ОтправкаSMSКлиент</CommonModule>
<CommonModule>ОтправкаSMSКлиентПереопределяемый</CommonModule>
<CommonModule>ОтправкаSMSПереопределяемый</CommonModule>
<CommonModule>ОтправкаSMSПовтИсп</CommonModule>
<CommonModule>ОтправкаSMSЧерезSMS4B</CommonModule>
<CommonModule>ОтправкаSMSЧерезSMSRU</CommonModule>
<CommonModule>ОтправкаSMSЧерезSMSЦЕНТР</CommonModule>
<CommonModule>ОтправкаSMSЧерезБилайн</CommonModule>
<CommonModule>ОтправкаSMSЧерезМТС</CommonModule>
<CommonModule>ОтправкаSMSЧерезСМСУслуги</CommonModule>
<CommonModule>ОтчетыКлиент</CommonModule>
<CommonModule>ОтчетыКлиентПереопределяемый</CommonModule>
<CommonModule>ОтчетыКлиентСервер</CommonModule>
<CommonModule>ОтчетыПереопределяемый</CommonModule>
<CommonModule>ОтчетыСервер</CommonModule>
<CommonModule>ОценкаПроизводительности</CommonModule>
<CommonModule>ОценкаПроизводительностиВызовСервера</CommonModule>
<CommonModule>ОценкаПроизводительностиВызовСервераПовтИсп</CommonModule>
<CommonModule>ОценкаПроизводительностиГлобальный</CommonModule>
<CommonModule>ОценкаПроизводительностиКлиент</CommonModule>
<CommonModule>ОценкаПроизводительностиКлиентСервер</CommonModule>
<CommonModule>ОценкаПроизводительностиПовтИсп</CommonModule>
<CommonModule>ОценкаПроизводительностиСлужебный</CommonModule>
<CommonModule>ПодключаемыеКоманды</CommonModule>
<CommonModule>ПодключаемыеКомандыВызовСервера</CommonModule>
<CommonModule>ПодключаемыеКомандыКлиент</CommonModule>
<CommonModule>ПодключаемыеКомандыКлиентПовтИсп</CommonModule>
<CommonModule>ПодключаемыеКомандыКлиентСервер</CommonModule>
<CommonModule>ПодключаемыеКомандыПереопределяемый</CommonModule>
<CommonModule>ПодключаемыеКомандыПовтИсп</CommonModule>
<CommonModule>ПодсистемыКонфигурацииПереопределяемый</CommonModule>
<CommonModule>ПоискИУдалениеДублей</CommonModule>
<CommonModule>ПоискИУдалениеДублейКлиент</CommonModule>
<CommonModule>ПоискИУдалениеДублейПереопределяемый</CommonModule>
<CommonModule>ПолнотекстовыйПоискКлиент</CommonModule>
<CommonModule>ПолнотекстовыйПоискСервер</CommonModule>
<CommonModule>ПолнотекстовыйПоискСерверПереопределяемый</CommonModule>
<CommonModule>ПолнотекстовыйПоискСлужебныйВызовСервера</CommonModule>
<CommonModule>ПолнотекстовыйПоискСлужебныйКлиент</CommonModule>
<CommonModule>ПолучениеФайловИзИнтернета</CommonModule>
<CommonModule>ПолучениеФайловИзИнтернетаКлиент</CommonModule>
<CommonModule>ПолучениеФайловИзИнтернетаКлиентСервер</CommonModule>
<CommonModule>ПолучениеФайловИзИнтернетаСлужебный</CommonModule>
<CommonModule>ПолучениеФайловИзИнтернетаСлужебныйВызовСервера</CommonModule>
<CommonModule>ПолучениеФайловИзИнтернетаСлужебныйЛокализация</CommonModule>
<CommonModule>Пользователи</CommonModule>
<CommonModule>ПользователиКлиент</CommonModule>
<CommonModule>ПользователиКлиентСервер</CommonModule>
<CommonModule>ПользователиПереопределяемый</CommonModule>
<CommonModule>ПользователиСлужебный</CommonModule>
<CommonModule>ПользователиСлужебныйКлиент</CommonModule>
<CommonModule>ПользователиСлужебныйКлиентСервер</CommonModule>
<CommonModule>ПользователиСлужебныйПовтИсп</CommonModule>
<CommonModule>РаботаСАдресами</CommonModule>
<CommonModule>РаботаСАдресамиКлиент</CommonModule>
<CommonModule>РаботаСАдресамиКлиентСервер</CommonModule>
<CommonModule>РаботаСАдресамиПовтИсп</CommonModule>
<CommonModule>РаботаСПочтовымиСообщениями</CommonModule>
<CommonModule>РаботаСПочтовымиСообщениямиВызовСервера</CommonModule>
<CommonModule>РаботаСПочтовымиСообщениямиКлиент</CommonModule>