Bugzilla – Attachment 81968 Details for
Bug 17047
Mana Knowledge Base : Data sharing
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 17047: [QA tool] add template filters
Bug-17047-QA-tool-add-template-filters.patch (text/plain), 29.97 KB, created by
Alex Arnaud
on 2018-11-05 15:27:21 UTC
(
hide
)
Description:
Bug 17047: [QA tool] add template filters
Filename:
MIME Type:
Creator:
Alex Arnaud
Created:
2018-11-05 15:27:21 UTC
Size:
29.97 KB
patch
obsolete
>From a12bf418126361ac62c6e93e657b61afbf41e4a9 Mon Sep 17 00:00:00 2001 >From: Alex Arnaud <alex.arnaud@biblibre.com> >Date: Mon, 5 Nov 2018 15:55:05 +0100 >Subject: [PATCH] Bug 17047: [QA tool] add template filters > >--- > .../en/includes/mana/mana-report-search-result.inc | 28 ++++++------ > .../mana/mana-subscription-search-result.inc | 32 ++++++------- > .../prog/en/includes/reports-toolbar.inc | 6 +-- > .../prog/en/includes/serials-toolbar.inc | 52 +++++++++++----------- > .../en/modules/reports/guided_reports_start.tt | 42 ++++++++--------- > .../prog/en/modules/serials/serials-search.tt | 2 +- > .../prog/en/modules/serials/subscription-add.tt | 2 +- > .../prog/en/modules/serials/subscription-detail.tt | 2 +- > 8 files changed, 83 insertions(+), 83 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/mana/mana-report-search-result.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/mana/mana-report-search-result.inc >index b95600c..5ec88b8 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/includes/mana/mana-report-search-result.inc >+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/mana/mana-report-search-result.inc >@@ -45,30 +45,30 @@ $(document).ready(function() { > [% FOREACH report IN reports %] > [% UNLESS report.cannotdisplay %] > [% IF report.nbofcomment > highWarned %] >- <tr id="row[% report.id %]" class = "high-warned-row"> >+ <tr id="row[% report.id | $raw %]" class = "high-warned-row"> > [% ELSIF report.nbofcomment > warned %] >- <tr id="row[% report.id %]" class = "warned-row"> >+ <tr id="row[% report.id | $raw %]" class = "warned-row"> > [% ELSIF report.nbofcomment > lowWarned %] >- <tr id="row[% report.id %]" class = "highlighted-row"> >+ <tr id="row[% report.id | $raw %]" class = "highlighted-row"> > [% END %] >- <input hidden class="rowid" value="[% report.id %]"> >- <td>[% IF ( report.report_name ) %][% report.report_name %][% END %]</td> >- <td title="[% report.savedsql |html %]"><div> >+ <input hidden class="rowid" value="[% report.id | $raw %]"> >+ <td>[% IF ( report.report_name ) %][% report.report_name | html %][% END %]</td> >+ <td title="[% report.savedsql | html %]"><div> > [% IF report.notes.length > 200 %] >- [% report.notes.substr(0,200) %]<a class="showbutton">Show More</a></div><div hidden> >+ [% report.notes.substr(0,200) | html %]<a class="showbutton">Show More</a></div><div hidden> > [% END %] >- [% report.notes %] >+ [% report.notes | html %] > [% IF report.notes.length > 200 %] > <a class="hidebutton">Show Less</a></div> </td> > [% END %] >- <td> [% report.type %] </td> >- <td>[% IF ( report.nbofusers ) %][% report.nbofusers %][% END %]</td> >- <td><span title="[% report.lastimport %]">[% report.lastimport | $KohaDates %]</span></td> >- <td>[% FOREACH comment IN report.comments %][% comment.message %] ([% comment.nb %]) <br>[% END %]</td> >+ <td> [% report.type | html %] </td> >+ <td>[% IF ( report.nbofusers ) %][% report.nbofusers | $raw %][% END %]</td> >+ <td><span title="[% report.lastimport | $KohaDates %]">[% report.lastimport | $KohaDates %]</span></td> >+ <td>[% FOREACH comment IN report.comments %][% comment.message | html %] ([% comment.nb | $raw %]) <br>[% END %]</td> > > [% UNLESS search_only %] > <td> >- <button class="mana-use" id="mana-use-[% report.id %]"><i class="fa fa-inbox"></i> Use</button> >+ <button class="mana-use" id="mana-use-[% report.id | $raw %]"><i class="fa fa-inbox"></i> Use</button> > </td> > [% END %] > </tr> >@@ -77,5 +77,5 @@ $(document).ready(function() { > </tbody> > </table> > [% ELSE %] >- <h4> [% msg %] statuscode: [% statuscode %]</h4> >+ <h4> [% msg | html %] statuscode: [% statuscode | $raw %]</h4> > [% END %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/mana/mana-subscription-search-result.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/mana/mana-subscription-search-result.inc >index 34c3f42..891ce4c 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/includes/mana/mana-subscription-search-result.inc >+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/mana/mana-subscription-search-result.inc >@@ -35,29 +35,29 @@ $(document).ready(function() { > [% FOREACH subscription IN subscriptions %] > [% UNLESS subscription.cannotdisplay %] > [% IF subscription.nbofcomment > highWarned %] >- <tr id="row[% subscription.subscriptionid %]" class = "high-warned-row" title="this resource has been reported more than [% highWarned %] times, take care!"> >+ <tr id="row[% subscription.subscriptionid | $raw %]" class = "high-warned-row" title="this resource has been reported more than [% highWarned | html %] times, take care!"> > [% ELSIF subscription.nbofcomment > warned %] >- <tr id="row[% subscription.subscriptionid %]" class = "warned-row" title="this resource has been reported more than [% warned %] times, take care!"> >+ <tr id="row[% subscription.subscriptionid | $raw %]" class = "warned-row" title="this resource has been reported more than [% warned | html %] times, take care!"> > [% ELSIF subscription.nbofcomment > lowWarned %] >- <tr id="row[% subscription.subscriptionid %]" class = "highlighted-row" title="this resource has been reported more than [% lowWarned %] times, take care!"> >+ <tr id="row[% subscription.subscriptionid | $raw %]" class = "highlighted-row" title="this resource has been reported more than [% lowWarned | html %] times, take care!"> > [% END %] >- <input hidden class="rowid" value="[% subscription.id %]"> >- <td>[% IF ( subscription.issn ) %][% subscription.issn %][% END %]</td> >- <td>[% subscription.title %]</a></td> >- <td>[% IF ( subscription.publishercode ) %][% subscription.publishercode %][% END %]</td> >- <td>[% IF ( subscription.sfdescription ) %][% subscription.sfdescription %][% END %]</td> >- <td>[% IF ( subscription.numberingmethod ) %][% subscription.numberingmethod %][% END %]</td> >- <td>[% IF ( subscription.nbofusers ) %][% subscription.nbofusers %][% END %]</td> >- <td><span title="[% subscription.lastimport %]">[% subscription.lastimport | $KohaDates %]</span></td> >- <td>[% FOREACH comment IN subscription.comments %][% comment.message %] ([% comment.nb %]) <br>[% END %]</td> >+ <input hidden class="rowid" value="[% subscription.id | $raw %]"> >+ <td>[% IF ( subscription.issn ) %][% subscription.issn | html %][% END %]</td> >+ <td>[% subscription.title | html %]</a></td> >+ <td>[% IF ( subscription.publishercode ) %][% subscription.publishercode | html %][% END %]</td> >+ <td>[% IF ( subscription.sfdescription ) %][% subscription.sfdescription | html %][% END %]</td> >+ <td>[% IF ( subscription.numberingmethod ) %][% subscription.numberingmethod | html %][% END %]</td> >+ <td>[% IF ( subscription.nbofusers ) %][% subscription.nbofusers | $raw %][% END %]</td> >+ <td><span title="[% subscription.lastimport | $KohaDates %]">[% subscription.lastimport | $KohaDates %]</span></td> >+ <td>[% FOREACH comment IN subscription.comments %][% comment.message | html %] ([% comment.nb | $raw %]) <br>[% END %]</td> > > [% UNLESS search_only %] > <td> >- <button class="mana-use" id="mana-use-[% subscription.id %]"><i class="fa fa-inbox"></i> Use</button> >- <select class="mana-actions" id="mana-actions-[% subscription.id %]"> >+ <button class="mana-use" id="mana-use-[% subscription.id | $raw %]"><i class="fa fa-inbox"></i> Use</button> >+ <select class="mana-actions" id="mana-actions-[% subscription.id | $raw %]"> > <option selected disabled>Report mistake</option> > [% FOREACH comment IN subscription.comments %] >- <option value="[% comment.id %]"> [% comment.message %] ([% comment.nb %])</option> >+ <option value="[% comment.id | $raw %]"> [% comment.message | html %] ([% comment.nb | $raw %])</option> > [% END %] > <option>other</option> > </select> >@@ -70,7 +70,7 @@ $(document).ready(function() { > </tbody> > </table> > [% ELSE %] >- <h4>Mana search fails with the code: [% statuscode %] </h4> >+ <h4>Mana search fails with the code: [% statuscode | html %] </h4> > [% END %] > > <div id="comment_box" class="modal" tabindex="-1" role="dialog" aria-labelledby="mana_search_result_label" style="display: none;"> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/reports-toolbar.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/reports-toolbar.inc >index 9a2c4bb..446fe7b 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/includes/reports-toolbar.inc >+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/reports-toolbar.inc >@@ -55,8 +55,8 @@ > <button class="btn btn-default btn-sm dropdown-toggle" data-toggle="dropdown"> Report mistake <span class="caret"></span></button> > <ul class="dropdown-menu"> > [% FOREACH c IN mana_comments %] >- <li class="mana-comment" data-id="[% c.id %]"> >- <a href="#">[% c.message %] ([% c.nb %])</a> >+ <li class="mana-comment" data-id="[% c.id | $raw %]"> >+ <a href="#">[% c.message | html %] ([% c.nb | html %])</a> > </li> > [% END %] > <li role="separator" class="divider"></li> >@@ -73,7 +73,7 @@ > </div> > <div class="modal-body"> > <input hidden id="mana-resource" value="report"> >- <input hidden id="mana-resource-id" value="[% mana_id %]"> >+ <input hidden id="mana-resource-id" value="[% mana_id | $raw %]"> > <div> > <input type="text" maxlength="35" size="35" id="mana-comment"> > </div> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/serials-toolbar.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/serials-toolbar.inc >index 4bba329..281af8e 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/includes/serials-toolbar.inc >+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/serials-toolbar.inc >@@ -66,8 +66,8 @@ > <button class="btn btn-default btn-sm dropdown-toggle" data-toggle="dropdown"> Report mistake <span class="caret"></span></button> > <ul class="dropdown-menu"> > [% FOREACH c IN mana_comments %] >- <li class="mana-comment" data-id="[% c.id %]"> >- <a href="#">[% c.message %] ([% c.nb %])</a> >+ <li class="mana-comment" data-id="[% c.id | $raw %]"> >+ <a href="#">[% c.message | html %] ([% c.nb | html %])</a> > </li> > [% END %] > <li role="separator" class="divider"></li> >@@ -84,7 +84,7 @@ > </div> > <div class="modal-body"> > <input hidden id="mana-resource" value="subscription"> >- <input hidden id="mana-resource-id" value="[% mana_id %]"> >+ <input hidden id="mana-resource-id" value="[% mana_id | $raw %]"> > <div> > <input type="text" maxlength="35" size="35" id="mana-comment"> > </div> >@@ -109,12 +109,12 @@ > <div class="modal-dialog"> > <div class="modal-content"> > <div class="modal-header"> >- <h3 id="mana_share_modal_label">Share [% bibliotitle %] to Mana</h3> >+ <h3 id="mana_share_modal_label">Share [% bibliotitle | html %] to Mana</h3> > </div> > <div class="modal-body"> > [% IF (mana_id) %] > <div class="alert"> >-<h1>[% (mana_id) %]</h1> >+<h1>[% mana_id | $raw %]</h1> > <p>Your subscription is already linked with a Mana subscription model. Share it if you have made modifications, otherwise it will do nothing.</p> > </div> > [% END %] >@@ -122,10 +122,10 @@ > [% UNLESS ( one_language_enabled ) %] > <div class="rows"> > <li><span class="label">Frequency: </span> >- [% frequency.description %] >+ [% frequency.description | html %] > </li> > <li><span class="label">Number pattern: </span> >- [% numberpattern.label %] >+ [% numberpattern.label | html %] > </li> > </ol> > </div> >@@ -140,20 +140,20 @@ > [% FOREACH sublanguages_loo IN languages_loo.sublanguages_loop %] > [% IF ( sublanguages_loo.enabled ) %] > [% IF ( sublanguages_loo.sublanguage_current ) %] >- <option value="[% languages_loo.rfc4646_subtag %]" selected> >- [% sublanguages_loo.native_description %] >- [% sublanguages_loo.script_description %] >- [% sublanguages_loo.region_description %] >- [% sublanguages_loo.variant_description %] >- ([% sublanguages_loo.rfc4646_subtag %]) >+ <option value="[% languages_loo.rfc4646_subtag | html %]" selected> >+ [% sublanguages_loo.native_description | html %] >+ [% sublanguages_loo.script_description | html %] >+ [% sublanguages_loo.region_description | html %] >+ [% sublanguages_loo.variant_description | html %] >+ ([% sublanguages_loo.rfc4646_subtag | html %]) > </option> > [% ELSE %] >- <option value="[% languages_loo.rfc4646_subtag %]"> >- [% sublanguages_loo.native_description %] >- [% sublanguages_loo.script_description %] >- [% sublanguages_loo.region_description %] >- [% sublanguages_loo.variant_description %] >- ([% sublanguages_loo.rfc4646_subtag %]) >+ <option value="[% languages_loo.rfc4646_subtag | html %]"> >+ [% sublanguages_loo.native_description | html %] >+ [% sublanguages_loo.script_description | html %] >+ [% sublanguages_loo.region_description | html %] >+ [% sublanguages_loo.variant_description | html %] >+ ([% sublanguages_loo.rfc4646_subtag | html %]) > </option> > [% END %] > [% END %] >@@ -161,19 +161,19 @@ > [% ELSE %] > [% IF ( languages_loo.group_enabled ) %] > [% IF ( languages_loo.current ) %] >- <option value="[% languages_loo.rfc4646_subtag %]" selected> >+ <option value="[% languages_loo.rfc4646_subtag | html %]" selected> > [% IF ( languages_loo.native_description ) %] >- [% languages_loo.native_description %] >+ [% languages_loo.native_description | html %] > [% ELSE %] >- [% languages_loo.rfc4646_subtag %] >+ [% languages_loo.rfc4646_subtag | html %] > [% END %] > </option> > [% ELSE %] >- <option value="[% languages_loo.rfc4646_subtag %]"> >+ <option value="[% languages_loo.rfc4646_subtag | html %]"> > [% IF ( languages_loo.native_description ) %] >- [% languages_loo.native_description %] >+ [% languages_loo.native_description | html %] > [% ELSE %] >- [% languages_loo.rfc4646_subtag %] >+ [% languages_loo.rfc4646_subtag | html %] > [% END %] > </option> > [% END %] >@@ -183,7 +183,7 @@ > [% END %] > </select> > <input type="hidden" id="op" name="op" value="share"/> >- <input type="hidden" id="subscriptionid" name="subscriptionid" value="[% subscriptionid %]"/> >+ <input type="hidden" id="subscriptionid" name="subscriptionid" value="[% subscriptionid | $raw %]"/> > </fieldset> > </form> > </div> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt >index 278ad1b..a11694c 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt >@@ -137,7 +137,7 @@ canned reports and writing custom SQL reports.</p> > > [% IF report_converted %] > <div class="dialog message"> >- The report "[% report_converted %]" has been converted. >+ The report "[% report_converted | html %]" has been converted. > </div> > [% END %] > >@@ -179,7 +179,7 @@ canned reports and writing custom SQL reports.</p> > <div style="display:inline-block"> > [% IF manamsg %] > <div id="mana_search" class="dialog message"> >- <p> [% manamsg %] </p> >+ <p> [% manamsg | html %] </p> > </div> > [% END %] > >@@ -377,21 +377,21 @@ canned reports and writing custom SQL reports.</p> > [% FOREACH sublanguages_loo IN languages_loo.sublanguages_loop %] > [% IF ( sublanguages_loo.enabled ) %] > [% IF ( sublanguages_loo.sublanguage_current ) %] >- <option value="[% languages_loo.rfc4646_subtag %]" selected> >- [% sublanguages_loo.native_description %] >- [% sublanguages_loo.script_description %] >- [% sublanguages_loo.region_description %] >+ <option value="[% languages_loo.rfc4646_subtag | html %]" selected> >+ [% sublanguages_loo.native_description | html %] >+ [% sublanguages_loo.script_description | html %] >+ [% sublanguages_loo.region_description | html %] > >- [% sublanguages_loo.variant_description %] >- ([% sublanguages_loo.rfc4646_subtag %]) >+ [% sublanguages_loo.variant_description | html %] >+ ([% sublanguages_loo.rfc4646_subtag | html %]) > </option> > [% ELSE %] >- <option value="[% languages_loo.rfc4646_subtag %]"> >- [% sublanguages_loo.native_description %] >- [% sublanguages_loo.script_description %] >- [% sublanguages_loo.region_description %] >- [% sublanguages_loo.variant_description %] >- ([% sublanguages_loo.rfc4646_subtag %]) >+ <option value="[% languages_loo.rfc4646_subtag | html %]"> >+ [% sublanguages_loo.native_description | html %] >+ [% sublanguages_loo.script_description | html %] >+ [% sublanguages_loo.region_description | html %] >+ [% sublanguages_loo.variant_description | html %] >+ ([% sublanguages_loo.rfc4646_subtag | html %]) > </option> > [% END %] > [% END %] >@@ -399,19 +399,19 @@ canned reports and writing custom SQL reports.</p> > [% ELSE %] > [% IF ( languages_loo.group_enabled ) %] > [% IF ( languages_loo.current ) %] >- <option value="[% languages_loo.rfc4646_subtag %]" selected> >+ <option value="[% languages_loo.rfc4646_subtag | html %]" selected> > [% IF ( languages_loo.native_description ) %] >- [% languages_loo.native_description %] >+ [% languages_loo.native_description | html %] > [% ELSE %] >- [% languages_loo.rfc4646_subtag %] >+ [% languages_loo.rfc4646_subtag | html %] > [% END %] > </option> > [% ELSE %] >- <option value="[% languages_loo.rfc4646_subtag %]"> >+ <option value="[% languages_loo.rfc4646_subtag | html %]"> > [% IF ( languages_loo.native_description ) %] >- [% languages_loo.native_description %] >+ [% languages_loo.native_description | html %] > [% ELSE %] >- [% languages_loo.rfc4646_subtag %] >+ [% languages_loo.rfc4646_subtag | html %] > [% END %] > </option> > [% END %] >@@ -422,7 +422,7 @@ canned reports and writing custom SQL reports.</p> > </select> > </fieldset> > [% ELSE %] >- <input type="hidden" name="mana_language" value="[% lang %]"> >+ <input type="hidden" name="mana_language" value="[% lang | html %]"> > [% END %] > <input type="hidden" id="reportid" name="reportid"/> > </form> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-search.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-search.tt >index adc7428..bbca46c 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-search.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-search.tt >@@ -516,7 +516,7 @@ > $(".ui-datepicker-trigger").hide(); > $("label[for=location], select#location_filter").hide(); > [% FOR field IN additional_fields_for_subscription %] >- $("label[for=additional_field_[% field.id %]], input#additional_field_[% field.id %]").hide(); >+ $("label[for=additional_field_[% field.id | $raw %]], input#additional_field_[% field.id | $raw %]").hide(); > [% END %] > [% END %] > }); >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-add.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-add.tt >index a7bb471..77db9bd 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-add.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-add.tt >@@ -529,7 +529,7 @@ width: 300px; /* not enough for IE7 apparently */ > [% FOREACH field IN dont_export_field_loop %] > tags.push("[% field.fieldid | html %]"); > [% END %] >- var mana_enabled = [% Koha.Preference('Mana') %] >+ var mana_enabled = [% Koha.Preference('Mana') | html %] > var MSG_LINK_TO_VENDOR = _("If you wish to claim late or missing issues you must link this subscription to a vendor. Click OK to ignore or Cancel to return and enter a vendor"); > var MSG_LINK_BIBLIO = _("You must choose or create a bibliographic record"); > var MSG_REQUIRED_SUB_LENGTH = _("You must choose a subscription length or an end date."); >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-detail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-detail.tt >index b322e19..b754d08 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-detail.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-detail.tt >@@ -61,7 +61,7 @@ > [% IF mana_code.defined %] > <div id="alert-community" class="dialog message"> > <p> >- [% mana_code %] >+ [% mana_code | html %] > </p> > </div> > [% END %] >-- >2.7.4
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 17047
:
56175
|
56176
|
56177
|
56178
|
56179
|
56180
|
56181
|
59728
|
59729
|
59931
|
61905
|
62045
|
62046
|
62047
|
62048
|
62049
|
62050
|
62051
|
62052
|
62053
|
62054
|
62075
|
62465
|
62475
|
62485
|
62540
|
62542
|
62543
|
62544
|
62545
|
62546
|
62547
|
62548
|
62549
|
62550
|
62551
|
62552
|
62553
|
62589
|
62591
|
62592
|
62593
|
62594
|
62595
|
62596
|
62597
|
62598
|
62599
|
62603
|
62604
|
62605
|
62606
|
62607
|
62768
|
63476
|
63601
|
63618
|
63619
|
63620
|
63621
|
63622
|
63623
|
64484
|
64530
|
64618
|
64619
|
64620
|
64621
|
64622
|
64623
|
64624
|
64625
|
64626
|
64627
|
64628
|
64629
|
64630
|
64631
|
64632
|
64633
|
64634
|
64635
|
64636
|
64637
|
64638
|
64639
|
64640
|
64641
|
64642
|
64643
|
64648
|
64649
|
64650
|
64651
|
64652
|
64653
|
64654
|
64706
|
64962
|
65058
|
65059
|
65060
|
65061
|
65062
|
65063
|
65064
|
65065
|
65773
|
66667
|
66668
|
66987
|
67003
|
67004
|
67005
|
67006
|
67009
|
67010
|
67011
|
67012
|
67013
|
67014
|
67015
|
67016
|
67017
|
67018
|
67019
|
67020
|
67021
|
67022
|
67023
|
69034
|
69035
|
69036
|
69037
|
69038
|
69039
|
69040
|
69041
|
69091
|
70203
|
70204
|
70205
|
70206
|
70208
|
70209
|
70210
|
70211
|
70561
|
70874
|
72660
|
72661
|
72662
|
72663
|
72664
|
72665
|
72666
|
72667
|
72668
|
72669
|
72670
|
73699
|
73737
|
73738
|
73739
|
73740
|
73741
|
73742
|
73743
|
73744
|
73745
|
73746
|
73747
|
73748
|
73975
|
73976
|
73977
|
73978
|
73979
|
73980
|
73981
|
73982
|
73983
|
73984
|
73985
|
73986
|
76673
|
76674
|
76675
|
76676
|
76677
|
76678
|
76679
|
76680
|
76681
|
76682
|
76683
|
76684
|
78215
|
78216
|
78217
|
78218
|
78219
|
78220
|
78221
|
78222
|
78223
|
78224
|
78225
|
78226
|
78227
|
78228
|
78229
|
79868
|
79869
|
79870
|
79871
|
79872
|
79874
|
79877
|
79878
|
79879
|
79880
|
79881
|
79882
|
79883
|
79884
|
79885
|
79886
|
79887
|
79888
|
79922
|
79923
|
79924
|
79925
|
79926
|
79927
|
79928
|
79929
|
79930
|
79931
|
79932
|
79933
|
79934
|
79935
|
79936
|
79937
|
79938
|
79939
|
80183
|
80184
|
80185
|
80186
|
80187
|
80188
|
80189
|
80190
|
80191
|
80192
|
80193
|
80194
|
80195
|
80196
|
80197
|
80198
|
80199
|
80200
|
80471
|
80472
|
80473
|
80907
|
80908
|
80909
|
80910
|
80911
|
80912
|
80913
|
80914
|
80915
|
80916
|
80917
|
80918
|
80919
|
80920
|
80921
|
80922
|
80923
|
80924
|
81935
|
81936
|
81937
|
81938
|
81939
|
81940
|
81941
|
81942
|
81943
|
81944
|
81945
|
81946
|
81947
|
81948
|
81949
|
81950
|
81951
|
81952
|
81968
|
83863
|
83864
|
83865
|
83866
|
83867
|
83868
|
83869
|
83870
|
83871
|
83872
|
83873
|
83874
|
83875
|
83876
|
83877
|
83878
|
83879
|
83880
|
83881
|
83892
|
83893
|
83894
|
83895
|
83896
|
83897
|
83898
|
83899
|
83900
|
83901
|
83902
|
83903
|
83904
|
83905
|
83906
|
83907
|
83908
|
83909
|
83910
|
83911
|
83912
|
84142
|
84145
|
84210
|
84260
|
84261
|
84262
|
84263
|
84264
|
84265
|
84323
|
84324
|
84325
|
84326
|
84327
|
84328
|
84329
|
84332