Bugzilla – Attachment 120602 Details for
Bug 14957
Write protecting MARC fields based on source of import
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 14957: (QA follow-up) Fix template indentation
Bug-14957-QA-follow-up-Fix-template-indentation.patch (text/plain), 28.13 KB, created by
Martin Renvoize (ashimema)
on 2021-05-06 07:30:20 UTC
(
hide
)
Description:
Bug 14957: (QA follow-up) Fix template indentation
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2021-05-06 07:30:20 UTC
Size:
28.13 KB
patch
obsolete
>From 868bfde4a655b11bc3afc4ef52f68ccb62197d7c Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Wed, 5 May 2021 16:49:11 +0100 >Subject: [PATCH] Bug 14957: (QA follow-up) Fix template indentation > >--- > .../en/modules/admin/marc-overlay-rules.tt | 491 +++++++++--------- > 1 file changed, 245 insertions(+), 246 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/marc-overlay-rules.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/marc-overlay-rules.tt >index 90a5135624..e5bae8bee5 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/marc-overlay-rules.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/marc-overlay-rules.tt >@@ -19,253 +19,252 @@ > [% INCLUDE 'header.inc' %] > [% INCLUDE 'cat-search.inc' %] > >-<nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb"> >- <ol> >- <li> >- <a href="/cgi-bin/koha/mainpage.pl">Home</a> >- </li> >- <li> >- <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a> >- </li> >- <li> >- <a href="#" aria-current="page"> >- MARC overlay rules >- </a> >- </li> >- </ol> >-</nav> >- >-<div class="main container-fluid"> >-<div class="row"> >-<div class="col-sm-10 col-sm-push-2"> >- >-<h1>Manage MARC overlay rules</h1> >- >-[% FOR m IN messages %] >- <div class="dialog [% m.type | html %]"> >- [% SWITCH m.code %] >- [% CASE 'invalid_tag_regexp' %] >- Invalid regular expression "[% m.tag | html %]". >- [% CASE 'invalid_control_field_actions' %] >- Invalid combination of actions for tag [% m.tag | html %]. Control field rules do not allow "Appended: Append" and "Removed: Skip". >- [% CASE %] >- [% m.code | html %] >- [% END %] >- </div> >-[% END %] >- >-[% UNLESS Koha.Preference( 'MARCOverlayRules' ) %] >- <div class="dialog message"> >- The <b>MARCOverlayRules</b> preference is not set, don't forget to enable it for rules to take effect. >- </div> >-[% END %] >-[% IF removeConfirm %] >-<div class="dialog alert"> >-<h3>Remove rule?</h3> >-<p>Are you sure you want to remove the selected rule(s)?</p> >- >-<form action="[% script_name | uri %]" method="GET"> >- <button type="submit" class="deny"><i class="fa fa-fw fa-remove"></i> No, do not remove</button> >-</form> >- <button type="button" class="approve" id="doremove"><i class="fa fa-fw fa-check"></i> Yes, remove</button> >-</div> >-[% END %] >- >-<form action="[% script_name | uri %]" method="POST" id="marc-overlay-rules-form"> >-<table id="marc-overlay-rules"> >- <thead><tr> >- <th>Rule</th> >- <th>Module</th> >- <th>Filter</th> >- <th>Tag</th> >- <th>Preset</th> >- <th>Added <i id="info_added" data-toggle="tooltip" title="If a field matching the rule tag only exists in the incoming record" data-placement="right" class="fa fa-info-circle"></i></th> >- <th>Appended <i id="info_appended" data-toggle="tooltip" title="If the original record has one or more fields matching with the rule tag, but one or more fields matching the rule tag differ in the incoming record" data-placement="right" class="fa fa-info-circle"></i></th> >- <th>Removed <i id="info_removed" data-toggle="tooltip" title="If the original record has a field matching the rule tag, but the matching field is not in the incoming record" data-placement="right" class="fa fa-info-circle"></i></th> >- <th>Deleted <i id="info_deleted" data-toggle="tooltip" title="If the original record has fields matching the rule tag, but no fields with this are found in the incoming record" data-placement="right" class="fa fa-info-circle"></i></th> >- <th>Actions</th> >- <th> </th> >- </tr></thead> >- [% UNLESS edit %] >- <tfoot> >- <tr class="rule-new"> >- <th> </th> >- <th> >- <select name="module"> >- <option value="source">Source</option> >- <option value="categorycode">User category</option> >- <option value="userid">Username</option> >- </select> >- </th> >- <th id="filter-container"></th> >- <th><input type="text" size="5" name="tag"/></th> >- <th> >- <select name="preset"> >- <option value="" selected>Custom</option> >- <option value="Protect">Protect</option> >- <option value="Overwrite">Overwrite</option> >- <option value="Add new">Add new</option> >- <option value="Add and append">Add and append</option> >- <option value="Protect from deletion">Protect from deletion</option> >- </select> >- </th> >- <th class="rule-operation-action-edit"> >- <select name="add"> >- <option value="0">Skip</option> >- <option value="1">Add</option> >- </select> >- </th> >- <th class="rule-operation-action-edit"> >- <select name="append"> >- <option value="0">Skip</option> >- <option value="1">Append</option> >- </select> >- </th> >- <th class="rule-operation-action-edit"> >- <select name="remove"> >- <option value="0">Skip</option> >- <option value="1">Remove</option> >- </select> >- </th> >- <th class="rule-operation-action-edit"> >- <select name="delete"> >- <option value="0">Skip</option> >- <option value="1">Delete</option> >- </select> >- </th> >- <th><button class="btn btn-default btn-xs" title="Add" id="add"><i class="fa fa-plus"></i> Add rule</button></th> >- <th><button id="btn_batchremove" disabled="disabled" class="btn btn-default btn-xs" title="Batch remove"><i class="fa fa-trash"></i> Delete selected</button></th> >- </tr> >- </tfoot> >- [% END %] >- <tbody> >- [% FOREACH rule IN rules %] >- <tr id="[% rule.id | html %]" class="rule[% IF rule.edit %]-edit[% END %]"> >- [% IF rule.edit %] >- <td>[% rule.id | html %]</td> >- <td> >- <select name="module"> >- [% IF rule.module == "source" %] >- <option value="source" selected="selected">Source</option> >- [% ELSE %] >- <option value="source">Source</option> >- [% END %] >- [% IF rule.module == "categorycode" %] >- <option value="categorycode" selected="selected">User category</option> >- [% ELSE %] >- <option value="categorycode">User category</option> >- [% END %] >- [% IF rule.module == "userid" %] >- <option value="userid" selected="selected">Username</option> >- [% ELSE %] >- <option value="userid">Username</option> >- [% END %] >- </select> >- </td> >- <td id="filter-container" data-filter="[% rule.filter | html %]"></td> >- <td><input type="text" size="3" name="tag" value="[% rule.tag | html %]"/></td> >- <th> >- <select name="preset"> >- <option value="" selected>Custom</option> >- <option value="Protect">Protect</option> >- <option value="Overwrite">Overwrite</option> >- <option value="Add new">Add new</option> >- <option value="Add and append">Add and append</option> >- <option value="Protect from deletion">Protect from deletion</option> >- </select> >- </th> >- <td class="rule-operation-action-edit"> >- <select name="add"> >- [% IF rule.add %] >- <option value="0">Skip</option> >- <option value="1" selected="selected">Add</option> >- [% ELSE %] >- <option value="0" selected="selected">Skip</option> >- <option value="1">Add</option> >- [% END %] >- </select> >- </td> >- <td class="rule-operation-action-edit"> >- <select name="append"> >- [% IF rule.append %] >- <option value="0">Skip</option> >- <option value="1" selected="selected">Append</option> >- [% ELSE %] >- <option value="0" selected="selected">Skip</option> >- <option value="1">Append</option> >- [% END %] >- </select> >- </td> >- <td class="rule-operation-action-edit"> >- <select name="remove"> >- [% IF rule.remove %] >- <option value="0">Skip</option> >- <option value="1" selected="selected">Remove</option> >- [% ELSE %] >- <option value="0" selected="selected">Skip</option> >- <option value="1">Remove</option> >- [% END %] >- </select> >- </td> >- <td class="rule-operation-action-edit"> >- <select name="delete"> >- [% IF rule.delete %] >- <option value="0">Skip</option> >- <option value="1" selected="selected">Delete</option> >- [% ELSE %] >- <option value="0" selected="selected">Skip</option> >- <option value="1">Delete</option> >- [% END %] >- </select> >- </td> >- <td class="actions"> >- <button class="btn btn-default btn-xs" title="Save" id="doedit" value="[% rule.id | html %]"><i class="fa fa-check"></i> Save</button> >- <button type="submit" class="btn btn-default btn-xs" title="Cancel" ><i class="fa fa-times"></i> Cancel</button> >- </td> >- <td></td> >- [% ELSE %] >- <td>[% rule.id | html %]</td> >- <td class="rule-module">[% rule.module | html %]</td> >- <td class="rule-filter">[% rule.filter | html %]</td> >- <td>[% rule.tag | html %]</td> >- <td class="rule-preset"></td> >- <td class="rule-operation-action" data-operation="add">[% IF rule.add %]Add[% ELSE %]Skip[% END %]</td> >- <td class="rule-operation-action" data-operation="append">[% IF rule.append %]Append[% ELSE %]Skip[% END %]</td> >- <td class="rule-operation-action" data-operation="remove">[% IF rule.remove %]Remove[% ELSE %]Skip[% END %]</td> >- <td class="rule-operation-action" data-operation="delete">[% IF rule.delete %]Delete[% ELSE %]Skip[% END %]</td> >- <td class="actions"> >- <a href="?op=remove&id=[% rule.id | uri %]" title="Delete" class="btn btn-default btn-xs"><i class="fa fa-trash"></i> Delete</a> >- <a href="?op=edit&id=[% rule.id | uri %]" title="Edit" class="btn btn-default btn-xs"><i class="fa fa-pencil"></i> Edit</a> >- </td> >- <td> >- [% IF rule.removemarked %] >- <input type="checkbox" name="batchremove" value="[% rule.id | html %]" checked="checked"/> >- [% ELSE %] >- <input type="checkbox" name="batchremove" value="[% rule.id | html %]"/> >+ <nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb"> >+ <ol> >+ <li> >+ <a href="/cgi-bin/koha/mainpage.pl">Home</a> >+ </li> >+ <li> >+ <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a> >+ </li> >+ <li> >+ <a href="#" aria-current="page"> >+ MARC overlay rules >+ </a> >+ </li> >+ </ol> >+ </nav> >+ >+ <div class="main container-fluid"> >+ <div class="row"> >+ <div class="col-sm-10 col-sm-push-2"> >+ >+ <h1>Manage MARC overlay rules</h1> >+ >+ [% FOR m IN messages %] >+ <div class="dialog [% m.type | html %]"> >+ [% SWITCH m.code %] >+ [% CASE 'invalid_tag_regexp' %] >+ Invalid regular expression "[% m.tag | html %]". >+ [% CASE 'invalid_control_field_actions' %] >+ Invalid combination of actions for tag [% m.tag | html %]. Control field rules do not allow "Appended: Append" and "Removed: Skip". >+ [% CASE %] >+ [% m.code | html %] > [% END %] >- </td> >- [% END %] >- </tr> >- [% END %] >- </tbody> >-</table> >-</form> >- >-<form action="[% script_name | uri %]" method="post"> >-<input type="hidden" name="op" value="redo-matching" /> >-</form> >- >-</div> >-<!-- /.col-sm-10.col-sm-push-2 --> >- >-<div class="col-sm-2 col-sm-pull-10"> >- <aside> >- [% INCLUDE 'admin-menu.inc' %] >- </aside> >-</div> >- >-</div><!-- /.row --> >-</div><!-- /main container-fluid --> >+ </div> >+ [% END %] >+ >+ [% UNLESS Koha.Preference( 'MARCOverlayRules' ) %] >+ <div class="dialog message"> >+ The <b>MARCOverlayRules</b> preference is not set, don't forget to enable it for rules to take effect. >+ </div> >+ [% END %] >+ [% IF removeConfirm %] >+ <div class="dialog alert"> >+ <h3>Remove rule?</h3> >+ <p>Are you sure you want to remove the selected rule(s)?</p> >+ >+ <form action="[% script_name | uri %]" method="GET"> >+ <button type="submit" class="deny"><i class="fa fa-fw fa-remove"></i> No, do not remove</button> >+ </form> >+ <button type="button" class="approve" id="doremove"><i class="fa fa-fw fa-check"></i> Yes, remove</button> >+ </div> >+ [% END %] >+ >+ <form action="[% script_name | uri %]" method="POST" id="marc-overlay-rules-form"> >+ <table id="marc-overlay-rules"> >+ <thead><tr> >+ <th>Rule</th> >+ <th>Module</th> >+ <th>Filter</th> >+ <th>Tag</th> >+ <th>Preset</th> >+ <th>Added <i id="info_added" data-toggle="tooltip" title="If a field matching the rule tag only exists in the incoming record" data-placement="right" class="fa fa-info-circle"></i></th> >+ <th>Appended <i id="info_appended" data-toggle="tooltip" title="If the original record has one or more fields matching with the rule tag, but one or more fields matching the rule tag differ in the incoming record" data-placement="right" class="fa fa-info-circle"></i></th> >+ <th>Removed <i id="info_removed" data-toggle="tooltip" title="If the original record has a field matching the rule tag, but the matching field is not in the incoming record" data-placement="right" class="fa fa-info-circle"></i></th> >+ <th>Deleted <i id="info_deleted" data-toggle="tooltip" title="If the original record has fields matching the rule tag, but no fields with this are found in the incoming record" data-placement="right" class="fa fa-info-circle"></i></th> >+ <th>Actions</th> >+ <th> </th> >+ </tr></thead> >+ [% UNLESS edit %] >+ <tfoot> >+ <tr class="rule-new"> >+ <th> </th> >+ <th> >+ <select name="module"> >+ <option value="source">Source</option> >+ <option value="categorycode">User category</option> >+ <option value="userid">Username</option> >+ </select> >+ </th> >+ <th id="filter-container"></th> >+ <th><input type="text" size="5" name="tag"/></th> >+ <th> >+ <select name="preset"> >+ <option value="" selected>Custom</option> >+ <option value="Protect">Protect</option> >+ <option value="Overwrite">Overwrite</option> >+ <option value="Add new">Add new</option> >+ <option value="Add and append">Add and append</option> >+ <option value="Protect from deletion">Protect from deletion</option> >+ </select> >+ </th> >+ <th class="rule-operation-action-edit"> >+ <select name="add"> >+ <option value="0">Skip</option> >+ <option value="1">Add</option> >+ </select> >+ </th> >+ <th class="rule-operation-action-edit"> >+ <select name="append"> >+ <option value="0">Skip</option> >+ <option value="1">Append</option> >+ </select> >+ </th> >+ <th class="rule-operation-action-edit"> >+ <select name="remove"> >+ <option value="0">Skip</option> >+ <option value="1">Remove</option> >+ </select> >+ </th> >+ <th class="rule-operation-action-edit"> >+ <select name="delete"> >+ <option value="0">Skip</option> >+ <option value="1">Delete</option> >+ </select> >+ </th> >+ <th><button class="btn btn-default btn-xs" title="Add" id="add"><i class="fa fa-plus"></i> Add rule</button></th> >+ <th><button id="btn_batchremove" disabled="disabled" class="btn btn-default btn-xs" title="Batch remove"><i class="fa fa-trash"></i> Delete selected</button></th> >+ </tr> >+ </tfoot> >+ [% END %] >+ <tbody> >+ [% FOREACH rule IN rules %] >+ <tr id="[% rule.id | html %]" class="rule[% IF rule.edit %]-edit[% END %]"> >+ [% IF rule.edit %] >+ <td>[% rule.id | html %]</td> >+ <td> >+ <select name="module"> >+ [% IF rule.module == "source" %] >+ <option value="source" selected="selected">Source</option> >+ [% ELSE %] >+ <option value="source">Source</option> >+ [% END %] >+ [% IF rule.module == "categorycode" %] >+ <option value="categorycode" selected="selected">User category</option> >+ [% ELSE %] >+ <option value="categorycode">User category</option> >+ [% END %] >+ [% IF rule.module == "userid" %] >+ <option value="userid" selected="selected">Username</option> >+ [% ELSE %] >+ <option value="userid">Username</option> >+ [% END %] >+ </select> >+ </td> >+ <td id="filter-container" data-filter="[% rule.filter | html %]"></td> >+ <td><input type="text" size="3" name="tag" value="[% rule.tag | html %]"/></td> >+ <th> >+ <select name="preset"> >+ <option value="" selected>Custom</option> >+ <option value="Protect">Protect</option> >+ <option value="Overwrite">Overwrite</option> >+ <option value="Add new">Add new</option> >+ <option value="Add and append">Add and append</option> >+ <option value="Protect from deletion">Protect from deletion</option> >+ </select> >+ </th> >+ <td class="rule-operation-action-edit"> >+ <select name="add"> >+ [% IF rule.add %] >+ <option value="0">Skip</option> >+ <option value="1" selected="selected">Add</option> >+ [% ELSE %] >+ <option value="0" selected="selected">Skip</option> >+ <option value="1">Add</option> >+ [% END %] >+ </select> >+ </td> >+ <td class="rule-operation-action-edit"> >+ <select name="append"> >+ [% IF rule.append %] >+ <option value="0">Skip</option> >+ <option value="1" selected="selected">Append</option> >+ [% ELSE %] >+ <option value="0" selected="selected">Skip</option> >+ <option value="1">Append</option> >+ [% END %] >+ </select> >+ </td> >+ <td class="rule-operation-action-edit"> >+ <select name="remove"> >+ [% IF rule.remove %] >+ <option value="0">Skip</option> >+ <option value="1" selected="selected">Remove</option> >+ [% ELSE %] >+ <option value="0" selected="selected">Skip</option> >+ <option value="1">Remove</option> >+ [% END %] >+ </select> >+ </td> >+ <td class="rule-operation-action-edit"> >+ <select name="delete"> >+ [% IF rule.delete %] >+ <option value="0">Skip</option> >+ <option value="1" selected="selected">Delete</option> >+ [% ELSE %] >+ <option value="0" selected="selected">Skip</option> >+ <option value="1">Delete</option> >+ [% END %] >+ </select> >+ </td> >+ <td class="actions"> >+ <button class="btn btn-default btn-xs" title="Save" id="doedit" value="[% rule.id | html %]"><i class="fa fa-check"></i> Save</button> >+ <button type="submit" class="btn btn-default btn-xs" title="Cancel" ><i class="fa fa-times"></i> Cancel</button> >+ </td> >+ <td></td> >+ [% ELSE %] >+ <td>[% rule.id | html %]</td> >+ <td class="rule-module">[% rule.module | html %]</td> >+ <td class="rule-filter">[% rule.filter | html %]</td> >+ <td>[% rule.tag | html %]</td> >+ <td class="rule-preset"></td> >+ <td class="rule-operation-action" data-operation="add">[% IF rule.add %]Add[% ELSE %]Skip[% END %]</td> >+ <td class="rule-operation-action" data-operation="append">[% IF rule.append %]Append[% ELSE %]Skip[% END %]</td> >+ <td class="rule-operation-action" data-operation="remove">[% IF rule.remove %]Remove[% ELSE %]Skip[% END %]</td> >+ <td class="rule-operation-action" data-operation="delete">[% IF rule.delete %]Delete[% ELSE %]Skip[% END %]</td> >+ <td class="actions"> >+ <a href="?op=remove&id=[% rule.id | uri %]" title="Delete" class="btn btn-default btn-xs"><i class="fa fa-trash"></i> Delete</a> >+ <a href="?op=edit&id=[% rule.id | uri %]" title="Edit" class="btn btn-default btn-xs"><i class="fa fa-pencil"></i> Edit</a> >+ </td> >+ <td> >+ [% IF rule.removemarked %] >+ <input type="checkbox" name="batchremove" value="[% rule.id | html %]" checked="checked"/> >+ [% ELSE %] >+ <input type="checkbox" name="batchremove" value="[% rule.id | html %]"/> >+ [% END %] >+ </td> >+ [% END %] >+ </tr> >+ [% END %] >+ </tbody> >+ </table> >+ </form> >+ >+ <form action="[% script_name | uri %]" method="post"> >+ <input type="hidden" name="op" value="redo-matching" /> >+ </form> >+ >+ </div><!-- /.col-sm-10.col-sm-push-2 --> >+ >+ <div class="col-sm-2 col-sm-pull-10"> >+ <aside> >+ [% INCLUDE 'admin-menu.inc' %] >+ </aside> >+ </div> >+ >+ </div><!-- /.row --> >+ </div><!-- /main container-fluid --> > > [% MACRO jsinclude BLOCK %] > <script> >-- >2.20.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 14957
:
44056
|
44057
|
44058
|
51723
|
51724
|
56637
|
56638
|
56643
|
56644
|
56645
|
56646
|
56647
|
56648
|
57114
|
57115
|
57116
|
57117
|
57118
|
57119
|
59811
|
59812
|
59885
|
60711
|
60824
|
60825
|
61065
|
61641
|
61736
|
64792
|
72498
|
74855
|
75118
|
76201
|
76202
|
76203
|
76204
|
76205
|
76206
|
76207
|
76208
|
76209
|
76210
|
78651
|
78652
|
78653
|
79367
|
79368
|
79369
|
79370
|
79890
|
80972
|
80973
|
80974
|
80975
|
81176
|
81177
|
81178
|
81179
|
81621
|
81699
|
81700
|
81705
|
81706
|
81707
|
81708
|
81969
|
81970
|
81971
|
82030
|
82031
|
82775
|
87709
|
87711
|
87771
|
87929
|
88205
|
88206
|
89961
|
90668
|
90669
|
90671
|
90672
|
90722
|
90723
|
90740
|
90741
|
92933
|
92934
|
92935
|
92936
|
92937
|
92938
|
92999
|
93499
|
94909
|
94911
|
99998
|
100052
|
100053
|
100054
|
100055
|
100056
|
100057
|
100058
|
100059
|
100060
|
100061
|
101510
|
109955
|
109956
|
109957
|
109958
|
109959
|
109960
|
109961
|
109962
|
109963
|
116622
|
116623
|
116624
|
116625
|
117844
|
117845
|
117849
|
117850
|
117853
|
117859
|
117964
|
117965
|
117966
|
118918
|
118919
|
118920
|
118921
|
118922
|
118923
|
118924
|
118925
|
118926
|
118927
|
118934
|
118935
|
118936
|
118937
|
118938
|
118939
|
118940
|
118941
|
118942
|
118943
|
118944
|
118945
|
118946
|
118957
|
120533
|
120534
|
120535
|
120536
|
120537
|
120538
|
120539
|
120540
|
120541
|
120542
|
120543
|
120544
|
120545
|
120546
|
120547
|
120548
|
120550
|
120553
|
120554
|
120555
|
120556
|
120557
|
120581
|
120582
|
120583
|
120584
|
120585
|
120586
|
120587
|
120588
|
120589
|
120590
|
120591
|
120592
|
120593
|
120594
|
120595
|
120596
|
120597
|
120598
|
120599
|
120600
|
120601
|
120602
|
120603
|
120604
|
120605
|
120670
|
120671
|
120705
|
125514
|
125515
|
125516
|
125517
|
125518
|
125519
|
125520
|
125521
|
125522
|
125523
|
125524
|
125525
|
125526
|
125527
|
125528
|
125529
|
125530
|
125531
|
125532
|
125533
|
125534
|
125535
|
125536
|
125537
|
125538
|
125539
|
125540
|
125632
|
125633
|
125636
|
126424
|
126425
|
126431
|
126592
|
126666
|
126667
|
126752
|
126753
|
126754
|
126755
|
126756
|
126757
|
126758
|
126759
|
126760
|
126761
|
126762
|
126763
|
126764
|
126765
|
126766
|
126767
|
126768
|
126769
|
126770
|
126771
|
126772
|
126773
|
126774
|
126775
|
126776
|
126777
|
126778
|
126779
|
126780
|
126781
|
126782
|
126783
|
126784
|
126785
|
126786
|
126950
|
126951