-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpii-ner-exclude.txt
1277 lines (1276 loc) · 22.5 KB
/
pii-ner-exclude.txt
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
membership.valid_between.upper
membership.other(object).area_id}
area.</p
replaced_goods_nomenclature__sid
BaseGoodsNomenclatureDescriptionHandler
sid
indented_goods_nomenclature_id
geographical_area_1002
A ``Checker``
A ``Checker`` that
BusinessRule
Checker
TrackedModel
User Group
VersionGroup
f"https://legislation.gov.uk/uksi/2021/{n
UI
FIXME
Measure SID
AdditionalCode
MeasurementUnit
rotate(180deg
model&d
sort_by(sort_by
MonetaryUnit
check_name&d
f"{c.transaction_check.transaction.created_at:%d
"Generate a URL to a representation of the model in the webapp
NM
kwargs={'wb_pk
description:</h3
wb_pk"
target.quota.definition.sid
MeasureType
ImportBatch
f"{url}?page=2
f"<pk>/edit/
BatchDependencies
Jira
MeasureActions
do?{%
MeasureAction
Quota
url('my
SID
the Euro ISO
the Euro Definition
QAM
Quota Definitions
sub_quota
Ensure a Quota Definition
KGM
First Come First Served
Erga Omnes
MIT
Department for International Trade
https://uktrade.github.io/tamato/docs/
AssertionError
DLL
var/
PyInstaller
# Installer
pip-delete-this-directory.txt
local_settings.py
Scrapy
Sphinx
PyBuilder
Jupyter Notebook
#
PEP 582
Celery
env/
ENV/
# Rope
dmypy.json
Pyre
npm-debug.log
PyCharm
Y}".format(object.version_group.created_at
id="id
name=
X000
" BaseHandler Metaclass
Handler
ModelSerializer
The Base
DependentModelAHandler(BaseHandler
LinkToModelB
kargs
model.identifying_fields
" Load a given link for a handler
WorkBasket
Envelope
Streaming EnvelopeSerializer
Transaction Write
RenderedTransaction
XSD
RenderedTransactions
RenderedEnvelope
Envelope Too Big: {rendered_envelope.envelope_id
33 GBP/100kg
NC000
000
IntegerField
Value
kwargs["output_field
current_workbasket_id = Value(transaction.workbasket.id
CurrentWorkBasketId
Max
False) & ~Q(latest
ModelChoiceField(queryset
PL/SQL
nearform
govukButton
Queryset
"Infer the partition of Transactions to REVISION if they are not in the first workbasket
"Infer the partition of Transactions to DRAFT
Workbasket
Create Partition
SEED / REVISION
Draft Transactions
Mixins
~ described_object._meta.verbose_name ~
geographical.area.group.sid
record.taric_template
Footnote
li><a
the Code of Conduct
the `Contributor Covenant
XXX
goods.nomenclature.item.id>
f'<a class="govuk
ADR 13
Assert
NIG34
DELETE
NIG30 / NIG31
ME88
Transaction and Workbasket
SEED_FILE
TransactionPartition
TRANSACTION_PARTITION_SCHEMES
TransactionPartitionScheme
REVISION
Withdraw
CDS S3
Mark
-pk
footnote_detail_tabs
measure_detail_tabs
additionalcode
# Footnote
Measure
# Regulation
checkbox
the Django Session
POST
updated_at
"Manage POST
Healthcheck
URLconf
ECONOMIC
ATOMIC
Economic/Coal
GSP
MFN
EU
the European Court of Justice
U' Unilateral
Import and Export
the Official Journal
r"IYY\d{5
0xA0
Revision
TARIC3
QA3
B.
https://uktrade.atlassian.net/browse/TP-851
TN001
The Tariff Management Tool
Guernsey
a TARIC 3 Full Extraction of the UK
TARIC3 Differential Extractions
Jinja2
HMRC
HTTP
API
DB
Returns a
CommodityCode
chapter 99
"Returns True
GoodsNomenclature
certificate_X000
Commodity
HS22 2
Bootstrapping Implementation ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
CommodityCollection
CommodityChange
YY
Transactions
New Envelope
100 kg
measure_type_series
export_refund_sid
name="footnote.description.period.sid
footnote.description.period.sid
ADR
ORM
Column | Type | Description
FK
NULL
Column | Type | Description
Boolean
Object
Transaction
WorkBaskets
TrackedModels
WorkBasket TrackedModels
GROUP -%
description_tab_html
version_control_tab_html
measurement_unit_qualifier
tracked_model_count
https://www.sphinx-doc.org/en/master/usage/configuration.html
Tariff Management Tool
SVG
GitHub
Alpha
Agile
builtin
ALTER COLUMN TYPE USING
Range
NIG
Retruns
ref - https://docs.cloudfoundry.org/devguide/deploy-apps/deploy-app.html
mkdir -p ~/logs
FINISHED
certificates.views
NIG1
NIG2
all_closed_and_span"
NIG3
2000000010"
Export
r"^[A-Z0-9]$
r"^[A-Z0-9][A-Z0-9][A-Z0-9]$
min_length
goods_nomenclature__item_id
certificate.description.period.sid
r"^[A-Z0-9]{3}$
r"^[A-Z]{3}$
Harmonised System Chapter
Harmonised System Heading
Harmonised System Subheading
Import/Export
GA1
GA3
"Geographic Areas
Edit
Generate incrementing
Generate iterating DIT
wb+
Task to Task
GUI
Upload
MIT License
Software
IMPLIED
DAMAGES
LIABILITY
ApplicabilityCode
NumericSID
origin__sid
excluded_geographical_area__sid
main_quota__sid
quota_definition__sid
max_count
D017
D018
XEM
MIL
1.230 EUR / kg
simple_ad_valorem
Provides
TTag
40010
the XML Schema
TaricSchemaTags
condition__sid
Measure ID"},
object.measure_type.sid
Upload Envelope
s3
Create Envelope
EnvelopeTransaction
x)\n
regulation_extends_+
Suspension
^[A-Z0-9]{2}$|^[A-Z0-9]{4}$
" Ensure Quota Events of all types output appropriate XML
Quota Events
SQLite
common/common.rst
footnote.get_description().description|default
footnote.footnote_type.footnote_type_id
^12.1.0
^3.0.0
^1.1.0
@types
0.0.50
https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz
https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz
bin
https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz
3.5.2
3.1.2
node_modules/big.js
https://registry.npmjs.org/braces/-/braces-3.0.2.tgz
cli.js
1.0.30001301
~4.0.1
https://registry.npmjs.org/commander/-/commander-2.20.3.tgz
https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz
^3.1.0
fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==
https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.8.3.tgz
https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz
^4.0.0
darwin
^8.16.0 || ^10.6.0 || >=11.0.0
3.14.0
https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz
b5GsnG330uUNgRpu1PA==
4.0.3
https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz
7.0.0
node_modules/klona
nanoid
bin/nanoid.cjs"
sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==
^1.0.7
1.49.0
klona
^1.3.0
a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==
node_modules/shebang-command
node_modules/shebang-regex
https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz
8.1.1
^2.20.0
hDY
4.9.2
kMTcxWHcZFPrw/eQuY4Df1TxvIWfWM2x7mRqBQCqKEd96oCUa9jkapLBaFfRce33eGDb4Pr7YQ==
@discoveryjs
^5.7.3
geU/gLr1wDjOhQ+Q==
https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz
aria-label="Goto Page
AutocompleteWidget
Convert
MeasureCondition
KeyError
" Returns True
" Generate a URL to a representation of the model in the webapp
param
"Creates a new TrackedModel
CDS
Trade Tariff Management
TTM
Metadata
TaMato
Find and Edit Measures
Paginator
LIMITED_PAGINATOR_MAX_COUNT
Full Temporary Stop
Partial Temporary Stop
Complete Abrogation
FTS
TransactionQueryset
class="button
workbaskets</button>
goodsnomenclature_origins_+
Signed Out" %
remove_button -%
name="remove
quota.suspension.period.sid
replaced.regulation.role
record.measure_type_id
Bird
Eye View
HM Government's
Customs Declaration Services
border systems
Caesar and GEMS
DIT
Data Workspace
the European Union
TARif Intégré Communautaire
Integrated Tariff
the European Communities
ValidityStartMixin`
Domain Modules
a Django App
mod:`quotas
English
European
Framework
errors.data
CE2
^[A-Z0-9]{3}$
^[A-Z0-9]{1}$
url_start
Tamato
cutoff:%Y-%m-%d
Construct a POST
MultiValueWidget
r"^[A-Z0-9]{2}$|^[A-Z0-9]{4}$
Geographical Area Group
described_geographicalarea__sid>/description/<sid
certificate_type__sid
EnvelopeSerializer
FootnoteFactory
FootnoteType
Serializer
type__sid
Meursing Heading"
r"[A-Z0-9]{2}[A
RUN npm install && npm
ENV
tamato && \
Export Refunds
reference_price
JS
f"instance_footnotes_{sid
MeasureForm
GDS
MeasureUpdate
the submit button's
Alice
Regulation Number
ElementParser
prefix="ns
" Handle the start of an XML tag
The Python
FM99999999999999999999
Writable
justification.regulation.role
export.refund.nomenclature.sid
self.dependent_batch
commodities.business_rules
APPROVED Approved
CDS systems
LR
BDD
TAP
Gherkin
USE_IMPORTER_CACHE
WTO
SAD
Preference
323
KON
ValidityMixin
Box 36
SignedIntSID
PreferenceCode
BoolField
ME120
MeasureFactory
measure.goods_nomenclature.item_id
f"{n}.00%
measure.generating_regulation.regulation_id
Most Favoured Nation
Tariff
@notebook
Jupyter
MeasureCreationPattern
Publication Date
" The "Regulation Approved Flag
Regulation Approved Flag
TP-
https://github.com/myint/autoflake.git
https://github.com/myint/docformatter.git
https://github.com/ikamensh/flynt/
0.76
ner_output_file.txt
CI
# Set
npm
Github Pages
invalid_type.txt
https://uktrade.github.io/tariff-data-manual/documentation/trade-policies/most-favoured-nation-duties.html
the `Tariff Management Tool
r"[A-Z0-9]{1
rf"^{CERTIFICATE_TYPE_SID_REGEX}$
r"[A-Z0-9]{3
SENTRY_DSN=
AWS_ACCESS_KEY_ID=
Minio
SSO OAuth2
non-Meursing
Export Refund for Processed Agricultural Goods
Export Refund for Processed '
Agricultural Goods
Validations
Builds on govuk_frontend_jinja.templates
govuk_frontend_jinja
r"(for attribute
"Override the govuk_frontend_jinja Environment
r"([^\w]+
" Set up the Jinja
foo|bar|baz
foo;bar;baz"
about 1 language
additional_code__sid
href="https://www.gov.uk">a
Runner
create/<step>/
Import Batches
Footnote Types
^^^^^^^
the TARIC3 Interface Data Specification
a Statutory Instrument
WorkBasket``\
Workbasket``
MTI
Model Schema|
ChildModel
SQL
ON commodity.trackedmodel_ptr_id = trackedmodel.id
ON footnotetype.trackedmodel_ptr_id
ON trackedmodel.polymorphic_ctype_id
max_length=3
Django-Polymorphic
kwargs={"sid
^[A-Z][A-Z
^[A-Z]{3}$
MeasureExcludedGeographicalArea
Tests for browse regulations behaviours
f"{regulation_C2000000.regulation_id} - {
record.subrecord_code
" Client for HMRC Secure Data Exchange Notifications API
Gov-Client-Local-IPs
00%3A00%3A00%3A00%3A00%3A00"
Gov-Client-Multi-Factor
Docker
Gov-Vendor-License
Gov-Vendor-Version
The Generalised System of Preferences
Search and Filter
100.0 + kg
m2
m3
monetary.unit.code m4
D-008
TNE c5
False m2
TNE c5:
D-018
m3>\S+)(?:\s|$))?(?:(?P
m1"
m4
WebPDB
IPD
Pyston
common_event_fields(record
"Edit Footnote
EU Taric
Exercise HMRCStorage
Bucket
Group
@media
Secure Data Exchange Service
"Returns the HS
HS
CA001
Footnote Type
monetary.unit.code>
measure.condition.sid
format(record.duty_expression.sid
tracked_qs
TARIC3 xml
conditions_tab_html
measure.type.combination
210
FM00
name="export.refund.nomenclature.sid
name="duty.amount
type="DutyAmount
Where Webpack
// c.f
FilterSet for Additional Codes
The ``checks` subsystem
metadata
The Exporter Management Commands
importer.tasks.find_and_run_next_batch_chunks
MSA
NULLIF
a Common Table Expression
^[A-Z0-9][A-Z0-9][A-Z0-9]$
^[A-Z0-9]$
Bob
Additional Codes
a RESTful API
DRF
TastyPie
Use Django REST Framework
Enable Django
ENABLE_DJANGO_DEBUG_TOOLBAR
whitenoise.runserver_nostatic
VersionsPanel
debug_toolbar.panels.timer
TimerPanel
TemplatesPanel
~ described_object._meta.verbose_name ~
a Tracked Model
Y}".format(version.valid_between.lower
li class="gem-c
contents.href.startswith("http
href.startswith("http") %
add_url_params("http://example.com?q
url.split
CertificateType
Install Python
shell
Generate
measure_detail_tabs(object
Carol
maxdepth
node_modules/
ISO
kilogram
f"If
modified_measure__sid
record.enacting_regulation.official_journal_page
approved.flag>
" Metaclass for all BusinessRules
version_at
" Decorate BusinessRules
Union[date
UpdateTypes
" Return True
Subclass
version='1.0
http://www.w3.org/1999/xhtml
href="http://www.w3.org/XML/1998
href="http://www.w3.org/TR/REC-xml
Working
Notes</h4
href="http://www.w3.org/TR/xmlbase/">http://www.w3.org/TR/xmlbase/</a>
href="http://www.w3.org/TR/xml-id/">http://www.w3.org/TR/xml-id/</a
attributeGroup name="specialAttrs
ref="xml
Jon Bosak
Working Group
XML
h2><a
<import namespace="http://www.w3.org
http://www.w3.org/2009/01/xml.xsd</a
Commission
the Commission
main.quota.definition.sid
name="certificate.description.period.sid
A Geographical Area
A Geographical Membership
member__sid
Goods Nomenclature
MeasureCreationWizard
Michael
Michael Nygard's
Nat Pryce's
Michael Nygard
approver_id
Caches
Workbasket</h2
Electronic Data Interchange For Administration
ERN
International Standards Organisation
Official Journal
Partial Temporary Stop Regulation
UTF
excluded.geographical.area.sid
excluded.geographical.area.sid>
pbkdf2_sha256$180000$wA6tcwwDYV3W$ev5KnHn+Hb+nJHFCnZGKmWk/wJJITjl3QREfnxU0x9M=
is_superuser
Accept
Streaming Envelope
Framework Serializer
f"Max
"Return True If total_size bytes would fit inside a single Envelope
"Render TrackedModels
DocumentInvalid
Raise AssertionError
Excel
latest_tracked_model
duties_html
geographical_area_html
fetches OAuth2
https://uktrade.atlassian.net/browse/TP2000-144
measures.forms.MeasureForm.save
40 GBP/100kg
MeasureWizard
2 GBP/100kg
MeasureComponents
SelectorFormat
@extend
name="officialjournal.page
type="RegulationId
name="approved.flag
modification.regulation.role
type="RegulationId"/
fts_action
stopped.regulation.role
name="replacing.regulation.id
// Based
ConnectionError
SentinelError
0101010101
ABCDEFGHIJ
" Loops in the parent
UNION ALL SELECT
ga.trackedmodel_ptr_id
ON hierarchy.descendant_id
params.display_class
params.min_length
QuotaAssociation
"Defines a blocking period for a (
sub-)quota
@mixin
chevron
min-width
calc(100
% - #
100px
xml="http://www.w3.org/XML/1998/
namespace="http://www.w3.org/XML/1998/
below</xs
value="\d\d"/
ref="abstract.record"/
name="Date
value="\d{4}-\d{2}-\d{2}"/
name="LanguageId
value="\d{1,3}"/
xmlns="taric-format">AAA</format
name="OfficialJournalNumber
name="QuotaBlockedStateCode
03/08/2013 CUST
name="TableLineSequenceNumber
name="additional.code.description.period.sid
type="DutyAmountApplicabilityCode"/>
name="abrogation.date
name="export.refund.nomenclature.indents.sid
name="meursing.table.plan.id
type="RegulationRoleTypeId"/>
name="goods.nomenclature.indent.sid
type="ConditionCode"/
type="MeasurementUnitCode"/>
name="meursing.additional.code.sid
name="monetary.exchange.period.sid
type="ExchangeRate"/>
name="prorogation.regulation.id
name="publication.sigle
name="quota.order.number.sid
name="quota.order.number.origin.sid
name="main.quota.definition.sid
name="quota.blocking.period.sid
name="quota.suspension.period.sid
type="QuotaBlockedStateCode"/>
name="target.quota.definition.sid
Minimal
BUILDDIR
Makefile
Tariff Managers
https://www.manage-trade-tariffs.trade.gov.uk/
sudo su
requirements-dev.txt
Compile SCSS and Javascripts
superuser
VAT
UUID
HMRC S3
Jenkins
CLI
record.priority_code
html
FILE
N990
Measure {} end date
Provides an Excel
additional.code.description.period.sid
this.button.classList.remove('js-hidden'
this.button.addEventListener('click
button.classList.add('govuk-button'
nodeListForEach(modules
PYTHONPATH
pluralize(change_count
LazyValue
Proxy
Middleware
custom_sid
f"{prefix}transaction__workbasket__id
/requirements.txt
TransactionMiddleware
Subrecord
I.e
Foreign Keys
Version Group
Iterate all TrackedModel
XPath
UserTransactionPartitionScheme get_partition
OPQ.</li>
SPG.</li
FTA
PRF
View.queryset
PYTHON
\
wait_for_db && $
{PYTHON
@sphinx
@for FILE
BASH
docs && sphinx
CT1
The Meursing
ME115
Description Periods
celery[redis]>=5.2.2
django-extensions==3.1.1
django-filter==2.4.0
django-formtools==2.3
django-storages==1.11.1
freezegun==1.1.0
gunicorn==20.0.4
moto==2.1.0
openpyxl==3.0.7
pytest-xdist==2.3.0
sphinx-gherkindoc==3.6.2
MeasureConditions
Django AppConfig
name="header
minLength
minOccurs="0
name="business.ref
NMTOKEN
object.valid_between
WIP
Detail
Screenshots
Slack/Teams
ELASTIC_TOKEN
SERVICE_NAME
CertificatesConfig
GeoAreasConfig
measures.apps
MeasuresConfig
QuotasConfig
ExporterConfig
crispy_forms_gds
WhiteNoiseMiddleware
DIRS
OPTIONS
DjangoTemplates
ALLOW_PAAS_URIS
the X-XSS-Protection
the X-Content-Type-Options
-- Running Django
WSGI
-- Debug
-- Cache
DJANGO_CACHE"
HMRC_STORAGE_BUCKET_NAME
SQLITE_S3_ACCESS_KEY_ID
DMZ
name)s
message)s
StreamHandler
GIT_COMMIT
REST Framework
DEFAULT_PERMISSION_CLASSES
https://developer.service.hmrc.gov.uk/api-documentation/docs/api/service/secure-data-exchange-notifications/1.0
HMRC_API_BASE_URL
-vv
ME1
Duplicate of ME116"
-- Export Refund for
"Export Refund for Processed Agricultural Goods
an Export Refund
the Export Refund for Processed Agricultural Goods
DO
TNE
Condition
ConditionCodes
MeasureSnapshot
DescriptionMixin
GoodsNomenclatureDescription
SET prefix='+'
SET prefix='+ AC'
SET prefix='+ AC
SET prefix='MIN'
SET prefix='+ SD'
SET prefix='+ SD
SET prefix='+ FD'
SET prefix='+ FD
GRT
KAC
KMT
KCL
MGM
MCG
MWH
SET abbreviation='kg'
SET abbreviation='1,000 kg'
SET abbreviation='kg N'
KNI
SET abbreviation='kg
KMA
LPA
MTK
SET abbreviation='hl'
HLT
SET abbreviation='kg U'
KUR
NCL
SET abbreviation='pa'
KPO
SET abbreviation='kg KOH'
KSD
HMT
SET abbreviation='g'
CTM
SET abbreviation='ct/l'
KPP
SET abbreviation='kg H2O2'
SET abbreviation='kg NaOH'
KSH
LTR
SET abbreviation='raw
1.0 EUR / kg
MAR
JUL
172.200 GBP DTN Z
geographicalarea_memberships_+
Convert EUR
The Northern Ireland
NIP
C3
ChangeTimeSpan
C3 -- C3
NIG18
a Goods Nomenclature or Indent"]
Successor
True
param overall_range DateRange
param contained_range DateRange
relations.keys()!r
param field str
ACCESS SHARE
" Decorator for PostgreSQL's table-level lock functionality
LOCK Documentation
id_field Field
TO_CHAR
r"(?!^)([A-Z]+
Convert TrackedModel
kwargs={"pk
common.change_trackedmodel
RoleType
Title"
QuotaDefinition
QuotaEvent
d.
order_number__sid
" A Quota Definition
The Quota Definition
"A Quota Association
"A Quota Suspension
"A Quota Blocking Period
UpdateType
EDIFACT
United Nations Trade Data Elements Directory
UNB
UNH
UNZ
UNTDED
UTF-8
byte sequence
quota.blocking.period.sid
blocking.end.date
Generate the
50 megabytes
no_overlap
Policy
use_create_form
Contents
Provide
MustExist
CREATE
Hacky
antidumping.regulation.role