-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHomeworkChecker.aip
More file actions
1393 lines (1393 loc) · 241 KB
/
HomeworkChecker.aip
File metadata and controls
1393 lines (1393 loc) · 241 KB
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" standalone="yes"?>
<DOCUMENT Type="Advanced Installer" CreateVersion="22.4" version="22.4" Modules="professional" RootPath="." Language="zh" Id="{57D11940-C34D-48BD-8E97-D313C03DB903}">
<COMPONENT cid="caphyon.advinst.msicomp.MsiPropsComponent">
<ROW Property="AI_BITMAP_DISPLAY_MODE" Value="0"/>
<ROW Property="AI_CF_FRAME_STYLE" Value="FlatCaption;FlatBorder;NoInactive" MultiBuildValue="DefaultBuild:true;true;true" MsiKey="AI_CF_FRAME_STYLE"/>
<ROW Property="AI_UPGRADE" Value="No"/>
<ROW Property="ALLUSERS" Value="1"/>
<ROW Property="ARPCOMMENTS" Value=" [|ProductName] 安装程序" ValueLocId="*"/>
<ROW Property="ARPNOMODIFY" MultiBuildValue="DefaultBuild:1"/>
<ROW Property="ARPNOREPAIR" Value="1"/>
<ROW Property="ARPPRODUCTICON" Value="logo.exe" Type="8"/>
<ROW Property="AiEmbeddedUI" Value="1"/>
<ROW Property="AiLicenseAgreementLink" Value="https://www.gnu.org/licenses/gpl-3.0.en.html#license-text"/>
<ROW Property="AiWinUI" Value="1"/>
<ROW Property="AppLogoIcon" Value="applogo.png" MultiBuildValue="DefaultBuild:logo.png" Type="1" MsiKey="AppLogoIcon"/>
<ROW Property="AppLogoIconDark" Value="applogodark.png" MultiBuildValue="DefaultBuild:logo.png" Type="1" MsiKey="AppLogoIconDark"/>
<ROW Property="Manufacturer" Value="XFTY"/>
<ROW Property="ProductCode" Value="2052:{F166A883-22D1-4B5E-A15B-8427EC451DE6} " Type="16"/>
<ROW Property="ProductLanguage" Value="1033"/>
<ROW Property="ProductName" Value="HomeworkChecker"/>
<ROW Property="ProductVersion" Value="1.6.0" Options="32"/>
<ROW Property="SecureCustomProperties" Value="OLDPRODUCTS;AI_NEWERPRODUCTFOUND"/>
<ROW Property="UpgradeCode" Value="{2D56D45A-3B08-4C5D-AFBB-B4B707DD0595}"/>
<ROW Property="WindowsType9X" MultiBuildValue="DefaultBuild:Windows 9x/ME" ValueLocId="-"/>
<ROW Property="WindowsType9XDisplay" MultiBuildValue="DefaultBuild:Windows 9x/ME" ValueLocId="-"/>
<ROW Property="WindowsTypeNT40" MultiBuildValue="DefaultBuild:Windows NT 4.0" ValueLocId="-"/>
<ROW Property="WindowsTypeNT40Display" MultiBuildValue="DefaultBuild:Windows NT 4.0" ValueLocId="-"/>
<ROW Property="WindowsTypeNT50" MultiBuildValue="DefaultBuild:Windows 2000" ValueLocId="-"/>
<ROW Property="WindowsTypeNT50Display" MultiBuildValue="DefaultBuild:Windows 2000" ValueLocId="-"/>
<ROW Property="WindowsTypeNT5X" MultiBuildValue="DefaultBuild:Windows XP/2003" ValueLocId="-"/>
<ROW Property="WindowsTypeNT5XDisplay" MultiBuildValue="DefaultBuild:Windows XP/2003" ValueLocId="-"/>
<ROW Property="WindowsTypeNT60" MultiBuildValue="DefaultBuild:Windows Vista/Server 2008" ValueLocId="-"/>
<ROW Property="WindowsTypeNT60Display" MultiBuildValue="DefaultBuild:Windows Vista/Server 2008" ValueLocId="-"/>
</COMPONENT>
<COMPONENT cid="caphyon.advinst.msicomp.MsiDirsComponent">
<ROW Directory="APPDIR" Directory_Parent="TARGETDIR" DefaultDir="APPDIR:." IsPseudoRoot="1" DirectoryOptions="3"/>
<ROW Directory="SHORTCUTDIR" Directory_Parent="TARGETDIR" DefaultDir="SHORTC~1|SHORTCUTDIR" IsPseudoRoot="1"/>
<ROW Directory="TARGETDIR" DefaultDir="SourceDir"/>
<ROW Directory="bin_1_Dir" Directory_Parent="jdk25.0.210_Dir" DefaultDir="bin" DirectoryOptions="3"/>
<ROW Directory="bin_Dir" Directory_Parent="javafxsdk25.0.2_Dir" DefaultDir="bin" DirectoryOptions="3"/>
<ROW Directory="bridge_Dir" Directory_Parent="win32_Dir" DefaultDir="bridge" DirectoryOptions="3"/>
<ROW Directory="conf_Dir" Directory_Parent="jdk25.0.210_Dir" DefaultDir="conf" DirectoryOptions="3"/>
<ROW Directory="include_Dir" Directory_Parent="jdk25.0.210_Dir" DefaultDir="include" DirectoryOptions="3"/>
<ROW Directory="java.base_Dir" Directory_Parent="legal_Dir" DefaultDir="JAVA~1.BAS|java.base" DirectoryOptions="3"/>
<ROW Directory="java.compiler_Dir" Directory_Parent="legal_Dir" DefaultDir="JAVA~1.COM|java.compiler" DirectoryOptions="3"/>
<ROW Directory="java.datatransfer_Dir" Directory_Parent="legal_Dir" DefaultDir="JAVA~1.DAT|java.datatransfer" DirectoryOptions="3"/>
<ROW Directory="java.desktop_Dir" Directory_Parent="legal_Dir" DefaultDir="JAVA~1.DES|java.desktop" DirectoryOptions="3"/>
<ROW Directory="java.instrument_Dir" Directory_Parent="legal_Dir" DefaultDir="JAVA~1.INS|java.instrument" DirectoryOptions="3"/>
<ROW Directory="java.logging_Dir" Directory_Parent="legal_Dir" DefaultDir="JAVA~1.LOG|java.logging" DirectoryOptions="3"/>
<ROW Directory="java.management.rmi_Dir" Directory_Parent="legal_Dir" DefaultDir="JAVAMA~1.RMI|java.management.rmi" DirectoryOptions="3"/>
<ROW Directory="java.management_Dir" Directory_Parent="legal_Dir" DefaultDir="JAVA~1.MAN|java.management" DirectoryOptions="3"/>
<ROW Directory="java.naming_Dir" Directory_Parent="legal_Dir" DefaultDir="JAVA~1.NAM|java.naming" DirectoryOptions="3"/>
<ROW Directory="java.net.http_Dir" Directory_Parent="legal_Dir" DefaultDir="JAVANE~1.HTT|java.net.http" DirectoryOptions="3"/>
<ROW Directory="java.prefs_Dir" Directory_Parent="legal_Dir" DefaultDir="JAVA~1.PRE|java.prefs" DirectoryOptions="3"/>
<ROW Directory="java.rmi_Dir" Directory_Parent="legal_Dir" DefaultDir="java.rmi" DirectoryOptions="3"/>
<ROW Directory="java.scripting_Dir" Directory_Parent="legal_Dir" DefaultDir="JAVA~1.SCR|java.scripting" DirectoryOptions="3"/>
<ROW Directory="java.se_Dir" Directory_Parent="legal_Dir" DefaultDir="java.se" DirectoryOptions="3"/>
<ROW Directory="java.security.jgss_Dir" Directory_Parent="legal_Dir" DefaultDir="JAVASE~1.JGS|java.security.jgss" DirectoryOptions="3"/>
<ROW Directory="java.security.sasl_Dir" Directory_Parent="legal_Dir" DefaultDir="JAVASE~1.SAS|java.security.sasl" DirectoryOptions="3"/>
<ROW Directory="java.smartcardio_Dir" Directory_Parent="legal_Dir" DefaultDir="JAVA~1.SMA|java.smartcardio" DirectoryOptions="3"/>
<ROW Directory="java.sql.rowset_Dir" Directory_Parent="legal_Dir" DefaultDir="JAVASQ~1.ROW|java.sql.rowset" DirectoryOptions="3"/>
<ROW Directory="java.sql_Dir" Directory_Parent="legal_Dir" DefaultDir="java.sql" DirectoryOptions="3"/>
<ROW Directory="java.transaction.xa_Dir" Directory_Parent="legal_Dir" DefaultDir="JAVATR~1.XA|java.transaction.xa" DirectoryOptions="3"/>
<ROW Directory="java.xml.crypto_Dir" Directory_Parent="legal_Dir" DefaultDir="JAVAXM~1.CRY|java.xml.crypto" DirectoryOptions="3"/>
<ROW Directory="java.xml_Dir" Directory_Parent="legal_Dir" DefaultDir="java.xml" DirectoryOptions="3"/>
<ROW Directory="javafxsdk25.0.2_Dir" Directory_Parent="APPDIR" DefaultDir="JAVAFX~1.2|javafx-sdk-25.0.2" DirectoryOptions="3"/>
<ROW Directory="jdk.accessibility_Dir" Directory_Parent="legal_Dir" DefaultDir="JDK~1.ACC|jdk.accessibility" DirectoryOptions="3"/>
<ROW Directory="jdk.attach_Dir" Directory_Parent="legal_Dir" DefaultDir="JDK~1.ATT|jdk.attach" DirectoryOptions="3"/>
<ROW Directory="jdk.charsets_Dir" Directory_Parent="legal_Dir" DefaultDir="JDK~1.CHA|jdk.charsets" DirectoryOptions="3"/>
<ROW Directory="jdk.compiler_Dir" Directory_Parent="legal_Dir" DefaultDir="JDK~1.COM|jdk.compiler" DirectoryOptions="3"/>
<ROW Directory="jdk.crypto.cryptoki_Dir" Directory_Parent="legal_Dir" DefaultDir="JDKCRY~1.CRY|jdk.crypto.cryptoki" DirectoryOptions="3"/>
<ROW Directory="jdk.crypto.ec_Dir" Directory_Parent="legal_Dir" DefaultDir="JDKCRY~1.EC|jdk.crypto.ec" DirectoryOptions="3"/>
<ROW Directory="jdk.crypto.mscapi_Dir" Directory_Parent="legal_Dir" DefaultDir="JDKCRY~1.MSC|jdk.crypto.mscapi" DirectoryOptions="3"/>
<ROW Directory="jdk.dynalink_Dir" Directory_Parent="legal_Dir" DefaultDir="JDK~1.DYN|jdk.dynalink" DirectoryOptions="3"/>
<ROW Directory="jdk.editpad_Dir" Directory_Parent="legal_Dir" DefaultDir="JDK~1.EDI|jdk.editpad" DirectoryOptions="3"/>
<ROW Directory="jdk.graal.compiler.management_Dir" Directory_Parent="legal_Dir" DefaultDir="JDKGRA~1.MAN|jdk.graal.compiler.management" DirectoryOptions="3"/>
<ROW Directory="jdk.graal.compiler_Dir" Directory_Parent="legal_Dir" DefaultDir="JDKGRA~1.COM|jdk.graal.compiler" DirectoryOptions="3"/>
<ROW Directory="jdk.hotspot.agent_Dir" Directory_Parent="legal_Dir" DefaultDir="JDKHOT~1.AGE|jdk.hotspot.agent" DirectoryOptions="3"/>
<ROW Directory="jdk.httpserver_Dir" Directory_Parent="legal_Dir" DefaultDir="JDK~1.HTT|jdk.httpserver" DirectoryOptions="3"/>
<ROW Directory="jdk.incubator.vector_Dir" Directory_Parent="legal_Dir" DefaultDir="JDKINC~1.VEC|jdk.incubator.vector" DirectoryOptions="3"/>
<ROW Directory="jdk.internal.ed_Dir" Directory_Parent="legal_Dir" DefaultDir="JDKINT~1.ED|jdk.internal.ed" DirectoryOptions="3"/>
<ROW Directory="jdk.internal.jvmstat_Dir" Directory_Parent="legal_Dir" DefaultDir="JDKINT~1.JVM|jdk.internal.jvmstat" DirectoryOptions="3"/>
<ROW Directory="jdk.internal.le_Dir" Directory_Parent="legal_Dir" DefaultDir="JDKINT~1.LE|jdk.internal.le" DirectoryOptions="3"/>
<ROW Directory="jdk.internal.md_Dir" Directory_Parent="legal_Dir" DefaultDir="JDKINT~1.MD|jdk.internal.md" DirectoryOptions="3"/>
<ROW Directory="jdk.internal.opt_Dir" Directory_Parent="legal_Dir" DefaultDir="JDKINT~1.OPT|jdk.internal.opt" DirectoryOptions="3"/>
<ROW Directory="jdk.internal.vm.ci_Dir" Directory_Parent="legal_Dir" DefaultDir="JDKINT~1.CI|jdk.internal.vm.ci" DirectoryOptions="3"/>
<ROW Directory="jdk.jartool_Dir" Directory_Parent="legal_Dir" DefaultDir="JDK~1.JAR|jdk.jartool" DirectoryOptions="3"/>
<ROW Directory="jdk.javadoc_Dir" Directory_Parent="legal_Dir" DefaultDir="JDK~1.JAV|jdk.javadoc" DirectoryOptions="3"/>
<ROW Directory="jdk.jcmd_Dir" Directory_Parent="legal_Dir" DefaultDir="JDK~1.JCM|jdk.jcmd" DirectoryOptions="3"/>
<ROW Directory="jdk.jconsole_Dir" Directory_Parent="legal_Dir" DefaultDir="JDK~1.JCO|jdk.jconsole" DirectoryOptions="3"/>
<ROW Directory="jdk.jdeps_Dir" Directory_Parent="legal_Dir" DefaultDir="JDK~1.JDE|jdk.jdeps" DirectoryOptions="3"/>
<ROW Directory="jdk.jdi_Dir" Directory_Parent="legal_Dir" DefaultDir="jdk.jdi" DirectoryOptions="3"/>
<ROW Directory="jdk.jdwp.agent_Dir" Directory_Parent="legal_Dir" DefaultDir="JDKJDW~1.AGE|jdk.jdwp.agent" DirectoryOptions="3"/>
<ROW Directory="jdk.jfr_Dir" Directory_Parent="legal_Dir" DefaultDir="jdk.jfr" DirectoryOptions="3"/>
<ROW Directory="jdk.jlink_Dir" Directory_Parent="legal_Dir" DefaultDir="JDK~1.JLI|jdk.jlink" DirectoryOptions="3"/>
<ROW Directory="jdk.jpackage_Dir" Directory_Parent="legal_Dir" DefaultDir="JDK~1.JPA|jdk.jpackage" DirectoryOptions="3"/>
<ROW Directory="jdk.jshell_Dir" Directory_Parent="legal_Dir" DefaultDir="JDK~1.JSH|jdk.jshell" DirectoryOptions="3"/>
<ROW Directory="jdk.jsobject_Dir" Directory_Parent="legal_Dir" DefaultDir="JDK~1.JSO|jdk.jsobject" DirectoryOptions="3"/>
<ROW Directory="jdk.jstatd_Dir" Directory_Parent="legal_Dir" DefaultDir="JDK~1.JST|jdk.jstatd" DirectoryOptions="3"/>
<ROW Directory="jdk.localedata_Dir" Directory_Parent="legal_Dir" DefaultDir="JDK~1.LOC|jdk.localedata" DirectoryOptions="3"/>
<ROW Directory="jdk.management.agent_Dir" Directory_Parent="legal_Dir" DefaultDir="JDKMAN~1.AGE|jdk.management.agent" DirectoryOptions="3"/>
<ROW Directory="jdk.management.jfr_Dir" Directory_Parent="legal_Dir" DefaultDir="JDKMAN~1.JFR|jdk.management.jfr" DirectoryOptions="3"/>
<ROW Directory="jdk.management_Dir" Directory_Parent="legal_Dir" DefaultDir="JDK~1.MAN|jdk.management" DirectoryOptions="3"/>
<ROW Directory="jdk.naming.dns_Dir" Directory_Parent="legal_Dir" DefaultDir="JDKNAM~1.DNS|jdk.naming.dns" DirectoryOptions="3"/>
<ROW Directory="jdk.naming.rmi_Dir" Directory_Parent="legal_Dir" DefaultDir="JDKNAM~1.RMI|jdk.naming.rmi" DirectoryOptions="3"/>
<ROW Directory="jdk.net_Dir" Directory_Parent="legal_Dir" DefaultDir="jdk.net" DirectoryOptions="3"/>
<ROW Directory="jdk.nio.mapmode_Dir" Directory_Parent="legal_Dir" DefaultDir="JDKNIO~1.MAP|jdk.nio.mapmode" DirectoryOptions="3"/>
<ROW Directory="jdk.sctp_Dir" Directory_Parent="legal_Dir" DefaultDir="JDK~1.SCT|jdk.sctp" DirectoryOptions="3"/>
<ROW Directory="jdk.security.auth_Dir" Directory_Parent="legal_Dir" DefaultDir="JDKSEC~1.AUT|jdk.security.auth" DirectoryOptions="3"/>
<ROW Directory="jdk.security.jgss_Dir" Directory_Parent="legal_Dir" DefaultDir="JDKSEC~1.JGS|jdk.security.jgss" DirectoryOptions="3"/>
<ROW Directory="jdk.unsupported.desktop_Dir" Directory_Parent="legal_Dir" DefaultDir="JDKUNS~1.DES|jdk.unsupported.desktop" DirectoryOptions="3"/>
<ROW Directory="jdk.unsupported_Dir" Directory_Parent="legal_Dir" DefaultDir="JDK~1.UNS|jdk.unsupported" DirectoryOptions="3"/>
<ROW Directory="jdk.xml.dom_Dir" Directory_Parent="legal_Dir" DefaultDir="JDKXML~1.DOM|jdk.xml.dom" DirectoryOptions="3"/>
<ROW Directory="jdk.zipfs_Dir" Directory_Parent="legal_Dir" DefaultDir="JDK~1.ZIP|jdk.zipfs" DirectoryOptions="3"/>
<ROW Directory="jdk25.0.210_Dir" Directory_Parent="APPDIR" DefaultDir="JDK-25~1.2_1|jdk-25.0.2+10" DirectoryOptions="3"/>
<ROW Directory="jfr_Dir" Directory_Parent="lib_1_Dir" DefaultDir="jfr" DirectoryOptions="3"/>
<ROW Directory="jmods_Dir" Directory_Parent="jdk25.0.210_Dir" DefaultDir="jmods" DirectoryOptions="3"/>
<ROW Directory="legal_Dir" Directory_Parent="jdk25.0.210_Dir" DefaultDir="legal" DirectoryOptions="3"/>
<ROW Directory="lib_1_Dir" Directory_Parent="jdk25.0.210_Dir" DefaultDir="lib" DirectoryOptions="3"/>
<ROW Directory="lib_Dir" Directory_Parent="javafxsdk25.0.2_Dir" DefaultDir="lib" DirectoryOptions="3"/>
<ROW Directory="limited_Dir" Directory_Parent="policy_Dir" DefaultDir="limited" DirectoryOptions="3"/>
<ROW Directory="management_Dir" Directory_Parent="conf_Dir" DefaultDir="MANAGE~1|management" DirectoryOptions="3"/>
<ROW Directory="policy_Dir" Directory_Parent="security_Dir" DefaultDir="policy" DirectoryOptions="3"/>
<ROW Directory="security_1_Dir" Directory_Parent="lib_1_Dir" DefaultDir="security" DirectoryOptions="3"/>
<ROW Directory="security_Dir" Directory_Parent="conf_Dir" DefaultDir="security" DirectoryOptions="3"/>
<ROW Directory="server_Dir" Directory_Parent="bin_1_Dir" DefaultDir="server" DirectoryOptions="3"/>
<ROW Directory="unlimited_Dir" Directory_Parent="policy_Dir" DefaultDir="UNLIMI~1|unlimited" DirectoryOptions="3"/>
<ROW Directory="win32_Dir" Directory_Parent="include_Dir" DefaultDir="win32" DirectoryOptions="3"/>
</COMPONENT>
<COMPONENT cid="caphyon.advinst.msicomp.MsiCompsComponent">
<ROW Component="ADDITIONAL_LICENSE_INFO" ComponentId="{66DF4D9C-BB59-41BA-A7AF-3AAD6F1861DF}" Directory_="java.base_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_1" ComponentId="{7C0571F1-BCBB-44AB-826A-95A4BA94E6BF}" Directory_="java.compiler_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_1" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_10" ComponentId="{2A76B18B-7A9D-4E9F-A554-5C286154B77A}" Directory_="java.prefs_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_10" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_11" ComponentId="{29030785-30E1-4C09-9DA7-C1756DA6C304}" Directory_="java.rmi_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_11" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_12" ComponentId="{5A49857D-666C-4B8B-AE22-6DC494B394D4}" Directory_="java.scripting_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_12" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_13" ComponentId="{8A0A30D1-B748-4777-9DA8-DF11E571CAEC}" Directory_="java.se_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_13" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_14" ComponentId="{90A9A5C8-B817-4ADE-ABAD-C8212BE04895}" Directory_="java.security.jgss_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_14" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_15" ComponentId="{B2990B51-DCB4-46B3-8AB1-2B02FC5C79B3}" Directory_="java.security.sasl_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_15" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_16" ComponentId="{F6F6E6D0-CC63-407E-BCB5-6210619325FC}" Directory_="java.smartcardio_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_16" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_17" ComponentId="{AAFC6F3E-1E3C-4849-BCBF-3AC0DFD9D73C}" Directory_="java.sql_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_17" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_18" ComponentId="{94454596-C9AC-4CED-99EC-101D11084FF2}" Directory_="java.sql.rowset_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_18" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_19" ComponentId="{D27D5747-66F1-438C-9D7D-998AA3ECEB9D}" Directory_="java.transaction.xa_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_19" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_2" ComponentId="{B513C901-7126-4779-AEDC-808CC73762BD}" Directory_="java.datatransfer_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_2" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_20" ComponentId="{58E653DF-A84A-4D78-A981-563C7D1541C8}" Directory_="java.xml_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_20" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_21" ComponentId="{EF08C557-F40E-402B-B861-F9C1148E7739}" Directory_="java.xml.crypto_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_21" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_22" ComponentId="{4F47BEAC-F370-4BC0-A0D8-811A4AA64260}" Directory_="jdk.accessibility_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_22" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_23" ComponentId="{AEDD374E-D77D-4F33-97BB-7CE7699B8543}" Directory_="jdk.attach_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_23" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_24" ComponentId="{EF570730-E0E7-4C89-8507-6F3A396C41BF}" Directory_="jdk.charsets_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_24" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_25" ComponentId="{74EF959B-A3AE-4371-8579-AAF200232F54}" Directory_="jdk.compiler_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_25" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_26" ComponentId="{03C1C889-2066-4C2B-858A-7167AB7A477B}" Directory_="jdk.crypto.cryptoki_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_26" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_27" ComponentId="{7C486736-7DC9-4FD4-B9B9-A3440586EBEB}" Directory_="jdk.crypto.ec_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_27" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_28" ComponentId="{7EAC8B08-5F73-4351-804F-91202DCE90DD}" Directory_="jdk.crypto.mscapi_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_28" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_29" ComponentId="{3FA421C6-E7D5-45FB-BF02-071E9D1C1D53}" Directory_="jdk.dynalink_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_29" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_3" ComponentId="{8F89B128-7984-4137-A70E-5F4125097ED9}" Directory_="java.desktop_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_3" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_30" ComponentId="{787C9857-CCD3-4AD0-B48A-014292F67D81}" Directory_="jdk.editpad_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_30" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_31" ComponentId="{92DDF63A-99C1-4C3B-95A6-0F2F3C0EE41B}" Directory_="jdk.graal.compiler_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_31" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_32" ComponentId="{0F67F5ED-8799-49AC-8562-CEEF8267799F}" Directory_="jdk.graal.compiler.management_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_32" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_33" ComponentId="{69B92958-3DE9-43E3-BBEB-B6DCCFBB3CB1}" Directory_="jdk.hotspot.agent_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_33" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_34" ComponentId="{A230FAF2-C1B1-4E21-85FE-DFBB27D56456}" Directory_="jdk.httpserver_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_34" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_35" ComponentId="{50038C92-13AF-4D0A-A64F-BC2250C030C2}" Directory_="jdk.incubator.vector_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_35" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_36" ComponentId="{49779C37-0AA4-4E88-B0DA-E07A6E3F3C33}" Directory_="jdk.internal.ed_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_36" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_37" ComponentId="{29C0778C-95FE-4040-927F-79CE9CB07457}" Directory_="jdk.internal.jvmstat_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_37" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_38" ComponentId="{958CB986-86D5-48EB-9BDD-2CCF42AC49BB}" Directory_="jdk.internal.le_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_38" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_39" ComponentId="{DC642BC4-13BA-4B4F-9492-D046174A311A}" Directory_="jdk.internal.md_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_39" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_4" ComponentId="{BBEB00F5-C90F-47B5-9CDE-BB29404E2A60}" Directory_="java.instrument_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_4" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_40" ComponentId="{57C69BAB-46DD-4F56-81A6-A5D946571C79}" Directory_="jdk.internal.opt_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_40" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_41" ComponentId="{108CDABB-EB70-482C-A461-6840728133A4}" Directory_="jdk.internal.vm.ci_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_41" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_42" ComponentId="{4B79FF32-5E3E-43D2-A519-FA1BFED075C1}" Directory_="jdk.jartool_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_42" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_43" ComponentId="{727B4B60-3C7E-4940-9B57-F35EC4496729}" Directory_="jdk.javadoc_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_43" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_44" ComponentId="{CCB4DF48-838E-4F90-AED1-B32CCBCFE341}" Directory_="jdk.jcmd_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_44" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_45" ComponentId="{435FFB49-44D1-4F25-9776-1E2594A18C05}" Directory_="jdk.jconsole_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_45" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_46" ComponentId="{6B5092CA-FFBB-4D66-8130-C7A81B26AF8B}" Directory_="jdk.jdeps_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_46" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_47" ComponentId="{D05D3857-1234-4598-9202-5D33E4399BA0}" Directory_="jdk.jdi_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_47" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_48" ComponentId="{62AC4112-1E22-4754-BD06-7C919FBF68BE}" Directory_="jdk.jdwp.agent_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_48" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_49" ComponentId="{1B1737E7-AFB9-431D-A7C8-5BDD9F4B1A5E}" Directory_="jdk.jfr_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_49" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_5" ComponentId="{CA1FC3C0-176B-4B3C-910A-C9FB388AA76D}" Directory_="java.logging_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_5" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_50" ComponentId="{014ECF95-D64C-4A37-8A69-CE4172DE42E1}" Directory_="jdk.jlink_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_50" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_51" ComponentId="{44E45AFD-A891-43CB-97E5-1AB240CB942D}" Directory_="jdk.jpackage_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_51" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_52" ComponentId="{529A1F05-0B0B-474C-88F7-B03A66800047}" Directory_="jdk.jshell_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_52" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_53" ComponentId="{69E1624F-529C-4C59-855B-8E85050ADEEF}" Directory_="jdk.jsobject_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_53" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_54" ComponentId="{92B44C4C-4EBF-4AE5-95DD-18855D6D9D03}" Directory_="jdk.jstatd_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_54" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_55" ComponentId="{173CA95D-66CB-471A-B467-8464B5EC5FF1}" Directory_="jdk.localedata_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_55" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_56" ComponentId="{7C4C28EA-84B4-4AE7-85EE-321BD9BD9647}" Directory_="jdk.management_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_56" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_57" ComponentId="{7AA32CE0-B0D1-42D7-8A9D-A83DCE98E4AE}" Directory_="jdk.management.agent_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_57" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_58" ComponentId="{6736699D-7F62-4306-ABDF-D9A73CE6F6EC}" Directory_="jdk.management.jfr_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_58" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_59" ComponentId="{AE0475B1-4E8B-4C98-B68A-8E1A36F625A2}" Directory_="jdk.naming.dns_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_59" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_6" ComponentId="{8977E6BF-7B4F-4900-A769-D7E33C381BF8}" Directory_="java.management_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_6" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_60" ComponentId="{AB565C22-7F3B-4593-92E3-5CB12EFC3F9B}" Directory_="jdk.naming.rmi_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_60" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_61" ComponentId="{E6EC4D8D-6192-47F8-968E-5EDC75098D4C}" Directory_="jdk.net_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_61" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_62" ComponentId="{1587DC6A-E8B5-4C09-9AFC-91DCDB59029A}" Directory_="jdk.nio.mapmode_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_62" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_63" ComponentId="{F3DCBF8D-A8BA-4539-A908-BA33FCBE4F45}" Directory_="jdk.sctp_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_63" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_64" ComponentId="{72A37288-A239-4139-857D-E16267044601}" Directory_="jdk.security.auth_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_64" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_65" ComponentId="{D19A230E-F1C8-43AA-8FC0-38486D30A644}" Directory_="jdk.security.jgss_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_65" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_66" ComponentId="{E0860D10-1FCE-4A04-87AC-331710BDF7B4}" Directory_="jdk.unsupported_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_66" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_67" ComponentId="{FE9ABB65-2010-4071-91E5-860FA85C3C87}" Directory_="jdk.unsupported.desktop_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_67" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_68" ComponentId="{857E073A-EA2E-453B-88E3-61F51921C221}" Directory_="jdk.xml.dom_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_68" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_69" ComponentId="{35D52386-EBEB-49B3-9F39-D9433DF7473E}" Directory_="jdk.zipfs_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_69" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_7" ComponentId="{9E74ED2F-1118-4241-BA1F-CD9C1A671DFB}" Directory_="java.management.rmi_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_7" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_8" ComponentId="{FD35EB3E-4F79-4262-9259-57C90B47355B}" Directory_="java.naming_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_8" Type="0"/>
<ROW Component="ADDITIONAL_LICENSE_INFO_9" ComponentId="{36EC6989-E911-4117-9CD2-E74CEF97148C}" Directory_="java.net.http_Dir" Attributes="0" KeyPath="ADDITIONAL_LICENSE_INFO_9" Type="0"/>
<ROW Component="APPDIR" ComponentId="{B90EC0EB-7D87-4597-BCBA-EA007E3B4815}" Directory_="APPDIR" Attributes="0"/>
<ROW Component="AccessBridgeCallbacks.h" ComponentId="{E1CD8F93-27F8-4F0E-8023-72E47D8328D1}" Directory_="bridge_Dir" Attributes="0" KeyPath="AccessBridgeCallbacks.h" Type="0"/>
<ROW Component="HomeworkCheckerLauncher.vbs" ComponentId="{C9E4BFC9-F303-4AA8-B423-D340970158B3}" Directory_="APPDIR" Attributes="0" KeyPath="HomeworkCheckerLauncher.vbs"/>
<ROW Component="ProductInformation" ComponentId="{91162D26-294B-4110-B9A7-F46ABA6D7065}" Directory_="APPDIR" Attributes="4" KeyPath="Version"/>
<ROW Component="README.txt" ComponentId="{DB04CCE8-802F-462E-950D-437522593A8C}" Directory_="policy_Dir" Attributes="0" KeyPath="README.txt" Type="0"/>
<ROW Component="SHORTCUTDIR" ComponentId="{BFC4BEC2-6E90-4497-B038-15DA85E98424}" Directory_="SHORTCUTDIR" Attributes="0"/>
<ROW Component="apimswincoreconsolel110.dll" ComponentId="{2FE04DC6-6E77-437D-B2A6-7B420FC0DC44}" Directory_="bin_Dir" Attributes="256" KeyPath="apimswincoreconsolel110.dll"/>
<ROW Component="apimswincoreconsolel110.dll_1" ComponentId="{B88B2B85-3A22-46E4-9055-D81A36F99AD4}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincoreconsolel110.dll_1"/>
<ROW Component="apimswincoreconsolel120.dll" ComponentId="{348C511B-CAA8-4100-AE41-4E16DE69FACE}" Directory_="bin_Dir" Attributes="256" KeyPath="apimswincoreconsolel120.dll"/>
<ROW Component="apimswincoreconsolel120.dll_1" ComponentId="{C2955EBE-64A2-432A-87E0-172701A6F676}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincoreconsolel120.dll_1"/>
<ROW Component="apimswincoredatetimel110.dll" ComponentId="{AC0E236A-11AA-4CEF-B771-BF255C5FE6A1}" Directory_="bin_Dir" Attributes="256" KeyPath="apimswincoredatetimel110.dll"/>
<ROW Component="apimswincoredatetimel110.dll_1" ComponentId="{650F3741-E835-440C-ACA7-A0DB9D123CE1}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincoredatetimel110.dll_1"/>
<ROW Component="apimswincoredebugl110.dll" ComponentId="{98F16B61-A7F8-402E-93E6-A6D04F0B4C81}" Directory_="bin_Dir" Attributes="256" KeyPath="apimswincoredebugl110.dll"/>
<ROW Component="apimswincoredebugl110.dll_1" ComponentId="{AC7F1BE4-DE78-4D15-844C-DF19842CD597}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincoredebugl110.dll_1"/>
<ROW Component="apimswincoreerrorhandlingl110.dll" ComponentId="{FA891E14-12E1-42D1-9E54-50F56BEB6CC0}" Directory_="bin_Dir" Attributes="256" KeyPath="apimswincoreerrorhandlingl110.dll"/>
<ROW Component="apimswincoreerrorhandlingl110.dll_1" ComponentId="{3CCA916C-6DA1-46B2-880F-BF3FCEE8DAFE}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincoreerrorhandlingl110.dll_1"/>
<ROW Component="apimswincorefibersl110.dll" ComponentId="{BE58DC5B-BADF-4570-AD6E-0FC697D46DBA}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincorefibersl110.dll"/>
<ROW Component="apimswincorefilel110.dll" ComponentId="{3BD1757E-8985-4620-8204-B82959E5CC89}" Directory_="bin_Dir" Attributes="256" KeyPath="apimswincorefilel110.dll"/>
<ROW Component="apimswincorefilel110.dll_1" ComponentId="{3D9C469A-CF5B-4F91-8809-8E0DC8ABE77B}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincorefilel110.dll_1"/>
<ROW Component="apimswincorefilel120.dll" ComponentId="{94DE41F8-2FF4-4D38-A293-C933AA9BDE95}" Directory_="bin_Dir" Attributes="256" KeyPath="apimswincorefilel120.dll"/>
<ROW Component="apimswincorefilel120.dll_1" ComponentId="{686CDF96-109F-42DA-BC24-9BA3264A75CD}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincorefilel120.dll_1"/>
<ROW Component="apimswincorefilel210.dll" ComponentId="{B6103310-D3DC-498E-A08D-ECFF0DB10656}" Directory_="bin_Dir" Attributes="256" KeyPath="apimswincorefilel210.dll"/>
<ROW Component="apimswincorefilel210.dll_1" ComponentId="{C2BD222F-850A-4380-AFC2-7CC49E5CE1AF}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincorefilel210.dll_1"/>
<ROW Component="apimswincorehandlel110.dll" ComponentId="{84027B01-11EA-4962-9E44-171F1BFC362C}" Directory_="bin_Dir" Attributes="256" KeyPath="apimswincorehandlel110.dll"/>
<ROW Component="apimswincorehandlel110.dll_1" ComponentId="{7A6A272C-C126-434E-A922-598A10C10F07}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincorehandlel110.dll_1"/>
<ROW Component="apimswincoreheapl110.dll" ComponentId="{BFCD5246-7437-4E73-84C1-BD56C6375592}" Directory_="bin_Dir" Attributes="256" KeyPath="apimswincoreheapl110.dll"/>
<ROW Component="apimswincoreheapl110.dll_1" ComponentId="{699626CF-159E-45D9-81EE-DFA91CADA772}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincoreheapl110.dll_1"/>
<ROW Component="apimswincoreinterlockedl110.dll" ComponentId="{031FD790-A5CE-4864-9F36-421EE284901E}" Directory_="bin_Dir" Attributes="256" KeyPath="apimswincoreinterlockedl110.dll"/>
<ROW Component="apimswincoreinterlockedl110.dll_1" ComponentId="{DA3AD8A2-A5C9-4E4C-B5D0-136A6FEF1F09}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincoreinterlockedl110.dll_1"/>
<ROW Component="apimswincorelibraryloaderl110.dll" ComponentId="{095845E3-9B5A-441A-8E91-E1E2992ECF7D}" Directory_="bin_Dir" Attributes="256" KeyPath="apimswincorelibraryloaderl110.dll"/>
<ROW Component="apimswincorelibraryloaderl110.dll_1" ComponentId="{4B7459BB-BCFD-4D4C-B60F-C2F4E387BE9A}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincorelibraryloaderl110.dll_1"/>
<ROW Component="apimswincorelocalizationl120.dll" ComponentId="{CD8AA761-2B0D-4CE8-93CE-44A837EF84C2}" Directory_="bin_Dir" Attributes="256" KeyPath="apimswincorelocalizationl120.dll"/>
<ROW Component="apimswincorelocalizationl120.dll_1" ComponentId="{43B89B86-B682-4F2C-B4F8-46A27111C748}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincorelocalizationl120.dll_1"/>
<ROW Component="apimswincorememoryl110.dll" ComponentId="{31AA220F-A3D9-4F87-B1FA-061723423347}" Directory_="bin_Dir" Attributes="256" KeyPath="apimswincorememoryl110.dll"/>
<ROW Component="apimswincorememoryl110.dll_1" ComponentId="{DCBDEBD2-F436-4EC9-B429-063FA658045B}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincorememoryl110.dll_1"/>
<ROW Component="apimswincorenamedpipel110.dll" ComponentId="{BA04E130-4470-4168-8123-05C9E99F5162}" Directory_="bin_Dir" Attributes="256" KeyPath="apimswincorenamedpipel110.dll"/>
<ROW Component="apimswincorenamedpipel110.dll_1" ComponentId="{792CF310-226A-449D-A137-9DB4C2FF8B21}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincorenamedpipel110.dll_1"/>
<ROW Component="apimswincoreprocessenvironmentl110.dll" ComponentId="{2B84D676-D57C-458E-A440-6AB625F37F8E}" Directory_="bin_Dir" Attributes="256" KeyPath="apimswincoreprocessenvironmentl110.dll"/>
<ROW Component="apimswincoreprocessenvironmentl110.dll_1" ComponentId="{E8CA08FF-41CB-4A69-B57B-B4C10CD88EC5}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincoreprocessenvironmentl110.dll_1"/>
<ROW Component="apimswincoreprocessthreadsl110.dll" ComponentId="{080E25E3-1040-4510-A8AA-24C033568C12}" Directory_="bin_Dir" Attributes="256" KeyPath="apimswincoreprocessthreadsl110.dll"/>
<ROW Component="apimswincoreprocessthreadsl110.dll_1" ComponentId="{0754F04D-D084-4132-BF33-F3152D5BBBCE}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincoreprocessthreadsl110.dll_1"/>
<ROW Component="apimswincoreprocessthreadsl111.dll" ComponentId="{4E618B7C-B9A3-4F66-BD81-A2E5B035296C}" Directory_="bin_Dir" Attributes="256" KeyPath="apimswincoreprocessthreadsl111.dll"/>
<ROW Component="apimswincoreprocessthreadsl111.dll_1" ComponentId="{33A14EBA-29A7-48D0-B205-BA90D3A6076B}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincoreprocessthreadsl111.dll_1"/>
<ROW Component="apimswincoreprofilel110.dll" ComponentId="{8430DB5D-D4C3-4837-9DA0-BFF0C40AE51F}" Directory_="bin_Dir" Attributes="256" KeyPath="apimswincoreprofilel110.dll"/>
<ROW Component="apimswincoreprofilel110.dll_1" ComponentId="{5274AB58-15C6-4CDD-9BF8-34A4A28FBD6F}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincoreprofilel110.dll_1"/>
<ROW Component="apimswincorertlsupportl110.dll" ComponentId="{95CC5948-D8A0-4549-B4E6-1F296A0AA6A8}" Directory_="bin_Dir" Attributes="256" KeyPath="apimswincorertlsupportl110.dll"/>
<ROW Component="apimswincorertlsupportl110.dll_1" ComponentId="{8E3281EF-9901-4196-8001-13C9BA11ED15}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincorertlsupportl110.dll_1"/>
<ROW Component="apimswincorestringl110.dll" ComponentId="{E93B064E-90BA-4D04-AD63-239F2881225F}" Directory_="bin_Dir" Attributes="256" KeyPath="apimswincorestringl110.dll"/>
<ROW Component="apimswincorestringl110.dll_1" ComponentId="{266D96DD-AEBE-4181-8DAB-3050996D9170}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincorestringl110.dll_1"/>
<ROW Component="apimswincoresynchl110.dll" ComponentId="{809CC3EC-FA67-4D73-B1CC-E2066644FD5A}" Directory_="bin_Dir" Attributes="256" KeyPath="apimswincoresynchl110.dll"/>
<ROW Component="apimswincoresynchl110.dll_1" ComponentId="{2EFD02FA-B63A-4545-8019-DB1B5D9C05D3}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincoresynchl110.dll_1"/>
<ROW Component="apimswincoresynchl120.dll" ComponentId="{5A369FCC-752E-42FF-B93B-E4FBD5914AC9}" Directory_="bin_Dir" Attributes="256" KeyPath="apimswincoresynchl120.dll"/>
<ROW Component="apimswincoresynchl120.dll_1" ComponentId="{550C6612-A3CB-4094-862D-86D952065243}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincoresynchl120.dll_1"/>
<ROW Component="apimswincoresysinfol110.dll" ComponentId="{AD0C505D-925D-45AC-807E-D77518FCBEFC}" Directory_="bin_Dir" Attributes="256" KeyPath="apimswincoresysinfol110.dll"/>
<ROW Component="apimswincoresysinfol110.dll_1" ComponentId="{88B14DF0-6210-40CE-B8B4-140302D60C10}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincoresysinfol110.dll_1"/>
<ROW Component="apimswincoretimezonel110.dll" ComponentId="{B61D0DF8-E860-4F10-9AF8-114848A04A48}" Directory_="bin_Dir" Attributes="256" KeyPath="apimswincoretimezonel110.dll"/>
<ROW Component="apimswincoretimezonel110.dll_1" ComponentId="{666AC110-AB57-4745-90B0-0F26866DD055}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincoretimezonel110.dll_1"/>
<ROW Component="apimswincoreutill110.dll" ComponentId="{E159C8FF-0B2E-4E2E-B440-4827B09BA072}" Directory_="bin_Dir" Attributes="256" KeyPath="apimswincoreutill110.dll"/>
<ROW Component="apimswincoreutill110.dll_1" ComponentId="{C71A6E4F-DCD2-4E7E-A60C-F0E7F3691922}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincoreutill110.dll_1"/>
<ROW Component="apimswincrtconiol110.dll" ComponentId="{F21E4AF0-006D-41CB-BA39-03C1CA6BA649}" Directory_="bin_Dir" Attributes="256" KeyPath="apimswincrtconiol110.dll"/>
<ROW Component="apimswincrtconiol110.dll_1" ComponentId="{573D9BF1-BF67-4F4B-805C-57690EDBD0CA}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincrtconiol110.dll_1"/>
<ROW Component="apimswincrtconvertl110.dll" ComponentId="{478F256F-02EC-485D-8B89-3D98637B1608}" Directory_="bin_Dir" Attributes="256" KeyPath="apimswincrtconvertl110.dll"/>
<ROW Component="apimswincrtconvertl110.dll_1" ComponentId="{AFA851E3-5618-4EEF-98DD-6E3875626C31}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincrtconvertl110.dll_1"/>
<ROW Component="apimswincrtenvironmentl110.dll" ComponentId="{38E23AF8-861F-4479-98FC-D9F370D1E985}" Directory_="bin_Dir" Attributes="256" KeyPath="apimswincrtenvironmentl110.dll"/>
<ROW Component="apimswincrtenvironmentl110.dll_1" ComponentId="{C2CFA27D-CEAB-47F9-8E30-2B9F2FDEC36E}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincrtenvironmentl110.dll_1"/>
<ROW Component="apimswincrtfilesysteml110.dll" ComponentId="{951CCBBA-7F41-49D6-A30F-C4857694C09C}" Directory_="bin_Dir" Attributes="256" KeyPath="apimswincrtfilesysteml110.dll"/>
<ROW Component="apimswincrtfilesysteml110.dll_1" ComponentId="{4CDA98BD-C474-42FB-868F-B169AB444752}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincrtfilesysteml110.dll_1"/>
<ROW Component="apimswincrtheapl110.dll" ComponentId="{8DE52780-3063-4E74-8D5E-064636C829E8}" Directory_="bin_Dir" Attributes="256" KeyPath="apimswincrtheapl110.dll"/>
<ROW Component="apimswincrtheapl110.dll_1" ComponentId="{17860625-6537-4F00-9F9E-48F025C66472}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincrtheapl110.dll_1"/>
<ROW Component="apimswincrtlocalel110.dll" ComponentId="{09200133-DB3F-4B5B-8CC7-786B67AB1FC2}" Directory_="bin_Dir" Attributes="256" KeyPath="apimswincrtlocalel110.dll"/>
<ROW Component="apimswincrtlocalel110.dll_1" ComponentId="{A5CBF240-CCFA-496A-86AC-E768BBD51321}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincrtlocalel110.dll_1"/>
<ROW Component="apimswincrtmathl110.dll" ComponentId="{DC18A4F8-8993-4611-8C60-426CA7FB091A}" Directory_="bin_Dir" Attributes="256" KeyPath="apimswincrtmathl110.dll"/>
<ROW Component="apimswincrtmathl110.dll_1" ComponentId="{EF6B668F-B226-4041-AC66-1634E047BDB7}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincrtmathl110.dll_1"/>
<ROW Component="apimswincrtmultibytel110.dll" ComponentId="{5B35AB52-7010-422C-805C-E39803F05E4A}" Directory_="bin_Dir" Attributes="256" KeyPath="apimswincrtmultibytel110.dll"/>
<ROW Component="apimswincrtmultibytel110.dll_1" ComponentId="{18EF79E2-ED16-4D9F-9CBA-B30A0A24EEEF}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincrtmultibytel110.dll_1"/>
<ROW Component="apimswincrtprivatel110.dll" ComponentId="{40CD92C5-C6E9-4495-984F-FD2D959187C5}" Directory_="bin_Dir" Attributes="256" KeyPath="apimswincrtprivatel110.dll"/>
<ROW Component="apimswincrtprivatel110.dll_1" ComponentId="{DA05C958-D0CB-4351-8039-238EB6A4794F}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincrtprivatel110.dll_1"/>
<ROW Component="apimswincrtprocessl110.dll" ComponentId="{9CE4CB89-F824-4D9E-9A4A-D287267A121F}" Directory_="bin_Dir" Attributes="256" KeyPath="apimswincrtprocessl110.dll"/>
<ROW Component="apimswincrtprocessl110.dll_1" ComponentId="{A59843B6-9EBA-4E58-84A5-E20F3A6ED459}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincrtprocessl110.dll_1"/>
<ROW Component="apimswincrtruntimel110.dll" ComponentId="{63CDE5C7-2AD1-4DA9-908F-058CB0819D0D}" Directory_="bin_Dir" Attributes="256" KeyPath="apimswincrtruntimel110.dll"/>
<ROW Component="apimswincrtruntimel110.dll_1" ComponentId="{5EAC8DB8-8D01-4E8B-BA15-D4BDE4D2C6AA}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincrtruntimel110.dll_1"/>
<ROW Component="apimswincrtstdiol110.dll" ComponentId="{33AC1A38-E685-4265-A939-A11BAB7ECC77}" Directory_="bin_Dir" Attributes="256" KeyPath="apimswincrtstdiol110.dll"/>
<ROW Component="apimswincrtstdiol110.dll_1" ComponentId="{697B93C4-33F7-4EE5-80BB-BDCAA87694FE}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincrtstdiol110.dll_1"/>
<ROW Component="apimswincrtstringl110.dll" ComponentId="{00CBCE9D-7ED5-4D7C-8F9F-83F2C4117083}" Directory_="bin_Dir" Attributes="256" KeyPath="apimswincrtstringl110.dll"/>
<ROW Component="apimswincrtstringl110.dll_1" ComponentId="{B3423445-0E78-4B5A-8C80-9DA7BF2A5B26}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincrtstringl110.dll_1"/>
<ROW Component="apimswincrttimel110.dll" ComponentId="{E9A53545-CFA6-45F0-8658-80BAB6073A4E}" Directory_="bin_Dir" Attributes="256" KeyPath="apimswincrttimel110.dll"/>
<ROW Component="apimswincrttimel110.dll_1" ComponentId="{E02FEC33-1B67-4223-A7C7-30E623084BED}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincrttimel110.dll_1"/>
<ROW Component="apimswincrtutilityl110.dll" ComponentId="{D80CCEFF-00FC-431B-9D7A-675027EFB14B}" Directory_="bin_Dir" Attributes="256" KeyPath="apimswincrtutilityl110.dll"/>
<ROW Component="apimswincrtutilityl110.dll_1" ComponentId="{8FE6262F-11F6-4B80-9BF5-4D36FD9EBA13}" Directory_="bin_1_Dir" Attributes="256" KeyPath="apimswincrtutilityl110.dll_1"/>
<ROW Component="app.bat" ComponentId="{BFD58F58-ACC8-4A5F-9ADF-C09FE09863AE}" Directory_="APPDIR" Attributes="0" KeyPath="app.bat" Type="0"/>
<ROW Component="attach.dll" ComponentId="{2293D325-2F2A-4EC6-BF91-1AE94478A19A}" Directory_="bin_1_Dir" Attributes="256" KeyPath="attach.dll"/>
<ROW Component="awt.dll" ComponentId="{714AE3A1-48AC-43B1-9FDA-0B1EEC768536}" Directory_="bin_1_Dir" Attributes="256" KeyPath="awt.dll"/>
<ROW Component="blocked.certs" ComponentId="{11D1D9D6-177C-470F-85CF-73905062324A}" Directory_="security_1_Dir" Attributes="0" KeyPath="blocked.certs" Type="0"/>
<ROW Component="classes.jsa" ComponentId="{36EDD6A2-5C3A-4DAF-B409-3FB96839FF76}" Directory_="server_Dir" Attributes="0" KeyPath="classes.jsa" Type="0"/>
<ROW Component="classfile_constants.h" ComponentId="{0AE50CE4-A28D-4E4D-8059-60E21A7C4B13}" Directory_="include_Dir" Attributes="0" KeyPath="classfile_constants.h" Type="0"/>
<ROW Component="classlist" ComponentId="{BDA82B5A-8189-41CB-884B-81B2D03456C8}" Directory_="lib_1_Dir" Attributes="0" KeyPath="classlist" Type="0"/>
<ROW Component="decora_sse.dll" ComponentId="{87977E7E-C39C-4D75-9F3F-1B092A32FA1C}" Directory_="bin_Dir" Attributes="256" KeyPath="decora_sse.dll"/>
<ROW Component="default.jfc" ComponentId="{0DB84DAB-0408-4048-B651-B55F10286D8D}" Directory_="jfr_Dir" Attributes="0" KeyPath="default.jfc" Type="0"/>
<ROW Component="default_local.policy" ComponentId="{928FE35F-5CA5-450E-93D2-1A453C78EA4D}" Directory_="limited_Dir" Attributes="0" KeyPath="default_local.policy" Type="0"/>
<ROW Component="default_local.policy_1" ComponentId="{976C8466-F42B-4AE0-83F0-8D8E321D529E}" Directory_="unlimited_Dir" Attributes="0" KeyPath="default_local.policy_1" Type="0"/>
<ROW Component="dt_shmem.dll" ComponentId="{44AB5EA6-83E2-4334-8BA3-AD936385EEEC}" Directory_="bin_1_Dir" Attributes="256" KeyPath="dt_shmem.dll"/>
<ROW Component="dt_socket.dll" ComponentId="{0B6A3AA7-AEF2-4CF0-A815-6E9F187D353E}" Directory_="bin_1_Dir" Attributes="256" KeyPath="dt_socket.dll"/>
<ROW Component="extnet.dll" ComponentId="{C406982D-B94D-44BF-8A9C-CCB133B59BB3}" Directory_="bin_1_Dir" Attributes="256" KeyPath="extnet.dll"/>
<ROW Component="fontmanager.dll" ComponentId="{6731B162-7A97-473A-8B9C-E3918AE30E7D}" Directory_="bin_1_Dir" Attributes="256" KeyPath="fontmanager.dll"/>
<ROW Component="freetype.dll" ComponentId="{258C7876-5069-4628-A531-3AF3F57AD1D5}" Directory_="bin_1_Dir" Attributes="256" KeyPath="freetype.dll"/>
<ROW Component="fxplugins.dll" ComponentId="{3BDCBA09-ADC1-49FC-9881-E186112E54B7}" Directory_="bin_Dir" Attributes="256" KeyPath="fxplugins.dll"/>
<ROW Component="glass.dll" ComponentId="{F491C510-3A2F-4C0A-9D1A-FA652F23F17D}" Directory_="bin_Dir" Attributes="256" KeyPath="glass.dll"/>
<ROW Component="gliblite.dll" ComponentId="{A6367A9E-7407-4B57-97CE-091A405FF0DA}" Directory_="bin_Dir" Attributes="256" KeyPath="gliblite.dll"/>
<ROW Component="gstreamerlite.dll" ComponentId="{6EEE5BFA-036F-4C94-8D69-D44A5771B114}" Directory_="bin_Dir" Attributes="256" KeyPath="gstreamerlite.dll"/>
<ROW Component="instrument.dll" ComponentId="{ECB35989-1CEB-473F-A5DB-17DA6FC371C0}" Directory_="bin_1_Dir" Attributes="256" KeyPath="instrument.dll"/>
<ROW Component="j2gss.dll" ComponentId="{ECB9D553-9E1F-454A-8DBF-5D8DA4F3D886}" Directory_="bin_1_Dir" Attributes="256" KeyPath="j2gss.dll"/>
<ROW Component="j2pcsc.dll" ComponentId="{D54693B1-34D0-417E-8631-90B94C8B0692}" Directory_="bin_1_Dir" Attributes="256" KeyPath="j2pcsc.dll"/>
<ROW Component="j2pkcs11.dll" ComponentId="{9272E091-0793-4B1B-B894-B604133EA333}" Directory_="bin_1_Dir" Attributes="256" KeyPath="j2pkcs11.dll"/>
<ROW Component="jaas.dll" ComponentId="{15C1B7F7-3D02-4DD2-8489-75D66DE51B19}" Directory_="bin_1_Dir" Attributes="256" KeyPath="jaas.dll"/>
<ROW Component="jabswitch.exe" ComponentId="{987E8EBB-0011-40A6-B8AB-4147AA1DC002}" Directory_="bin_1_Dir" Attributes="256" KeyPath="jabswitch.exe"/>
<ROW Component="jaccessinspector.exe" ComponentId="{6D49DA54-D944-4064-9DDB-6DC25105FFDA}" Directory_="bin_1_Dir" Attributes="256" KeyPath="jaccessinspector.exe"/>
<ROW Component="jaccesswalker.exe" ComponentId="{3354D2BA-24C5-4DC0-A605-517DD577A4F0}" Directory_="bin_1_Dir" Attributes="256" KeyPath="jaccesswalker.exe"/>
<ROW Component="jar.exe" ComponentId="{80087533-7F9D-4AE5-AD0E-4E74A5463E5C}" Directory_="bin_1_Dir" Attributes="256" KeyPath="jar.exe"/>
<ROW Component="jarsigner.exe" ComponentId="{243F82D2-5375-4C12-B8C6-C96F59638597}" Directory_="bin_1_Dir" Attributes="256" KeyPath="jarsigner.exe"/>
<ROW Component="java.base.jmod" ComponentId="{4FE52138-102A-4CB4-A0C6-6BBA18C30134}" Directory_="jmods_Dir" Attributes="0" KeyPath="java.base.jmod" Type="0"/>
<ROW Component="java.dll" ComponentId="{F69AEE59-32D5-41F8-9880-788B9FAC9EC9}" Directory_="bin_1_Dir" Attributes="256" KeyPath="java.dll"/>
<ROW Component="java.exe" ComponentId="{1BFAE9AF-B596-46D6-837E-A03B3B03722D}" Directory_="bin_1_Dir" Attributes="256" KeyPath="java.exe"/>
<ROW Component="java.security" ComponentId="{D78AC58A-B339-42CD-9A13-CFCA3744E29A}" Directory_="security_Dir" Attributes="0" KeyPath="java.security" Type="0"/>
<ROW Component="javaaccessbridge.dll" ComponentId="{CF29F764-7F98-42AC-985A-BCF0480DA845}" Directory_="bin_1_Dir" Attributes="256" KeyPath="javaaccessbridge.dll"/>
<ROW Component="javac.exe" ComponentId="{C015E8C7-7342-4044-B869-B3ED716CAFDE}" Directory_="bin_1_Dir" Attributes="256" KeyPath="javac.exe"/>
<ROW Component="javadoc.exe" ComponentId="{DA76CA86-86B6-4008-86C4-C5671D235268}" Directory_="bin_1_Dir" Attributes="256" KeyPath="javadoc.exe"/>
<ROW Component="javafx_font.dll" ComponentId="{0E13CFEF-B4FA-4BA6-A5FF-73FA85015485}" Directory_="bin_Dir" Attributes="256" KeyPath="javafx_font.dll"/>
<ROW Component="javafx_iio.dll" ComponentId="{4849337C-9AA9-4225-A47D-08D62CF39B76}" Directory_="bin_Dir" Attributes="256" KeyPath="javafx_iio.dll"/>
<ROW Component="javafxswt.jar" ComponentId="{66EDA30F-5B6A-4F4D-ADD8-3A3C9E721AA4}" Directory_="lib_Dir" Attributes="0" KeyPath="javafxswt.jar" Type="0"/>
<ROW Component="javajpeg.dll" ComponentId="{B1DB1CC9-1F7A-422E-BD96-80D0AF8CAAA0}" Directory_="bin_1_Dir" Attributes="256" KeyPath="javajpeg.dll"/>
<ROW Component="javap.exe" ComponentId="{C98D8ED2-BCAB-4DAD-B54F-D751E8F23307}" Directory_="bin_1_Dir" Attributes="256" KeyPath="javap.exe"/>
<ROW Component="javaw.exe" ComponentId="{7E75FEC7-C530-4A10-89BF-A496E27591CE}" Directory_="bin_1_Dir" Attributes="256" KeyPath="javaw.exe"/>
<ROW Component="jawt.dll" ComponentId="{9A1A35F8-3729-4ADB-A283-585F2C61F69D}" Directory_="bin_1_Dir" Attributes="256" KeyPath="jawt.dll"/>
<ROW Component="jawt_md.h" ComponentId="{B447E4AE-8D15-4260-A222-F4FF7852B4B3}" Directory_="win32_Dir" Attributes="0" KeyPath="jawt_md.h" Type="0"/>
<ROW Component="jaxpstrict.properties.template" ComponentId="{7723BBC0-301E-462F-AA44-ABA2A56DCD06}" Directory_="conf_Dir" Attributes="0" KeyPath="jaxpstrict.properties.template" Type="0"/>
<ROW Component="jcmd.exe" ComponentId="{EAFA3F53-B7F3-4ADA-B21C-69D138103E34}" Directory_="bin_1_Dir" Attributes="256" KeyPath="jcmd.exe"/>
<ROW Component="jconsole.exe" ComponentId="{9DAB7268-9E7F-47D9-BA8F-AE2810EE023D}" Directory_="bin_1_Dir" Attributes="256" KeyPath="jconsole.exe"/>
<ROW Component="jdb.exe" ComponentId="{FE92A2B3-BDCB-44E8-802A-6C957487BE09}" Directory_="bin_1_Dir" Attributes="256" KeyPath="jdb.exe"/>
<ROW Component="jdeprscan.exe" ComponentId="{698A0029-266A-4423-9C2D-646594E54AD9}" Directory_="bin_1_Dir" Attributes="256" KeyPath="jdeprscan.exe"/>
<ROW Component="jdeps.exe" ComponentId="{D7D99508-9B96-482E-A7A8-B8B6748F0D8B}" Directory_="bin_1_Dir" Attributes="256" KeyPath="jdeps.exe"/>
<ROW Component="jdwp.dll" ComponentId="{B32ED438-D29C-496D-803C-C5AF1EBD9B6B}" Directory_="bin_1_Dir" Attributes="256" KeyPath="jdwp.dll"/>
<ROW Component="jfr.exe" ComponentId="{CF21B965-DA0A-41AB-A04E-916AF533C951}" Directory_="bin_1_Dir" Attributes="256" KeyPath="jfr.exe"/>
<ROW Component="jfxmedia.dll" ComponentId="{DC187585-EEEC-496A-B70C-DCE9734471BB}" Directory_="bin_Dir" Attributes="256" KeyPath="jfxmedia.dll"/>
<ROW Component="jfxwebkit.dll" ComponentId="{13AC2F71-1E7D-4670-AE6A-797281891A25}" Directory_="bin_Dir" Attributes="256" KeyPath="jfxwebkit.dll"/>
<ROW Component="jhsdb.exe" ComponentId="{31C7D536-CDD7-477D-B1C6-5488DA86A8D4}" Directory_="bin_1_Dir" Attributes="256" KeyPath="jhsdb.exe"/>
<ROW Component="jimage.dll" ComponentId="{74E1457D-660B-49F9-A578-9F201BA985F4}" Directory_="bin_1_Dir" Attributes="256" KeyPath="jimage.dll"/>
<ROW Component="jimage.exe" ComponentId="{69AE9A11-6C4E-42B0-84A2-4C328E225719}" Directory_="bin_1_Dir" Attributes="256" KeyPath="jimage.exe"/>
<ROW Component="jinfo.exe" ComponentId="{4123796A-3418-46B0-B020-110970F760ED}" Directory_="bin_1_Dir" Attributes="256" KeyPath="jinfo.exe"/>
<ROW Component="jli.dll" ComponentId="{B63E4499-B8FB-4FFB-8A89-E80EBFFC927A}" Directory_="bin_1_Dir" Attributes="256" KeyPath="jli.dll"/>
<ROW Component="jlink.exe" ComponentId="{AA92E83E-258B-4019-B4FB-036E3BBEC28D}" Directory_="bin_1_Dir" Attributes="256" KeyPath="jlink.exe"/>
<ROW Component="jmap.exe" ComponentId="{36B45C1E-4182-4FAF-8C91-5966FB897F01}" Directory_="bin_1_Dir" Attributes="256" KeyPath="jmap.exe"/>
<ROW Component="jmod.exe" ComponentId="{C6B85C2C-B90C-4B7E-8373-80B6C6122390}" Directory_="bin_1_Dir" Attributes="256" KeyPath="jmod.exe"/>
<ROW Component="jmxremote.access" ComponentId="{08DD9F7E-6AD9-42C2-9B93-1CA25C82FC80}" Directory_="management_Dir" Attributes="0" KeyPath="jmxremote.access" Type="0"/>
<ROW Component="jnativescan.exe" ComponentId="{137B9D56-F779-4CF8-A115-C4EE9131A096}" Directory_="bin_1_Dir" Attributes="256" KeyPath="jnativescan.exe"/>
<ROW Component="jpackage.dll" ComponentId="{23676D9F-87F3-46AF-9D70-3CF9EDE40593}" Directory_="bin_1_Dir" Attributes="256" KeyPath="jpackage.dll"/>
<ROW Component="jpackage.exe" ComponentId="{3CBBE8F6-7096-4BDE-BB1D-4B376510F294}" Directory_="bin_1_Dir" Attributes="256" KeyPath="jpackage.exe"/>
<ROW Component="jps.exe" ComponentId="{B69C47B0-43C2-4895-8C10-B951B395BDCE}" Directory_="bin_1_Dir" Attributes="256" KeyPath="jps.exe"/>
<ROW Component="jrunscript.exe" ComponentId="{704E5364-5CB9-48EB-8639-BEFF1FD4E2F0}" Directory_="bin_1_Dir" Attributes="256" KeyPath="jrunscript.exe"/>
<ROW Component="jshell.exe" ComponentId="{8C7013F4-69A4-421A-B19F-7D061D01ABCF}" Directory_="bin_1_Dir" Attributes="256" KeyPath="jshell.exe"/>
<ROW Component="jsound.dll" ComponentId="{6126DA42-8CBB-4822-9205-4427CB1E4A9A}" Directory_="bin_1_Dir" Attributes="256" KeyPath="jsound.dll"/>
<ROW Component="jstack.exe" ComponentId="{0CE4C871-549E-4AED-B63B-10C9B796E956}" Directory_="bin_1_Dir" Attributes="256" KeyPath="jstack.exe"/>
<ROW Component="jstat.exe" ComponentId="{C730FF27-F45D-435C-829D-B12E0AB6F487}" Directory_="bin_1_Dir" Attributes="256" KeyPath="jstat.exe"/>
<ROW Component="jstatd.exe" ComponentId="{A2388309-37F3-4BCD-A95F-2DC8D318B0BC}" Directory_="bin_1_Dir" Attributes="256" KeyPath="jstatd.exe"/>
<ROW Component="jsvml.dll" ComponentId="{9068A6CB-489A-4329-B0E8-B8216FFA18BE}" Directory_="bin_1_Dir" Attributes="256" KeyPath="jsvml.dll"/>
<ROW Component="jvm.dll" ComponentId="{441E0D61-EB40-40DE-A8D9-CE8A3BA9CC2E}" Directory_="server_Dir" Attributes="256" KeyPath="jvm.dll"/>
<ROW Component="jwebserver.exe" ComponentId="{0E7F98E5-8D04-453E-8F41-E7322CE56863}" Directory_="bin_1_Dir" Attributes="256" KeyPath="jwebserver.exe"/>
<ROW Component="keytool.exe" ComponentId="{E9C2307E-9A69-4C08-ACC8-B6CCF9261DD9}" Directory_="bin_1_Dir" Attributes="256" KeyPath="keytool.exe"/>
<ROW Component="kinit.exe" ComponentId="{0FEFC143-8E15-45E6-85FF-77BADEA6A4D6}" Directory_="bin_1_Dir" Attributes="256" KeyPath="kinit.exe"/>
<ROW Component="klist.exe" ComponentId="{5E922FBF-572C-49C0-B41E-A5F3D6532800}" Directory_="bin_1_Dir" Attributes="256" KeyPath="klist.exe"/>
<ROW Component="ktab.exe" ComponentId="{84A6E882-9BA3-467B-92E5-A77F8B0B9ACB}" Directory_="bin_1_Dir" Attributes="256" KeyPath="ktab.exe"/>
<ROW Component="lcms.dll" ComponentId="{92652F38-B87E-4744-A75A-1C8ADCA70FCA}" Directory_="bin_1_Dir" Attributes="256" KeyPath="lcms.dll"/>
<ROW Component="management.dll" ComponentId="{A49E31AA-B49A-44A3-AB1B-7D1B53FD671D}" Directory_="bin_1_Dir" Attributes="256" KeyPath="management.dll"/>
<ROW Component="management_agent.dll" ComponentId="{8E97695D-EB07-4E5B-8A70-6A0185394C64}" Directory_="bin_1_Dir" Attributes="256" KeyPath="management_agent.dll"/>
<ROW Component="management_ext.dll" ComponentId="{2F9D736B-DCAF-47F1-BA1E-4913FBE664EC}" Directory_="bin_1_Dir" Attributes="256" KeyPath="management_ext.dll"/>
<ROW Component="mlib_image.dll" ComponentId="{C001B063-8EEC-4C67-BA80-89CCAE6A49F6}" Directory_="bin_1_Dir" Attributes="256" KeyPath="mlib_image.dll"/>
<ROW Component="msvcp140.dll" ComponentId="{83D26BB1-FEB4-41CD-A131-F551F26A4A4D}" Directory_="bin_Dir" Attributes="256" KeyPath="msvcp140.dll"/>
<ROW Component="msvcp140.dll_1" ComponentId="{A3C2FA0E-10CA-4BDB-89A3-46ED93C49BDF}" Directory_="bin_1_Dir" Attributes="256" KeyPath="msvcp140.dll_1"/>
<ROW Component="msvcp140_1.dll" ComponentId="{A9D722C1-D39C-43FE-8939-C5B8659C0EBD}" Directory_="bin_Dir" Attributes="256" KeyPath="msvcp140_1.dll"/>
<ROW Component="msvcp140_2.dll" ComponentId="{912544EF-C2A2-4C44-8533-9A9B00E64243}" Directory_="bin_Dir" Attributes="256" KeyPath="msvcp140_2.dll"/>
<ROW Component="net.dll" ComponentId="{08B0E3F8-CE2E-40C8-BF73-B90A4C4B9919}" Directory_="bin_1_Dir" Attributes="256" KeyPath="net.dll"/>
<ROW Component="nio.dll" ComponentId="{10E0CB2C-18E2-457E-85D7-3BD200A9B89A}" Directory_="bin_1_Dir" Attributes="256" KeyPath="nio.dll"/>
<ROW Component="prefs.dll" ComponentId="{1ADDC9D2-49E7-4A6E-B170-66237751AE1C}" Directory_="bin_1_Dir" Attributes="256" KeyPath="prefs.dll"/>
<ROW Component="prism_common.dll" ComponentId="{2C8648CD-6684-438D-A3EF-B661502FD85C}" Directory_="bin_Dir" Attributes="256" KeyPath="prism_common.dll"/>
<ROW Component="prism_d3d.dll" ComponentId="{71B54F2B-673D-47A8-91D6-EDAA1174BDB5}" Directory_="bin_Dir" Attributes="256" KeyPath="prism_d3d.dll"/>
<ROW Component="prism_sw.dll" ComponentId="{B54738CD-BCA6-4209-9321-EBCBED99EB6A}" Directory_="bin_Dir" Attributes="256" KeyPath="prism_sw.dll"/>
<ROW Component="release" ComponentId="{C22EEEAC-EB4B-474C-ACA2-1F0DA3180800}" Directory_="jdk25.0.210_Dir" Attributes="0" KeyPath="release" Type="0"/>
<ROW Component="rmi.dll" ComponentId="{CAE55773-BEAE-4E54-9B5C-3B3F84F6CD5A}" Directory_="bin_1_Dir" Attributes="256" KeyPath="rmi.dll"/>
<ROW Component="rmiregistry.exe" ComponentId="{1FB869EE-C861-43FA-A48B-2F3902704385}" Directory_="bin_1_Dir" Attributes="256" KeyPath="rmiregistry.exe"/>
<ROW Component="saproc.dll" ComponentId="{08A5B68B-47B6-4BA9-94F3-D0CA9B13B35C}" Directory_="bin_1_Dir" Attributes="256" KeyPath="saproc.dll"/>
<ROW Component="serialver.exe" ComponentId="{11652648-2172-4C34-ABCF-0232D40D0764}" Directory_="bin_1_Dir" Attributes="256" KeyPath="serialver.exe"/>
<ROW Component="splashscreen.dll" ComponentId="{9B545A1D-A04D-4886-B0A4-F5DA948112B1}" Directory_="bin_1_Dir" Attributes="256" KeyPath="splashscreen.dll"/>
<ROW Component="sspi_bridge.dll" ComponentId="{5385DF79-29D6-4AE9-9B20-70E152DA549A}" Directory_="bin_1_Dir" Attributes="256" KeyPath="sspi_bridge.dll"/>
<ROW Component="sunmscapi.dll" ComponentId="{D4869D7D-C2C2-45C8-B391-CA037CBCBBC4}" Directory_="bin_1_Dir" Attributes="256" KeyPath="sunmscapi.dll"/>
<ROW Component="syslookup.dll" ComponentId="{FEFF687E-DA27-424E-B4F7-FE088DD3F273}" Directory_="bin_1_Dir" Attributes="256" KeyPath="syslookup.dll"/>
<ROW Component="ucrtbase.dll" ComponentId="{F678D720-DAD1-4669-96C3-1093919033C0}" Directory_="bin_Dir" Attributes="256" KeyPath="ucrtbase.dll"/>
<ROW Component="ucrtbase.dll_1" ComponentId="{AA9D2044-31B6-49E0-92FE-7193165D0AEA}" Directory_="bin_1_Dir" Attributes="256" KeyPath="ucrtbase.dll_1"/>
<ROW Component="vcruntime140.dll" ComponentId="{9E0578AB-A84F-4DDE-A0AC-26580C522CCE}" Directory_="bin_Dir" Attributes="256" KeyPath="vcruntime140.dll"/>
<ROW Component="vcruntime140.dll_1" ComponentId="{85284A4F-0AA1-4C73-930E-B185FBD38E58}" Directory_="bin_1_Dir" Attributes="256" KeyPath="vcruntime140.dll_1"/>
<ROW Component="vcruntime140_1.dll" ComponentId="{4AAB93BF-30F1-49D3-A8BB-495F06F032AE}" Directory_="bin_Dir" Attributes="256" KeyPath="vcruntime140_1.dll"/>
<ROW Component="vcruntime140_1.dll_1" ComponentId="{E1608418-857A-47A4-90C7-FBC248622A6C}" Directory_="bin_1_Dir" Attributes="256" KeyPath="vcruntime140_1.dll_1"/>
<ROW Component="verify.dll" ComponentId="{D8DDDBAE-2E40-4FE9-A7F4-917C86E0076A}" Directory_="bin_1_Dir" Attributes="256" KeyPath="verify.dll"/>
<ROW Component="w2k_lsa_auth.dll" ComponentId="{A28BD9A7-23FE-4F30-BD84-02A98E200841}" Directory_="bin_1_Dir" Attributes="256" KeyPath="w2k_lsa_auth.dll"/>
<ROW Component="windowsaccessbridge64.dll" ComponentId="{03FBFCB0-49BC-434A-8E03-EF1C4C2FFFAC}" Directory_="bin_1_Dir" Attributes="256" KeyPath="windowsaccessbridge64.dll"/>
<ROW Component="zip.dll" ComponentId="{DEEE9ABB-722E-41D8-92D5-C75292736BD7}" Directory_="bin_1_Dir" Attributes="256" KeyPath="zip.dll"/>
</COMPONENT>
<COMPONENT cid="caphyon.advinst.msicomp.MsiFeatsComponent">
<ROW Feature="MainFeature" Title="MainFeature" Description="Description" Display="1" Level="1" Directory_="APPDIR" Attributes="0"/>
<ATTRIBUTE name="CurrentFeature" value="MainFeature"/>
</COMPONENT>
<COMPONENT cid="caphyon.advinst.msicomp.MsiFilesComponent">
<ROW File="apimswincoreconsolel110.dll" Component_="apimswincoreconsolel110.dll" FileName="API-MS~1.DLL|api-ms-win-core-console-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\api-ms-win-core-console-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincoreconsolel120.dll" Component_="apimswincoreconsolel120.dll" FileName="API-MS~2.DLL|api-ms-win-core-console-l1-2-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\api-ms-win-core-console-l1-2-0.dll" SelfReg="false"/>
<ROW File="apimswincoredatetimel110.dll" Component_="apimswincoredatetimel110.dll" FileName="API-MS~3.DLL|api-ms-win-core-datetime-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\api-ms-win-core-datetime-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincoredebugl110.dll" Component_="apimswincoredebugl110.dll" FileName="API-MS~4.DLL|api-ms-win-core-debug-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\api-ms-win-core-debug-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincoreerrorhandlingl110.dll" Component_="apimswincoreerrorhandlingl110.dll" FileName="API-MS~5.DLL|api-ms-win-core-errorhandling-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\api-ms-win-core-errorhandling-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincorefilel110.dll" Component_="apimswincorefilel110.dll" FileName="API-MS~6.DLL|api-ms-win-core-file-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\api-ms-win-core-file-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincorefilel120.dll" Component_="apimswincorefilel120.dll" FileName="API-MS~7.DLL|api-ms-win-core-file-l1-2-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\api-ms-win-core-file-l1-2-0.dll" SelfReg="false"/>
<ROW File="apimswincorefilel210.dll" Component_="apimswincorefilel210.dll" FileName="API-MS~8.DLL|api-ms-win-core-file-l2-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\api-ms-win-core-file-l2-1-0.dll" SelfReg="false"/>
<ROW File="apimswincorehandlel110.dll" Component_="apimswincorehandlel110.dll" FileName="API-MS~9.DLL|api-ms-win-core-handle-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\api-ms-win-core-handle-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincoreheapl110.dll" Component_="apimswincoreheapl110.dll" FileName="API-M~10.DLL|api-ms-win-core-heap-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\api-ms-win-core-heap-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincoreinterlockedl110.dll" Component_="apimswincoreinterlockedl110.dll" FileName="API-M~11.DLL|api-ms-win-core-interlocked-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\api-ms-win-core-interlocked-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincorelibraryloaderl110.dll" Component_="apimswincorelibraryloaderl110.dll" FileName="API-M~12.DLL|api-ms-win-core-libraryloader-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\api-ms-win-core-libraryloader-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincorelocalizationl120.dll" Component_="apimswincorelocalizationl120.dll" FileName="API-M~13.DLL|api-ms-win-core-localization-l1-2-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\api-ms-win-core-localization-l1-2-0.dll" SelfReg="false"/>
<ROW File="apimswincorememoryl110.dll" Component_="apimswincorememoryl110.dll" FileName="API-M~14.DLL|api-ms-win-core-memory-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\api-ms-win-core-memory-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincorenamedpipel110.dll" Component_="apimswincorenamedpipel110.dll" FileName="API-M~15.DLL|api-ms-win-core-namedpipe-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\api-ms-win-core-namedpipe-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincoreprocessenvironmentl110.dll" Component_="apimswincoreprocessenvironmentl110.dll" FileName="API-M~16.DLL|api-ms-win-core-processenvironment-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\api-ms-win-core-processenvironment-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincoreprocessthreadsl110.dll" Component_="apimswincoreprocessthreadsl110.dll" FileName="API-M~17.DLL|api-ms-win-core-processthreads-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\api-ms-win-core-processthreads-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincoreprocessthreadsl111.dll" Component_="apimswincoreprocessthreadsl111.dll" FileName="API-M~18.DLL|api-ms-win-core-processthreads-l1-1-1.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\api-ms-win-core-processthreads-l1-1-1.dll" SelfReg="false"/>
<ROW File="apimswincoreprofilel110.dll" Component_="apimswincoreprofilel110.dll" FileName="API-M~19.DLL|api-ms-win-core-profile-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\api-ms-win-core-profile-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincorertlsupportl110.dll" Component_="apimswincorertlsupportl110.dll" FileName="API-M~20.DLL|api-ms-win-core-rtlsupport-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\api-ms-win-core-rtlsupport-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincorestringl110.dll" Component_="apimswincorestringl110.dll" FileName="API-M~21.DLL|api-ms-win-core-string-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\api-ms-win-core-string-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincoresynchl110.dll" Component_="apimswincoresynchl110.dll" FileName="API-M~22.DLL|api-ms-win-core-synch-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\api-ms-win-core-synch-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincoresynchl120.dll" Component_="apimswincoresynchl120.dll" FileName="API-M~23.DLL|api-ms-win-core-synch-l1-2-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\api-ms-win-core-synch-l1-2-0.dll" SelfReg="false"/>
<ROW File="apimswincoresysinfol110.dll" Component_="apimswincoresysinfol110.dll" FileName="API-M~24.DLL|api-ms-win-core-sysinfo-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\api-ms-win-core-sysinfo-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincoretimezonel110.dll" Component_="apimswincoretimezonel110.dll" FileName="API-M~25.DLL|api-ms-win-core-timezone-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\api-ms-win-core-timezone-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincoreutill110.dll" Component_="apimswincoreutill110.dll" FileName="API-M~26.DLL|api-ms-win-core-util-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\api-ms-win-core-util-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtconiol110.dll" Component_="apimswincrtconiol110.dll" FileName="API-M~27.DLL|api-ms-win-crt-conio-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\api-ms-win-crt-conio-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtconvertl110.dll" Component_="apimswincrtconvertl110.dll" FileName="API-M~28.DLL|api-ms-win-crt-convert-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\api-ms-win-crt-convert-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtenvironmentl110.dll" Component_="apimswincrtenvironmentl110.dll" FileName="API-M~29.DLL|api-ms-win-crt-environment-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\api-ms-win-crt-environment-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtfilesysteml110.dll" Component_="apimswincrtfilesysteml110.dll" FileName="API-M~30.DLL|api-ms-win-crt-filesystem-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\api-ms-win-crt-filesystem-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtheapl110.dll" Component_="apimswincrtheapl110.dll" FileName="API-M~31.DLL|api-ms-win-crt-heap-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\api-ms-win-crt-heap-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtlocalel110.dll" Component_="apimswincrtlocalel110.dll" FileName="API-M~32.DLL|api-ms-win-crt-locale-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\api-ms-win-crt-locale-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtmathl110.dll" Component_="apimswincrtmathl110.dll" FileName="API-M~33.DLL|api-ms-win-crt-math-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\api-ms-win-crt-math-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtmultibytel110.dll" Component_="apimswincrtmultibytel110.dll" FileName="API-M~34.DLL|api-ms-win-crt-multibyte-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\api-ms-win-crt-multibyte-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtprivatel110.dll" Component_="apimswincrtprivatel110.dll" FileName="API-M~35.DLL|api-ms-win-crt-private-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\api-ms-win-crt-private-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtprocessl110.dll" Component_="apimswincrtprocessl110.dll" FileName="API-M~36.DLL|api-ms-win-crt-process-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\api-ms-win-crt-process-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtruntimel110.dll" Component_="apimswincrtruntimel110.dll" FileName="API-M~37.DLL|api-ms-win-crt-runtime-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\api-ms-win-crt-runtime-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtstdiol110.dll" Component_="apimswincrtstdiol110.dll" FileName="API-M~38.DLL|api-ms-win-crt-stdio-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\api-ms-win-crt-stdio-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtstringl110.dll" Component_="apimswincrtstringl110.dll" FileName="API-M~39.DLL|api-ms-win-crt-string-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\api-ms-win-crt-string-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrttimel110.dll" Component_="apimswincrttimel110.dll" FileName="API-M~40.DLL|api-ms-win-crt-time-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\api-ms-win-crt-time-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtutilityl110.dll" Component_="apimswincrtutilityl110.dll" FileName="API-M~41.DLL|api-ms-win-crt-utility-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\api-ms-win-crt-utility-l1-1-0.dll" SelfReg="false"/>
<ROW File="decora_sse.dll" Component_="decora_sse.dll" FileName="DECORA~1.DLL|decora_sse.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\decora_sse.dll" SelfReg="false"/>
<ROW File="fxplugins.dll" Component_="fxplugins.dll" FileName="FXPLUG~1.DLL|fxplugins.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\fxplugins.dll" SelfReg="false"/>
<ROW File="glass.dll" Component_="glass.dll" FileName="glass.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\glass.dll" SelfReg="false"/>
<ROW File="gliblite.dll" Component_="gliblite.dll" FileName="GLIB-L~1.DLL|glib-lite.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\glib-lite.dll" SelfReg="false"/>
<ROW File="gstreamerlite.dll" Component_="gstreamerlite.dll" FileName="GSTREA~1.DLL|gstreamer-lite.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\gstreamer-lite.dll" SelfReg="false"/>
<ROW File="javafx_font.dll" Component_="javafx_font.dll" FileName="JAVAFX~1.DLL|javafx_font.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\javafx_font.dll" SelfReg="false"/>
<ROW File="javafx_iio.dll" Component_="javafx_iio.dll" FileName="JAVAFX~2.DLL|javafx_iio.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\javafx_iio.dll" SelfReg="false"/>
<ROW File="jfxmedia.dll" Component_="jfxmedia.dll" FileName="jfxmedia.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\jfxmedia.dll" SelfReg="false"/>
<ROW File="jfxwebkit.dll" Component_="jfxwebkit.dll" FileName="JFXWEB~1.DLL|jfxwebkit.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\jfxwebkit.dll" SelfReg="false"/>
<ROW File="msvcp140.dll" Component_="msvcp140.dll" FileName="msvcp140.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\msvcp140.dll" SelfReg="false"/>
<ROW File="msvcp140_1.dll" Component_="msvcp140_1.dll" FileName="MSVCP1~1.DLL|msvcp140_1.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\msvcp140_1.dll" SelfReg="false"/>
<ROW File="msvcp140_2.dll" Component_="msvcp140_2.dll" FileName="MSVCP1~2.DLL|msvcp140_2.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\msvcp140_2.dll" SelfReg="false"/>
<ROW File="prism_common.dll" Component_="prism_common.dll" FileName="PRISM_~1.DLL|prism_common.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\prism_common.dll" SelfReg="false"/>
<ROW File="prism_d3d.dll" Component_="prism_d3d.dll" FileName="PRISM_~2.DLL|prism_d3d.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\prism_d3d.dll" SelfReg="false"/>
<ROW File="prism_sw.dll" Component_="prism_sw.dll" FileName="prism_sw.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\prism_sw.dll" SelfReg="false"/>
<ROW File="ucrtbase.dll" Component_="ucrtbase.dll" FileName="ucrtbase.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\ucrtbase.dll" SelfReg="false"/>
<ROW File="vcruntime140.dll" Component_="vcruntime140.dll" FileName="VCRUNT~1.DLL|vcruntime140.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\vcruntime140.dll" SelfReg="false"/>
<ROW File="vcruntime140_1.dll" Component_="vcruntime140_1.dll" FileName="VCRUNT~2.DLL|vcruntime140_1.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\bin\vcruntime140_1.dll" SelfReg="false"/>
<ROW File="javafxswt.jar" Component_="javafxswt.jar" FileName="JAVAFX~1.JAR|javafx-swt.jar" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\lib\javafx-swt.jar" SelfReg="false"/>
<ROW File="javafx.base.jar" Component_="javafxswt.jar" FileName="JAVAFX~2.JAR|javafx.base.jar" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\lib\javafx.base.jar" SelfReg="false"/>
<ROW File="javafx.controls.jar" Component_="javafxswt.jar" FileName="JAVAFX~3.JAR|javafx.controls.jar" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\lib\javafx.controls.jar" SelfReg="false"/>
<ROW File="javafx.fxml.jar" Component_="javafxswt.jar" FileName="JAVAFX~4.JAR|javafx.fxml.jar" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\lib\javafx.fxml.jar" SelfReg="false"/>
<ROW File="javafx.graphics.jar" Component_="javafxswt.jar" FileName="JAVAFX~5.JAR|javafx.graphics.jar" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\lib\javafx.graphics.jar" SelfReg="false"/>
<ROW File="javafx.media.jar" Component_="javafxswt.jar" FileName="JAVAFX~6.JAR|javafx.media.jar" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\lib\javafx.media.jar" SelfReg="false"/>
<ROW File="javafx.properties" Component_="javafxswt.jar" FileName="JAVAFX~1.PRO|javafx.properties" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\lib\javafx.properties" SelfReg="false"/>
<ROW File="javafx.swing.jar" Component_="javafxswt.jar" FileName="JAVAFX~7.JAR|javafx.swing.jar" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\lib\javafx.swing.jar" SelfReg="false"/>
<ROW File="javafx.web.jar" Component_="javafxswt.jar" FileName="JAVAFX~8.JAR|javafx.web.jar" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\lib\javafx.web.jar" SelfReg="false"/>
<ROW File="jdk.jsobject.jar" Component_="javafxswt.jar" FileName="JDKJSO~1.JAR|jdk.jsobject.jar" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\lib\jdk.jsobject.jar" SelfReg="false"/>
<ROW File="jfx.incubator.input.jar" Component_="javafxswt.jar" FileName="JFXINC~1.JAR|jfx.incubator.input.jar" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\lib\jfx.incubator.input.jar" SelfReg="false"/>
<ROW File="jfx.incubator.richtext.jar" Component_="javafxswt.jar" FileName="JFXINC~2.JAR|jfx.incubator.richtext.jar" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\javafx-sdk-25.0.2\lib\jfx.incubator.richtext.jar" SelfReg="false"/>
<ROW File="apimswincoreconsolel110.dll_1" Component_="apimswincoreconsolel110.dll_1" FileName="API-MS~1.DLL|api-ms-win-core-console-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-core-console-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincoreconsolel120.dll_1" Component_="apimswincoreconsolel120.dll_1" FileName="API-MS~2.DLL|api-ms-win-core-console-l1-2-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-core-console-l1-2-0.dll" SelfReg="false"/>
<ROW File="apimswincoredatetimel110.dll_1" Component_="apimswincoredatetimel110.dll_1" FileName="API-MS~3.DLL|api-ms-win-core-datetime-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-core-datetime-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincoredebugl110.dll_1" Component_="apimswincoredebugl110.dll_1" FileName="API-MS~4.DLL|api-ms-win-core-debug-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-core-debug-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincoreerrorhandlingl110.dll_1" Component_="apimswincoreerrorhandlingl110.dll_1" FileName="API-MS~5.DLL|api-ms-win-core-errorhandling-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-core-errorhandling-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincorefibersl110.dll" Component_="apimswincorefibersl110.dll" FileName="API-MS~6.DLL|api-ms-win-core-fibers-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-core-fibers-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincorefilel110.dll_1" Component_="apimswincorefilel110.dll_1" FileName="API-MS~7.DLL|api-ms-win-core-file-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-core-file-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincorefilel120.dll_1" Component_="apimswincorefilel120.dll_1" FileName="API-MS~8.DLL|api-ms-win-core-file-l1-2-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-core-file-l1-2-0.dll" SelfReg="false"/>
<ROW File="apimswincorefilel210.dll_1" Component_="apimswincorefilel210.dll_1" FileName="API-MS~9.DLL|api-ms-win-core-file-l2-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-core-file-l2-1-0.dll" SelfReg="false"/>
<ROW File="apimswincorehandlel110.dll_1" Component_="apimswincorehandlel110.dll_1" FileName="API-M~10.DLL|api-ms-win-core-handle-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-core-handle-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincoreheapl110.dll_1" Component_="apimswincoreheapl110.dll_1" FileName="API-M~11.DLL|api-ms-win-core-heap-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-core-heap-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincoreinterlockedl110.dll_1" Component_="apimswincoreinterlockedl110.dll_1" FileName="API-M~12.DLL|api-ms-win-core-interlocked-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-core-interlocked-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincorelibraryloaderl110.dll_1" Component_="apimswincorelibraryloaderl110.dll_1" FileName="API-M~13.DLL|api-ms-win-core-libraryloader-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-core-libraryloader-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincorelocalizationl120.dll_1" Component_="apimswincorelocalizationl120.dll_1" FileName="API-M~14.DLL|api-ms-win-core-localization-l1-2-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-core-localization-l1-2-0.dll" SelfReg="false"/>
<ROW File="apimswincorememoryl110.dll_1" Component_="apimswincorememoryl110.dll_1" FileName="API-M~15.DLL|api-ms-win-core-memory-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-core-memory-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincorenamedpipel110.dll_1" Component_="apimswincorenamedpipel110.dll_1" FileName="API-M~16.DLL|api-ms-win-core-namedpipe-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-core-namedpipe-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincoreprocessenvironmentl110.dll_1" Component_="apimswincoreprocessenvironmentl110.dll_1" FileName="API-M~17.DLL|api-ms-win-core-processenvironment-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-core-processenvironment-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincoreprocessthreadsl110.dll_1" Component_="apimswincoreprocessthreadsl110.dll_1" FileName="API-M~18.DLL|api-ms-win-core-processthreads-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-core-processthreads-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincoreprocessthreadsl111.dll_1" Component_="apimswincoreprocessthreadsl111.dll_1" FileName="API-M~19.DLL|api-ms-win-core-processthreads-l1-1-1.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-core-processthreads-l1-1-1.dll" SelfReg="false"/>
<ROW File="apimswincoreprofilel110.dll_1" Component_="apimswincoreprofilel110.dll_1" FileName="API-M~20.DLL|api-ms-win-core-profile-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-core-profile-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincorertlsupportl110.dll_1" Component_="apimswincorertlsupportl110.dll_1" FileName="API-M~21.DLL|api-ms-win-core-rtlsupport-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-core-rtlsupport-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincorestringl110.dll_1" Component_="apimswincorestringl110.dll_1" FileName="API-M~22.DLL|api-ms-win-core-string-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-core-string-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincoresynchl110.dll_1" Component_="apimswincoresynchl110.dll_1" FileName="API-M~23.DLL|api-ms-win-core-synch-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-core-synch-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincoresynchl120.dll_1" Component_="apimswincoresynchl120.dll_1" FileName="API-M~24.DLL|api-ms-win-core-synch-l1-2-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-core-synch-l1-2-0.dll" SelfReg="false"/>
<ROW File="apimswincoresysinfol110.dll_1" Component_="apimswincoresysinfol110.dll_1" FileName="API-M~25.DLL|api-ms-win-core-sysinfo-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-core-sysinfo-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincoretimezonel110.dll_1" Component_="apimswincoretimezonel110.dll_1" FileName="API-M~26.DLL|api-ms-win-core-timezone-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-core-timezone-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincoreutill110.dll_1" Component_="apimswincoreutill110.dll_1" FileName="API-M~27.DLL|api-ms-win-core-util-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-core-util-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtconiol110.dll_1" Component_="apimswincrtconiol110.dll_1" FileName="API-M~28.DLL|api-ms-win-crt-conio-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-crt-conio-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtconvertl110.dll_1" Component_="apimswincrtconvertl110.dll_1" FileName="API-M~29.DLL|api-ms-win-crt-convert-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-crt-convert-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtenvironmentl110.dll_1" Component_="apimswincrtenvironmentl110.dll_1" FileName="API-M~30.DLL|api-ms-win-crt-environment-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-crt-environment-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtfilesysteml110.dll_1" Component_="apimswincrtfilesysteml110.dll_1" FileName="API-M~31.DLL|api-ms-win-crt-filesystem-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-crt-filesystem-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtheapl110.dll_1" Component_="apimswincrtheapl110.dll_1" FileName="API-M~32.DLL|api-ms-win-crt-heap-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-crt-heap-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtlocalel110.dll_1" Component_="apimswincrtlocalel110.dll_1" FileName="API-M~33.DLL|api-ms-win-crt-locale-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-crt-locale-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtmathl110.dll_1" Component_="apimswincrtmathl110.dll_1" FileName="API-M~34.DLL|api-ms-win-crt-math-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-crt-math-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtmultibytel110.dll_1" Component_="apimswincrtmultibytel110.dll_1" FileName="API-M~35.DLL|api-ms-win-crt-multibyte-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-crt-multibyte-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtprivatel110.dll_1" Component_="apimswincrtprivatel110.dll_1" FileName="API-M~36.DLL|api-ms-win-crt-private-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-crt-private-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtprocessl110.dll_1" Component_="apimswincrtprocessl110.dll_1" FileName="API-M~37.DLL|api-ms-win-crt-process-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-crt-process-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtruntimel110.dll_1" Component_="apimswincrtruntimel110.dll_1" FileName="API-M~38.DLL|api-ms-win-crt-runtime-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-crt-runtime-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtstdiol110.dll_1" Component_="apimswincrtstdiol110.dll_1" FileName="API-M~39.DLL|api-ms-win-crt-stdio-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-crt-stdio-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtstringl110.dll_1" Component_="apimswincrtstringl110.dll_1" FileName="API-M~40.DLL|api-ms-win-crt-string-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-crt-string-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrttimel110.dll_1" Component_="apimswincrttimel110.dll_1" FileName="API-M~41.DLL|api-ms-win-crt-time-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-crt-time-l1-1-0.dll" SelfReg="false"/>
<ROW File="apimswincrtutilityl110.dll_1" Component_="apimswincrtutilityl110.dll_1" FileName="API-M~42.DLL|api-ms-win-crt-utility-l1-1-0.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\api-ms-win-crt-utility-l1-1-0.dll" SelfReg="false"/>
<ROW File="attach.dll" Component_="attach.dll" FileName="attach.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\attach.dll" SelfReg="false"/>
<ROW File="awt.dll" Component_="awt.dll" FileName="awt.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\awt.dll" SelfReg="false"/>
<ROW File="dt_shmem.dll" Component_="dt_shmem.dll" FileName="dt_shmem.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\dt_shmem.dll" SelfReg="false"/>
<ROW File="dt_socket.dll" Component_="dt_socket.dll" FileName="DT_SOC~1.DLL|dt_socket.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\dt_socket.dll" SelfReg="false"/>
<ROW File="extnet.dll" Component_="extnet.dll" FileName="extnet.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\extnet.dll" SelfReg="false"/>
<ROW File="fontmanager.dll" Component_="fontmanager.dll" FileName="FONTMA~1.DLL|fontmanager.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\fontmanager.dll" SelfReg="false"/>
<ROW File="freetype.dll" Component_="freetype.dll" FileName="freetype.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\freetype.dll" SelfReg="false"/>
<ROW File="instrument.dll" Component_="instrument.dll" FileName="INSTRU~1.DLL|instrument.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\instrument.dll" SelfReg="false"/>
<ROW File="j2gss.dll" Component_="j2gss.dll" FileName="j2gss.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\j2gss.dll" SelfReg="false"/>
<ROW File="j2pcsc.dll" Component_="j2pcsc.dll" FileName="j2pcsc.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\j2pcsc.dll" SelfReg="false"/>
<ROW File="j2pkcs11.dll" Component_="j2pkcs11.dll" FileName="j2pkcs11.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\j2pkcs11.dll" SelfReg="false"/>
<ROW File="jaas.dll" Component_="jaas.dll" FileName="jaas.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\jaas.dll" SelfReg="false"/>
<ROW File="jabswitch.exe" Component_="jabswitch.exe" FileName="JABSWI~1.EXE|jabswitch.exe" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\jabswitch.exe" SelfReg="false"/>
<ROW File="jaccessinspector.exe" Component_="jaccessinspector.exe" FileName="JACCES~1.EXE|jaccessinspector.exe" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\jaccessinspector.exe" SelfReg="false"/>
<ROW File="jaccesswalker.exe" Component_="jaccesswalker.exe" FileName="JACCES~2.EXE|jaccesswalker.exe" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\jaccesswalker.exe" SelfReg="false"/>
<ROW File="jar.exe" Component_="jar.exe" FileName="jar.exe" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\jar.exe" SelfReg="false"/>
<ROW File="jarsigner.exe" Component_="jarsigner.exe" FileName="JARSIG~1.EXE|jarsigner.exe" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\jarsigner.exe" SelfReg="false"/>
<ROW File="java.dll" Component_="java.dll" FileName="java.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\java.dll" SelfReg="false"/>
<ROW File="java.exe" Component_="java.exe" FileName="java.exe" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\java.exe" SelfReg="false"/>
<ROW File="javaaccessbridge.dll" Component_="javaaccessbridge.dll" FileName="JAVAAC~1.DLL|javaaccessbridge.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\javaaccessbridge.dll" SelfReg="false"/>
<ROW File="javac.exe" Component_="javac.exe" FileName="javac.exe" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\javac.exe" SelfReg="false"/>
<ROW File="javadoc.exe" Component_="javadoc.exe" FileName="javadoc.exe" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\javadoc.exe" SelfReg="false"/>
<ROW File="javajpeg.dll" Component_="javajpeg.dll" FileName="javajpeg.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\javajpeg.dll" SelfReg="false"/>
<ROW File="javap.exe" Component_="javap.exe" FileName="javap.exe" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\javap.exe" SelfReg="false"/>
<ROW File="javaw.exe" Component_="javaw.exe" FileName="javaw.exe" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\javaw.exe" SelfReg="false"/>
<ROW File="jawt.dll" Component_="jawt.dll" FileName="jawt.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\jawt.dll" SelfReg="false"/>
<ROW File="jcmd.exe" Component_="jcmd.exe" FileName="jcmd.exe" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\jcmd.exe" SelfReg="false"/>
<ROW File="jconsole.exe" Component_="jconsole.exe" FileName="jconsole.exe" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\jconsole.exe" SelfReg="false"/>
<ROW File="jdb.exe" Component_="jdb.exe" FileName="jdb.exe" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\jdb.exe" SelfReg="false"/>
<ROW File="jdeprscan.exe" Component_="jdeprscan.exe" FileName="JDEPRS~1.EXE|jdeprscan.exe" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\jdeprscan.exe" SelfReg="false"/>
<ROW File="jdeps.exe" Component_="jdeps.exe" FileName="jdeps.exe" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\jdeps.exe" SelfReg="false"/>
<ROW File="jdwp.dll" Component_="jdwp.dll" FileName="jdwp.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\jdwp.dll" SelfReg="false"/>
<ROW File="jfr.exe" Component_="jfr.exe" FileName="jfr.exe" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\jfr.exe" SelfReg="false"/>
<ROW File="jhsdb.exe" Component_="jhsdb.exe" FileName="jhsdb.exe" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\jhsdb.exe" SelfReg="false"/>
<ROW File="jimage.dll" Component_="jimage.dll" FileName="jimage.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\jimage.dll" SelfReg="false"/>
<ROW File="jimage.exe" Component_="jimage.exe" FileName="jimage.exe" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\jimage.exe" SelfReg="false"/>
<ROW File="jinfo.exe" Component_="jinfo.exe" FileName="jinfo.exe" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\jinfo.exe" SelfReg="false"/>
<ROW File="jli.dll" Component_="jli.dll" FileName="jli.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\jli.dll" SelfReg="false"/>
<ROW File="jlink.exe" Component_="jlink.exe" FileName="jlink.exe" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\jlink.exe" SelfReg="false"/>
<ROW File="jmap.exe" Component_="jmap.exe" FileName="jmap.exe" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\jmap.exe" SelfReg="false"/>
<ROW File="jmod.exe" Component_="jmod.exe" FileName="jmod.exe" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\jmod.exe" SelfReg="false"/>
<ROW File="jnativescan.exe" Component_="jnativescan.exe" FileName="JNATIV~1.EXE|jnativescan.exe" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\jnativescan.exe" SelfReg="false"/>
<ROW File="jpackage.dll" Component_="jpackage.dll" FileName="jpackage.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\jpackage.dll" SelfReg="false"/>
<ROW File="jpackage.exe" Component_="jpackage.exe" FileName="jpackage.exe" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\jpackage.exe" SelfReg="false"/>
<ROW File="jps.exe" Component_="jps.exe" FileName="jps.exe" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\jps.exe" SelfReg="false"/>
<ROW File="jrunscript.exe" Component_="jrunscript.exe" FileName="JRUNSC~1.EXE|jrunscript.exe" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\jrunscript.exe" SelfReg="false"/>
<ROW File="jshell.exe" Component_="jshell.exe" FileName="jshell.exe" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\jshell.exe" SelfReg="false"/>
<ROW File="jsound.dll" Component_="jsound.dll" FileName="jsound.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\jsound.dll" SelfReg="false"/>
<ROW File="jstack.exe" Component_="jstack.exe" FileName="jstack.exe" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\jstack.exe" SelfReg="false"/>
<ROW File="jstat.exe" Component_="jstat.exe" FileName="jstat.exe" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\jstat.exe" SelfReg="false"/>
<ROW File="jstatd.exe" Component_="jstatd.exe" FileName="jstatd.exe" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\jstatd.exe" SelfReg="false"/>
<ROW File="jsvml.dll" Component_="jsvml.dll" FileName="jsvml.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\jsvml.dll" SelfReg="false"/>
<ROW File="jwebserver.exe" Component_="jwebserver.exe" FileName="JWEBSE~1.EXE|jwebserver.exe" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\jwebserver.exe" SelfReg="false"/>
<ROW File="keytool.exe" Component_="keytool.exe" FileName="keytool.exe" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\keytool.exe" SelfReg="false"/>
<ROW File="kinit.exe" Component_="kinit.exe" FileName="kinit.exe" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\kinit.exe" SelfReg="false"/>
<ROW File="klist.exe" Component_="klist.exe" FileName="klist.exe" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\klist.exe" SelfReg="false"/>
<ROW File="ktab.exe" Component_="ktab.exe" FileName="ktab.exe" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\ktab.exe" SelfReg="false"/>
<ROW File="lcms.dll" Component_="lcms.dll" FileName="lcms.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\lcms.dll" SelfReg="false"/>
<ROW File="management.dll" Component_="management.dll" FileName="MANAGE~1.DLL|management.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\management.dll" SelfReg="false"/>
<ROW File="management_agent.dll" Component_="management_agent.dll" FileName="MANAGE~2.DLL|management_agent.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\management_agent.dll" SelfReg="false"/>
<ROW File="management_ext.dll" Component_="management_ext.dll" FileName="MANAGE~3.DLL|management_ext.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\management_ext.dll" SelfReg="false"/>
<ROW File="mlib_image.dll" Component_="mlib_image.dll" FileName="MLIB_I~1.DLL|mlib_image.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\mlib_image.dll" SelfReg="false"/>
<ROW File="msvcp140.dll_1" Component_="msvcp140.dll_1" FileName="msvcp140.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\msvcp140.dll" SelfReg="false"/>
<ROW File="net.dll" Component_="net.dll" FileName="net.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\net.dll" SelfReg="false"/>
<ROW File="nio.dll" Component_="nio.dll" FileName="nio.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\nio.dll" SelfReg="false"/>
<ROW File="prefs.dll" Component_="prefs.dll" FileName="prefs.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\prefs.dll" SelfReg="false"/>
<ROW File="rmi.dll" Component_="rmi.dll" FileName="rmi.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\rmi.dll" SelfReg="false"/>
<ROW File="rmiregistry.exe" Component_="rmiregistry.exe" FileName="RMIREG~1.EXE|rmiregistry.exe" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\rmiregistry.exe" SelfReg="false"/>
<ROW File="saproc.dll" Component_="saproc.dll" FileName="saproc.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\saproc.dll" SelfReg="false"/>
<ROW File="serialver.exe" Component_="serialver.exe" FileName="SERIAL~1.EXE|serialver.exe" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\serialver.exe" SelfReg="false"/>
<ROW File="classes.jsa" Component_="classes.jsa" FileName="classes.jsa" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\server\classes.jsa" SelfReg="false"/>
<ROW File="classes_coh.jsa" Component_="classes.jsa" FileName="CLASSE~1.JSA|classes_coh.jsa" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\server\classes_coh.jsa" SelfReg="false"/>
<ROW File="classes_nocoops.jsa" Component_="classes.jsa" FileName="CLASSE~2.JSA|classes_nocoops.jsa" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\server\classes_nocoops.jsa" SelfReg="false"/>
<ROW File="classes_nocoops_coh.jsa" Component_="classes.jsa" FileName="CLASSE~3.JSA|classes_nocoops_coh.jsa" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\server\classes_nocoops_coh.jsa" SelfReg="false"/>
<ROW File="jvm.dll" Component_="jvm.dll" FileName="jvm.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\server\jvm.dll" SelfReg="false"/>
<ROW File="splashscreen.dll" Component_="splashscreen.dll" FileName="SPLASH~1.DLL|splashscreen.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\splashscreen.dll" SelfReg="false"/>
<ROW File="sspi_bridge.dll" Component_="sspi_bridge.dll" FileName="SSPI_B~1.DLL|sspi_bridge.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\sspi_bridge.dll" SelfReg="false"/>
<ROW File="sunmscapi.dll" Component_="sunmscapi.dll" FileName="SUNMSC~1.DLL|sunmscapi.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\sunmscapi.dll" SelfReg="false"/>
<ROW File="syslookup.dll" Component_="syslookup.dll" FileName="SYSLOO~1.DLL|syslookup.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\syslookup.dll" SelfReg="false"/>
<ROW File="ucrtbase.dll_1" Component_="ucrtbase.dll_1" FileName="ucrtbase.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\ucrtbase.dll" SelfReg="false"/>
<ROW File="vcruntime140.dll_1" Component_="vcruntime140.dll_1" FileName="VCRUNT~1.DLL|vcruntime140.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\vcruntime140.dll" SelfReg="false"/>
<ROW File="vcruntime140_1.dll_1" Component_="vcruntime140_1.dll_1" FileName="VCRUNT~2.DLL|vcruntime140_1.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\vcruntime140_1.dll" SelfReg="false"/>
<ROW File="verify.dll" Component_="verify.dll" FileName="verify.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\verify.dll" SelfReg="false"/>
<ROW File="w2k_lsa_auth.dll" Component_="w2k_lsa_auth.dll" FileName="W2K_LS~1.DLL|w2k_lsa_auth.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\w2k_lsa_auth.dll" SelfReg="false"/>
<ROW File="windowsaccessbridge64.dll" Component_="windowsaccessbridge64.dll" FileName="WINDOW~1.DLL|windowsaccessbridge-64.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\windowsaccessbridge-64.dll" SelfReg="false"/>
<ROW File="zip.dll" Component_="zip.dll" FileName="zip.dll" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\bin\zip.dll" SelfReg="false"/>
<ROW File="jaxpstrict.properties.template" Component_="jaxpstrict.properties.template" FileName="JAXP-S~1.TEM|jaxp-strict.properties.template" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\conf\jaxp-strict.properties.template" SelfReg="false"/>
<ROW File="jaxp.properties" Component_="jaxpstrict.properties.template" FileName="JAXP~1.PRO|jaxp.properties" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\conf\jaxp.properties" SelfReg="false"/>
<ROW File="logging.properties" Component_="jaxpstrict.properties.template" FileName="LOGGIN~1.PRO|logging.properties" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\conf\logging.properties" SelfReg="false"/>
<ROW File="jmxremote.access" Component_="jmxremote.access" FileName="JMXREM~1.ACC|jmxremote.access" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\conf\management\jmxremote.access" SelfReg="false"/>
<ROW File="jmxremote.password.template" Component_="jmxremote.access" FileName="JMXREM~1.TEM|jmxremote.password.template" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\conf\management\jmxremote.password.template" SelfReg="false"/>
<ROW File="management.properties" Component_="jmxremote.access" FileName="MANAGE~1.PRO|management.properties" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\conf\management\management.properties" SelfReg="false"/>
<ROW File="net.properties" Component_="jaxpstrict.properties.template" FileName="NET~1.PRO|net.properties" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\conf\net.properties" SelfReg="false"/>
<ROW File="java.security" Component_="java.security" FileName="JAVA~1.SEC|java.security" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\conf\security\java.security" SelfReg="false"/>
<ROW File="default_local.policy" Component_="default_local.policy" FileName="DEFAUL~1.POL|default_local.policy" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\conf\security\policy\limited\default_local.policy" SelfReg="false"/>
<ROW File="default_US_export.policy" Component_="default_local.policy" FileName="DEFAUL~2.POL|default_US_export.policy" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\conf\security\policy\limited\default_US_export.policy" SelfReg="false"/>
<ROW File="exempt_local.policy" Component_="default_local.policy" FileName="EXEMPT~1.POL|exempt_local.policy" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\conf\security\policy\limited\exempt_local.policy" SelfReg="false"/>
<ROW File="README.txt" Component_="README.txt" FileName="README.txt" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\conf\security\policy\README.txt" SelfReg="false"/>
<ROW File="default_local.policy_1" Component_="default_local.policy_1" FileName="DEFAUL~1.POL|default_local.policy" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\conf\security\policy\unlimited\default_local.policy" SelfReg="false"/>
<ROW File="default_US_export.policy_1" Component_="default_local.policy_1" FileName="DEFAUL~2.POL|default_US_export.policy" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\conf\security\policy\unlimited\default_US_export.policy" SelfReg="false"/>
<ROW File="sound.properties" Component_="jaxpstrict.properties.template" FileName="SOUND~1.PRO|sound.properties" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\conf\sound.properties" SelfReg="false"/>
<ROW File="classfile_constants.h" Component_="classfile_constants.h" FileName="CLASSF~1.H|classfile_constants.h" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\include\classfile_constants.h" SelfReg="false"/>
<ROW File="jawt.h" Component_="classfile_constants.h" FileName="jawt.h" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\include\jawt.h" SelfReg="false"/>
<ROW File="jdwpTransport.h" Component_="classfile_constants.h" FileName="JDWPTR~1.H|jdwpTransport.h" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\include\jdwpTransport.h" SelfReg="false"/>
<ROW File="jni.h" Component_="classfile_constants.h" FileName="jni.h" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\include\jni.h" SelfReg="false"/>
<ROW File="jvmti.h" Component_="classfile_constants.h" FileName="jvmti.h" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\include\jvmti.h" SelfReg="false"/>
<ROW File="jvmticmlr.h" Component_="classfile_constants.h" FileName="JVMTIC~1.H|jvmticmlr.h" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\include\jvmticmlr.h" SelfReg="false"/>
<ROW File="AccessBridgeCallbacks.h" Component_="AccessBridgeCallbacks.h" FileName="ACCESS~1.H|AccessBridgeCallbacks.h" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\include\win32\bridge\AccessBridgeCallbacks.h" SelfReg="false"/>
<ROW File="AccessBridgeCalls.h" Component_="AccessBridgeCallbacks.h" FileName="ACCESS~2.H|AccessBridgeCalls.h" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\include\win32\bridge\AccessBridgeCalls.h" SelfReg="false"/>
<ROW File="AccessBridgePackages.h" Component_="AccessBridgeCallbacks.h" FileName="ACCESS~3.H|AccessBridgePackages.h" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\include\win32\bridge\AccessBridgePackages.h" SelfReg="false"/>
<ROW File="jawt_md.h" Component_="jawt_md.h" FileName="jawt_md.h" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\include\win32\jawt_md.h" SelfReg="false"/>
<ROW File="jni_md.h" Component_="jawt_md.h" FileName="jni_md.h" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\include\win32\jni_md.h" SelfReg="false"/>
<ROW File="java.base.jmod" Component_="java.base.jmod" FileName="JAVABA~1.JMO|java.base.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\java.base.jmod" SelfReg="false"/>
<ROW File="java.compiler.jmod" Component_="java.base.jmod" FileName="JAVACO~1.JMO|java.compiler.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\java.compiler.jmod" SelfReg="false"/>
<ROW File="java.datatransfer.jmod" Component_="java.base.jmod" FileName="JAVADA~1.JMO|java.datatransfer.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\java.datatransfer.jmod" SelfReg="false"/>
<ROW File="java.desktop.jmod" Component_="java.base.jmod" FileName="JAVADE~1.JMO|java.desktop.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\java.desktop.jmod" SelfReg="false"/>
<ROW File="java.instrument.jmod" Component_="java.base.jmod" FileName="JAVAIN~1.JMO|java.instrument.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\java.instrument.jmod" SelfReg="false"/>
<ROW File="java.logging.jmod" Component_="java.base.jmod" FileName="JAVALO~1.JMO|java.logging.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\java.logging.jmod" SelfReg="false"/>
<ROW File="java.management.jmod" Component_="java.base.jmod" FileName="JAVAMA~1.JMO|java.management.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\java.management.jmod" SelfReg="false"/>
<ROW File="java.management.rmi.jmod" Component_="java.base.jmod" FileName="JAVAMA~2.JMO|java.management.rmi.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\java.management.rmi.jmod" SelfReg="false"/>
<ROW File="java.naming.jmod" Component_="java.base.jmod" FileName="JAVANA~1.JMO|java.naming.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\java.naming.jmod" SelfReg="false"/>
<ROW File="java.net.http.jmod" Component_="java.base.jmod" FileName="JAVANE~1.JMO|java.net.http.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\java.net.http.jmod" SelfReg="false"/>
<ROW File="java.prefs.jmod" Component_="java.base.jmod" FileName="JAVAPR~1.JMO|java.prefs.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\java.prefs.jmod" SelfReg="false"/>
<ROW File="java.rmi.jmod" Component_="java.base.jmod" FileName="JAVARM~1.JMO|java.rmi.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\java.rmi.jmod" SelfReg="false"/>
<ROW File="java.scripting.jmod" Component_="java.base.jmod" FileName="JAVASC~1.JMO|java.scripting.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\java.scripting.jmod" SelfReg="false"/>
<ROW File="java.se.jmod" Component_="java.base.jmod" FileName="JAVASE~1.JMO|java.se.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\java.se.jmod" SelfReg="false"/>
<ROW File="java.security.jgss.jmod" Component_="java.base.jmod" FileName="JAVASE~2.JMO|java.security.jgss.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\java.security.jgss.jmod" SelfReg="false"/>
<ROW File="java.security.sasl.jmod" Component_="java.base.jmod" FileName="JAVASE~3.JMO|java.security.sasl.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\java.security.sasl.jmod" SelfReg="false"/>
<ROW File="java.smartcardio.jmod" Component_="java.base.jmod" FileName="JAVASM~1.JMO|java.smartcardio.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\java.smartcardio.jmod" SelfReg="false"/>
<ROW File="java.sql.jmod" Component_="java.base.jmod" FileName="JAVASQ~1.JMO|java.sql.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\java.sql.jmod" SelfReg="false"/>
<ROW File="java.sql.rowset.jmod" Component_="java.base.jmod" FileName="JAVASQ~2.JMO|java.sql.rowset.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\java.sql.rowset.jmod" SelfReg="false"/>
<ROW File="java.transaction.xa.jmod" Component_="java.base.jmod" FileName="JAVATR~1.JMO|java.transaction.xa.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\java.transaction.xa.jmod" SelfReg="false"/>
<ROW File="java.xml.crypto.jmod" Component_="java.base.jmod" FileName="JAVAXM~1.JMO|java.xml.crypto.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\java.xml.crypto.jmod" SelfReg="false"/>
<ROW File="java.xml.jmod" Component_="java.base.jmod" FileName="JAVAXM~2.JMO|java.xml.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\java.xml.jmod" SelfReg="false"/>
<ROW File="jdk.accessibility.jmod" Component_="java.base.jmod" FileName="JDKACC~1.JMO|jdk.accessibility.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.accessibility.jmod" SelfReg="false"/>
<ROW File="jdk.attach.jmod" Component_="java.base.jmod" FileName="JDKATT~1.JMO|jdk.attach.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.attach.jmod" SelfReg="false"/>
<ROW File="jdk.charsets.jmod" Component_="java.base.jmod" FileName="JDKCHA~1.JMO|jdk.charsets.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.charsets.jmod" SelfReg="false"/>
<ROW File="jdk.compiler.jmod" Component_="java.base.jmod" FileName="JDKCOM~1.JMO|jdk.compiler.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.compiler.jmod" SelfReg="false"/>
<ROW File="jdk.crypto.cryptoki.jmod" Component_="java.base.jmod" FileName="JDKCRY~1.JMO|jdk.crypto.cryptoki.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.crypto.cryptoki.jmod" SelfReg="false"/>
<ROW File="jdk.crypto.ec.jmod" Component_="java.base.jmod" FileName="JDKCRY~2.JMO|jdk.crypto.ec.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.crypto.ec.jmod" SelfReg="false"/>
<ROW File="jdk.crypto.mscapi.jmod" Component_="java.base.jmod" FileName="JDKCRY~3.JMO|jdk.crypto.mscapi.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.crypto.mscapi.jmod" SelfReg="false"/>
<ROW File="jdk.dynalink.jmod" Component_="java.base.jmod" FileName="JDKDYN~1.JMO|jdk.dynalink.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.dynalink.jmod" SelfReg="false"/>
<ROW File="jdk.editpad.jmod" Component_="java.base.jmod" FileName="JDKEDI~1.JMO|jdk.editpad.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.editpad.jmod" SelfReg="false"/>
<ROW File="jdk.graal.compiler.jmod" Component_="java.base.jmod" FileName="JDKGRA~1.JMO|jdk.graal.compiler.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.graal.compiler.jmod" SelfReg="false"/>
<ROW File="jdk.graal.compiler.management.jmod" Component_="java.base.jmod" FileName="JDKGRA~2.JMO|jdk.graal.compiler.management.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.graal.compiler.management.jmod" SelfReg="false"/>
<ROW File="jdk.hotspot.agent.jmod" Component_="java.base.jmod" FileName="JDKHOT~1.JMO|jdk.hotspot.agent.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.hotspot.agent.jmod" SelfReg="false"/>
<ROW File="jdk.httpserver.jmod" Component_="java.base.jmod" FileName="JDKHTT~1.JMO|jdk.httpserver.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.httpserver.jmod" SelfReg="false"/>
<ROW File="jdk.incubator.vector.jmod" Component_="java.base.jmod" FileName="JDKINC~1.JMO|jdk.incubator.vector.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.incubator.vector.jmod" SelfReg="false"/>
<ROW File="jdk.internal.ed.jmod" Component_="java.base.jmod" FileName="JDKINT~1.JMO|jdk.internal.ed.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.internal.ed.jmod" SelfReg="false"/>
<ROW File="jdk.internal.jvmstat.jmod" Component_="java.base.jmod" FileName="JDKINT~2.JMO|jdk.internal.jvmstat.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.internal.jvmstat.jmod" SelfReg="false"/>
<ROW File="jdk.internal.le.jmod" Component_="java.base.jmod" FileName="JDKINT~3.JMO|jdk.internal.le.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.internal.le.jmod" SelfReg="false"/>
<ROW File="jdk.internal.md.jmod" Component_="java.base.jmod" FileName="JDKINT~4.JMO|jdk.internal.md.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.internal.md.jmod" SelfReg="false"/>
<ROW File="jdk.internal.opt.jmod" Component_="java.base.jmod" FileName="JDKINT~5.JMO|jdk.internal.opt.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.internal.opt.jmod" SelfReg="false"/>
<ROW File="jdk.internal.vm.ci.jmod" Component_="java.base.jmod" FileName="JDKINT~6.JMO|jdk.internal.vm.ci.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.internal.vm.ci.jmod" SelfReg="false"/>
<ROW File="jdk.jartool.jmod" Component_="java.base.jmod" FileName="JDKJAR~1.JMO|jdk.jartool.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.jartool.jmod" SelfReg="false"/>
<ROW File="jdk.javadoc.jmod" Component_="java.base.jmod" FileName="JDKJAV~1.JMO|jdk.javadoc.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.javadoc.jmod" SelfReg="false"/>
<ROW File="jdk.jcmd.jmod" Component_="java.base.jmod" FileName="JDKJCM~1.JMO|jdk.jcmd.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.jcmd.jmod" SelfReg="false"/>
<ROW File="jdk.jconsole.jmod" Component_="java.base.jmod" FileName="JDKJCO~1.JMO|jdk.jconsole.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.jconsole.jmod" SelfReg="false"/>
<ROW File="jdk.jdeps.jmod" Component_="java.base.jmod" FileName="JDKJDE~1.JMO|jdk.jdeps.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.jdeps.jmod" SelfReg="false"/>
<ROW File="jdk.jdi.jmod" Component_="java.base.jmod" FileName="JDKJDI~1.JMO|jdk.jdi.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.jdi.jmod" SelfReg="false"/>
<ROW File="jdk.jdwp.agent.jmod" Component_="java.base.jmod" FileName="JDKJDW~1.JMO|jdk.jdwp.agent.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.jdwp.agent.jmod" SelfReg="false"/>
<ROW File="jdk.jfr.jmod" Component_="java.base.jmod" FileName="JDKJFR~1.JMO|jdk.jfr.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.jfr.jmod" SelfReg="false"/>
<ROW File="jdk.jlink.jmod" Component_="java.base.jmod" FileName="JDKJLI~1.JMO|jdk.jlink.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.jlink.jmod" SelfReg="false"/>
<ROW File="jdk.jpackage.jmod" Component_="java.base.jmod" FileName="JDKJPA~1.JMO|jdk.jpackage.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.jpackage.jmod" SelfReg="false"/>
<ROW File="jdk.jshell.jmod" Component_="java.base.jmod" FileName="JDKJSH~1.JMO|jdk.jshell.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.jshell.jmod" SelfReg="false"/>
<ROW File="jdk.jsobject.jmod" Component_="java.base.jmod" FileName="JDKJSO~1.JMO|jdk.jsobject.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.jsobject.jmod" SelfReg="false"/>
<ROW File="jdk.jstatd.jmod" Component_="java.base.jmod" FileName="JDKJST~1.JMO|jdk.jstatd.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.jstatd.jmod" SelfReg="false"/>
<ROW File="jdk.localedata.jmod" Component_="java.base.jmod" FileName="JDKLOC~1.JMO|jdk.localedata.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.localedata.jmod" SelfReg="false"/>
<ROW File="jdk.management.agent.jmod" Component_="java.base.jmod" FileName="JDKMAN~1.JMO|jdk.management.agent.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.management.agent.jmod" SelfReg="false"/>
<ROW File="jdk.management.jfr.jmod" Component_="java.base.jmod" FileName="JDKMAN~2.JMO|jdk.management.jfr.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.management.jfr.jmod" SelfReg="false"/>
<ROW File="jdk.management.jmod" Component_="java.base.jmod" FileName="JDKMAN~3.JMO|jdk.management.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.management.jmod" SelfReg="false"/>
<ROW File="jdk.naming.dns.jmod" Component_="java.base.jmod" FileName="JDKNAM~1.JMO|jdk.naming.dns.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.naming.dns.jmod" SelfReg="false"/>
<ROW File="jdk.naming.rmi.jmod" Component_="java.base.jmod" FileName="JDKNAM~2.JMO|jdk.naming.rmi.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.naming.rmi.jmod" SelfReg="false"/>
<ROW File="jdk.net.jmod" Component_="java.base.jmod" FileName="JDKNET~1.JMO|jdk.net.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.net.jmod" SelfReg="false"/>
<ROW File="jdk.nio.mapmode.jmod" Component_="java.base.jmod" FileName="JDKNIO~1.JMO|jdk.nio.mapmode.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.nio.mapmode.jmod" SelfReg="false"/>
<ROW File="jdk.sctp.jmod" Component_="java.base.jmod" FileName="JDKSCT~1.JMO|jdk.sctp.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.sctp.jmod" SelfReg="false"/>
<ROW File="jdk.security.auth.jmod" Component_="java.base.jmod" FileName="JDKSEC~1.JMO|jdk.security.auth.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.security.auth.jmod" SelfReg="false"/>
<ROW File="jdk.security.jgss.jmod" Component_="java.base.jmod" FileName="JDKSEC~2.JMO|jdk.security.jgss.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.security.jgss.jmod" SelfReg="false"/>
<ROW File="jdk.unsupported.desktop.jmod" Component_="java.base.jmod" FileName="JDKUNS~1.JMO|jdk.unsupported.desktop.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.unsupported.desktop.jmod" SelfReg="false"/>
<ROW File="jdk.unsupported.jmod" Component_="java.base.jmod" FileName="JDKUNS~2.JMO|jdk.unsupported.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.unsupported.jmod" SelfReg="false"/>
<ROW File="jdk.xml.dom.jmod" Component_="java.base.jmod" FileName="JDKXML~1.JMO|jdk.xml.dom.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.xml.dom.jmod" SelfReg="false"/>
<ROW File="jdk.zipfs.jmod" Component_="java.base.jmod" FileName="JDKZIP~1.JMO|jdk.zipfs.jmod" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\jmods\jdk.zipfs.jmod" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO" Component_="ADDITIONAL_LICENSE_INFO" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.base\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="aes.md" Component_="ADDITIONAL_LICENSE_INFO" FileName="aes.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.base\aes.md" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION" Component_="ADDITIONAL_LICENSE_INFO" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.base\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="clibutl.md" Component_="ADDITIONAL_LICENSE_INFO" FileName="c-libutl.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.base\c-libutl.md" SelfReg="false"/>
<ROW File="cldr.md" Component_="ADDITIONAL_LICENSE_INFO" FileName="cldr.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.base\cldr.md" SelfReg="false"/>
<ROW File="icu.md" Component_="ADDITIONAL_LICENSE_INFO" FileName="icu.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.base\icu.md" SelfReg="false"/>
<ROW File="LICENSE" Component_="ADDITIONAL_LICENSE_INFO" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.base\LICENSE" SelfReg="false"/>
<ROW File="public_suffix.md" Component_="ADDITIONAL_LICENSE_INFO" FileName="PUBLIC~1.MD|public_suffix.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.base\public_suffix.md" SelfReg="false"/>
<ROW File="siphash.md" Component_="ADDITIONAL_LICENSE_INFO" FileName="siphash.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.base\siphash.md" SelfReg="false"/>
<ROW File="unicode.md" Component_="ADDITIONAL_LICENSE_INFO" FileName="unicode.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.base\unicode.md" SelfReg="false"/>
<ROW File="wepoll.md" Component_="ADDITIONAL_LICENSE_INFO" FileName="wepoll.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.base\wepoll.md" SelfReg="false"/>
<ROW File="zlib.md" Component_="ADDITIONAL_LICENSE_INFO" FileName="zlib.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.base\zlib.md" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_1" Component_="ADDITIONAL_LICENSE_INFO_1" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.compiler\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_1" Component_="ADDITIONAL_LICENSE_INFO_1" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.compiler\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_1" Component_="ADDITIONAL_LICENSE_INFO_1" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.compiler\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_2" Component_="ADDITIONAL_LICENSE_INFO_2" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.datatransfer\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_2" Component_="ADDITIONAL_LICENSE_INFO_2" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.datatransfer\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_2" Component_="ADDITIONAL_LICENSE_INFO_2" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.datatransfer\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_3" Component_="ADDITIONAL_LICENSE_INFO_3" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.desktop\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_3" Component_="ADDITIONAL_LICENSE_INFO_3" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.desktop\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="colorimaging.md" Component_="ADDITIONAL_LICENSE_INFO_3" FileName="COLORI~1.MD|colorimaging.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.desktop\colorimaging.md" SelfReg="false"/>
<ROW File="freetype.md" Component_="ADDITIONAL_LICENSE_INFO_3" FileName="freetype.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.desktop\freetype.md" SelfReg="false"/>
<ROW File="giflib.md" Component_="ADDITIONAL_LICENSE_INFO_3" FileName="giflib.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.desktop\giflib.md" SelfReg="false"/>
<ROW File="harfbuzz.md" Component_="ADDITIONAL_LICENSE_INFO_3" FileName="harfbuzz.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.desktop\harfbuzz.md" SelfReg="false"/>
<ROW File="jpeg.md" Component_="ADDITIONAL_LICENSE_INFO_3" FileName="jpeg.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.desktop\jpeg.md" SelfReg="false"/>
<ROW File="lcms.md" Component_="ADDITIONAL_LICENSE_INFO_3" FileName="lcms.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.desktop\lcms.md" SelfReg="false"/>
<ROW File="libpng.md" Component_="ADDITIONAL_LICENSE_INFO_3" FileName="libpng.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.desktop\libpng.md" SelfReg="false"/>
<ROW File="LICENSE_3" Component_="ADDITIONAL_LICENSE_INFO_3" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.desktop\LICENSE" SelfReg="false"/>
<ROW File="mesa3d.md" Component_="ADDITIONAL_LICENSE_INFO_3" FileName="mesa3d.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.desktop\mesa3d.md" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_4" Component_="ADDITIONAL_LICENSE_INFO_4" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.instrument\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_4" Component_="ADDITIONAL_LICENSE_INFO_4" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.instrument\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_4" Component_="ADDITIONAL_LICENSE_INFO_4" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.instrument\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_5" Component_="ADDITIONAL_LICENSE_INFO_5" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.logging\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_5" Component_="ADDITIONAL_LICENSE_INFO_5" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.logging\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_5" Component_="ADDITIONAL_LICENSE_INFO_5" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.logging\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_6" Component_="ADDITIONAL_LICENSE_INFO_6" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.management\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_6" Component_="ADDITIONAL_LICENSE_INFO_6" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.management\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_6" Component_="ADDITIONAL_LICENSE_INFO_6" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.management\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_7" Component_="ADDITIONAL_LICENSE_INFO_7" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.management.rmi\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_7" Component_="ADDITIONAL_LICENSE_INFO_7" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.management.rmi\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_7" Component_="ADDITIONAL_LICENSE_INFO_7" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.management.rmi\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_8" Component_="ADDITIONAL_LICENSE_INFO_8" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.naming\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_8" Component_="ADDITIONAL_LICENSE_INFO_8" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.naming\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_8" Component_="ADDITIONAL_LICENSE_INFO_8" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.naming\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_9" Component_="ADDITIONAL_LICENSE_INFO_9" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.net.http\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_9" Component_="ADDITIONAL_LICENSE_INFO_9" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.net.http\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_9" Component_="ADDITIONAL_LICENSE_INFO_9" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.net.http\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_10" Component_="ADDITIONAL_LICENSE_INFO_10" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.prefs\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_10" Component_="ADDITIONAL_LICENSE_INFO_10" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.prefs\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_10" Component_="ADDITIONAL_LICENSE_INFO_10" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.prefs\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_11" Component_="ADDITIONAL_LICENSE_INFO_11" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.rmi\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_11" Component_="ADDITIONAL_LICENSE_INFO_11" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.rmi\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_11" Component_="ADDITIONAL_LICENSE_INFO_11" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.rmi\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_12" Component_="ADDITIONAL_LICENSE_INFO_12" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.scripting\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_12" Component_="ADDITIONAL_LICENSE_INFO_12" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.scripting\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_12" Component_="ADDITIONAL_LICENSE_INFO_12" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.scripting\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_13" Component_="ADDITIONAL_LICENSE_INFO_13" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.se\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_13" Component_="ADDITIONAL_LICENSE_INFO_13" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.se\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_13" Component_="ADDITIONAL_LICENSE_INFO_13" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.se\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_14" Component_="ADDITIONAL_LICENSE_INFO_14" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.security.jgss\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_14" Component_="ADDITIONAL_LICENSE_INFO_14" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.security.jgss\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_14" Component_="ADDITIONAL_LICENSE_INFO_14" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.security.jgss\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_15" Component_="ADDITIONAL_LICENSE_INFO_15" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.security.sasl\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_15" Component_="ADDITIONAL_LICENSE_INFO_15" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.security.sasl\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_15" Component_="ADDITIONAL_LICENSE_INFO_15" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.security.sasl\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_16" Component_="ADDITIONAL_LICENSE_INFO_16" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.smartcardio\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_16" Component_="ADDITIONAL_LICENSE_INFO_16" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.smartcardio\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_16" Component_="ADDITIONAL_LICENSE_INFO_16" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.smartcardio\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_17" Component_="ADDITIONAL_LICENSE_INFO_17" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.sql\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_17" Component_="ADDITIONAL_LICENSE_INFO_17" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.sql\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_17" Component_="ADDITIONAL_LICENSE_INFO_17" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.sql\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_18" Component_="ADDITIONAL_LICENSE_INFO_18" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.sql.rowset\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_18" Component_="ADDITIONAL_LICENSE_INFO_18" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.sql.rowset\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_18" Component_="ADDITIONAL_LICENSE_INFO_18" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.sql.rowset\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_19" Component_="ADDITIONAL_LICENSE_INFO_19" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.transaction.xa\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_19" Component_="ADDITIONAL_LICENSE_INFO_19" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.transaction.xa\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_19" Component_="ADDITIONAL_LICENSE_INFO_19" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.transaction.xa\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_20" Component_="ADDITIONAL_LICENSE_INFO_20" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.xml\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_20" Component_="ADDITIONAL_LICENSE_INFO_20" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.xml\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="bcel.md" Component_="ADDITIONAL_LICENSE_INFO_20" FileName="bcel.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.xml\bcel.md" SelfReg="false"/>
<ROW File="dom.md" Component_="ADDITIONAL_LICENSE_INFO_20" FileName="dom.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.xml\dom.md" SelfReg="false"/>
<ROW File="jcup.md" Component_="ADDITIONAL_LICENSE_INFO_20" FileName="jcup.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.xml\jcup.md" SelfReg="false"/>
<ROW File="LICENSE_20" Component_="ADDITIONAL_LICENSE_INFO_20" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.xml\LICENSE" SelfReg="false"/>
<ROW File="schema10part1.md" Component_="ADDITIONAL_LICENSE_INFO_20" FileName="SCHEMA~1.MD|schema10part1.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.xml\schema10part1.md" SelfReg="false"/>
<ROW File="schema10part2.md" Component_="ADDITIONAL_LICENSE_INFO_20" FileName="SCHEMA~2.MD|schema10part2.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.xml\schema10part2.md" SelfReg="false"/>
<ROW File="xalan.md" Component_="ADDITIONAL_LICENSE_INFO_20" FileName="xalan.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.xml\xalan.md" SelfReg="false"/>
<ROW File="xerces.md" Component_="ADDITIONAL_LICENSE_INFO_20" FileName="xerces.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.xml\xerces.md" SelfReg="false"/>
<ROW File="xhtml10.md" Component_="ADDITIONAL_LICENSE_INFO_20" FileName="xhtml10.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.xml\xhtml10.md" SelfReg="false"/>
<ROW File="xhtml10schema.md" Component_="ADDITIONAL_LICENSE_INFO_20" FileName="XHTML1~1.MD|xhtml10schema.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.xml\xhtml10schema.md" SelfReg="false"/>
<ROW File="xhtml11.md" Component_="ADDITIONAL_LICENSE_INFO_20" FileName="xhtml11.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.xml\xhtml11.md" SelfReg="false"/>
<ROW File="xhtml11schema.md" Component_="ADDITIONAL_LICENSE_INFO_20" FileName="XHTML1~2.MD|xhtml11schema.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.xml\xhtml11schema.md" SelfReg="false"/>
<ROW File="xmlspec.md" Component_="ADDITIONAL_LICENSE_INFO_20" FileName="xmlspec.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.xml\xmlspec.md" SelfReg="false"/>
<ROW File="xmlxsd.md" Component_="ADDITIONAL_LICENSE_INFO_20" FileName="xmlxsd.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.xml\xmlxsd.md" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_21" Component_="ADDITIONAL_LICENSE_INFO_21" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.xml.crypto\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_21" Component_="ADDITIONAL_LICENSE_INFO_21" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.xml.crypto\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_21" Component_="ADDITIONAL_LICENSE_INFO_21" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.xml.crypto\LICENSE" SelfReg="false"/>
<ROW File="santuario.md" Component_="ADDITIONAL_LICENSE_INFO_21" FileName="SANTUA~1.MD|santuario.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\java.xml.crypto\santuario.md" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_22" Component_="ADDITIONAL_LICENSE_INFO_22" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.accessibility\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_22" Component_="ADDITIONAL_LICENSE_INFO_22" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.accessibility\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_22" Component_="ADDITIONAL_LICENSE_INFO_22" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.accessibility\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_23" Component_="ADDITIONAL_LICENSE_INFO_23" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.attach\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_23" Component_="ADDITIONAL_LICENSE_INFO_23" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.attach\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_23" Component_="ADDITIONAL_LICENSE_INFO_23" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.attach\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_24" Component_="ADDITIONAL_LICENSE_INFO_24" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.charsets\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_24" Component_="ADDITIONAL_LICENSE_INFO_24" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.charsets\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_24" Component_="ADDITIONAL_LICENSE_INFO_24" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.charsets\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_25" Component_="ADDITIONAL_LICENSE_INFO_25" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.compiler\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_25" Component_="ADDITIONAL_LICENSE_INFO_25" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.compiler\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_25" Component_="ADDITIONAL_LICENSE_INFO_25" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.compiler\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_26" Component_="ADDITIONAL_LICENSE_INFO_26" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.crypto.cryptoki\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_26" Component_="ADDITIONAL_LICENSE_INFO_26" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.crypto.cryptoki\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_26" Component_="ADDITIONAL_LICENSE_INFO_26" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.crypto.cryptoki\LICENSE" SelfReg="false"/>
<ROW File="pkcs11cryptotoken.md" Component_="ADDITIONAL_LICENSE_INFO_26" FileName="PKCS11~1.MD|pkcs11cryptotoken.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.crypto.cryptoki\pkcs11cryptotoken.md" SelfReg="false"/>
<ROW File="pkcs11wrapper.md" Component_="ADDITIONAL_LICENSE_INFO_26" FileName="PKCS11~2.MD|pkcs11wrapper.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.crypto.cryptoki\pkcs11wrapper.md" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_27" Component_="ADDITIONAL_LICENSE_INFO_27" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.crypto.ec\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_27" Component_="ADDITIONAL_LICENSE_INFO_27" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.crypto.ec\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_27" Component_="ADDITIONAL_LICENSE_INFO_27" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.crypto.ec\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_28" Component_="ADDITIONAL_LICENSE_INFO_28" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.crypto.mscapi\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_28" Component_="ADDITIONAL_LICENSE_INFO_28" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.crypto.mscapi\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_28" Component_="ADDITIONAL_LICENSE_INFO_28" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.crypto.mscapi\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_29" Component_="ADDITIONAL_LICENSE_INFO_29" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.dynalink\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_29" Component_="ADDITIONAL_LICENSE_INFO_29" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.dynalink\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="dynalink.md" Component_="ADDITIONAL_LICENSE_INFO_29" FileName="dynalink.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.dynalink\dynalink.md" SelfReg="false"/>
<ROW File="LICENSE_29" Component_="ADDITIONAL_LICENSE_INFO_29" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.dynalink\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_30" Component_="ADDITIONAL_LICENSE_INFO_30" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.editpad\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_30" Component_="ADDITIONAL_LICENSE_INFO_30" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.editpad\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_30" Component_="ADDITIONAL_LICENSE_INFO_30" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.editpad\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_31" Component_="ADDITIONAL_LICENSE_INFO_31" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.graal.compiler\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_31" Component_="ADDITIONAL_LICENSE_INFO_31" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.graal.compiler\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_31" Component_="ADDITIONAL_LICENSE_INFO_31" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.graal.compiler\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_32" Component_="ADDITIONAL_LICENSE_INFO_32" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.graal.compiler.management\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_32" Component_="ADDITIONAL_LICENSE_INFO_32" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.graal.compiler.management\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_32" Component_="ADDITIONAL_LICENSE_INFO_32" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.graal.compiler.management\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_33" Component_="ADDITIONAL_LICENSE_INFO_33" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.hotspot.agent\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_33" Component_="ADDITIONAL_LICENSE_INFO_33" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.hotspot.agent\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_33" Component_="ADDITIONAL_LICENSE_INFO_33" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.hotspot.agent\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_34" Component_="ADDITIONAL_LICENSE_INFO_34" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.httpserver\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_34" Component_="ADDITIONAL_LICENSE_INFO_34" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.httpserver\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_34" Component_="ADDITIONAL_LICENSE_INFO_34" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.httpserver\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_35" Component_="ADDITIONAL_LICENSE_INFO_35" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.incubator.vector\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_35" Component_="ADDITIONAL_LICENSE_INFO_35" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.incubator.vector\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_35" Component_="ADDITIONAL_LICENSE_INFO_35" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.incubator.vector\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_36" Component_="ADDITIONAL_LICENSE_INFO_36" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.internal.ed\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_36" Component_="ADDITIONAL_LICENSE_INFO_36" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.internal.ed\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_36" Component_="ADDITIONAL_LICENSE_INFO_36" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.internal.ed\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_37" Component_="ADDITIONAL_LICENSE_INFO_37" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.internal.jvmstat\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_37" Component_="ADDITIONAL_LICENSE_INFO_37" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.internal.jvmstat\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_37" Component_="ADDITIONAL_LICENSE_INFO_37" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.internal.jvmstat\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_38" Component_="ADDITIONAL_LICENSE_INFO_38" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.internal.le\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_38" Component_="ADDITIONAL_LICENSE_INFO_38" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.internal.le\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="jline.md" Component_="ADDITIONAL_LICENSE_INFO_38" FileName="jline.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.internal.le\jline.md" SelfReg="false"/>
<ROW File="LICENSE_38" Component_="ADDITIONAL_LICENSE_INFO_38" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.internal.le\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_39" Component_="ADDITIONAL_LICENSE_INFO_39" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.internal.md\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_39" Component_="ADDITIONAL_LICENSE_INFO_39" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.internal.md\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="commonmark.md" Component_="ADDITIONAL_LICENSE_INFO_39" FileName="COMMON~1.MD|commonmark.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.internal.md\commonmark.md" SelfReg="false"/>
<ROW File="LICENSE_39" Component_="ADDITIONAL_LICENSE_INFO_39" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.internal.md\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_40" Component_="ADDITIONAL_LICENSE_INFO_40" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.internal.opt\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_40" Component_="ADDITIONAL_LICENSE_INFO_40" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.internal.opt\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="joptsimple.md" Component_="ADDITIONAL_LICENSE_INFO_40" FileName="JOPT-S~1.MD|jopt-simple.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.internal.opt\jopt-simple.md" SelfReg="false"/>
<ROW File="LICENSE_40" Component_="ADDITIONAL_LICENSE_INFO_40" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.internal.opt\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_41" Component_="ADDITIONAL_LICENSE_INFO_41" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.internal.vm.ci\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_41" Component_="ADDITIONAL_LICENSE_INFO_41" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.internal.vm.ci\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_41" Component_="ADDITIONAL_LICENSE_INFO_41" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.internal.vm.ci\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_42" Component_="ADDITIONAL_LICENSE_INFO_42" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.jartool\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_42" Component_="ADDITIONAL_LICENSE_INFO_42" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.jartool\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_42" Component_="ADDITIONAL_LICENSE_INFO_42" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.jartool\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_43" Component_="ADDITIONAL_LICENSE_INFO_43" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.javadoc\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_43" Component_="ADDITIONAL_LICENSE_INFO_43" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.javadoc\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="dejavufonts.md" Component_="ADDITIONAL_LICENSE_INFO_43" FileName="DEJAVU~1.MD|dejavufonts.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.javadoc\dejavufonts.md" SelfReg="false"/>
<ROW File="highlightjs.md" Component_="ADDITIONAL_LICENSE_INFO_43" FileName="HIGHLI~1.MD|highlightjs.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.javadoc\highlightjs.md" SelfReg="false"/>
<ROW File="jquery.md" Component_="ADDITIONAL_LICENSE_INFO_43" FileName="jquery.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.javadoc\jquery.md" SelfReg="false"/>
<ROW File="jqueryUI.md" Component_="ADDITIONAL_LICENSE_INFO_43" FileName="jqueryUI.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.javadoc\jqueryUI.md" SelfReg="false"/>
<ROW File="LICENSE_43" Component_="ADDITIONAL_LICENSE_INFO_43" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.javadoc\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_44" Component_="ADDITIONAL_LICENSE_INFO_44" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.jcmd\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_44" Component_="ADDITIONAL_LICENSE_INFO_44" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.jcmd\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_44" Component_="ADDITIONAL_LICENSE_INFO_44" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.jcmd\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_45" Component_="ADDITIONAL_LICENSE_INFO_45" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.jconsole\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_45" Component_="ADDITIONAL_LICENSE_INFO_45" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.jconsole\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_45" Component_="ADDITIONAL_LICENSE_INFO_45" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.jconsole\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_46" Component_="ADDITIONAL_LICENSE_INFO_46" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.jdeps\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_46" Component_="ADDITIONAL_LICENSE_INFO_46" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.jdeps\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_46" Component_="ADDITIONAL_LICENSE_INFO_46" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.jdeps\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_47" Component_="ADDITIONAL_LICENSE_INFO_47" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.jdi\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_47" Component_="ADDITIONAL_LICENSE_INFO_47" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.jdi\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_47" Component_="ADDITIONAL_LICENSE_INFO_47" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.jdi\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_48" Component_="ADDITIONAL_LICENSE_INFO_48" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.jdwp.agent\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_48" Component_="ADDITIONAL_LICENSE_INFO_48" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.jdwp.agent\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_48" Component_="ADDITIONAL_LICENSE_INFO_48" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.jdwp.agent\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_49" Component_="ADDITIONAL_LICENSE_INFO_49" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.jfr\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_49" Component_="ADDITIONAL_LICENSE_INFO_49" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.jfr\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_49" Component_="ADDITIONAL_LICENSE_INFO_49" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.jfr\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_50" Component_="ADDITIONAL_LICENSE_INFO_50" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.jlink\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_50" Component_="ADDITIONAL_LICENSE_INFO_50" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.jlink\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_50" Component_="ADDITIONAL_LICENSE_INFO_50" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.jlink\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_51" Component_="ADDITIONAL_LICENSE_INFO_51" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.jpackage\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_51" Component_="ADDITIONAL_LICENSE_INFO_51" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.jpackage\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_51" Component_="ADDITIONAL_LICENSE_INFO_51" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.jpackage\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_52" Component_="ADDITIONAL_LICENSE_INFO_52" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.jshell\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_52" Component_="ADDITIONAL_LICENSE_INFO_52" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.jshell\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_52" Component_="ADDITIONAL_LICENSE_INFO_52" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.jshell\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_53" Component_="ADDITIONAL_LICENSE_INFO_53" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.jsobject\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_53" Component_="ADDITIONAL_LICENSE_INFO_53" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.jsobject\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_53" Component_="ADDITIONAL_LICENSE_INFO_53" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.jsobject\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_54" Component_="ADDITIONAL_LICENSE_INFO_54" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.jstatd\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_54" Component_="ADDITIONAL_LICENSE_INFO_54" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.jstatd\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_54" Component_="ADDITIONAL_LICENSE_INFO_54" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.jstatd\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_55" Component_="ADDITIONAL_LICENSE_INFO_55" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.localedata\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_55" Component_="ADDITIONAL_LICENSE_INFO_55" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.localedata\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="cldr.md_1" Component_="ADDITIONAL_LICENSE_INFO_55" FileName="cldr.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.localedata\cldr.md" SelfReg="false"/>
<ROW File="LICENSE_55" Component_="ADDITIONAL_LICENSE_INFO_55" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.localedata\LICENSE" SelfReg="false"/>
<ROW File="thaidict.md" Component_="ADDITIONAL_LICENSE_INFO_55" FileName="thaidict.md" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.localedata\thaidict.md" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_56" Component_="ADDITIONAL_LICENSE_INFO_56" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.management\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_56" Component_="ADDITIONAL_LICENSE_INFO_56" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.management\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_56" Component_="ADDITIONAL_LICENSE_INFO_56" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.management\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_57" Component_="ADDITIONAL_LICENSE_INFO_57" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.management.agent\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_57" Component_="ADDITIONAL_LICENSE_INFO_57" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.management.agent\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_57" Component_="ADDITIONAL_LICENSE_INFO_57" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.management.agent\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_58" Component_="ADDITIONAL_LICENSE_INFO_58" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.management.jfr\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_58" Component_="ADDITIONAL_LICENSE_INFO_58" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.management.jfr\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_58" Component_="ADDITIONAL_LICENSE_INFO_58" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.management.jfr\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_59" Component_="ADDITIONAL_LICENSE_INFO_59" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.naming.dns\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_59" Component_="ADDITIONAL_LICENSE_INFO_59" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.naming.dns\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_59" Component_="ADDITIONAL_LICENSE_INFO_59" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.naming.dns\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_60" Component_="ADDITIONAL_LICENSE_INFO_60" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.naming.rmi\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_60" Component_="ADDITIONAL_LICENSE_INFO_60" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.naming.rmi\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_60" Component_="ADDITIONAL_LICENSE_INFO_60" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.naming.rmi\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_61" Component_="ADDITIONAL_LICENSE_INFO_61" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.net\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_61" Component_="ADDITIONAL_LICENSE_INFO_61" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.net\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_61" Component_="ADDITIONAL_LICENSE_INFO_61" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.net\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_62" Component_="ADDITIONAL_LICENSE_INFO_62" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.nio.mapmode\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_62" Component_="ADDITIONAL_LICENSE_INFO_62" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.nio.mapmode\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_62" Component_="ADDITIONAL_LICENSE_INFO_62" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.nio.mapmode\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_63" Component_="ADDITIONAL_LICENSE_INFO_63" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.sctp\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_63" Component_="ADDITIONAL_LICENSE_INFO_63" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.sctp\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_63" Component_="ADDITIONAL_LICENSE_INFO_63" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.sctp\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_64" Component_="ADDITIONAL_LICENSE_INFO_64" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.security.auth\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_64" Component_="ADDITIONAL_LICENSE_INFO_64" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.security.auth\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_64" Component_="ADDITIONAL_LICENSE_INFO_64" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.security.auth\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_65" Component_="ADDITIONAL_LICENSE_INFO_65" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.security.jgss\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_65" Component_="ADDITIONAL_LICENSE_INFO_65" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.security.jgss\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_65" Component_="ADDITIONAL_LICENSE_INFO_65" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.security.jgss\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_66" Component_="ADDITIONAL_LICENSE_INFO_66" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.unsupported\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_66" Component_="ADDITIONAL_LICENSE_INFO_66" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.unsupported\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_66" Component_="ADDITIONAL_LICENSE_INFO_66" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.unsupported\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_67" Component_="ADDITIONAL_LICENSE_INFO_67" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.unsupported.desktop\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_67" Component_="ADDITIONAL_LICENSE_INFO_67" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.unsupported.desktop\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_67" Component_="ADDITIONAL_LICENSE_INFO_67" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.unsupported.desktop\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_68" Component_="ADDITIONAL_LICENSE_INFO_68" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.xml.dom\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_68" Component_="ADDITIONAL_LICENSE_INFO_68" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.xml.dom\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_68" Component_="ADDITIONAL_LICENSE_INFO_68" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.xml.dom\LICENSE" SelfReg="false"/>
<ROW File="ADDITIONAL_LICENSE_INFO_69" Component_="ADDITIONAL_LICENSE_INFO_69" FileName="ADDITI~1|ADDITIONAL_LICENSE_INFO" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.zipfs\ADDITIONAL_LICENSE_INFO" SelfReg="false"/>
<ROW File="ASSEMBLY_EXCEPTION_69" Component_="ADDITIONAL_LICENSE_INFO_69" FileName="ASSEMB~1|ASSEMBLY_EXCEPTION" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.zipfs\ASSEMBLY_EXCEPTION" SelfReg="false"/>
<ROW File="LICENSE_69" Component_="ADDITIONAL_LICENSE_INFO_69" FileName="LICENSE" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\legal\jdk.zipfs\LICENSE" SelfReg="false"/>
<ROW File="classlist" Component_="classlist" FileName="CLASSL~1|classlist" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\lib\classlist" SelfReg="false"/>
<ROW File="ct.sym" Component_="classlist" FileName="ct.sym" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\lib\ct.sym" SelfReg="false"/>
<ROW File="fontconfig.bfc" Component_="classlist" FileName="FONTCO~1.BFC|fontconfig.bfc" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\lib\fontconfig.bfc" SelfReg="false"/>
<ROW File="fontconfig.properties.src" Component_="classlist" FileName="FONTCO~1.SRC|fontconfig.properties.src" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\lib\fontconfig.properties.src" SelfReg="false"/>
<ROW File="jawt.lib" Component_="classlist" FileName="jawt.lib" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\lib\jawt.lib" SelfReg="false"/>
<ROW File="default.jfc" Component_="default.jfc" FileName="default.jfc" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\lib\jfr\default.jfc" SelfReg="false"/>
<ROW File="profile.jfc" Component_="default.jfc" FileName="profile.jfc" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\lib\jfr\profile.jfc" SelfReg="false"/>
<ROW File="jrtfs.jar" Component_="classlist" FileName="jrt-fs.jar" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\lib\jrt-fs.jar" SelfReg="false"/>
<ROW File="jvm.cfg" Component_="classlist" FileName="jvm.cfg" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\lib\jvm.cfg" SelfReg="false"/>
<ROW File="jvm.lib" Component_="classlist" FileName="jvm.lib" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\lib\jvm.lib" SelfReg="false"/>
<ROW File="modules" Component_="classlist" FileName="modules" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\lib\modules" SelfReg="false"/>
<ROW File="psfont.properties.ja" Component_="classlist" FileName="PSFONT~1.JA|psfont.properties.ja" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\lib\psfont.properties.ja" SelfReg="false"/>
<ROW File="psfontj2d.properties" Component_="classlist" FileName="PSFONT~1.PRO|psfontj2d.properties" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\lib\psfontj2d.properties" SelfReg="false"/>
<ROW File="blocked.certs" Component_="blocked.certs" FileName="BLOCKE~1.CER|blocked.certs" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\lib\security\blocked.certs" SelfReg="false"/>
<ROW File="cacerts" Component_="blocked.certs" FileName="cacerts" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\lib\security\cacerts" SelfReg="false"/>
<ROW File="public_suffix_list.dat" Component_="blocked.certs" FileName="PUBLIC~1.DAT|public_suffix_list.dat" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\lib\security\public_suffix_list.dat" SelfReg="false"/>
<ROW File="src.zip" Component_="classlist" FileName="src.zip" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\lib\src.zip" SelfReg="false"/>
<ROW File="tzdb.dat" Component_="classlist" FileName="tzdb.dat" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\lib\tzdb.dat" SelfReg="false"/>
<ROW File="tzmappings" Component_="classlist" FileName="TZMAPP~1|tzmappings" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\lib\tzmappings" SelfReg="false"/>
<ROW File="release" Component_="release" FileName="release" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\jdk-25.0.2+10\release" SelfReg="false"/>
<ROW File="app.bat" Component_="app.bat" FileName="app.bat" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\app.bat" SelfReg="false"/>
<ROW File="homeworkChecker1.6.0betashaded.jar" Component_="app.bat" FileName="HOMEWO~1.JAR|homeworkChecker-1.6.0-beta-shaded.jar" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\homeworkChecker-1.6.0-beta-shaded.jar" SelfReg="false"/>
<ROW File="HomeworkCheckerLauncher.vbs" Component_="HomeworkCheckerLauncher.vbs" FileName="HOMEWO~1.VBS|HomeworkCheckerLauncher.vbs" Version="65535.65535.65535.65535" Attributes="0" SourcePath="..\homeworkChecker-release\HomeworkCheckerLauncher.vbs" SelfReg="false"/>
</COMPONENT>
<COMPONENT cid="caphyon.advinst.msicomp.BootstrOptComponent">
<ROW BootstrOptKey="GlobalOptions" DownloadFolder="[AppDataFolder][|Manufacturer]\[|ProductName]\prerequisites" Options="2"/>
</COMPONENT>
<COMPONENT cid="caphyon.advinst.msicomp.BuildComponent">
<ROW BuildKey="DefaultBuild" BuildName="DefaultBuild" BuildOrder="1" BuildType="0" Languages="zh" InstallationType="4" UseLargeSchema="true"/>
</COMPONENT>
<COMPONENT cid="caphyon.advinst.msicomp.DictionaryComponent">
<ROW Path="<AI_DICTS>ui.ail"/>
<ROW Path="<AI_DICTS>ui_zh.ail"/>
</COMPONENT>
<COMPONENT cid="caphyon.advinst.msicomp.DigCertStoreComponent">
<ROW TimeStampUrl="http://timestamp.digicert.com" SignerDescription="[|ProductName]" SignOptions="0" SignTool="0" UseSha256="1" Store="User\MY"/>
</COMPONENT>
<COMPONENT cid="caphyon.advinst.msicomp.FragmentComponent">
<ROW Fragment="CommonUI.aip" Path="<AI_FRAGS>CommonUI.aip"/>
<ROW Fragment="MaintenanceWelcomeDlg.aip" Path="<AI_THEMES>appinstaller\fragments\MaintenanceWelcomeDlg.aip"/>
<ROW Fragment="SequenceDialogs.aip" Path="<AI_THEMES>appinstaller\fragments\SequenceDialogs.aip"/>
<ROW Fragment="Sequences.aip" Path="<AI_FRAGS>Sequences.aip"/>