karrio-server-pricing 2025.5rc1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (77) hide show
  1. karrio/server/pricing/__init__.py +1 -0
  2. karrio/server/pricing/admin.py +55 -0
  3. karrio/server/pricing/apps.py +12 -0
  4. karrio/server/pricing/migrations/0001_initial.py +974 -0
  5. karrio/server/pricing/migrations/0002_auto_20201127_0721.py +855 -0
  6. karrio/server/pricing/migrations/0003_auto_20201230_0820.py +939 -0
  7. karrio/server/pricing/migrations/0004_auto_20201231_1402.py +940 -0
  8. karrio/server/pricing/migrations/0005_auto_20210204_1725.py +923 -0
  9. karrio/server/pricing/migrations/0006_auto_20210217_1109.py +1224 -0
  10. karrio/server/pricing/migrations/0007_auto_20210218_1202.py +955 -0
  11. karrio/server/pricing/migrations/0008_auto_20210418_0504.py +1010 -0
  12. karrio/server/pricing/migrations/0009_auto_20210603_2149.py +1043 -0
  13. karrio/server/pricing/migrations/0010_auto_20210612_1608.py +1070 -0
  14. karrio/server/pricing/migrations/0011_auto_20210615_1601.py +1109 -0
  15. karrio/server/pricing/migrations/0012_surcharge_carrier_accounts.py +23 -0
  16. karrio/server/pricing/migrations/0013_alter_surcharge_services.py +1086 -0
  17. karrio/server/pricing/migrations/0014_auto_20211013_1520.py +12 -0
  18. karrio/server/pricing/migrations/0015_auto_20211204_1350.py +1124 -0
  19. karrio/server/pricing/migrations/0016_auto_20211220_1500.py +1126 -0
  20. karrio/server/pricing/migrations/0017_alter_surcharge_services.py +1093 -0
  21. karrio/server/pricing/migrations/0018_alter_surcharge_services.py +1100 -0
  22. karrio/server/pricing/migrations/0019_alter_surcharge_services.py +1093 -0
  23. karrio/server/pricing/migrations/0020_auto_20220412_1215.py +3175 -0
  24. karrio/server/pricing/migrations/0021_auto_20220413_0959.py +3179 -0
  25. karrio/server/pricing/migrations/0022_alter_surcharge_services.py +3144 -0
  26. karrio/server/pricing/migrations/0023_auto_20220504_1335.py +3175 -0
  27. karrio/server/pricing/migrations/0024_auto_20220808_0803.py +3180 -0
  28. karrio/server/pricing/migrations/0025_alter_surcharge_carriers.py +51 -0
  29. karrio/server/pricing/migrations/0026_auto_20220828_0158.py +3199 -0
  30. karrio/server/pricing/migrations/0027_alter_surcharge_services.py +3170 -0
  31. karrio/server/pricing/migrations/0028_surcharge_markup_carriers_surcharge_markup_services.py +3016 -0
  32. karrio/server/pricing/migrations/0029_alter_surcharge_services.py +2939 -0
  33. karrio/server/pricing/migrations/0030_alter_surcharge_services.py +2940 -0
  34. karrio/server/pricing/migrations/0031_alter_surcharge_carriers.py +52 -0
  35. karrio/server/pricing/migrations/0032_alter_surcharge_services.py +2963 -0
  36. karrio/server/pricing/migrations/0033_alter_surcharge_services.py +2964 -0
  37. karrio/server/pricing/migrations/0034_alter_surcharge_carriers_alter_surcharge_services.py +3009 -0
  38. karrio/server/pricing/migrations/0035_alter_surcharge_carriers.py +56 -0
  39. karrio/server/pricing/migrations/0036_alter_surcharge_carriers_alter_surcharge_services.py +3022 -0
  40. karrio/server/pricing/migrations/0037_alter_surcharge_carriers_alter_surcharge_services.py +3078 -0
  41. karrio/server/pricing/migrations/0038_alter_surcharge_carriers_alter_surcharge_services.py +3093 -0
  42. karrio/server/pricing/migrations/0039_alter_surcharge_carriers_alter_surcharge_services.py +3095 -0
  43. karrio/server/pricing/migrations/0040_alter_surcharge_services.py +3058 -0
  44. karrio/server/pricing/migrations/0041_alter_surcharge_services.py +3061 -0
  45. karrio/server/pricing/migrations/0042_alter_surcharge_carriers_alter_surcharge_services.py +3128 -0
  46. karrio/server/pricing/migrations/0043_alter_surcharge_services.py +3090 -0
  47. karrio/server/pricing/migrations/0044_alter_surcharge_carriers.py +62 -0
  48. karrio/server/pricing/migrations/0045_alter_surcharge_carriers.py +63 -0
  49. karrio/server/pricing/migrations/0046_alter_surcharge_services.py +3100 -0
  50. karrio/server/pricing/migrations/0047_alter_surcharge_services.py +3171 -0
  51. karrio/server/pricing/migrations/0048_alter_surcharge_services.py +3195 -0
  52. karrio/server/pricing/migrations/0049_alter_surcharge_carriers_alter_surcharge_services.py +3246 -0
  53. karrio/server/pricing/migrations/0050_alter_surcharge_carriers.py +64 -0
  54. karrio/server/pricing/migrations/0051_alter_surcharge_carriers_alter_surcharge_services.py +2956 -0
  55. karrio/server/pricing/migrations/0052_alter_surcharge_carriers_alter_surcharge_services.py +3547 -0
  56. karrio/server/pricing/migrations/0053_alter_surcharge_carriers_alter_surcharge_services.py +3561 -0
  57. karrio/server/pricing/migrations/0054_alter_surcharge_services.py +3409 -0
  58. karrio/server/pricing/migrations/0055_alter_surcharge_services.py +3455 -0
  59. karrio/server/pricing/migrations/0056_alter_surcharge_carriers_alter_surcharge_services.py +3609 -0
  60. karrio/server/pricing/migrations/0057_alter_surcharge_carriers_alter_surcharge_services.py +4384 -0
  61. karrio/server/pricing/migrations/0058_alter_surcharge_services.py +4321 -0
  62. karrio/server/pricing/migrations/0059_alter_surcharge_carriers_alter_surcharge_services.py +4892 -0
  63. karrio/server/pricing/migrations/0060_alter_surcharge_services.py +4894 -0
  64. karrio/server/pricing/migrations/0061_alter_surcharge_services.py +4888 -0
  65. karrio/server/pricing/migrations/0062_alter_surcharge_carriers_alter_surcharge_services.py +4704 -0
  66. karrio/server/pricing/migrations/0063_alter_surcharge_carriers_alter_surcharge_services.py +34 -0
  67. karrio/server/pricing/migrations/0064_alter_surcharge_carriers_alter_surcharge_services.py +4669 -0
  68. karrio/server/pricing/migrations/__init__.py +0 -0
  69. karrio/server/pricing/models.py +143 -0
  70. karrio/server/pricing/serializers.py +18 -0
  71. karrio/server/pricing/signals.py +35 -0
  72. karrio/server/pricing/tests.py +301 -0
  73. karrio/server/pricing/views.py +3 -0
  74. karrio_server_pricing-2025.5rc1.dist-info/METADATA +27 -0
  75. karrio_server_pricing-2025.5rc1.dist-info/RECORD +77 -0
  76. karrio_server_pricing-2025.5rc1.dist-info/WHEEL +5 -0
  77. karrio_server_pricing-2025.5rc1.dist-info/top_level.txt +2 -0
@@ -0,0 +1,3561 @@
1
+ # Generated by Django 4.2.14 on 2024-07-21 05:26
2
+
3
+ from django.db import migrations
4
+ import karrio.server.core.fields
5
+
6
+
7
+ class Migration(migrations.Migration):
8
+
9
+ dependencies = [
10
+ ("pricing", "0052_alter_surcharge_carriers_alter_surcharge_services"),
11
+ ]
12
+
13
+ operations = [
14
+ migrations.AlterField(
15
+ model_name="surcharge",
16
+ name="carriers",
17
+ field=karrio.server.core.fields.MultiChoiceField(
18
+ blank=True,
19
+ choices=[
20
+ ("allied_express", "allied_express"),
21
+ ("allied_express_local", "allied_express_local"),
22
+ ("amazon_shipping", "amazon_shipping"),
23
+ ("aramex", "aramex"),
24
+ ("asendia_us", "asendia_us"),
25
+ ("australiapost", "australiapost"),
26
+ ("boxknight", "boxknight"),
27
+ ("bpost", "bpost"),
28
+ ("canadapost", "canadapost"),
29
+ ("canpar", "canpar"),
30
+ ("chronopost", "chronopost"),
31
+ ("colissimo", "colissimo"),
32
+ ("dhl_express", "dhl_express"),
33
+ ("dhl_parcel_de", "dhl_parcel_de"),
34
+ ("dhl_poland", "dhl_poland"),
35
+ ("dhl_universal", "dhl_universal"),
36
+ ("dicom", "dicom"),
37
+ ("dpd", "dpd"),
38
+ ("dpdhl", "dpdhl"),
39
+ ("easypost", "easypost"),
40
+ ("eshipper", "eshipper"),
41
+ ("fedex", "fedex"),
42
+ ("fedex_ws", "fedex_ws"),
43
+ ("freightcom", "freightcom"),
44
+ ("generic", "generic"),
45
+ ("geodis", "geodis"),
46
+ ("hay_post", "hay_post"),
47
+ ("laposte", "laposte"),
48
+ ("locate2u", "locate2u"),
49
+ ("nationex", "nationex"),
50
+ ("purolator", "purolator"),
51
+ ("roadie", "roadie"),
52
+ ("royalmail", "royalmail"),
53
+ ("sendle", "sendle"),
54
+ ("tge", "tge"),
55
+ ("tnt", "tnt"),
56
+ ("ups", "ups"),
57
+ ("usps", "usps"),
58
+ ("usps_international", "usps_international"),
59
+ ("zoom2u", "zoom2u"),
60
+ ],
61
+ help_text="\n The list of carriers you want to apply the surcharge to.\n <br/>\n Note that by default, the surcharge is applied to all carriers\n ",
62
+ null=True,
63
+ ),
64
+ ),
65
+ migrations.AlterField(
66
+ model_name="surcharge",
67
+ name="services",
68
+ field=karrio.server.core.fields.MultiChoiceField(
69
+ blank=True,
70
+ choices=[
71
+ ("allied_road_service", "allied_road_service"),
72
+ ("allied_parcel_service", "allied_parcel_service"),
73
+ (
74
+ "allied_standard_pallet_service",
75
+ "allied_standard_pallet_service",
76
+ ),
77
+ (
78
+ "allied_oversized_pallet_service",
79
+ "allied_oversized_pallet_service",
80
+ ),
81
+ ("allied_road_service", "allied_road_service"),
82
+ ("allied_parcel_service", "allied_parcel_service"),
83
+ (
84
+ "allied_standard_pallet_service",
85
+ "allied_standard_pallet_service",
86
+ ),
87
+ (
88
+ "allied_oversized_pallet_service",
89
+ "allied_oversized_pallet_service",
90
+ ),
91
+ ("allied_local_normal_service", "allied_local_normal_service"),
92
+ ("allied_local_vip_service", "allied_local_vip_service"),
93
+ (
94
+ "allied_local_executive_service",
95
+ "allied_local_executive_service",
96
+ ),
97
+ ("allied_local_gold_service", "allied_local_gold_service"),
98
+ ("amazon_shipping_ground", "amazon_shipping_ground"),
99
+ ("amazon_shipping_standard", "amazon_shipping_standard"),
100
+ ("amazon_shipping_premium", "amazon_shipping_premium"),
101
+ ("asendia_us_e_com_tracked_ddp", "asendia_us_e_com_tracked_ddp"),
102
+ ("asendia_us_fully_tracked", "asendia_us_fully_tracked"),
103
+ ("asendia_us_country_tracked", "asendia_us_country_tracked"),
104
+ ("australiapost_parcel_post", "australiapost_parcel_post"),
105
+ ("australiapost_express_post", "australiapost_express_post"),
106
+ (
107
+ "australiapost_parcel_post_signature",
108
+ "australiapost_parcel_post_signature",
109
+ ),
110
+ (
111
+ "australiapost_express_post_signature",
112
+ "australiapost_express_post_signature",
113
+ ),
114
+ (
115
+ "australiapost_intl_standard_pack_track",
116
+ "australiapost_intl_standard_pack_track",
117
+ ),
118
+ (
119
+ "australiapost_intl_standard_with_signature",
120
+ "australiapost_intl_standard_with_signature",
121
+ ),
122
+ (
123
+ "australiapost_intl_express_merch",
124
+ "australiapost_intl_express_merch",
125
+ ),
126
+ (
127
+ "australiapost_intl_express_docs",
128
+ "australiapost_intl_express_docs",
129
+ ),
130
+ (
131
+ "australiapost_eparcel_post_returns",
132
+ "australiapost_eparcel_post_returns",
133
+ ),
134
+ (
135
+ "australiapost_express_eparcel_post_returns",
136
+ "australiapost_express_eparcel_post_returns",
137
+ ),
138
+ ("boxknight_sameday", "boxknight_sameday"),
139
+ ("boxknight_nextday", "boxknight_nextday"),
140
+ ("boxknight_scheduled", "boxknight_scheduled"),
141
+ ("bpack_24h_pro", "bpack_24h_pro"),
142
+ ("bpack_24h_business", "bpack_24h_business"),
143
+ ("bpack_bus", "bpack_bus"),
144
+ ("bpack_pallet", "bpack_pallet"),
145
+ ("bpack_easy_retour", "bpack_easy_retour"),
146
+ ("bpack_xl", "bpack_xl"),
147
+ ("bpack_bpost", "bpack_bpost"),
148
+ ("bpack_24_7", "bpack_24_7"),
149
+ ("bpack_world_business", "bpack_world_business"),
150
+ ("bpack_world_express_pro", "bpack_world_express_pro"),
151
+ ("bpack_europe_business", "bpack_europe_business"),
152
+ ("bpack_world_easy_return", "bpack_world_easy_return"),
153
+ ("bpack_bpost_international", "bpack_bpost_international"),
154
+ ("bpack_24_7_international", "bpack_24_7_international"),
155
+ ("canadapost_regular_parcel", "canadapost_regular_parcel"),
156
+ ("canadapost_expedited_parcel", "canadapost_expedited_parcel"),
157
+ ("canadapost_xpresspost", "canadapost_xpresspost"),
158
+ (
159
+ "canadapost_xpresspost_certified",
160
+ "canadapost_xpresspost_certified",
161
+ ),
162
+ ("canadapost_priority", "canadapost_priority"),
163
+ ("canadapost_library_books", "canadapost_library_books"),
164
+ (
165
+ "canadapost_expedited_parcel_usa",
166
+ "canadapost_expedited_parcel_usa",
167
+ ),
168
+ (
169
+ "canadapost_priority_worldwide_envelope_usa",
170
+ "canadapost_priority_worldwide_envelope_usa",
171
+ ),
172
+ (
173
+ "canadapost_priority_worldwide_pak_usa",
174
+ "canadapost_priority_worldwide_pak_usa",
175
+ ),
176
+ (
177
+ "canadapost_priority_worldwide_parcel_usa",
178
+ "canadapost_priority_worldwide_parcel_usa",
179
+ ),
180
+ (
181
+ "canadapost_small_packet_usa_air",
182
+ "canadapost_small_packet_usa_air",
183
+ ),
184
+ ("canadapost_tracked_packet_usa", "canadapost_tracked_packet_usa"),
185
+ (
186
+ "canadapost_tracked_packet_usa_lvm",
187
+ "canadapost_tracked_packet_usa_lvm",
188
+ ),
189
+ ("canadapost_xpresspost_usa", "canadapost_xpresspost_usa"),
190
+ (
191
+ "canadapost_xpresspost_international",
192
+ "canadapost_xpresspost_international",
193
+ ),
194
+ (
195
+ "canadapost_international_parcel_air",
196
+ "canadapost_international_parcel_air",
197
+ ),
198
+ (
199
+ "canadapost_international_parcel_surface",
200
+ "canadapost_international_parcel_surface",
201
+ ),
202
+ (
203
+ "canadapost_priority_worldwide_envelope_intl",
204
+ "canadapost_priority_worldwide_envelope_intl",
205
+ ),
206
+ (
207
+ "canadapost_priority_worldwide_pak_intl",
208
+ "canadapost_priority_worldwide_pak_intl",
209
+ ),
210
+ (
211
+ "canadapost_priority_worldwide_parcel_intl",
212
+ "canadapost_priority_worldwide_parcel_intl",
213
+ ),
214
+ (
215
+ "canadapost_small_packet_international_air",
216
+ "canadapost_small_packet_international_air",
217
+ ),
218
+ (
219
+ "canadapost_small_packet_international_surface",
220
+ "canadapost_small_packet_international_surface",
221
+ ),
222
+ (
223
+ "canadapost_tracked_packet_international",
224
+ "canadapost_tracked_packet_international",
225
+ ),
226
+ ("chronopost_retrait_bureau", "chronopost_retrait_bureau"),
227
+ ("chronopost_13", "chronopost_13"),
228
+ ("chronopost_10", "chronopost_10"),
229
+ ("chronopost_18", "chronopost_18"),
230
+ ("chronopost_relais", "chronopost_relais"),
231
+ (
232
+ "chronopost_express_international",
233
+ "chronopost_express_international",
234
+ ),
235
+ (
236
+ "chronopost_premium_international",
237
+ "chronopost_premium_international",
238
+ ),
239
+ (
240
+ "chronopost_classic_international",
241
+ "chronopost_classic_international",
242
+ ),
243
+ (
244
+ "colissimo_home_without_signature",
245
+ "colissimo_home_without_signature",
246
+ ),
247
+ ("colissimo_home_with_signature", "colissimo_home_with_signature"),
248
+ ("colissimo_eco_france", "colissimo_eco_france"),
249
+ ("colissimo_return_france", "colissimo_return_france"),
250
+ (
251
+ "colissimo_flash_without_signature",
252
+ "colissimo_flash_without_signature",
253
+ ),
254
+ (
255
+ "colissimo_flash_with_signature",
256
+ "colissimo_flash_with_signature",
257
+ ),
258
+ (
259
+ "colissimo_oversea_home_without_signature",
260
+ "colissimo_oversea_home_without_signature",
261
+ ),
262
+ (
263
+ "colissimo_oversea_home_with_signature",
264
+ "colissimo_oversea_home_with_signature",
265
+ ),
266
+ (
267
+ "colissimo_eco_om_without_signature",
268
+ "colissimo_eco_om_without_signature",
269
+ ),
270
+ (
271
+ "colissimo_eco_om_with_signature",
272
+ "colissimo_eco_om_with_signature",
273
+ ),
274
+ ("colissimo_retour_om", "colissimo_retour_om"),
275
+ (
276
+ "colissimo_return_international_from_france",
277
+ "colissimo_return_international_from_france",
278
+ ),
279
+ (
280
+ "colissimo_economical_big_export_offer",
281
+ "colissimo_economical_big_export_offer",
282
+ ),
283
+ (
284
+ "colissimo_out_of_home_national_international",
285
+ "colissimo_out_of_home_national_international",
286
+ ),
287
+ ("dhl_logistics_services", "dhl_logistics_services"),
288
+ ("dhl_domestic_express_12_00", "dhl_domestic_express_12_00"),
289
+ ("dhl_express_choice", "dhl_express_choice"),
290
+ ("dhl_express_choice_nondoc", "dhl_express_choice_nondoc"),
291
+ ("dhl_jetline", "dhl_jetline"),
292
+ ("dhl_sprintline", "dhl_sprintline"),
293
+ ("dhl_air_capacity_sales", "dhl_air_capacity_sales"),
294
+ ("dhl_express_easy", "dhl_express_easy"),
295
+ ("dhl_express_easy_nondoc", "dhl_express_easy_nondoc"),
296
+ ("dhl_parcel_product", "dhl_parcel_product"),
297
+ ("dhl_accounting", "dhl_accounting"),
298
+ ("dhl_breakbulk_express", "dhl_breakbulk_express"),
299
+ ("dhl_medical_express", "dhl_medical_express"),
300
+ ("dhl_express_worldwide_doc", "dhl_express_worldwide_doc"),
301
+ ("dhl_express_9_00_nondoc", "dhl_express_9_00_nondoc"),
302
+ ("dhl_freight_worldwide_nondoc", "dhl_freight_worldwide_nondoc"),
303
+ ("dhl_economy_select_domestic", "dhl_economy_select_domestic"),
304
+ ("dhl_economy_select_nondoc", "dhl_economy_select_nondoc"),
305
+ ("dhl_express_domestic_9_00", "dhl_express_domestic_9_00"),
306
+ ("dhl_jumbo_box_nondoc", "dhl_jumbo_box_nondoc"),
307
+ ("dhl_express_9_00", "dhl_express_9_00"),
308
+ ("dhl_express_10_30", "dhl_express_10_30"),
309
+ ("dhl_express_10_30_nondoc", "dhl_express_10_30_nondoc"),
310
+ ("dhl_express_domestic", "dhl_express_domestic"),
311
+ ("dhl_express_domestic_10_30", "dhl_express_domestic_10_30"),
312
+ ("dhl_express_worldwide_nondoc", "dhl_express_worldwide_nondoc"),
313
+ ("dhl_medical_express_nondoc", "dhl_medical_express_nondoc"),
314
+ ("dhl_globalmail", "dhl_globalmail"),
315
+ ("dhl_same_day", "dhl_same_day"),
316
+ ("dhl_express_12_00", "dhl_express_12_00"),
317
+ ("dhl_express_worldwide", "dhl_express_worldwide"),
318
+ ("dhl_parcel_product_nondoc", "dhl_parcel_product_nondoc"),
319
+ ("dhl_economy_select", "dhl_economy_select"),
320
+ ("dhl_express_envelope", "dhl_express_envelope"),
321
+ ("dhl_express_12_00_nondoc", "dhl_express_12_00_nondoc"),
322
+ ("dhl_destination_charges", "dhl_destination_charges"),
323
+ ("dhl_express_all", "dhl_express_all"),
324
+ ("dhl_parcel_de_paket", "dhl_parcel_de_paket"),
325
+ ("dhl_parcel_de_warenpost", "dhl_parcel_de_warenpost"),
326
+ ("dhl_parcel_de_europaket", "dhl_parcel_de_europaket"),
327
+ (
328
+ "dhl_parcel_de_paket_international",
329
+ "dhl_parcel_de_paket_international",
330
+ ),
331
+ (
332
+ "dhl_parcel_de_warenpost_international",
333
+ "dhl_parcel_de_warenpost_international",
334
+ ),
335
+ ("dhl_poland_premium", "dhl_poland_premium"),
336
+ ("dhl_poland_polska", "dhl_poland_polska"),
337
+ ("dhl_poland_09", "dhl_poland_09"),
338
+ ("dhl_poland_12", "dhl_poland_12"),
339
+ ("dhl_poland_connect", "dhl_poland_connect"),
340
+ ("dhl_poland_international", "dhl_poland_international"),
341
+ ("dpd_cl", "dpd_cl"),
342
+ ("dpd_express_10h", "dpd_express_10h"),
343
+ ("dpd_express_12h", "dpd_express_12h"),
344
+ ("dpd_express_18h_guarantee", "dpd_express_18h_guarantee"),
345
+ ("dpd_express_b2b_predict", "dpd_express_b2b_predict"),
346
+ ("dpdhl_paket", "dpdhl_paket"),
347
+ ("dpdhl_paket_international", "dpdhl_paket_international"),
348
+ ("dpdhl_europaket", "dpdhl_europaket"),
349
+ ("dpdhl_paket_connect", "dpdhl_paket_connect"),
350
+ ("dpdhl_warenpost", "dpdhl_warenpost"),
351
+ ("dpdhl_warenpost_international", "dpdhl_warenpost_international"),
352
+ ("dpdhl_retoure", "dpdhl_retoure"),
353
+ ("easypost_amazonmws_ups_rates", "easypost_amazonmws_ups_rates"),
354
+ ("easypost_amazonmws_usps_rates", "easypost_amazonmws_usps_rates"),
355
+ (
356
+ "easypost_amazonmws_fedex_rates",
357
+ "easypost_amazonmws_fedex_rates",
358
+ ),
359
+ ("easypost_amazonmws_ups_labels", "easypost_amazonmws_ups_labels"),
360
+ (
361
+ "easypost_amazonmws_usps_labels",
362
+ "easypost_amazonmws_usps_labels",
363
+ ),
364
+ (
365
+ "easypost_amazonmws_fedex_labels",
366
+ "easypost_amazonmws_fedex_labels",
367
+ ),
368
+ (
369
+ "easypost_amazonmws_ups_tracking",
370
+ "easypost_amazonmws_ups_tracking",
371
+ ),
372
+ (
373
+ "easypost_amazonmws_usps_tracking",
374
+ "easypost_amazonmws_usps_tracking",
375
+ ),
376
+ (
377
+ "easypost_amazonmws_fedex_tracking",
378
+ "easypost_amazonmws_fedex_tracking",
379
+ ),
380
+ (
381
+ "easypost_apc_parcel_connect_book_service",
382
+ "easypost_apc_parcel_connect_book_service",
383
+ ),
384
+ (
385
+ "easypost_apc_parcel_connect_expedited_ddp",
386
+ "easypost_apc_parcel_connect_expedited_ddp",
387
+ ),
388
+ (
389
+ "easypost_apc_parcel_connect_expedited_ddu",
390
+ "easypost_apc_parcel_connect_expedited_ddu",
391
+ ),
392
+ (
393
+ "easypost_apc_parcel_connect_priority_ddp",
394
+ "easypost_apc_parcel_connect_priority_ddp",
395
+ ),
396
+ (
397
+ "easypost_apc_parcel_connect_priority_ddp_delcon",
398
+ "easypost_apc_parcel_connect_priority_ddp_delcon",
399
+ ),
400
+ (
401
+ "easypost_apc_parcel_connect_priority_ddu",
402
+ "easypost_apc_parcel_connect_priority_ddu",
403
+ ),
404
+ (
405
+ "easypost_apc_parcel_connect_priority_ddu_delcon",
406
+ "easypost_apc_parcel_connect_priority_ddu_delcon",
407
+ ),
408
+ (
409
+ "easypost_apc_parcel_connect_priority_ddupqw",
410
+ "easypost_apc_parcel_connect_priority_ddupqw",
411
+ ),
412
+ (
413
+ "easypost_apc_parcel_connect_standard_ddu",
414
+ "easypost_apc_parcel_connect_standard_ddu",
415
+ ),
416
+ (
417
+ "easypost_apc_parcel_connect_standard_ddupqw",
418
+ "easypost_apc_parcel_connect_standard_ddupqw",
419
+ ),
420
+ (
421
+ "easypost_apc_parcel_connect_packet_ddu",
422
+ "easypost_apc_parcel_connect_packet_ddu",
423
+ ),
424
+ ("easypost_asendia_pmi", "easypost_asendia_pmi"),
425
+ ("easypost_asendia_e_packet", "easypost_asendia_e_packet"),
426
+ ("easypost_asendia_ipa", "easypost_asendia_ipa"),
427
+ ("easypost_asendia_isal", "easypost_asendia_isal"),
428
+ ("easypost_asendia_us_ads", "easypost_asendia_us_ads"),
429
+ (
430
+ "easypost_asendia_us_air_freight_inbound",
431
+ "easypost_asendia_us_air_freight_inbound",
432
+ ),
433
+ (
434
+ "easypost_asendia_us_air_freight_outbound",
435
+ "easypost_asendia_us_air_freight_outbound",
436
+ ),
437
+ (
438
+ "easypost_asendia_us_domestic_bound_printer_matter_expedited",
439
+ "easypost_asendia_us_domestic_bound_printer_matter_expedited",
440
+ ),
441
+ (
442
+ "easypost_asendia_us_domestic_bound_printer_matter_ground",
443
+ "easypost_asendia_us_domestic_bound_printer_matter_ground",
444
+ ),
445
+ (
446
+ "easypost_asendia_us_domestic_flats_expedited",
447
+ "easypost_asendia_us_domestic_flats_expedited",
448
+ ),
449
+ (
450
+ "easypost_asendia_us_domestic_flats_ground",
451
+ "easypost_asendia_us_domestic_flats_ground",
452
+ ),
453
+ (
454
+ "easypost_asendia_us_domestic_parcel_ground_over1lb",
455
+ "easypost_asendia_us_domestic_parcel_ground_over1lb",
456
+ ),
457
+ (
458
+ "easypost_asendia_us_domestic_parcel_ground_under1lb",
459
+ "easypost_asendia_us_domestic_parcel_ground_under1lb",
460
+ ),
461
+ (
462
+ "easypost_asendia_us_domestic_parcel_max_over1lb",
463
+ "easypost_asendia_us_domestic_parcel_max_over1lb",
464
+ ),
465
+ (
466
+ "easypost_asendia_us_domestic_parcel_max_under1lb",
467
+ "easypost_asendia_us_domestic_parcel_max_under1lb",
468
+ ),
469
+ (
470
+ "easypost_asendia_us_domestic_parcel_over1lb_expedited",
471
+ "easypost_asendia_us_domestic_parcel_over1lb_expedited",
472
+ ),
473
+ (
474
+ "easypost_asendia_us_domestic_parcel_under1lb_expedited",
475
+ "easypost_asendia_us_domestic_parcel_under1lb_expedited",
476
+ ),
477
+ (
478
+ "easypost_asendia_us_domestic_promo_parcel_expedited",
479
+ "easypost_asendia_us_domestic_promo_parcel_expedited",
480
+ ),
481
+ (
482
+ "easypost_asendia_us_domestic_promo_parcel_ground",
483
+ "easypost_asendia_us_domestic_promo_parcel_ground",
484
+ ),
485
+ (
486
+ "easypost_asendia_us_bulk_freight",
487
+ "easypost_asendia_us_bulk_freight",
488
+ ),
489
+ (
490
+ "easypost_asendia_us_business_mail_canada_lettermail",
491
+ "easypost_asendia_us_business_mail_canada_lettermail",
492
+ ),
493
+ (
494
+ "easypost_asendia_us_business_mail_canada_lettermail_machineable",
495
+ "easypost_asendia_us_business_mail_canada_lettermail_machineable",
496
+ ),
497
+ (
498
+ "easypost_asendia_us_business_mail_economy",
499
+ "easypost_asendia_us_business_mail_economy",
500
+ ),
501
+ (
502
+ "easypost_asendia_us_business_mail_economy_lp_wholesale",
503
+ "easypost_asendia_us_business_mail_economy_lp_wholesale",
504
+ ),
505
+ (
506
+ "easypost_asendia_us_business_mail_economy_sp_wholesale",
507
+ "easypost_asendia_us_business_mail_economy_sp_wholesale",
508
+ ),
509
+ (
510
+ "easypost_asendia_us_business_mail_ipa",
511
+ "easypost_asendia_us_business_mail_ipa",
512
+ ),
513
+ (
514
+ "easypost_asendia_us_business_mail_isal",
515
+ "easypost_asendia_us_business_mail_isal",
516
+ ),
517
+ (
518
+ "easypost_asendia_us_business_mail_priority",
519
+ "easypost_asendia_us_business_mail_priority",
520
+ ),
521
+ (
522
+ "easypost_asendia_us_business_mail_priority_lp_wholesale",
523
+ "easypost_asendia_us_business_mail_priority_lp_wholesale",
524
+ ),
525
+ (
526
+ "easypost_asendia_us_business_mail_priority_sp_wholesale",
527
+ "easypost_asendia_us_business_mail_priority_sp_wholesale",
528
+ ),
529
+ (
530
+ "easypost_asendia_us_marketing_mail_canada_personalized_lcp",
531
+ "easypost_asendia_us_marketing_mail_canada_personalized_lcp",
532
+ ),
533
+ (
534
+ "easypost_asendia_us_marketing_mail_canada_personalized_machineable",
535
+ "easypost_asendia_us_marketing_mail_canada_personalized_machineable",
536
+ ),
537
+ (
538
+ "easypost_asendia_us_marketing_mail_canada_personalized_ndg",
539
+ "easypost_asendia_us_marketing_mail_canada_personalized_ndg",
540
+ ),
541
+ (
542
+ "easypost_asendia_us_marketing_mail_economy",
543
+ "easypost_asendia_us_marketing_mail_economy",
544
+ ),
545
+ (
546
+ "easypost_asendia_us_marketing_mail_ipa",
547
+ "easypost_asendia_us_marketing_mail_ipa",
548
+ ),
549
+ (
550
+ "easypost_asendia_us_marketing_mail_isal",
551
+ "easypost_asendia_us_marketing_mail_isal",
552
+ ),
553
+ (
554
+ "easypost_asendia_us_marketing_mail_priority",
555
+ "easypost_asendia_us_marketing_mail_priority",
556
+ ),
557
+ (
558
+ "easypost_asendia_us_publications_canada_lcp",
559
+ "easypost_asendia_us_publications_canada_lcp",
560
+ ),
561
+ (
562
+ "easypost_asendia_us_publications_canada_ndg",
563
+ "easypost_asendia_us_publications_canada_ndg",
564
+ ),
565
+ (
566
+ "easypost_asendia_us_publications_economy",
567
+ "easypost_asendia_us_publications_economy",
568
+ ),
569
+ (
570
+ "easypost_asendia_us_publications_ipa",
571
+ "easypost_asendia_us_publications_ipa",
572
+ ),
573
+ (
574
+ "easypost_asendia_us_publications_isal",
575
+ "easypost_asendia_us_publications_isal",
576
+ ),
577
+ (
578
+ "easypost_asendia_us_publications_priority",
579
+ "easypost_asendia_us_publications_priority",
580
+ ),
581
+ (
582
+ "easypost_asendia_us_epaq_elite",
583
+ "easypost_asendia_us_epaq_elite",
584
+ ),
585
+ (
586
+ "easypost_asendia_us_epaq_elite_custom",
587
+ "easypost_asendia_us_epaq_elite_custom",
588
+ ),
589
+ (
590
+ "easypost_asendia_us_epaq_elite_dap",
591
+ "easypost_asendia_us_epaq_elite_dap",
592
+ ),
593
+ (
594
+ "easypost_asendia_us_epaq_elite_ddp",
595
+ "easypost_asendia_us_epaq_elite_ddp",
596
+ ),
597
+ (
598
+ "easypost_asendia_us_epaq_elite_ddp_oversized",
599
+ "easypost_asendia_us_epaq_elite_ddp_oversized",
600
+ ),
601
+ (
602
+ "easypost_asendia_us_epaq_elite_dpd",
603
+ "easypost_asendia_us_epaq_elite_dpd",
604
+ ),
605
+ (
606
+ "easypost_asendia_us_epaq_elite_direct_access_canada_ddp",
607
+ "easypost_asendia_us_epaq_elite_direct_access_canada_ddp",
608
+ ),
609
+ (
610
+ "easypost_asendia_us_epaq_elite_oversized",
611
+ "easypost_asendia_us_epaq_elite_oversized",
612
+ ),
613
+ ("easypost_asendia_us_epaq_plus", "easypost_asendia_us_epaq_plus"),
614
+ (
615
+ "easypost_asendia_us_epaq_plus_custom",
616
+ "easypost_asendia_us_epaq_plus_custom",
617
+ ),
618
+ (
619
+ "easypost_asendia_us_epaq_plus_customs_prepaid",
620
+ "easypost_asendia_us_epaq_plus_customs_prepaid",
621
+ ),
622
+ (
623
+ "easypost_asendia_us_epaq_plus_dap",
624
+ "easypost_asendia_us_epaq_plus_dap",
625
+ ),
626
+ (
627
+ "easypost_asendia_us_epaq_plus_ddp",
628
+ "easypost_asendia_us_epaq_plus_ddp",
629
+ ),
630
+ (
631
+ "easypost_asendia_us_epaq_plus_economy",
632
+ "easypost_asendia_us_epaq_plus_economy",
633
+ ),
634
+ (
635
+ "easypost_asendia_us_epaq_plus_wholesale",
636
+ "easypost_asendia_us_epaq_plus_wholesale",
637
+ ),
638
+ (
639
+ "easypost_asendia_us_epaq_pluse_packet",
640
+ "easypost_asendia_us_epaq_pluse_packet",
641
+ ),
642
+ (
643
+ "easypost_asendia_us_epaq_pluse_packet_canada_customs_pre_paid",
644
+ "easypost_asendia_us_epaq_pluse_packet_canada_customs_pre_paid",
645
+ ),
646
+ (
647
+ "easypost_asendia_us_epaq_pluse_packet_canada_ddp",
648
+ "easypost_asendia_us_epaq_pluse_packet_canada_ddp",
649
+ ),
650
+ (
651
+ "easypost_asendia_us_epaq_returns_domestic",
652
+ "easypost_asendia_us_epaq_returns_domestic",
653
+ ),
654
+ (
655
+ "easypost_asendia_us_epaq_returns_international",
656
+ "easypost_asendia_us_epaq_returns_international",
657
+ ),
658
+ (
659
+ "easypost_asendia_us_epaq_select",
660
+ "easypost_asendia_us_epaq_select",
661
+ ),
662
+ (
663
+ "easypost_asendia_us_epaq_select_custom",
664
+ "easypost_asendia_us_epaq_select_custom",
665
+ ),
666
+ (
667
+ "easypost_asendia_us_epaq_select_customs_prepaid_by_shopper",
668
+ "easypost_asendia_us_epaq_select_customs_prepaid_by_shopper",
669
+ ),
670
+ (
671
+ "easypost_asendia_us_epaq_select_dap",
672
+ "easypost_asendia_us_epaq_select_dap",
673
+ ),
674
+ (
675
+ "easypost_asendia_us_epaq_select_ddp",
676
+ "easypost_asendia_us_epaq_select_ddp",
677
+ ),
678
+ (
679
+ "easypost_asendia_us_epaq_select_ddp_direct_access",
680
+ "easypost_asendia_us_epaq_select_ddp_direct_access",
681
+ ),
682
+ (
683
+ "easypost_asendia_us_epaq_select_direct_access",
684
+ "easypost_asendia_us_epaq_select_direct_access",
685
+ ),
686
+ (
687
+ "easypost_asendia_us_epaq_select_direct_access_canada_ddp",
688
+ "easypost_asendia_us_epaq_select_direct_access_canada_ddp",
689
+ ),
690
+ (
691
+ "easypost_asendia_us_epaq_select_economy",
692
+ "easypost_asendia_us_epaq_select_economy",
693
+ ),
694
+ (
695
+ "easypost_asendia_us_epaq_select_oversized",
696
+ "easypost_asendia_us_epaq_select_oversized",
697
+ ),
698
+ (
699
+ "easypost_asendia_us_epaq_select_oversized_ddp",
700
+ "easypost_asendia_us_epaq_select_oversized_ddp",
701
+ ),
702
+ (
703
+ "easypost_asendia_us_epaq_select_pmei",
704
+ "easypost_asendia_us_epaq_select_pmei",
705
+ ),
706
+ (
707
+ "easypost_asendia_us_epaq_select_pmei_canada_customs_pre_paid",
708
+ "easypost_asendia_us_epaq_select_pmei_canada_customs_pre_paid",
709
+ ),
710
+ (
711
+ "easypost_asendia_us_epaq_select_pmeipc_postage",
712
+ "easypost_asendia_us_epaq_select_pmeipc_postage",
713
+ ),
714
+ (
715
+ "easypost_asendia_us_epaq_select_pmi",
716
+ "easypost_asendia_us_epaq_select_pmi",
717
+ ),
718
+ (
719
+ "easypost_asendia_us_epaq_select_pmi_canada_customs_prepaid",
720
+ "easypost_asendia_us_epaq_select_pmi_canada_customs_prepaid",
721
+ ),
722
+ (
723
+ "easypost_asendia_us_epaq_select_pmi_canada_ddp",
724
+ "easypost_asendia_us_epaq_select_pmi_canada_ddp",
725
+ ),
726
+ (
727
+ "easypost_asendia_us_epaq_select_pmi_non_presort",
728
+ "easypost_asendia_us_epaq_select_pmi_non_presort",
729
+ ),
730
+ (
731
+ "easypost_asendia_us_epaq_select_pmipc_postage",
732
+ "easypost_asendia_us_epaq_select_pmipc_postage",
733
+ ),
734
+ (
735
+ "easypost_asendia_us_epaq_standard",
736
+ "easypost_asendia_us_epaq_standard",
737
+ ),
738
+ (
739
+ "easypost_asendia_us_epaq_standard_custom",
740
+ "easypost_asendia_us_epaq_standard_custom",
741
+ ),
742
+ (
743
+ "easypost_asendia_us_epaq_standard_economy",
744
+ "easypost_asendia_us_epaq_standard_economy",
745
+ ),
746
+ (
747
+ "easypost_asendia_us_epaq_standard_ipa",
748
+ "easypost_asendia_us_epaq_standard_ipa",
749
+ ),
750
+ (
751
+ "easypost_asendia_us_epaq_standard_isal",
752
+ "easypost_asendia_us_epaq_standard_isal",
753
+ ),
754
+ (
755
+ "easypost_asendia_us_epaq_select_pmei_non_presort",
756
+ "easypost_asendia_us_epaq_select_pmei_non_presort",
757
+ ),
758
+ (
759
+ "easypost_australiapost_express_post",
760
+ "easypost_australiapost_express_post",
761
+ ),
762
+ (
763
+ "easypost_australiapost_express_post_signature",
764
+ "easypost_australiapost_express_post_signature",
765
+ ),
766
+ (
767
+ "easypost_australiapost_parcel_post",
768
+ "easypost_australiapost_parcel_post",
769
+ ),
770
+ (
771
+ "easypost_australiapost_parcel_post_signature",
772
+ "easypost_australiapost_parcel_post_signature",
773
+ ),
774
+ (
775
+ "easypost_australiapost_parcel_post_extra",
776
+ "easypost_australiapost_parcel_post_extra",
777
+ ),
778
+ (
779
+ "easypost_australiapost_parcel_post_wine_plus_signature",
780
+ "easypost_australiapost_parcel_post_wine_plus_signature",
781
+ ),
782
+ ("easypost_axlehire_delivery", "easypost_axlehire_delivery"),
783
+ (
784
+ "easypost_better_trucks_next_day",
785
+ "easypost_better_trucks_next_day",
786
+ ),
787
+ ("easypost_bond_standard", "easypost_bond_standard"),
788
+ (
789
+ "easypost_canadapost_regular_parcel",
790
+ "easypost_canadapost_regular_parcel",
791
+ ),
792
+ (
793
+ "easypost_canadapost_expedited_parcel",
794
+ "easypost_canadapost_expedited_parcel",
795
+ ),
796
+ (
797
+ "easypost_canadapost_xpresspost",
798
+ "easypost_canadapost_xpresspost",
799
+ ),
800
+ (
801
+ "easypost_canadapost_xpresspost_certified",
802
+ "easypost_canadapost_xpresspost_certified",
803
+ ),
804
+ ("easypost_canadapost_priority", "easypost_canadapost_priority"),
805
+ (
806
+ "easypost_canadapost_library_books",
807
+ "easypost_canadapost_library_books",
808
+ ),
809
+ (
810
+ "easypost_canadapost_expedited_parcel_usa",
811
+ "easypost_canadapost_expedited_parcel_usa",
812
+ ),
813
+ (
814
+ "easypost_canadapost_priority_worldwide_envelope_usa",
815
+ "easypost_canadapost_priority_worldwide_envelope_usa",
816
+ ),
817
+ (
818
+ "easypost_canadapost_priority_worldwide_pak_usa",
819
+ "easypost_canadapost_priority_worldwide_pak_usa",
820
+ ),
821
+ (
822
+ "easypost_canadapost_priority_worldwide_parcel_usa",
823
+ "easypost_canadapost_priority_worldwide_parcel_usa",
824
+ ),
825
+ (
826
+ "easypost_canadapost_small_packet_usa_air",
827
+ "easypost_canadapost_small_packet_usa_air",
828
+ ),
829
+ (
830
+ "easypost_canadapost_tracked_packet_usa",
831
+ "easypost_canadapost_tracked_packet_usa",
832
+ ),
833
+ (
834
+ "easypost_canadapost_tracked_packet_usalvm",
835
+ "easypost_canadapost_tracked_packet_usalvm",
836
+ ),
837
+ (
838
+ "easypost_canadapost_xpresspost_usa",
839
+ "easypost_canadapost_xpresspost_usa",
840
+ ),
841
+ (
842
+ "easypost_canadapost_xpresspost_international",
843
+ "easypost_canadapost_xpresspost_international",
844
+ ),
845
+ (
846
+ "easypost_canadapost_international_parcel_air",
847
+ "easypost_canadapost_international_parcel_air",
848
+ ),
849
+ (
850
+ "easypost_canadapost_international_parcel_surface",
851
+ "easypost_canadapost_international_parcel_surface",
852
+ ),
853
+ (
854
+ "easypost_canadapost_priority_worldwide_envelope_intl",
855
+ "easypost_canadapost_priority_worldwide_envelope_intl",
856
+ ),
857
+ (
858
+ "easypost_canadapost_priority_worldwide_pak_intl",
859
+ "easypost_canadapost_priority_worldwide_pak_intl",
860
+ ),
861
+ (
862
+ "easypost_canadapost_priority_worldwide_parcel_intl",
863
+ "easypost_canadapost_priority_worldwide_parcel_intl",
864
+ ),
865
+ (
866
+ "easypost_canadapost_small_packet_international_air",
867
+ "easypost_canadapost_small_packet_international_air",
868
+ ),
869
+ (
870
+ "easypost_canadapost_small_packet_international_surface",
871
+ "easypost_canadapost_small_packet_international_surface",
872
+ ),
873
+ (
874
+ "easypost_canadapost_tracked_packet_international",
875
+ "easypost_canadapost_tracked_packet_international",
876
+ ),
877
+ ("easypost_canpar_ground", "easypost_canpar_ground"),
878
+ ("easypost_canpar_select_letter", "easypost_canpar_select_letter"),
879
+ ("easypost_canpar_select_pak", "easypost_canpar_select_pak"),
880
+ ("easypost_canpar_select", "easypost_canpar_select"),
881
+ (
882
+ "easypost_canpar_overnight_letter",
883
+ "easypost_canpar_overnight_letter",
884
+ ),
885
+ ("easypost_canpar_overnight_pak", "easypost_canpar_overnight_pak"),
886
+ ("easypost_canpar_overnight", "easypost_canpar_overnight"),
887
+ ("easypost_canpar_select_usa", "easypost_canpar_select_usa"),
888
+ ("easypost_canpar_usa_pak", "easypost_canpar_usa_pak"),
889
+ ("easypost_canpar_usa_letter", "easypost_canpar_usa_letter"),
890
+ ("easypost_canpar_usa", "easypost_canpar_usa"),
891
+ ("easypost_canpar_international", "easypost_canpar_international"),
892
+ ("easypost_cdl_distribution", "easypost_cdl_distribution"),
893
+ ("easypost_cdl_same_day", "easypost_cdl_same_day"),
894
+ (
895
+ "easypost_courier_express_basic_parcel",
896
+ "easypost_courier_express_basic_parcel",
897
+ ),
898
+ (
899
+ "easypost_couriersplease_domestic_priority_signature",
900
+ "easypost_couriersplease_domestic_priority_signature",
901
+ ),
902
+ (
903
+ "easypost_couriersplease_domestic_priority",
904
+ "easypost_couriersplease_domestic_priority",
905
+ ),
906
+ (
907
+ "easypost_couriersplease_domestic_off_peak_signature",
908
+ "easypost_couriersplease_domestic_off_peak_signature",
909
+ ),
910
+ (
911
+ "easypost_couriersplease_domestic_off_peak",
912
+ "easypost_couriersplease_domestic_off_peak",
913
+ ),
914
+ (
915
+ "easypost_couriersplease_gold_domestic_signature",
916
+ "easypost_couriersplease_gold_domestic_signature",
917
+ ),
918
+ (
919
+ "easypost_couriersplease_gold_domestic",
920
+ "easypost_couriersplease_gold_domestic",
921
+ ),
922
+ (
923
+ "easypost_couriersplease_australian_city_express_signature",
924
+ "easypost_couriersplease_australian_city_express_signature",
925
+ ),
926
+ (
927
+ "easypost_couriersplease_australian_city_express",
928
+ "easypost_couriersplease_australian_city_express",
929
+ ),
930
+ (
931
+ "easypost_couriersplease_domestic_saver_signature",
932
+ "easypost_couriersplease_domestic_saver_signature",
933
+ ),
934
+ (
935
+ "easypost_couriersplease_domestic_saver",
936
+ "easypost_couriersplease_domestic_saver",
937
+ ),
938
+ (
939
+ "easypost_couriersplease_road_express",
940
+ "easypost_couriersplease_road_express",
941
+ ),
942
+ (
943
+ "easypost_couriersplease_5_kg_satchel",
944
+ "easypost_couriersplease_5_kg_satchel",
945
+ ),
946
+ (
947
+ "easypost_couriersplease_3_kg_satchel",
948
+ "easypost_couriersplease_3_kg_satchel",
949
+ ),
950
+ (
951
+ "easypost_couriersplease_1_kg_satchel",
952
+ "easypost_couriersplease_1_kg_satchel",
953
+ ),
954
+ (
955
+ "easypost_couriersplease_5_kg_satchel_atl",
956
+ "easypost_couriersplease_5_kg_satchel_atl",
957
+ ),
958
+ (
959
+ "easypost_couriersplease_3_kg_satchel_atl",
960
+ "easypost_couriersplease_3_kg_satchel_atl",
961
+ ),
962
+ (
963
+ "easypost_couriersplease_1_kg_satchel_atl",
964
+ "easypost_couriersplease_1_kg_satchel_atl",
965
+ ),
966
+ (
967
+ "easypost_couriersplease_500_gram_satchel",
968
+ "easypost_couriersplease_500_gram_satchel",
969
+ ),
970
+ (
971
+ "easypost_couriersplease_500_gram_satchel_atl",
972
+ "easypost_couriersplease_500_gram_satchel_atl",
973
+ ),
974
+ (
975
+ "easypost_couriersplease_25_kg_parcel",
976
+ "easypost_couriersplease_25_kg_parcel",
977
+ ),
978
+ (
979
+ "easypost_couriersplease_10_kg_parcel",
980
+ "easypost_couriersplease_10_kg_parcel",
981
+ ),
982
+ (
983
+ "easypost_couriersplease_5_kg_parcel",
984
+ "easypost_couriersplease_5_kg_parcel",
985
+ ),
986
+ (
987
+ "easypost_couriersplease_3_kg_parcel",
988
+ "easypost_couriersplease_3_kg_parcel",
989
+ ),
990
+ (
991
+ "easypost_couriersplease_1_kg_parcel",
992
+ "easypost_couriersplease_1_kg_parcel",
993
+ ),
994
+ (
995
+ "easypost_couriersplease_500_gram_parcel",
996
+ "easypost_couriersplease_500_gram_parcel",
997
+ ),
998
+ (
999
+ "easypost_couriersplease_500_gram_parcel_atl",
1000
+ "easypost_couriersplease_500_gram_parcel_atl",
1001
+ ),
1002
+ (
1003
+ "easypost_couriersplease_express_international_priority",
1004
+ "easypost_couriersplease_express_international_priority",
1005
+ ),
1006
+ (
1007
+ "easypost_couriersplease_international_saver",
1008
+ "easypost_couriersplease_international_saver",
1009
+ ),
1010
+ (
1011
+ "easypost_couriersplease_international_express_import",
1012
+ "easypost_couriersplease_international_express_import",
1013
+ ),
1014
+ (
1015
+ "easypost_couriersplease_domestic_tracked",
1016
+ "easypost_couriersplease_domestic_tracked",
1017
+ ),
1018
+ (
1019
+ "easypost_couriersplease_international_economy",
1020
+ "easypost_couriersplease_international_economy",
1021
+ ),
1022
+ (
1023
+ "easypost_couriersplease_international_standard",
1024
+ "easypost_couriersplease_international_standard",
1025
+ ),
1026
+ (
1027
+ "easypost_couriersplease_international_express",
1028
+ "easypost_couriersplease_international_express",
1029
+ ),
1030
+ (
1031
+ "easypost_deutschepost_packet_plus",
1032
+ "easypost_deutschepost_packet_plus",
1033
+ ),
1034
+ (
1035
+ "easypost_deutschepost_uk_priority_packet_plus",
1036
+ "easypost_deutschepost_uk_priority_packet_plus",
1037
+ ),
1038
+ (
1039
+ "easypost_deutschepost_uk_priority_packet",
1040
+ "easypost_deutschepost_uk_priority_packet",
1041
+ ),
1042
+ (
1043
+ "easypost_deutschepost_uk_priority_packet_tracked",
1044
+ "easypost_deutschepost_uk_priority_packet_tracked",
1045
+ ),
1046
+ (
1047
+ "easypost_deutschepost_uk_business_mail_registered",
1048
+ "easypost_deutschepost_uk_business_mail_registered",
1049
+ ),
1050
+ (
1051
+ "easypost_deutschepost_uk_standard_packet",
1052
+ "easypost_deutschepost_uk_standard_packet",
1053
+ ),
1054
+ (
1055
+ "easypost_deutschepost_uk_business_mail_standard",
1056
+ "easypost_deutschepost_uk_business_mail_standard",
1057
+ ),
1058
+ ("easypost_dhl_ecom_asia_packet", "easypost_dhl_ecom_asia_packet"),
1059
+ (
1060
+ "easypost_dhl_ecom_asia_parcel_direct",
1061
+ "easypost_dhl_ecom_asia_parcel_direct",
1062
+ ),
1063
+ (
1064
+ "easypost_dhl_ecom_asia_parcel_direct_expedited",
1065
+ "easypost_dhl_ecom_asia_parcel_direct_expedited",
1066
+ ),
1067
+ (
1068
+ "easypost_dhl_ecom_parcel_expedited",
1069
+ "easypost_dhl_ecom_parcel_expedited",
1070
+ ),
1071
+ (
1072
+ "easypost_dhl_ecom_parcel_expedited_max",
1073
+ "easypost_dhl_ecom_parcel_expedited_max",
1074
+ ),
1075
+ (
1076
+ "easypost_dhl_ecom_parcel_ground",
1077
+ "easypost_dhl_ecom_parcel_ground",
1078
+ ),
1079
+ (
1080
+ "easypost_dhl_ecom_bpm_expedited",
1081
+ "easypost_dhl_ecom_bpm_expedited",
1082
+ ),
1083
+ ("easypost_dhl_ecom_bpm_ground", "easypost_dhl_ecom_bpm_ground"),
1084
+ (
1085
+ "easypost_dhl_ecom_parcel_international_direct",
1086
+ "easypost_dhl_ecom_parcel_international_direct",
1087
+ ),
1088
+ (
1089
+ "easypost_dhl_ecom_parcel_international_standard",
1090
+ "easypost_dhl_ecom_parcel_international_standard",
1091
+ ),
1092
+ (
1093
+ "easypost_dhl_ecom_packet_international",
1094
+ "easypost_dhl_ecom_packet_international",
1095
+ ),
1096
+ (
1097
+ "easypost_dhl_ecom_parcel_international_direct_priority",
1098
+ "easypost_dhl_ecom_parcel_international_direct_priority",
1099
+ ),
1100
+ (
1101
+ "easypost_dhl_ecom_parcel_international_direct_standard",
1102
+ "easypost_dhl_ecom_parcel_international_direct_standard",
1103
+ ),
1104
+ (
1105
+ "easypost_dhl_express_break_bulk_economy",
1106
+ "easypost_dhl_express_break_bulk_economy",
1107
+ ),
1108
+ (
1109
+ "easypost_dhl_express_break_bulk_express",
1110
+ "easypost_dhl_express_break_bulk_express",
1111
+ ),
1112
+ (
1113
+ "easypost_dhl_express_domestic_economy_select",
1114
+ "easypost_dhl_express_domestic_economy_select",
1115
+ ),
1116
+ (
1117
+ "easypost_dhl_express_domestic_express",
1118
+ "easypost_dhl_express_domestic_express",
1119
+ ),
1120
+ (
1121
+ "easypost_dhl_express_domestic_express1030",
1122
+ "easypost_dhl_express_domestic_express1030",
1123
+ ),
1124
+ (
1125
+ "easypost_dhl_express_domestic_express1200",
1126
+ "easypost_dhl_express_domestic_express1200",
1127
+ ),
1128
+ (
1129
+ "easypost_dhl_express_economy_select",
1130
+ "easypost_dhl_express_economy_select",
1131
+ ),
1132
+ (
1133
+ "easypost_dhl_express_economy_select_non_doc",
1134
+ "easypost_dhl_express_economy_select_non_doc",
1135
+ ),
1136
+ (
1137
+ "easypost_dhl_express_euro_pack",
1138
+ "easypost_dhl_express_euro_pack",
1139
+ ),
1140
+ (
1141
+ "easypost_dhl_express_europack_non_doc",
1142
+ "easypost_dhl_express_europack_non_doc",
1143
+ ),
1144
+ (
1145
+ "easypost_dhl_express_express1030",
1146
+ "easypost_dhl_express_express1030",
1147
+ ),
1148
+ (
1149
+ "easypost_dhl_express_express1030_non_doc",
1150
+ "easypost_dhl_express_express1030_non_doc",
1151
+ ),
1152
+ (
1153
+ "easypost_dhl_express_express1200_non_doc",
1154
+ "easypost_dhl_express_express1200_non_doc",
1155
+ ),
1156
+ (
1157
+ "easypost_dhl_express_express1200",
1158
+ "easypost_dhl_express_express1200",
1159
+ ),
1160
+ (
1161
+ "easypost_dhl_express_express900",
1162
+ "easypost_dhl_express_express900",
1163
+ ),
1164
+ (
1165
+ "easypost_dhl_express_express900_non_doc",
1166
+ "easypost_dhl_express_express900_non_doc",
1167
+ ),
1168
+ (
1169
+ "easypost_dhl_express_express_easy",
1170
+ "easypost_dhl_express_express_easy",
1171
+ ),
1172
+ (
1173
+ "easypost_dhl_express_express_easy_non_doc",
1174
+ "easypost_dhl_express_express_easy_non_doc",
1175
+ ),
1176
+ (
1177
+ "easypost_dhl_express_express_envelope",
1178
+ "easypost_dhl_express_express_envelope",
1179
+ ),
1180
+ (
1181
+ "easypost_dhl_express_express_worldwide",
1182
+ "easypost_dhl_express_express_worldwide",
1183
+ ),
1184
+ (
1185
+ "easypost_dhl_express_express_worldwide_b2_c",
1186
+ "easypost_dhl_express_express_worldwide_b2_c",
1187
+ ),
1188
+ (
1189
+ "easypost_dhl_express_express_worldwide_b2_c_non_doc",
1190
+ "easypost_dhl_express_express_worldwide_b2_c_non_doc",
1191
+ ),
1192
+ (
1193
+ "easypost_dhl_express_express_worldwide_ecx",
1194
+ "easypost_dhl_express_express_worldwide_ecx",
1195
+ ),
1196
+ (
1197
+ "easypost_dhl_express_express_worldwide_non_doc",
1198
+ "easypost_dhl_express_express_worldwide_non_doc",
1199
+ ),
1200
+ (
1201
+ "easypost_dhl_express_freight_worldwide",
1202
+ "easypost_dhl_express_freight_worldwide",
1203
+ ),
1204
+ (
1205
+ "easypost_dhl_express_globalmail_business",
1206
+ "easypost_dhl_express_globalmail_business",
1207
+ ),
1208
+ ("easypost_dhl_express_jet_line", "easypost_dhl_express_jet_line"),
1209
+ (
1210
+ "easypost_dhl_express_jumbo_box",
1211
+ "easypost_dhl_express_jumbo_box",
1212
+ ),
1213
+ (
1214
+ "easypost_dhl_express_logistics_services",
1215
+ "easypost_dhl_express_logistics_services",
1216
+ ),
1217
+ ("easypost_dhl_express_same_day", "easypost_dhl_express_same_day"),
1218
+ (
1219
+ "easypost_dhl_express_secure_line",
1220
+ "easypost_dhl_express_secure_line",
1221
+ ),
1222
+ (
1223
+ "easypost_dhl_express_sprint_line",
1224
+ "easypost_dhl_express_sprint_line",
1225
+ ),
1226
+ ("easypost_dpd_classic", "easypost_dpd_classic"),
1227
+ ("easypost_dpd_8_30", "easypost_dpd_8_30"),
1228
+ ("easypost_dpd_10_00", "easypost_dpd_10_00"),
1229
+ ("easypost_dpd_12_00", "easypost_dpd_12_00"),
1230
+ ("easypost_dpd_18_00", "easypost_dpd_18_00"),
1231
+ ("easypost_dpd_express", "easypost_dpd_express"),
1232
+ ("easypost_dpd_parcelletter", "easypost_dpd_parcelletter"),
1233
+ ("easypost_dpd_parcelletterplus", "easypost_dpd_parcelletterplus"),
1234
+ (
1235
+ "easypost_dpd_internationalmail",
1236
+ "easypost_dpd_internationalmail",
1237
+ ),
1238
+ (
1239
+ "easypost_dpd_uk_air_express_international_air",
1240
+ "easypost_dpd_uk_air_express_international_air",
1241
+ ),
1242
+ (
1243
+ "easypost_dpd_uk_air_classic_international_air",
1244
+ "easypost_dpd_uk_air_classic_international_air",
1245
+ ),
1246
+ ("easypost_dpd_uk_parcel_sunday", "easypost_dpd_uk_parcel_sunday"),
1247
+ (
1248
+ "easypost_dpd_uk_freight_parcel_sunday",
1249
+ "easypost_dpd_uk_freight_parcel_sunday",
1250
+ ),
1251
+ ("easypost_dpd_uk_pallet_sunday", "easypost_dpd_uk_pallet_sunday"),
1252
+ (
1253
+ "easypost_dpd_uk_pallet_dpd_classic",
1254
+ "easypost_dpd_uk_pallet_dpd_classic",
1255
+ ),
1256
+ (
1257
+ "easypost_dpd_uk_expresspak_dpd_classic",
1258
+ "easypost_dpd_uk_expresspak_dpd_classic",
1259
+ ),
1260
+ (
1261
+ "easypost_dpd_uk_expresspak_sunday",
1262
+ "easypost_dpd_uk_expresspak_sunday",
1263
+ ),
1264
+ (
1265
+ "easypost_dpd_uk_parcel_dpd_classic",
1266
+ "easypost_dpd_uk_parcel_dpd_classic",
1267
+ ),
1268
+ (
1269
+ "easypost_dpd_uk_parcel_dpd_two_day",
1270
+ "easypost_dpd_uk_parcel_dpd_two_day",
1271
+ ),
1272
+ (
1273
+ "easypost_dpd_uk_parcel_dpd_next_day",
1274
+ "easypost_dpd_uk_parcel_dpd_next_day",
1275
+ ),
1276
+ ("easypost_dpd_uk_parcel_dpd12", "easypost_dpd_uk_parcel_dpd12"),
1277
+ ("easypost_dpd_uk_parcel_dpd10", "easypost_dpd_uk_parcel_dpd10"),
1278
+ (
1279
+ "easypost_dpd_uk_parcel_return_to_shop",
1280
+ "easypost_dpd_uk_parcel_return_to_shop",
1281
+ ),
1282
+ (
1283
+ "easypost_dpd_uk_parcel_saturday",
1284
+ "easypost_dpd_uk_parcel_saturday",
1285
+ ),
1286
+ (
1287
+ "easypost_dpd_uk_parcel_saturday12",
1288
+ "easypost_dpd_uk_parcel_saturday12",
1289
+ ),
1290
+ (
1291
+ "easypost_dpd_uk_parcel_saturday10",
1292
+ "easypost_dpd_uk_parcel_saturday10",
1293
+ ),
1294
+ (
1295
+ "easypost_dpd_uk_parcel_sunday12",
1296
+ "easypost_dpd_uk_parcel_sunday12",
1297
+ ),
1298
+ (
1299
+ "easypost_dpd_uk_freight_parcel_dpd_classic",
1300
+ "easypost_dpd_uk_freight_parcel_dpd_classic",
1301
+ ),
1302
+ (
1303
+ "easypost_dpd_uk_freight_parcel_sunday12",
1304
+ "easypost_dpd_uk_freight_parcel_sunday12",
1305
+ ),
1306
+ (
1307
+ "easypost_dpd_uk_expresspak_dpd_next_day",
1308
+ "easypost_dpd_uk_expresspak_dpd_next_day",
1309
+ ),
1310
+ (
1311
+ "easypost_dpd_uk_expresspak_dpd12",
1312
+ "easypost_dpd_uk_expresspak_dpd12",
1313
+ ),
1314
+ (
1315
+ "easypost_dpd_uk_expresspak_dpd10",
1316
+ "easypost_dpd_uk_expresspak_dpd10",
1317
+ ),
1318
+ (
1319
+ "easypost_dpd_uk_expresspak_saturday",
1320
+ "easypost_dpd_uk_expresspak_saturday",
1321
+ ),
1322
+ (
1323
+ "easypost_dpd_uk_expresspak_saturday12",
1324
+ "easypost_dpd_uk_expresspak_saturday12",
1325
+ ),
1326
+ (
1327
+ "easypost_dpd_uk_expresspak_saturday10",
1328
+ "easypost_dpd_uk_expresspak_saturday10",
1329
+ ),
1330
+ (
1331
+ "easypost_dpd_uk_expresspak_sunday12",
1332
+ "easypost_dpd_uk_expresspak_sunday12",
1333
+ ),
1334
+ (
1335
+ "easypost_dpd_uk_pallet_sunday12",
1336
+ "easypost_dpd_uk_pallet_sunday12",
1337
+ ),
1338
+ (
1339
+ "easypost_dpd_uk_pallet_dpd_two_day",
1340
+ "easypost_dpd_uk_pallet_dpd_two_day",
1341
+ ),
1342
+ (
1343
+ "easypost_dpd_uk_pallet_dpd_next_day",
1344
+ "easypost_dpd_uk_pallet_dpd_next_day",
1345
+ ),
1346
+ ("easypost_dpd_uk_pallet_dpd12", "easypost_dpd_uk_pallet_dpd12"),
1347
+ ("easypost_dpd_uk_pallet_dpd10", "easypost_dpd_uk_pallet_dpd10"),
1348
+ (
1349
+ "easypost_dpd_uk_pallet_saturday",
1350
+ "easypost_dpd_uk_pallet_saturday",
1351
+ ),
1352
+ (
1353
+ "easypost_dpd_uk_pallet_saturday12",
1354
+ "easypost_dpd_uk_pallet_saturday12",
1355
+ ),
1356
+ (
1357
+ "easypost_dpd_uk_pallet_saturday10",
1358
+ "easypost_dpd_uk_pallet_saturday10",
1359
+ ),
1360
+ (
1361
+ "easypost_dpd_uk_freight_parcel_dpd_two_day",
1362
+ "easypost_dpd_uk_freight_parcel_dpd_two_day",
1363
+ ),
1364
+ (
1365
+ "easypost_dpd_uk_freight_parcel_dpd_next_day",
1366
+ "easypost_dpd_uk_freight_parcel_dpd_next_day",
1367
+ ),
1368
+ (
1369
+ "easypost_dpd_uk_freight_parcel_dpd12",
1370
+ "easypost_dpd_uk_freight_parcel_dpd12",
1371
+ ),
1372
+ (
1373
+ "easypost_dpd_uk_freight_parcel_dpd10",
1374
+ "easypost_dpd_uk_freight_parcel_dpd10",
1375
+ ),
1376
+ (
1377
+ "easypost_dpd_uk_freight_parcel_saturday",
1378
+ "easypost_dpd_uk_freight_parcel_saturday",
1379
+ ),
1380
+ (
1381
+ "easypost_dpd_uk_freight_parcel_saturday12",
1382
+ "easypost_dpd_uk_freight_parcel_saturday12",
1383
+ ),
1384
+ (
1385
+ "easypost_dpd_uk_freight_parcel_saturday10",
1386
+ "easypost_dpd_uk_freight_parcel_saturday10",
1387
+ ),
1388
+ (
1389
+ "easypost_epost_courier_service_ddp",
1390
+ "easypost_epost_courier_service_ddp",
1391
+ ),
1392
+ (
1393
+ "easypost_epost_courier_service_ddu",
1394
+ "easypost_epost_courier_service_ddu",
1395
+ ),
1396
+ (
1397
+ "easypost_epost_domestic_economy_parcel",
1398
+ "easypost_epost_domestic_economy_parcel",
1399
+ ),
1400
+ (
1401
+ "easypost_epost_domestic_parcel_bpm",
1402
+ "easypost_epost_domestic_parcel_bpm",
1403
+ ),
1404
+ (
1405
+ "easypost_epost_domestic_priority_parcel",
1406
+ "easypost_epost_domestic_priority_parcel",
1407
+ ),
1408
+ (
1409
+ "easypost_epost_domestic_priority_parcel_bpm",
1410
+ "easypost_epost_domestic_priority_parcel_bpm",
1411
+ ),
1412
+ ("easypost_epost_emi_service", "easypost_epost_emi_service"),
1413
+ (
1414
+ "easypost_epost_economy_parcel_service",
1415
+ "easypost_epost_economy_parcel_service",
1416
+ ),
1417
+ ("easypost_epost_ipa_service", "easypost_epost_ipa_service"),
1418
+ ("easypost_epost_isal_service", "easypost_epost_isal_service"),
1419
+ ("easypost_epost_pmi_service", "easypost_epost_pmi_service"),
1420
+ (
1421
+ "easypost_epost_priority_parcel_ddp",
1422
+ "easypost_epost_priority_parcel_ddp",
1423
+ ),
1424
+ (
1425
+ "easypost_epost_priority_parcel_ddu",
1426
+ "easypost_epost_priority_parcel_ddu",
1427
+ ),
1428
+ (
1429
+ "easypost_epost_priority_parcel_delivery_confirmation_ddp",
1430
+ "easypost_epost_priority_parcel_delivery_confirmation_ddp",
1431
+ ),
1432
+ (
1433
+ "easypost_epost_priority_parcel_delivery_confirmation_ddu",
1434
+ "easypost_epost_priority_parcel_delivery_confirmation_ddu",
1435
+ ),
1436
+ (
1437
+ "easypost_epost_epacket_service",
1438
+ "easypost_epost_epacket_service",
1439
+ ),
1440
+ (
1441
+ "easypost_estafeta_next_day_by930",
1442
+ "easypost_estafeta_next_day_by930",
1443
+ ),
1444
+ (
1445
+ "easypost_estafeta_next_day_by1130",
1446
+ "easypost_estafeta_next_day_by1130",
1447
+ ),
1448
+ ("easypost_estafeta_next_day", "easypost_estafeta_next_day"),
1449
+ ("easypost_estafeta_two_day", "easypost_estafeta_two_day"),
1450
+ ("easypost_estafeta_ltl", "easypost_estafeta_ltl"),
1451
+ ("easypost_fastway_parcel", "easypost_fastway_parcel"),
1452
+ ("easypost_fastway_satchel", "easypost_fastway_satchel"),
1453
+ ("easypost_fedex_ground", "easypost_fedex_ground"),
1454
+ ("easypost_fedex_2_day", "easypost_fedex_2_day"),
1455
+ ("easypost_fedex_2_day_am", "easypost_fedex_2_day_am"),
1456
+ ("easypost_fedex_express_saver", "easypost_fedex_express_saver"),
1457
+ (
1458
+ "easypost_fedex_standard_overnight",
1459
+ "easypost_fedex_standard_overnight",
1460
+ ),
1461
+ (
1462
+ "easypost_fedex_first_overnight",
1463
+ "easypost_fedex_first_overnight",
1464
+ ),
1465
+ (
1466
+ "easypost_fedex_priority_overnight",
1467
+ "easypost_fedex_priority_overnight",
1468
+ ),
1469
+ (
1470
+ "easypost_fedex_international_economy",
1471
+ "easypost_fedex_international_economy",
1472
+ ),
1473
+ (
1474
+ "easypost_fedex_international_first",
1475
+ "easypost_fedex_international_first",
1476
+ ),
1477
+ (
1478
+ "easypost_fedex_international_priority",
1479
+ "easypost_fedex_international_priority",
1480
+ ),
1481
+ (
1482
+ "easypost_fedex_ground_home_delivery",
1483
+ "easypost_fedex_ground_home_delivery",
1484
+ ),
1485
+ (
1486
+ "easypost_fedex_crossborder_cbec",
1487
+ "easypost_fedex_crossborder_cbec",
1488
+ ),
1489
+ (
1490
+ "easypost_fedex_crossborder_cbecl",
1491
+ "easypost_fedex_crossborder_cbecl",
1492
+ ),
1493
+ (
1494
+ "easypost_fedex_crossborder_cbecp",
1495
+ "easypost_fedex_crossborder_cbecp",
1496
+ ),
1497
+ (
1498
+ "easypost_fedex_sameday_city_economy_service",
1499
+ "easypost_fedex_sameday_city_economy_service",
1500
+ ),
1501
+ (
1502
+ "easypost_fedex_sameday_city_standard_service",
1503
+ "easypost_fedex_sameday_city_standard_service",
1504
+ ),
1505
+ (
1506
+ "easypost_fedex_sameday_city_priority_service",
1507
+ "easypost_fedex_sameday_city_priority_service",
1508
+ ),
1509
+ (
1510
+ "easypost_fedex_sameday_city_last_mile",
1511
+ "easypost_fedex_sameday_city_last_mile",
1512
+ ),
1513
+ ("easypost_fedex_smart_post", "easypost_fedex_smart_post"),
1514
+ ("easypost_globegistics_pmei", "easypost_globegistics_pmei"),
1515
+ (
1516
+ "easypost_globegistics_ecom_domestic",
1517
+ "easypost_globegistics_ecom_domestic",
1518
+ ),
1519
+ (
1520
+ "easypost_globegistics_ecom_europe",
1521
+ "easypost_globegistics_ecom_europe",
1522
+ ),
1523
+ (
1524
+ "easypost_globegistics_ecom_express",
1525
+ "easypost_globegistics_ecom_express",
1526
+ ),
1527
+ (
1528
+ "easypost_globegistics_ecom_extra",
1529
+ "easypost_globegistics_ecom_extra",
1530
+ ),
1531
+ (
1532
+ "easypost_globegistics_ecom_ipa",
1533
+ "easypost_globegistics_ecom_ipa",
1534
+ ),
1535
+ (
1536
+ "easypost_globegistics_ecom_isal",
1537
+ "easypost_globegistics_ecom_isal",
1538
+ ),
1539
+ (
1540
+ "easypost_globegistics_ecom_pmei_duty_paid",
1541
+ "easypost_globegistics_ecom_pmei_duty_paid",
1542
+ ),
1543
+ (
1544
+ "easypost_globegistics_ecom_pmi_duty_paid",
1545
+ "easypost_globegistics_ecom_pmi_duty_paid",
1546
+ ),
1547
+ (
1548
+ "easypost_globegistics_ecom_packet",
1549
+ "easypost_globegistics_ecom_packet",
1550
+ ),
1551
+ (
1552
+ "easypost_globegistics_ecom_packet_ddp",
1553
+ "easypost_globegistics_ecom_packet_ddp",
1554
+ ),
1555
+ (
1556
+ "easypost_globegistics_ecom_priority",
1557
+ "easypost_globegistics_ecom_priority",
1558
+ ),
1559
+ (
1560
+ "easypost_globegistics_ecom_standard",
1561
+ "easypost_globegistics_ecom_standard",
1562
+ ),
1563
+ (
1564
+ "easypost_globegistics_ecom_tracked_ddp",
1565
+ "easypost_globegistics_ecom_tracked_ddp",
1566
+ ),
1567
+ (
1568
+ "easypost_globegistics_ecom_tracked_ddu",
1569
+ "easypost_globegistics_ecom_tracked_ddu",
1570
+ ),
1571
+ (
1572
+ "easypost_gso_early_priority_overnight",
1573
+ "easypost_gso_early_priority_overnight",
1574
+ ),
1575
+ (
1576
+ "easypost_gso_priority_overnight",
1577
+ "easypost_gso_priority_overnight",
1578
+ ),
1579
+ (
1580
+ "easypost_gso_california_parcel_service",
1581
+ "easypost_gso_california_parcel_service",
1582
+ ),
1583
+ (
1584
+ "easypost_gso_saturday_delivery_service",
1585
+ "easypost_gso_saturday_delivery_service",
1586
+ ),
1587
+ (
1588
+ "easypost_gso_early_saturday_service",
1589
+ "easypost_gso_early_saturday_service",
1590
+ ),
1591
+ (
1592
+ "easypost_hermes_domestic_delivery",
1593
+ "easypost_hermes_domestic_delivery",
1594
+ ),
1595
+ (
1596
+ "easypost_hermes_domestic_delivery_signed",
1597
+ "easypost_hermes_domestic_delivery_signed",
1598
+ ),
1599
+ (
1600
+ "easypost_hermes_international_delivery",
1601
+ "easypost_hermes_international_delivery",
1602
+ ),
1603
+ (
1604
+ "easypost_hermes_international_delivery_signed",
1605
+ "easypost_hermes_international_delivery_signed",
1606
+ ),
1607
+ (
1608
+ "easypost_interlink_air_classic_international_air",
1609
+ "easypost_interlink_air_classic_international_air",
1610
+ ),
1611
+ (
1612
+ "easypost_interlink_air_express_international_air",
1613
+ "easypost_interlink_air_express_international_air",
1614
+ ),
1615
+ (
1616
+ "easypost_interlink_expresspak1_by10_30",
1617
+ "easypost_interlink_expresspak1_by10_30",
1618
+ ),
1619
+ (
1620
+ "easypost_interlink_expresspak1_by12",
1621
+ "easypost_interlink_expresspak1_by12",
1622
+ ),
1623
+ (
1624
+ "easypost_interlink_expresspak1_next_day",
1625
+ "easypost_interlink_expresspak1_next_day",
1626
+ ),
1627
+ (
1628
+ "easypost_interlink_expresspak1_saturday",
1629
+ "easypost_interlink_expresspak1_saturday",
1630
+ ),
1631
+ (
1632
+ "easypost_interlink_expresspak1_saturday_by10_30",
1633
+ "easypost_interlink_expresspak1_saturday_by10_30",
1634
+ ),
1635
+ (
1636
+ "easypost_interlink_expresspak1_saturday_by12",
1637
+ "easypost_interlink_expresspak1_saturday_by12",
1638
+ ),
1639
+ (
1640
+ "easypost_interlink_expresspak1_sunday",
1641
+ "easypost_interlink_expresspak1_sunday",
1642
+ ),
1643
+ (
1644
+ "easypost_interlink_expresspak1_sunday_by12",
1645
+ "easypost_interlink_expresspak1_sunday_by12",
1646
+ ),
1647
+ (
1648
+ "easypost_interlink_expresspak5_by10",
1649
+ "easypost_interlink_expresspak5_by10",
1650
+ ),
1651
+ (
1652
+ "easypost_interlink_expresspak5_by10_30",
1653
+ "easypost_interlink_expresspak5_by10_30",
1654
+ ),
1655
+ (
1656
+ "easypost_interlink_expresspak5_by12",
1657
+ "easypost_interlink_expresspak5_by12",
1658
+ ),
1659
+ (
1660
+ "easypost_interlink_expresspak5_next_day",
1661
+ "easypost_interlink_expresspak5_next_day",
1662
+ ),
1663
+ (
1664
+ "easypost_interlink_expresspak5_saturday",
1665
+ "easypost_interlink_expresspak5_saturday",
1666
+ ),
1667
+ (
1668
+ "easypost_interlink_expresspak5_saturday_by10",
1669
+ "easypost_interlink_expresspak5_saturday_by10",
1670
+ ),
1671
+ (
1672
+ "easypost_interlink_expresspak5_saturday_by10_30",
1673
+ "easypost_interlink_expresspak5_saturday_by10_30",
1674
+ ),
1675
+ (
1676
+ "easypost_interlink_expresspak5_saturday_by12",
1677
+ "easypost_interlink_expresspak5_saturday_by12",
1678
+ ),
1679
+ (
1680
+ "easypost_interlink_expresspak5_sunday",
1681
+ "easypost_interlink_expresspak5_sunday",
1682
+ ),
1683
+ (
1684
+ "easypost_interlink_expresspak5_sunday_by12",
1685
+ "easypost_interlink_expresspak5_sunday_by12",
1686
+ ),
1687
+ (
1688
+ "easypost_interlink_freight_by10",
1689
+ "easypost_interlink_freight_by10",
1690
+ ),
1691
+ (
1692
+ "easypost_interlink_freight_by12",
1693
+ "easypost_interlink_freight_by12",
1694
+ ),
1695
+ (
1696
+ "easypost_interlink_freight_next_day",
1697
+ "easypost_interlink_freight_next_day",
1698
+ ),
1699
+ (
1700
+ "easypost_interlink_freight_saturday",
1701
+ "easypost_interlink_freight_saturday",
1702
+ ),
1703
+ (
1704
+ "easypost_interlink_freight_saturday_by10",
1705
+ "easypost_interlink_freight_saturday_by10",
1706
+ ),
1707
+ (
1708
+ "easypost_interlink_freight_saturday_by12",
1709
+ "easypost_interlink_freight_saturday_by12",
1710
+ ),
1711
+ (
1712
+ "easypost_interlink_freight_sunday",
1713
+ "easypost_interlink_freight_sunday",
1714
+ ),
1715
+ (
1716
+ "easypost_interlink_freight_sunday_by12",
1717
+ "easypost_interlink_freight_sunday_by12",
1718
+ ),
1719
+ (
1720
+ "easypost_interlink_parcel_by10",
1721
+ "easypost_interlink_parcel_by10",
1722
+ ),
1723
+ (
1724
+ "easypost_interlink_parcel_by10_30",
1725
+ "easypost_interlink_parcel_by10_30",
1726
+ ),
1727
+ (
1728
+ "easypost_interlink_parcel_by12",
1729
+ "easypost_interlink_parcel_by12",
1730
+ ),
1731
+ (
1732
+ "easypost_interlink_parcel_dpd_europe_by_road",
1733
+ "easypost_interlink_parcel_dpd_europe_by_road",
1734
+ ),
1735
+ (
1736
+ "easypost_interlink_parcel_next_day",
1737
+ "easypost_interlink_parcel_next_day",
1738
+ ),
1739
+ (
1740
+ "easypost_interlink_parcel_return",
1741
+ "easypost_interlink_parcel_return",
1742
+ ),
1743
+ (
1744
+ "easypost_interlink_parcel_return_to_shop",
1745
+ "easypost_interlink_parcel_return_to_shop",
1746
+ ),
1747
+ (
1748
+ "easypost_interlink_parcel_saturday",
1749
+ "easypost_interlink_parcel_saturday",
1750
+ ),
1751
+ (
1752
+ "easypost_interlink_parcel_saturday_by10",
1753
+ "easypost_interlink_parcel_saturday_by10",
1754
+ ),
1755
+ (
1756
+ "easypost_interlink_parcel_saturday_by10_30",
1757
+ "easypost_interlink_parcel_saturday_by10_30",
1758
+ ),
1759
+ (
1760
+ "easypost_interlink_parcel_saturday_by12",
1761
+ "easypost_interlink_parcel_saturday_by12",
1762
+ ),
1763
+ (
1764
+ "easypost_interlink_parcel_ship_to_shop",
1765
+ "easypost_interlink_parcel_ship_to_shop",
1766
+ ),
1767
+ (
1768
+ "easypost_interlink_parcel_sunday",
1769
+ "easypost_interlink_parcel_sunday",
1770
+ ),
1771
+ (
1772
+ "easypost_interlink_parcel_sunday_by12",
1773
+ "easypost_interlink_parcel_sunday_by12",
1774
+ ),
1775
+ (
1776
+ "easypost_interlink_parcel_two_day",
1777
+ "easypost_interlink_parcel_two_day",
1778
+ ),
1779
+ (
1780
+ "easypost_interlink_pickup_parcel_dpd_europe_by_road",
1781
+ "easypost_interlink_pickup_parcel_dpd_europe_by_road",
1782
+ ),
1783
+ ("easypost_lasership_weekend", "easypost_lasership_weekend"),
1784
+ ("easypost_loomis_ground", "easypost_loomis_ground"),
1785
+ ("easypost_loomis_express1800", "easypost_loomis_express1800"),
1786
+ ("easypost_loomis_express1200", "easypost_loomis_express1200"),
1787
+ ("easypost_loomis_express900", "easypost_loomis_express900"),
1788
+ ("easypost_lso_ground_early", "easypost_lso_ground_early"),
1789
+ ("easypost_lso_ground_basic", "easypost_lso_ground_basic"),
1790
+ ("easypost_lso_priority_basic", "easypost_lso_priority_basic"),
1791
+ ("easypost_lso_priority_early", "easypost_lso_priority_early"),
1792
+ (
1793
+ "easypost_lso_priority_saturday",
1794
+ "easypost_lso_priority_saturday",
1795
+ ),
1796
+ ("easypost_lso_priority2nd_day", "easypost_lso_priority2nd_day"),
1797
+ (
1798
+ "easypost_newgistics_parcel_select",
1799
+ "easypost_newgistics_parcel_select",
1800
+ ),
1801
+ (
1802
+ "easypost_newgistics_parcel_select_lightweight",
1803
+ "easypost_newgistics_parcel_select_lightweight",
1804
+ ),
1805
+ ("easypost_newgistics_express", "easypost_newgistics_express"),
1806
+ (
1807
+ "easypost_newgistics_first_class_mail",
1808
+ "easypost_newgistics_first_class_mail",
1809
+ ),
1810
+ (
1811
+ "easypost_newgistics_priority_mail",
1812
+ "easypost_newgistics_priority_mail",
1813
+ ),
1814
+ (
1815
+ "easypost_newgistics_bound_printed_matter",
1816
+ "easypost_newgistics_bound_printed_matter",
1817
+ ),
1818
+ ("easypost_ontrac_sunrise", "easypost_ontrac_sunrise"),
1819
+ ("easypost_ontrac_gold", "easypost_ontrac_gold"),
1820
+ (
1821
+ "easypost_ontrac_on_trac_ground",
1822
+ "easypost_ontrac_on_trac_ground",
1823
+ ),
1824
+ (
1825
+ "easypost_ontrac_palletized_freight",
1826
+ "easypost_ontrac_palletized_freight",
1827
+ ),
1828
+ ("easypost_osm_first", "easypost_osm_first"),
1829
+ ("easypost_osm_expedited", "easypost_osm_expedited"),
1830
+ ("easypost_osm_bpm", "easypost_osm_bpm"),
1831
+ ("easypost_osm_media_mail", "easypost_osm_media_mail"),
1832
+ ("easypost_osm_marketing_parcel", "easypost_osm_marketing_parcel"),
1833
+ (
1834
+ "easypost_osm_marketing_parcel_tracked",
1835
+ "easypost_osm_marketing_parcel_tracked",
1836
+ ),
1837
+ ("easypost_parcll_economy_west", "easypost_parcll_economy_west"),
1838
+ ("easypost_parcll_economy_east", "easypost_parcll_economy_east"),
1839
+ (
1840
+ "easypost_parcll_economy_central",
1841
+ "easypost_parcll_economy_central",
1842
+ ),
1843
+ (
1844
+ "easypost_parcll_economy_northeast",
1845
+ "easypost_parcll_economy_northeast",
1846
+ ),
1847
+ ("easypost_parcll_economy_south", "easypost_parcll_economy_south"),
1848
+ (
1849
+ "easypost_parcll_expedited_west",
1850
+ "easypost_parcll_expedited_west",
1851
+ ),
1852
+ (
1853
+ "easypost_parcll_expedited_northeast",
1854
+ "easypost_parcll_expedited_northeast",
1855
+ ),
1856
+ ("easypost_parcll_regional_west", "easypost_parcll_regional_west"),
1857
+ ("easypost_parcll_regional_east", "easypost_parcll_regional_east"),
1858
+ (
1859
+ "easypost_parcll_regional_central",
1860
+ "easypost_parcll_regional_central",
1861
+ ),
1862
+ (
1863
+ "easypost_parcll_regional_northeast",
1864
+ "easypost_parcll_regional_northeast",
1865
+ ),
1866
+ (
1867
+ "easypost_parcll_regional_south",
1868
+ "easypost_parcll_regional_south",
1869
+ ),
1870
+ (
1871
+ "easypost_parcll_us_to_canada_economy_west",
1872
+ "easypost_parcll_us_to_canada_economy_west",
1873
+ ),
1874
+ (
1875
+ "easypost_parcll_us_to_canada_economy_central",
1876
+ "easypost_parcll_us_to_canada_economy_central",
1877
+ ),
1878
+ (
1879
+ "easypost_parcll_us_to_canada_economy_northeast",
1880
+ "easypost_parcll_us_to_canada_economy_northeast",
1881
+ ),
1882
+ (
1883
+ "easypost_parcll_us_to_europe_economy_west",
1884
+ "easypost_parcll_us_to_europe_economy_west",
1885
+ ),
1886
+ (
1887
+ "easypost_parcll_us_to_europe_economy_northeast",
1888
+ "easypost_parcll_us_to_europe_economy_northeast",
1889
+ ),
1890
+ ("easypost_purolator_express", "easypost_purolator_express"),
1891
+ (
1892
+ "easypost_purolator_express12_pm",
1893
+ "easypost_purolator_express12_pm",
1894
+ ),
1895
+ (
1896
+ "easypost_purolator_express_pack12_pm",
1897
+ "easypost_purolator_express_pack12_pm",
1898
+ ),
1899
+ (
1900
+ "easypost_purolator_express_box12_pm",
1901
+ "easypost_purolator_express_box12_pm",
1902
+ ),
1903
+ (
1904
+ "easypost_purolator_express_envelope12_pm",
1905
+ "easypost_purolator_express_envelope12_pm",
1906
+ ),
1907
+ (
1908
+ "easypost_purolator_express1030_am",
1909
+ "easypost_purolator_express1030_am",
1910
+ ),
1911
+ (
1912
+ "easypost_purolator_express9_am",
1913
+ "easypost_purolator_express9_am",
1914
+ ),
1915
+ (
1916
+ "easypost_purolator_express_box",
1917
+ "easypost_purolator_express_box",
1918
+ ),
1919
+ (
1920
+ "easypost_purolator_express_box1030_am",
1921
+ "easypost_purolator_express_box1030_am",
1922
+ ),
1923
+ (
1924
+ "easypost_purolator_express_box9_am",
1925
+ "easypost_purolator_express_box9_am",
1926
+ ),
1927
+ (
1928
+ "easypost_purolator_express_box_evening",
1929
+ "easypost_purolator_express_box_evening",
1930
+ ),
1931
+ (
1932
+ "easypost_purolator_express_box_international",
1933
+ "easypost_purolator_express_box_international",
1934
+ ),
1935
+ (
1936
+ "easypost_purolator_express_box_international1030_am",
1937
+ "easypost_purolator_express_box_international1030_am",
1938
+ ),
1939
+ (
1940
+ "easypost_purolator_express_box_international1200",
1941
+ "easypost_purolator_express_box_international1200",
1942
+ ),
1943
+ (
1944
+ "easypost_purolator_express_box_international9_am",
1945
+ "easypost_purolator_express_box_international9_am",
1946
+ ),
1947
+ (
1948
+ "easypost_purolator_express_box_us",
1949
+ "easypost_purolator_express_box_us",
1950
+ ),
1951
+ (
1952
+ "easypost_purolator_express_box_us1030_am",
1953
+ "easypost_purolator_express_box_us1030_am",
1954
+ ),
1955
+ (
1956
+ "easypost_purolator_express_box_us1200",
1957
+ "easypost_purolator_express_box_us1200",
1958
+ ),
1959
+ (
1960
+ "easypost_purolator_express_box_us9_am",
1961
+ "easypost_purolator_express_box_us9_am",
1962
+ ),
1963
+ (
1964
+ "easypost_purolator_express_envelope",
1965
+ "easypost_purolator_express_envelope",
1966
+ ),
1967
+ (
1968
+ "easypost_purolator_express_envelope1030_am",
1969
+ "easypost_purolator_express_envelope1030_am",
1970
+ ),
1971
+ (
1972
+ "easypost_purolator_express_envelope9_am",
1973
+ "easypost_purolator_express_envelope9_am",
1974
+ ),
1975
+ (
1976
+ "easypost_purolator_express_envelope_evening",
1977
+ "easypost_purolator_express_envelope_evening",
1978
+ ),
1979
+ (
1980
+ "easypost_purolator_express_envelope_international",
1981
+ "easypost_purolator_express_envelope_international",
1982
+ ),
1983
+ (
1984
+ "easypost_purolator_express_envelope_international1030_am",
1985
+ "easypost_purolator_express_envelope_international1030_am",
1986
+ ),
1987
+ (
1988
+ "easypost_purolator_express_envelope_international1200",
1989
+ "easypost_purolator_express_envelope_international1200",
1990
+ ),
1991
+ (
1992
+ "easypost_purolator_express_envelope_international9_am",
1993
+ "easypost_purolator_express_envelope_international9_am",
1994
+ ),
1995
+ (
1996
+ "easypost_purolator_express_envelope_us",
1997
+ "easypost_purolator_express_envelope_us",
1998
+ ),
1999
+ (
2000
+ "easypost_purolator_express_envelope_us1030_am",
2001
+ "easypost_purolator_express_envelope_us1030_am",
2002
+ ),
2003
+ (
2004
+ "easypost_purolator_express_envelope_us1200",
2005
+ "easypost_purolator_express_envelope_us1200",
2006
+ ),
2007
+ (
2008
+ "easypost_purolator_express_envelope_us9_am",
2009
+ "easypost_purolator_express_envelope_us9_am",
2010
+ ),
2011
+ (
2012
+ "easypost_purolator_express_evening",
2013
+ "easypost_purolator_express_evening",
2014
+ ),
2015
+ (
2016
+ "easypost_purolator_express_international",
2017
+ "easypost_purolator_express_international",
2018
+ ),
2019
+ (
2020
+ "easypost_purolator_express_international1030_am",
2021
+ "easypost_purolator_express_international1030_am",
2022
+ ),
2023
+ (
2024
+ "easypost_purolator_express_international1200",
2025
+ "easypost_purolator_express_international1200",
2026
+ ),
2027
+ (
2028
+ "easypost_purolator_express_international9_am",
2029
+ "easypost_purolator_express_international9_am",
2030
+ ),
2031
+ (
2032
+ "easypost_purolator_express_pack",
2033
+ "easypost_purolator_express_pack",
2034
+ ),
2035
+ (
2036
+ "easypost_purolator_express_pack1030_am",
2037
+ "easypost_purolator_express_pack1030_am",
2038
+ ),
2039
+ (
2040
+ "easypost_purolator_express_pack9_am",
2041
+ "easypost_purolator_express_pack9_am",
2042
+ ),
2043
+ (
2044
+ "easypost_purolator_express_pack_evening",
2045
+ "easypost_purolator_express_pack_evening",
2046
+ ),
2047
+ (
2048
+ "easypost_purolator_express_pack_international",
2049
+ "easypost_purolator_express_pack_international",
2050
+ ),
2051
+ (
2052
+ "easypost_purolator_express_pack_international1030_am",
2053
+ "easypost_purolator_express_pack_international1030_am",
2054
+ ),
2055
+ (
2056
+ "easypost_purolator_express_pack_international1200",
2057
+ "easypost_purolator_express_pack_international1200",
2058
+ ),
2059
+ (
2060
+ "easypost_purolator_express_pack_international9_am",
2061
+ "easypost_purolator_express_pack_international9_am",
2062
+ ),
2063
+ (
2064
+ "easypost_purolator_express_pack_us",
2065
+ "easypost_purolator_express_pack_us",
2066
+ ),
2067
+ (
2068
+ "easypost_purolator_express_pack_us1030_am",
2069
+ "easypost_purolator_express_pack_us1030_am",
2070
+ ),
2071
+ (
2072
+ "easypost_purolator_express_pack_us1200",
2073
+ "easypost_purolator_express_pack_us1200",
2074
+ ),
2075
+ (
2076
+ "easypost_purolator_express_pack_us9_am",
2077
+ "easypost_purolator_express_pack_us9_am",
2078
+ ),
2079
+ ("easypost_purolator_express_us", "easypost_purolator_express_us"),
2080
+ (
2081
+ "easypost_purolator_express_us1030_am",
2082
+ "easypost_purolator_express_us1030_am",
2083
+ ),
2084
+ (
2085
+ "easypost_purolator_express_us1200",
2086
+ "easypost_purolator_express_us1200",
2087
+ ),
2088
+ (
2089
+ "easypost_purolator_express_us9_am",
2090
+ "easypost_purolator_express_us9_am",
2091
+ ),
2092
+ ("easypost_purolator_ground", "easypost_purolator_ground"),
2093
+ (
2094
+ "easypost_purolator_ground1030_am",
2095
+ "easypost_purolator_ground1030_am",
2096
+ ),
2097
+ ("easypost_purolator_ground9_am", "easypost_purolator_ground9_am"),
2098
+ (
2099
+ "easypost_purolator_ground_distribution",
2100
+ "easypost_purolator_ground_distribution",
2101
+ ),
2102
+ (
2103
+ "easypost_purolator_ground_evening",
2104
+ "easypost_purolator_ground_evening",
2105
+ ),
2106
+ (
2107
+ "easypost_purolator_ground_regional",
2108
+ "easypost_purolator_ground_regional",
2109
+ ),
2110
+ ("easypost_purolator_ground_us", "easypost_purolator_ground_us"),
2111
+ (
2112
+ "easypost_royalmail_international_signed",
2113
+ "easypost_royalmail_international_signed",
2114
+ ),
2115
+ (
2116
+ "easypost_royalmail_international_tracked",
2117
+ "easypost_royalmail_international_tracked",
2118
+ ),
2119
+ (
2120
+ "easypost_royalmail_international_tracked_and_signed",
2121
+ "easypost_royalmail_international_tracked_and_signed",
2122
+ ),
2123
+ ("easypost_royalmail_1st_class", "easypost_royalmail_1st_class"),
2124
+ (
2125
+ "easypost_royalmail_1st_class_signed_for",
2126
+ "easypost_royalmail_1st_class_signed_for",
2127
+ ),
2128
+ ("easypost_royalmail_2nd_class", "easypost_royalmail_2nd_class"),
2129
+ (
2130
+ "easypost_royalmail_2nd_class_signed_for",
2131
+ "easypost_royalmail_2nd_class_signed_for",
2132
+ ),
2133
+ (
2134
+ "easypost_royalmail_royal_mail24",
2135
+ "easypost_royalmail_royal_mail24",
2136
+ ),
2137
+ (
2138
+ "easypost_royalmail_royal_mail24_signed_for",
2139
+ "easypost_royalmail_royal_mail24_signed_for",
2140
+ ),
2141
+ (
2142
+ "easypost_royalmail_royal_mail48",
2143
+ "easypost_royalmail_royal_mail48",
2144
+ ),
2145
+ (
2146
+ "easypost_royalmail_royal_mail48_signed_for",
2147
+ "easypost_royalmail_royal_mail48_signed_for",
2148
+ ),
2149
+ (
2150
+ "easypost_royalmail_special_delivery_guaranteed1pm",
2151
+ "easypost_royalmail_special_delivery_guaranteed1pm",
2152
+ ),
2153
+ (
2154
+ "easypost_royalmail_special_delivery_guaranteed9am",
2155
+ "easypost_royalmail_special_delivery_guaranteed9am",
2156
+ ),
2157
+ (
2158
+ "easypost_royalmail_standard_letter1st_class",
2159
+ "easypost_royalmail_standard_letter1st_class",
2160
+ ),
2161
+ (
2162
+ "easypost_royalmail_standard_letter1st_class_signed_for",
2163
+ "easypost_royalmail_standard_letter1st_class_signed_for",
2164
+ ),
2165
+ (
2166
+ "easypost_royalmail_standard_letter2nd_class",
2167
+ "easypost_royalmail_standard_letter2nd_class",
2168
+ ),
2169
+ (
2170
+ "easypost_royalmail_standard_letter2nd_class_signed_for",
2171
+ "easypost_royalmail_standard_letter2nd_class_signed_for",
2172
+ ),
2173
+ ("easypost_royalmail_tracked24", "easypost_royalmail_tracked24"),
2174
+ (
2175
+ "easypost_royalmail_tracked24_high_volume",
2176
+ "easypost_royalmail_tracked24_high_volume",
2177
+ ),
2178
+ (
2179
+ "easypost_royalmail_tracked24_high_volume_signature",
2180
+ "easypost_royalmail_tracked24_high_volume_signature",
2181
+ ),
2182
+ (
2183
+ "easypost_royalmail_tracked24_signature",
2184
+ "easypost_royalmail_tracked24_signature",
2185
+ ),
2186
+ ("easypost_royalmail_tracked48", "easypost_royalmail_tracked48"),
2187
+ (
2188
+ "easypost_royalmail_tracked48_high_volume",
2189
+ "easypost_royalmail_tracked48_high_volume",
2190
+ ),
2191
+ (
2192
+ "easypost_royalmail_tracked48_high_volume_signature",
2193
+ "easypost_royalmail_tracked48_high_volume_signature",
2194
+ ),
2195
+ (
2196
+ "easypost_royalmail_tracked48_signature",
2197
+ "easypost_royalmail_tracked48_signature",
2198
+ ),
2199
+ (
2200
+ "easypost_seko_ecommerce_standard_tracked",
2201
+ "easypost_seko_ecommerce_standard_tracked",
2202
+ ),
2203
+ (
2204
+ "easypost_seko_ecommerce_express_tracked",
2205
+ "easypost_seko_ecommerce_express_tracked",
2206
+ ),
2207
+ (
2208
+ "easypost_seko_domestic_express",
2209
+ "easypost_seko_domestic_express",
2210
+ ),
2211
+ (
2212
+ "easypost_seko_domestic_standard",
2213
+ "easypost_seko_domestic_standard",
2214
+ ),
2215
+ ("easypost_sendle_easy", "easypost_sendle_easy"),
2216
+ ("easypost_sendle_pro", "easypost_sendle_pro"),
2217
+ ("easypost_sendle_plus", "easypost_sendle_plus"),
2218
+ (
2219
+ "easypost_sfexpress_international_standard_express_doc",
2220
+ "easypost_sfexpress_international_standard_express_doc",
2221
+ ),
2222
+ (
2223
+ "easypost_sfexpress_international_standard_express_parcel",
2224
+ "easypost_sfexpress_international_standard_express_parcel",
2225
+ ),
2226
+ (
2227
+ "easypost_sfexpress_international_economy_express_pilot",
2228
+ "easypost_sfexpress_international_economy_express_pilot",
2229
+ ),
2230
+ (
2231
+ "easypost_sfexpress_international_economy_express_doc",
2232
+ "easypost_sfexpress_international_economy_express_doc",
2233
+ ),
2234
+ ("easypost_speedee_delivery", "easypost_speedee_delivery"),
2235
+ ("easypost_startrack_express", "easypost_startrack_express"),
2236
+ ("easypost_startrack_premium", "easypost_startrack_premium"),
2237
+ (
2238
+ "easypost_startrack_fixed_price_premium",
2239
+ "easypost_startrack_fixed_price_premium",
2240
+ ),
2241
+ (
2242
+ "easypost_tforce_same_day_white_glove",
2243
+ "easypost_tforce_same_day_white_glove",
2244
+ ),
2245
+ (
2246
+ "easypost_tforce_next_day_white_glove",
2247
+ "easypost_tforce_next_day_white_glove",
2248
+ ),
2249
+ ("easypost_uds_delivery_service", "easypost_uds_delivery_service"),
2250
+ ("easypost_ups_standard", "easypost_ups_standard"),
2251
+ ("easypost_ups_saver", "easypost_ups_saver"),
2252
+ ("easypost_ups_express_plus", "easypost_ups_express_plus"),
2253
+ ("easypost_ups_next_day_air", "easypost_ups_next_day_air"),
2254
+ (
2255
+ "easypost_ups_next_day_air_saver",
2256
+ "easypost_ups_next_day_air_saver",
2257
+ ),
2258
+ (
2259
+ "easypost_ups_next_day_air_early_am",
2260
+ "easypost_ups_next_day_air_early_am",
2261
+ ),
2262
+ ("easypost_ups_2nd_day_air", "easypost_ups_2nd_day_air"),
2263
+ ("easypost_ups_2nd_day_air_am", "easypost_ups_2nd_day_air_am"),
2264
+ ("easypost_ups_3_day_select", "easypost_ups_3_day_select"),
2265
+ (
2266
+ "easypost_ups_mail_expedited_mail_innovations",
2267
+ "easypost_ups_mail_expedited_mail_innovations",
2268
+ ),
2269
+ (
2270
+ "easypost_ups_mail_priority_mail_innovations",
2271
+ "easypost_ups_mail_priority_mail_innovations",
2272
+ ),
2273
+ (
2274
+ "easypost_ups_mail_economy_mail_innovations",
2275
+ "easypost_ups_mail_economy_mail_innovations",
2276
+ ),
2277
+ ("easypost_usps_library_mail", "easypost_usps_library_mail"),
2278
+ (
2279
+ "easypost_usps_first_class_mail_international",
2280
+ "easypost_usps_first_class_mail_international",
2281
+ ),
2282
+ (
2283
+ "easypost_usps_first_class_package_international_service",
2284
+ "easypost_usps_first_class_package_international_service",
2285
+ ),
2286
+ (
2287
+ "easypost_usps_priority_mail_international",
2288
+ "easypost_usps_priority_mail_international",
2289
+ ),
2290
+ (
2291
+ "easypost_usps_express_mail_international",
2292
+ "easypost_usps_express_mail_international",
2293
+ ),
2294
+ ("easypost_veho_next_day", "easypost_veho_next_day"),
2295
+ ("easypost_veho_same_day", "easypost_veho_same_day"),
2296
+ (
2297
+ "eshipper_aramex_economy_document_express",
2298
+ "eshipper_aramex_economy_document_express",
2299
+ ),
2300
+ (
2301
+ "eshipper_aramex_economy_parcel_express",
2302
+ "eshipper_aramex_economy_parcel_express",
2303
+ ),
2304
+ (
2305
+ "eshipper_aramex_priority_letter_express",
2306
+ "eshipper_aramex_priority_letter_express",
2307
+ ),
2308
+ (
2309
+ "eshipper_aramex_priority_parcel_express",
2310
+ "eshipper_aramex_priority_parcel_express",
2311
+ ),
2312
+ (
2313
+ "eshipper_canada_post_air_parcel_intl",
2314
+ "eshipper_canada_post_air_parcel_intl",
2315
+ ),
2316
+ (
2317
+ "eshipper_canada_post_expedited",
2318
+ "eshipper_canada_post_expedited",
2319
+ ),
2320
+ (
2321
+ "eshipper_canada_post_expedited_parcel_usa",
2322
+ "eshipper_canada_post_expedited_parcel_usa",
2323
+ ),
2324
+ (
2325
+ "eshipper_canada_post_priority_courier",
2326
+ "eshipper_canada_post_priority_courier",
2327
+ ),
2328
+ ("eshipper_canada_post_regular", "eshipper_canada_post_regular"),
2329
+ (
2330
+ "eshipper_canada_post_small_packet",
2331
+ "eshipper_canada_post_small_packet",
2332
+ ),
2333
+ (
2334
+ "eshipper_canada_post_small_packet_international_air",
2335
+ "eshipper_canada_post_small_packet_international_air",
2336
+ ),
2337
+ (
2338
+ "eshipper_canada_post_small_packet_international_surface",
2339
+ "eshipper_canada_post_small_packet_international_surface",
2340
+ ),
2341
+ (
2342
+ "eshipper_canada_post_surface_parcel_intl",
2343
+ "eshipper_canada_post_surface_parcel_intl",
2344
+ ),
2345
+ (
2346
+ "eshipper_canada_post_xpress_post",
2347
+ "eshipper_canada_post_xpress_post",
2348
+ ),
2349
+ (
2350
+ "eshipper_canada_post_xpress_post_intl",
2351
+ "eshipper_canada_post_xpress_post_intl",
2352
+ ),
2353
+ (
2354
+ "eshipper_canada_post_xpress_post_usa",
2355
+ "eshipper_canada_post_xpress_post_usa",
2356
+ ),
2357
+ (
2358
+ "eshipper_canada_post_xpresspost",
2359
+ "eshipper_canada_post_xpresspost",
2360
+ ),
2361
+ (
2362
+ "eshipper_canpar_express_letter",
2363
+ "eshipper_canpar_express_letter",
2364
+ ),
2365
+ ("eshipper_canpar_express_pak", "eshipper_canpar_express_pak"),
2366
+ (
2367
+ "eshipper_canpar_express_parcel",
2368
+ "eshipper_canpar_express_parcel",
2369
+ ),
2370
+ ("eshipper_canpar_ground", "eshipper_canpar_ground"),
2371
+ ("eshipper_canpar_international", "eshipper_canpar_international"),
2372
+ ("eshipper_canpar_select_letter", "eshipper_canpar_select_letter"),
2373
+ ("eshipper_canpar_select_pak", "eshipper_canpar_select_pak"),
2374
+ ("eshipper_canpar_select_parcel", "eshipper_canpar_select_parcel"),
2375
+ ("eshipper_canpar_usa", "eshipper_canpar_usa"),
2376
+ (
2377
+ "eshipper_canpar_usa_select_letter",
2378
+ "eshipper_canpar_usa_select_letter",
2379
+ ),
2380
+ (
2381
+ "eshipper_canpar_usa_select_pak",
2382
+ "eshipper_canpar_usa_select_pak",
2383
+ ),
2384
+ (
2385
+ "eshipper_canpar_usa_select_parcel",
2386
+ "eshipper_canpar_usa_select_parcel",
2387
+ ),
2388
+ ("eshipper_cpx_canada_post", "eshipper_cpx_canada_post"),
2389
+ ("eshipper_day_ross_ltl", "eshipper_day_ross_ltl"),
2390
+ ("eshipper_dhl_dhl_ground", "eshipper_dhl_dhl_ground"),
2391
+ ("eshipper_dhl_economy_select", "eshipper_dhl_economy_select"),
2392
+ ("eshipper_dhl_esi_export", "eshipper_dhl_esi_export"),
2393
+ ("eshipper_dhl_express_1030am", "eshipper_dhl_express_1030am"),
2394
+ ("eshipper_dhl_express_12pm", "eshipper_dhl_express_12pm"),
2395
+ ("eshipper_dhl_express_900", "eshipper_dhl_express_900"),
2396
+ ("eshipper_dhl_express_9am", "eshipper_dhl_express_9am"),
2397
+ ("eshipper_dhl_express_envelope", "eshipper_dhl_express_envelope"),
2398
+ (
2399
+ "eshipper_dhl_express_worldwide",
2400
+ "eshipper_dhl_express_worldwide",
2401
+ ),
2402
+ ("eshipper_dhl_import_express", "eshipper_dhl_import_express"),
2403
+ (
2404
+ "eshipper_dhl_import_express_12pm",
2405
+ "eshipper_dhl_import_express_12pm",
2406
+ ),
2407
+ (
2408
+ "eshipper_dhl_import_express_9am",
2409
+ "eshipper_dhl_import_express_9am",
2410
+ ),
2411
+ ("eshipper_ltl_apex_v", "eshipper_ltl_apex_v"),
2412
+ ("eshipper_ltl_apex_trucking", "eshipper_ltl_apex_trucking"),
2413
+ ("eshipper_ltl_apex_trucking_v", "eshipper_ltl_apex_trucking_v"),
2414
+ ("eshipper_ltl_fastfrate_rail", "eshipper_ltl_fastfrate_rail"),
2415
+ (
2416
+ "eshipper_ltl_kindersley_expedited",
2417
+ "eshipper_ltl_kindersley_expedited",
2418
+ ),
2419
+ ("eshipper_ltl_kindersley_rail", "eshipper_ltl_kindersley_rail"),
2420
+ (
2421
+ "eshipper_ltl_kindersley_regular",
2422
+ "eshipper_ltl_kindersley_regular",
2423
+ ),
2424
+ ("eshipper_ltl_kindersley_road", "eshipper_ltl_kindersley_road"),
2425
+ ("eshipper_ltl_kingsway_road", "eshipper_ltl_kingsway_road"),
2426
+ ("eshipper_ltl_m_o_eastbound", "eshipper_ltl_m_o_eastbound"),
2427
+ ("eshipper_ltl_mo_rail", "eshipper_ltl_mo_rail"),
2428
+ (
2429
+ "eshipper_ltl_national_fastfreight_rail",
2430
+ "eshipper_ltl_national_fastfreight_rail",
2431
+ ),
2432
+ (
2433
+ "eshipper_ltl_national_fastfreight_road",
2434
+ "eshipper_ltl_national_fastfreight_road",
2435
+ ),
2436
+ ("eshipper_ltl_vitran_rail", "eshipper_ltl_vitran_rail"),
2437
+ ("eshipper_ltl_vitran_road", "eshipper_ltl_vitran_road"),
2438
+ (
2439
+ "eshipper_ltl_western_canada_rail",
2440
+ "eshipper_ltl_western_canada_rail",
2441
+ ),
2442
+ (
2443
+ "eshipper_federal_express_2day_freight",
2444
+ "eshipper_federal_express_2day_freight",
2445
+ ),
2446
+ (
2447
+ "eshipper_federal_express_3day_freight",
2448
+ "eshipper_federal_express_3day_freight",
2449
+ ),
2450
+ (
2451
+ "eshipper_federal_express_fedex_2nd_day",
2452
+ "eshipper_federal_express_fedex_2nd_day",
2453
+ ),
2454
+ (
2455
+ "eshipper_federal_express_fedex_economy",
2456
+ "eshipper_federal_express_fedex_economy",
2457
+ ),
2458
+ (
2459
+ "eshipper_federal_express_fedex_first_overnight",
2460
+ "eshipper_federal_express_fedex_first_overnight",
2461
+ ),
2462
+ (
2463
+ "eshipper_federal_express_fedex_ground",
2464
+ "eshipper_federal_express_fedex_ground",
2465
+ ),
2466
+ (
2467
+ "eshipper_federal_express_fedex_ground_us",
2468
+ "eshipper_federal_express_fedex_ground_us",
2469
+ ),
2470
+ (
2471
+ "eshipper_federal_express_fedex_international_priority",
2472
+ "eshipper_federal_express_fedex_international_priority",
2473
+ ),
2474
+ (
2475
+ "eshipper_federal_express_fedex_international_priority_express",
2476
+ "eshipper_federal_express_fedex_international_priority_express",
2477
+ ),
2478
+ (
2479
+ "eshipper_federal_express_fedex_intl_economy",
2480
+ "eshipper_federal_express_fedex_intl_economy",
2481
+ ),
2482
+ (
2483
+ "eshipper_federal_express_fedex_intl_economy_freight",
2484
+ "eshipper_federal_express_fedex_intl_economy_freight",
2485
+ ),
2486
+ (
2487
+ "eshipper_federal_express_fedex_intl_priority",
2488
+ "eshipper_federal_express_fedex_intl_priority",
2489
+ ),
2490
+ (
2491
+ "eshipper_federal_express_fedex_intl_priority_express",
2492
+ "eshipper_federal_express_fedex_intl_priority_express",
2493
+ ),
2494
+ (
2495
+ "eshipper_federal_express_fedex_intl_priority_freight",
2496
+ "eshipper_federal_express_fedex_intl_priority_freight",
2497
+ ),
2498
+ (
2499
+ "eshipper_federal_express_fedex_priority",
2500
+ "eshipper_federal_express_fedex_priority",
2501
+ ),
2502
+ (
2503
+ "eshipper_federal_express_fedex_standard_overnight",
2504
+ "eshipper_federal_express_fedex_standard_overnight",
2505
+ ),
2506
+ ("eshipper_flashbird_ground", "eshipper_flashbird_ground"),
2507
+ ("eshipper_fleet_optics_ground", "eshipper_fleet_optics_ground"),
2508
+ (
2509
+ "eshipper_project44_a_duie_pyle",
2510
+ "eshipper_project44_a_duie_pyle",
2511
+ ),
2512
+ (
2513
+ "eshipper_project44_aaa_cooper_transportation",
2514
+ "eshipper_project44_aaa_cooper_transportation",
2515
+ ),
2516
+ (
2517
+ "eshipper_project44_aberdeen_express",
2518
+ "eshipper_project44_aberdeen_express",
2519
+ ),
2520
+ ("eshipper_project44_abfs", "eshipper_project44_abfs"),
2521
+ (
2522
+ "eshipper_project44_averitt_express",
2523
+ "eshipper_project44_averitt_express",
2524
+ ),
2525
+ (
2526
+ "eshipper_project44_brown_transfer_company",
2527
+ "eshipper_project44_brown_transfer_company",
2528
+ ),
2529
+ (
2530
+ "eshipper_project44_central_freight_lines",
2531
+ "eshipper_project44_central_freight_lines",
2532
+ ),
2533
+ (
2534
+ "eshipper_project44_central_transport",
2535
+ "eshipper_project44_central_transport",
2536
+ ),
2537
+ (
2538
+ "eshipper_project44_chicago_suburban_express",
2539
+ "eshipper_project44_chicago_suburban_express",
2540
+ ),
2541
+ (
2542
+ "eshipper_project44_clear_lane_freight",
2543
+ "eshipper_project44_clear_lane_freight",
2544
+ ),
2545
+ (
2546
+ "eshipper_project44_con_way_freight",
2547
+ "eshipper_project44_con_way_freight",
2548
+ ),
2549
+ (
2550
+ "eshipper_project44_crosscountry_courier",
2551
+ "eshipper_project44_crosscountry_courier",
2552
+ ),
2553
+ ("eshipper_project44_day_ross", "eshipper_project44_day_ross"),
2554
+ ("eshipper_project44_day_ross_v", "eshipper_project44_day_ross_v"),
2555
+ (
2556
+ "eshipper_project44_dayton_freight_lines",
2557
+ "eshipper_project44_dayton_freight_lines",
2558
+ ),
2559
+ (
2560
+ "eshipper_project44_dependable_highway_express",
2561
+ "eshipper_project44_dependable_highway_express",
2562
+ ),
2563
+ (
2564
+ "eshipper_project44_dohrn_transfer_company",
2565
+ "eshipper_project44_dohrn_transfer_company",
2566
+ ),
2567
+ (
2568
+ "eshipper_project44_dugan_truck_line",
2569
+ "eshipper_project44_dugan_truck_line",
2570
+ ),
2571
+ (
2572
+ "eshipper_project44_estes_express_lines",
2573
+ "eshipper_project44_estes_express_lines",
2574
+ ),
2575
+ (
2576
+ "eshipper_project44_expedited_freight_systems",
2577
+ "eshipper_project44_expedited_freight_systems",
2578
+ ),
2579
+ (
2580
+ "eshipper_project44_fedex_freight_canada",
2581
+ "eshipper_project44_fedex_freight_canada",
2582
+ ),
2583
+ (
2584
+ "eshipper_project44_fedex_freight_east",
2585
+ "eshipper_project44_fedex_freight_east",
2586
+ ),
2587
+ (
2588
+ "eshipper_project44_fedex_freight_national_canada",
2589
+ "eshipper_project44_fedex_freight_national_canada",
2590
+ ),
2591
+ (
2592
+ "eshipper_project44_fedex_freight_national_usa",
2593
+ "eshipper_project44_fedex_freight_national_usa",
2594
+ ),
2595
+ (
2596
+ "eshipper_project44_fedex_freight_usa",
2597
+ "eshipper_project44_fedex_freight_usa",
2598
+ ),
2599
+ (
2600
+ "eshipper_project44_fedex_national",
2601
+ "eshipper_project44_fedex_national",
2602
+ ),
2603
+ ("eshipper_project44_forwardair", "eshipper_project44_forwardair"),
2604
+ (
2605
+ "eshipper_project44_frontline_freight",
2606
+ "eshipper_project44_frontline_freight",
2607
+ ),
2608
+ (
2609
+ "eshipper_project44_holland_motor_express",
2610
+ "eshipper_project44_holland_motor_express",
2611
+ ),
2612
+ (
2613
+ "eshipper_project44_lakeville_motor_express",
2614
+ "eshipper_project44_lakeville_motor_express",
2615
+ ),
2616
+ (
2617
+ "eshipper_project44_manitoulin_tlx_inc",
2618
+ "eshipper_project44_manitoulin_tlx_inc",
2619
+ ),
2620
+ (
2621
+ "eshipper_project44_midwest_motor_express",
2622
+ "eshipper_project44_midwest_motor_express",
2623
+ ),
2624
+ (
2625
+ "eshipper_project44_monroe_transportation_services",
2626
+ "eshipper_project44_monroe_transportation_services",
2627
+ ),
2628
+ (
2629
+ "eshipper_project44_n_m_transfer",
2630
+ "eshipper_project44_n_m_transfer",
2631
+ ),
2632
+ (
2633
+ "eshipper_project44_new_england_motor_freight",
2634
+ "eshipper_project44_new_england_motor_freight",
2635
+ ),
2636
+ (
2637
+ "eshipper_project44_new_penn_motor_express",
2638
+ "eshipper_project44_new_penn_motor_express",
2639
+ ),
2640
+ ("eshipper_project44_pitt_ohio", "eshipper_project44_pitt_ohio"),
2641
+ ("eshipper_project44_polaris", "eshipper_project44_polaris"),
2642
+ (
2643
+ "eshipper_project44_purolator_freight",
2644
+ "eshipper_project44_purolator_freight",
2645
+ ),
2646
+ (
2647
+ "eshipper_project44_rl_carriers",
2648
+ "eshipper_project44_rl_carriers",
2649
+ ),
2650
+ (
2651
+ "eshipper_project44_roadrunner_transportation_services",
2652
+ "eshipper_project44_roadrunner_transportation_services",
2653
+ ),
2654
+ (
2655
+ "eshipper_project44_saia_motor_freight",
2656
+ "eshipper_project44_saia_motor_freight",
2657
+ ),
2658
+ (
2659
+ "eshipper_project44_southeastern_freight_lines",
2660
+ "eshipper_project44_southeastern_freight_lines",
2661
+ ),
2662
+ (
2663
+ "eshipper_project44_southwestern_motor_transport",
2664
+ "eshipper_project44_southwestern_motor_transport",
2665
+ ),
2666
+ (
2667
+ "eshipper_project44_standard_forwarding",
2668
+ "eshipper_project44_standard_forwarding",
2669
+ ),
2670
+ (
2671
+ "eshipper_project44_total_transportation_distribution",
2672
+ "eshipper_project44_total_transportation_distribution",
2673
+ ),
2674
+ (
2675
+ "eshipper_project44_tst_overland_express",
2676
+ "eshipper_project44_tst_overland_express",
2677
+ ),
2678
+ ("eshipper_project44_ups", "eshipper_project44_ups"),
2679
+ (
2680
+ "eshipper_project44_usf_reddaway",
2681
+ "eshipper_project44_usf_reddaway",
2682
+ ),
2683
+ (
2684
+ "eshipper_project44_valley_cartage",
2685
+ "eshipper_project44_valley_cartage",
2686
+ ),
2687
+ (
2688
+ "eshipper_project44_vision_express_ltl",
2689
+ "eshipper_project44_vision_express_ltl",
2690
+ ),
2691
+ (
2692
+ "eshipper_project44_ward_trucking",
2693
+ "eshipper_project44_ward_trucking",
2694
+ ),
2695
+ (
2696
+ "eshipper_project44_xpo_logistics",
2697
+ "eshipper_project44_xpo_logistics",
2698
+ ),
2699
+ (
2700
+ "eshipper_project44_xpress_global_systems",
2701
+ "eshipper_project44_xpress_global_systems",
2702
+ ),
2703
+ ("eshipper_project44_yrc", "eshipper_project44_yrc"),
2704
+ (
2705
+ "eshipper_purolator_purolator_express",
2706
+ "eshipper_purolator_purolator_express",
2707
+ ),
2708
+ (
2709
+ "eshipper_purolator_purolator_express_1030",
2710
+ "eshipper_purolator_purolator_express_1030",
2711
+ ),
2712
+ (
2713
+ "eshipper_purolator_purolator_express_9am",
2714
+ "eshipper_purolator_purolator_express_9am",
2715
+ ),
2716
+ (
2717
+ "eshipper_purolator_purolator_expresscheque",
2718
+ "eshipper_purolator_purolator_expresscheque",
2719
+ ),
2720
+ (
2721
+ "eshipper_purolator_purolator_ground",
2722
+ "eshipper_purolator_purolator_ground",
2723
+ ),
2724
+ (
2725
+ "eshipper_purolator_purolator_ground_1030",
2726
+ "eshipper_purolator_purolator_ground_1030",
2727
+ ),
2728
+ (
2729
+ "eshipper_purolator_purolator_ground_9am",
2730
+ "eshipper_purolator_purolator_ground_9am",
2731
+ ),
2732
+ ("eshipper_purolator_puroletter", "eshipper_purolator_puroletter"),
2733
+ (
2734
+ "eshipper_purolator_puroletter_1030",
2735
+ "eshipper_purolator_puroletter_1030",
2736
+ ),
2737
+ (
2738
+ "eshipper_purolator_puroletter_9am",
2739
+ "eshipper_purolator_puroletter_9am",
2740
+ ),
2741
+ ("eshipper_purolator_puropak", "eshipper_purolator_puropak"),
2742
+ (
2743
+ "eshipper_purolator_puropak_1030",
2744
+ "eshipper_purolator_puropak_1030",
2745
+ ),
2746
+ (
2747
+ "eshipper_purolator_puropak_9am",
2748
+ "eshipper_purolator_puropak_9am",
2749
+ ),
2750
+ ("eshipper_pyk_ground_advantage", "eshipper_pyk_ground_advantage"),
2751
+ ("eshipper_pyk_priority_mail", "eshipper_pyk_priority_mail"),
2752
+ (
2753
+ "eshipper_sameday_9am_guaranteed",
2754
+ "eshipper_sameday_9am_guaranteed",
2755
+ ),
2756
+ ("eshipper_sameday_am_service", "eshipper_sameday_am_service"),
2757
+ (
2758
+ "eshipper_sameday_ground_service",
2759
+ "eshipper_sameday_ground_service",
2760
+ ),
2761
+ (
2762
+ "eshipper_sameday_h1_deliver_to_curbside",
2763
+ "eshipper_sameday_h1_deliver_to_curbside",
2764
+ ),
2765
+ (
2766
+ "eshipper_sameday_h2_delivery_to_room_of_choice",
2767
+ "eshipper_sameday_h2_delivery_to_room_of_choice",
2768
+ ),
2769
+ (
2770
+ "eshipper_sameday_h3_delivery_packaging_removal",
2771
+ "eshipper_sameday_h3_delivery_packaging_removal",
2772
+ ),
2773
+ (
2774
+ "eshipper_sameday_h4_delivery_to_curbside",
2775
+ "eshipper_sameday_h4_delivery_to_curbside",
2776
+ ),
2777
+ (
2778
+ "eshipper_sameday_h5_delivery_to_room_of_choice_2_man",
2779
+ "eshipper_sameday_h5_delivery_to_room_of_choice_2_man",
2780
+ ),
2781
+ (
2782
+ "eshipper_sameday_h6_delivery_packaging_removal_2_man",
2783
+ "eshipper_sameday_h6_delivery_packaging_removal_2_man",
2784
+ ),
2785
+ ("eshipper_sameday_ltl_service", "eshipper_sameday_ltl_service"),
2786
+ ("eshipper_sameday_pm_service", "eshipper_sameday_pm_service"),
2787
+ (
2788
+ "eshipper_sameday_urgent_letter",
2789
+ "eshipper_sameday_urgent_letter",
2790
+ ),
2791
+ ("eshipper_sameday_urgent_pac", "eshipper_sameday_urgent_pac"),
2792
+ ("eshipper_skip", "eshipper_skip"),
2793
+ (
2794
+ "eshipper_smartepost_intl_dhl_parcel_international_direct_ngr",
2795
+ "eshipper_smartepost_intl_dhl_parcel_international_direct_ngr",
2796
+ ),
2797
+ (
2798
+ "eshipper_smartepost_intl_global_mail_business_priority",
2799
+ "eshipper_smartepost_intl_global_mail_business_priority",
2800
+ ),
2801
+ (
2802
+ "eshipper_smartepost_intl_global_mail_business_standard",
2803
+ "eshipper_smartepost_intl_global_mail_business_standard",
2804
+ ),
2805
+ (
2806
+ "eshipper_smartepost_intl_global_mail_packet_plus_priority",
2807
+ "eshipper_smartepost_intl_global_mail_packet_plus_priority",
2808
+ ),
2809
+ (
2810
+ "eshipper_smartepost_intl_global_mail_packet_priority",
2811
+ "eshipper_smartepost_intl_global_mail_packet_priority",
2812
+ ),
2813
+ (
2814
+ "eshipper_smartepost_intl_global_mail_packet_standard",
2815
+ "eshipper_smartepost_intl_global_mail_packet_standard",
2816
+ ),
2817
+ (
2818
+ "eshipper_smartepost_intl_global_mail_parcel_direct_priority_yyz",
2819
+ "eshipper_smartepost_intl_global_mail_parcel_direct_priority_yyz",
2820
+ ),
2821
+ (
2822
+ "eshipper_smartepost_intl_global_mail_parcel_direct_standard_yyz",
2823
+ "eshipper_smartepost_intl_global_mail_parcel_direct_standard_yyz",
2824
+ ),
2825
+ (
2826
+ "eshipper_smartepost_intl_global_mail_parcel_priority",
2827
+ "eshipper_smartepost_intl_global_mail_parcel_priority",
2828
+ ),
2829
+ (
2830
+ "eshipper_smartepost_intl_global_mail_parcel_standard",
2831
+ "eshipper_smartepost_intl_global_mail_parcel_standard",
2832
+ ),
2833
+ ("eshipper_ups_expedited", "eshipper_ups_expedited"),
2834
+ ("eshipper_ups_express", "eshipper_ups_express"),
2835
+ ("eshipper_ups_express_early_am", "eshipper_ups_express_early_am"),
2836
+ ("eshipper_ups_ground", "eshipper_ups_ground"),
2837
+ (
2838
+ "eshipper_ups_second_day_air_am",
2839
+ "eshipper_ups_second_day_air_am",
2840
+ ),
2841
+ ("eshipper_ups_standard", "eshipper_ups_standard"),
2842
+ ("eshipper_ups_three_day_select", "eshipper_ups_three_day_select"),
2843
+ ("eshipper_ups_ups_saver", "eshipper_ups_ups_saver"),
2844
+ (
2845
+ "eshipper_ups_worldwide_expedited",
2846
+ "eshipper_ups_worldwide_expedited",
2847
+ ),
2848
+ (
2849
+ "eshipper_ups_worldwide_express",
2850
+ "eshipper_ups_worldwide_express",
2851
+ ),
2852
+ (
2853
+ "eshipper_ups_worldwide_express_plus",
2854
+ "eshipper_ups_worldwide_express_plus",
2855
+ ),
2856
+ (
2857
+ "eshipper_usps_first_class_mail",
2858
+ "eshipper_usps_first_class_mail",
2859
+ ),
2860
+ (
2861
+ "eshipper_usps_first_class_package_return_service",
2862
+ "eshipper_usps_first_class_package_return_service",
2863
+ ),
2864
+ ("eshipper_usps_library_mail", "eshipper_usps_library_mail"),
2865
+ ("eshipper_usps_media_mail", "eshipper_usps_media_mail"),
2866
+ ("eshipper_usps_parcel_select", "eshipper_usps_parcel_select"),
2867
+ ("eshipper_usps_pbx", "eshipper_usps_pbx"),
2868
+ ("eshipper_usps_pbx_lightweight", "eshipper_usps_pbx_lightweight"),
2869
+ ("eshipper_usps_priority_mail", "eshipper_usps_priority_mail"),
2870
+ (
2871
+ "eshipper_usps_priority_mail_express",
2872
+ "eshipper_usps_priority_mail_express",
2873
+ ),
2874
+ (
2875
+ "eshipper_usps_priority_mail_open_and_distribute",
2876
+ "eshipper_usps_priority_mail_open_and_distribute",
2877
+ ),
2878
+ (
2879
+ "eshipper_usps_priority_mail_return_service",
2880
+ "eshipper_usps_priority_mail_return_service",
2881
+ ),
2882
+ (
2883
+ "eshipper_usps_retail_ground_formerly_standard_post",
2884
+ "eshipper_usps_retail_ground_formerly_standard_post",
2885
+ ),
2886
+ (
2887
+ "fedex_international_priority_express",
2888
+ "fedex_international_priority_express",
2889
+ ),
2890
+ ("fedex_international_first", "fedex_international_first"),
2891
+ ("fedex_international_priority", "fedex_international_priority"),
2892
+ ("fedex_international_economy", "fedex_international_economy"),
2893
+ ("fedex_ground", "fedex_ground"),
2894
+ ("fedex_cargo_mail", "fedex_cargo_mail"),
2895
+ (
2896
+ "fedex_cargo_international_premium",
2897
+ "fedex_cargo_international_premium",
2898
+ ),
2899
+ ("fedex_first_overnight", "fedex_first_overnight"),
2900
+ ("fedex_first_overnight_freight", "fedex_first_overnight_freight"),
2901
+ ("fedex_1_day_freight", "fedex_1_day_freight"),
2902
+ ("fedex_2_day_freight", "fedex_2_day_freight"),
2903
+ ("fedex_3_day_freight", "fedex_3_day_freight"),
2904
+ (
2905
+ "fedex_international_priority_freight",
2906
+ "fedex_international_priority_freight",
2907
+ ),
2908
+ (
2909
+ "fedex_international_economy_freight",
2910
+ "fedex_international_economy_freight",
2911
+ ),
2912
+ (
2913
+ "fedex_cargo_airport_to_airport",
2914
+ "fedex_cargo_airport_to_airport",
2915
+ ),
2916
+ (
2917
+ "fedex_international_priority_distribution",
2918
+ "fedex_international_priority_distribution",
2919
+ ),
2920
+ (
2921
+ "fedex_ip_direct_distribution_freight",
2922
+ "fedex_ip_direct_distribution_freight",
2923
+ ),
2924
+ (
2925
+ "fedex_intl_ground_distribution",
2926
+ "fedex_intl_ground_distribution",
2927
+ ),
2928
+ ("fedex_ground_home_delivery", "fedex_ground_home_delivery"),
2929
+ ("fedex_smart_post", "fedex_smart_post"),
2930
+ ("fedex_priority_overnight", "fedex_priority_overnight"),
2931
+ ("fedex_standard_overnight", "fedex_standard_overnight"),
2932
+ ("fedex_2_day", "fedex_2_day"),
2933
+ ("fedex_2_day_am", "fedex_2_day_am"),
2934
+ ("fedex_express_saver", "fedex_express_saver"),
2935
+ ("fedex_same_day", "fedex_same_day"),
2936
+ ("fedex_same_day_city", "fedex_same_day_city"),
2937
+ ("fedex_one_day_freight", "fedex_one_day_freight"),
2938
+ (
2939
+ "fedex_international_economy_distribution",
2940
+ "fedex_international_economy_distribution",
2941
+ ),
2942
+ (
2943
+ "fedex_international_connect_plus",
2944
+ "fedex_international_connect_plus",
2945
+ ),
2946
+ (
2947
+ "fedex_international_distribution_freight",
2948
+ "fedex_international_distribution_freight",
2949
+ ),
2950
+ ("fedex_regional_economy", "fedex_regional_economy"),
2951
+ ("fedex_next_day_freight", "fedex_next_day_freight"),
2952
+ ("fedex_next_day", "fedex_next_day"),
2953
+ ("fedex_next_day_10am", "fedex_next_day_10am"),
2954
+ ("fedex_next_day_12pm", "fedex_next_day_12pm"),
2955
+ ("fedex_next_day_end_of_day", "fedex_next_day_end_of_day"),
2956
+ ("fedex_distance_deferred", "fedex_distance_deferred"),
2957
+ (
2958
+ "fedex_europe_first_international_priority",
2959
+ "fedex_europe_first_international_priority",
2960
+ ),
2961
+ ("fedex_1_day_freight", "fedex_1_day_freight"),
2962
+ ("fedex_2_day", "fedex_2_day"),
2963
+ ("fedex_2_day_am", "fedex_2_day_am"),
2964
+ ("fedex_2_day_freight", "fedex_2_day_freight"),
2965
+ ("fedex_3_day_freight", "fedex_3_day_freight"),
2966
+ (
2967
+ "fedex_cargo_airport_to_airport",
2968
+ "fedex_cargo_airport_to_airport",
2969
+ ),
2970
+ (
2971
+ "fedex_cargo_freight_forwarding",
2972
+ "fedex_cargo_freight_forwarding",
2973
+ ),
2974
+ (
2975
+ "fedex_cargo_international_express_freight",
2976
+ "fedex_cargo_international_express_freight",
2977
+ ),
2978
+ (
2979
+ "fedex_cargo_international_premium",
2980
+ "fedex_cargo_international_premium",
2981
+ ),
2982
+ ("fedex_cargo_mail", "fedex_cargo_mail"),
2983
+ ("fedex_cargo_registered_mail", "fedex_cargo_registered_mail"),
2984
+ ("fedex_cargo_surface_mail", "fedex_cargo_surface_mail"),
2985
+ (
2986
+ "fedex_custom_critical_air_expedite",
2987
+ "fedex_custom_critical_air_expedite",
2988
+ ),
2989
+ (
2990
+ "fedex_custom_critical_air_expedite_exclusive_use",
2991
+ "fedex_custom_critical_air_expedite_exclusive_use",
2992
+ ),
2993
+ (
2994
+ "fedex_custom_critical_air_expedite_network",
2995
+ "fedex_custom_critical_air_expedite_network",
2996
+ ),
2997
+ (
2998
+ "fedex_custom_critical_charter_air",
2999
+ "fedex_custom_critical_charter_air",
3000
+ ),
3001
+ (
3002
+ "fedex_custom_critical_point_to_point",
3003
+ "fedex_custom_critical_point_to_point",
3004
+ ),
3005
+ (
3006
+ "fedex_custom_critical_surface_expedite",
3007
+ "fedex_custom_critical_surface_expedite",
3008
+ ),
3009
+ (
3010
+ "fedex_custom_critical_surface_expedite_exclusive_use",
3011
+ "fedex_custom_critical_surface_expedite_exclusive_use",
3012
+ ),
3013
+ (
3014
+ "fedex_custom_critical_temp_assure_air",
3015
+ "fedex_custom_critical_temp_assure_air",
3016
+ ),
3017
+ (
3018
+ "fedex_custom_critical_temp_assure_validated_air",
3019
+ "fedex_custom_critical_temp_assure_validated_air",
3020
+ ),
3021
+ (
3022
+ "fedex_custom_critical_white_glove_services",
3023
+ "fedex_custom_critical_white_glove_services",
3024
+ ),
3025
+ ("fedex_distance_deferred", "fedex_distance_deferred"),
3026
+ ("fedex_express_saver", "fedex_express_saver"),
3027
+ ("fedex_first_freight", "fedex_first_freight"),
3028
+ ("fedex_freight_economy", "fedex_freight_economy"),
3029
+ ("fedex_freight_priority", "fedex_freight_priority"),
3030
+ ("fedex_ground", "fedex_ground"),
3031
+ (
3032
+ "fedex_international_priority_plus",
3033
+ "fedex_international_priority_plus",
3034
+ ),
3035
+ ("fedex_next_day_afternoon", "fedex_next_day_afternoon"),
3036
+ ("fedex_next_day_early_morning", "fedex_next_day_early_morning"),
3037
+ ("fedex_next_day_end_of_day", "fedex_next_day_end_of_day"),
3038
+ ("fedex_next_day_freight", "fedex_next_day_freight"),
3039
+ ("fedex_next_day_mid_morning", "fedex_next_day_mid_morning"),
3040
+ ("fedex_first_overnight", "fedex_first_overnight"),
3041
+ ("fedex_ground_home_delivery", "fedex_ground_home_delivery"),
3042
+ (
3043
+ "fedex_international_distribution_freight",
3044
+ "fedex_international_distribution_freight",
3045
+ ),
3046
+ ("fedex_international_economy", "fedex_international_economy"),
3047
+ (
3048
+ "fedex_international_economy_distribution",
3049
+ "fedex_international_economy_distribution",
3050
+ ),
3051
+ (
3052
+ "fedex_international_economy_freight",
3053
+ "fedex_international_economy_freight",
3054
+ ),
3055
+ ("fedex_international_first", "fedex_international_first"),
3056
+ ("fedex_international_ground", "fedex_international_ground"),
3057
+ ("fedex_international_priority", "fedex_international_priority"),
3058
+ (
3059
+ "fedex_international_priority_distribution",
3060
+ "fedex_international_priority_distribution",
3061
+ ),
3062
+ (
3063
+ "fedex_international_priority_express",
3064
+ "fedex_international_priority_express",
3065
+ ),
3066
+ (
3067
+ "fedex_international_priority_freight",
3068
+ "fedex_international_priority_freight",
3069
+ ),
3070
+ ("fedex_priority_overnight", "fedex_priority_overnight"),
3071
+ ("fedex_same_day", "fedex_same_day"),
3072
+ ("fedex_same_day_city", "fedex_same_day_city"),
3073
+ (
3074
+ "fedex_same_day_metro_afternoon",
3075
+ "fedex_same_day_metro_afternoon",
3076
+ ),
3077
+ ("fedex_same_day_metro_morning", "fedex_same_day_metro_morning"),
3078
+ ("fedex_same_day_metro_rush", "fedex_same_day_metro_rush"),
3079
+ ("fedex_smart_post", "fedex_smart_post"),
3080
+ ("fedex_standard_overnight", "fedex_standard_overnight"),
3081
+ (
3082
+ "fedex_transborder_distribution_consolidation",
3083
+ "fedex_transborder_distribution_consolidation",
3084
+ ),
3085
+ ("freightcom_all", "freightcom_all"),
3086
+ ("freightcom_usf_holland", "freightcom_usf_holland"),
3087
+ ("freightcom_central_transport", "freightcom_central_transport"),
3088
+ ("freightcom_estes", "freightcom_estes"),
3089
+ ("freightcom_canpar_ground", "freightcom_canpar_ground"),
3090
+ ("freightcom_canpar_select", "freightcom_canpar_select"),
3091
+ ("freightcom_canpar_overnight", "freightcom_canpar_overnight"),
3092
+ ("freightcom_dicom_ground", "freightcom_dicom_ground"),
3093
+ ("freightcom_purolator_ground", "freightcom_purolator_ground"),
3094
+ ("freightcom_purolator_express", "freightcom_purolator_express"),
3095
+ (
3096
+ "freightcom_purolator_express_9_am",
3097
+ "freightcom_purolator_express_9_am",
3098
+ ),
3099
+ (
3100
+ "freightcom_purolator_express_10_30_am",
3101
+ "freightcom_purolator_express_10_30_am",
3102
+ ),
3103
+ (
3104
+ "freightcom_purolator_ground_us",
3105
+ "freightcom_purolator_ground_us",
3106
+ ),
3107
+ (
3108
+ "freightcom_purolator_express_us",
3109
+ "freightcom_purolator_express_us",
3110
+ ),
3111
+ (
3112
+ "freightcom_purolator_express_us_9_am",
3113
+ "freightcom_purolator_express_us_9_am",
3114
+ ),
3115
+ (
3116
+ "freightcom_purolator_express_us_10_30_am",
3117
+ "freightcom_purolator_express_us_10_30_am",
3118
+ ),
3119
+ (
3120
+ "freightcom_fedex_express_saver",
3121
+ "freightcom_fedex_express_saver",
3122
+ ),
3123
+ ("freightcom_fedex_ground", "freightcom_fedex_ground"),
3124
+ ("freightcom_fedex_2day", "freightcom_fedex_2day"),
3125
+ (
3126
+ "freightcom_fedex_priority_overnight",
3127
+ "freightcom_fedex_priority_overnight",
3128
+ ),
3129
+ (
3130
+ "freightcom_fedex_standard_overnight",
3131
+ "freightcom_fedex_standard_overnight",
3132
+ ),
3133
+ (
3134
+ "freightcom_fedex_first_overnight",
3135
+ "freightcom_fedex_first_overnight",
3136
+ ),
3137
+ (
3138
+ "freightcom_fedex_international_priority",
3139
+ "freightcom_fedex_international_priority",
3140
+ ),
3141
+ (
3142
+ "freightcom_fedex_international_economy",
3143
+ "freightcom_fedex_international_economy",
3144
+ ),
3145
+ ("freightcom_ups_standard", "freightcom_ups_standard"),
3146
+ ("freightcom_ups_expedited", "freightcom_ups_expedited"),
3147
+ ("freightcom_ups_express_saver", "freightcom_ups_express_saver"),
3148
+ ("freightcom_ups_express", "freightcom_ups_express"),
3149
+ ("freightcom_ups_express_early", "freightcom_ups_express_early"),
3150
+ ("freightcom_ups_3day_select", "freightcom_ups_3day_select"),
3151
+ (
3152
+ "freightcom_ups_worldwide_expedited",
3153
+ "freightcom_ups_worldwide_expedited",
3154
+ ),
3155
+ (
3156
+ "freightcom_ups_worldwide_express",
3157
+ "freightcom_ups_worldwide_express",
3158
+ ),
3159
+ (
3160
+ "freightcom_ups_worldwide_express_plus",
3161
+ "freightcom_ups_worldwide_express_plus",
3162
+ ),
3163
+ (
3164
+ "freightcom_ups_worldwide_express_saver",
3165
+ "freightcom_ups_worldwide_express_saver",
3166
+ ),
3167
+ ("freightcom_dhl_express_easy", "freightcom_dhl_express_easy"),
3168
+ ("freightcom_dhl_express_10_30", "freightcom_dhl_express_10_30"),
3169
+ (
3170
+ "freightcom_dhl_express_worldwide",
3171
+ "freightcom_dhl_express_worldwide",
3172
+ ),
3173
+ ("freightcom_dhl_express_12_00", "freightcom_dhl_express_12_00"),
3174
+ ("freightcom_dhl_economy_select", "freightcom_dhl_economy_select"),
3175
+ (
3176
+ "freightcom_dhl_ecommerce_am_service",
3177
+ "freightcom_dhl_ecommerce_am_service",
3178
+ ),
3179
+ (
3180
+ "freightcom_dhl_ecommerce_ground_service",
3181
+ "freightcom_dhl_ecommerce_ground_service",
3182
+ ),
3183
+ (
3184
+ "freightcom_canadapost_regular_parcel",
3185
+ "freightcom_canadapost_regular_parcel",
3186
+ ),
3187
+ (
3188
+ "freightcom_canadapost_expedited_parcel",
3189
+ "freightcom_canadapost_expedited_parcel",
3190
+ ),
3191
+ (
3192
+ "freightcom_canadapost_xpresspost",
3193
+ "freightcom_canadapost_xpresspost",
3194
+ ),
3195
+ (
3196
+ "freightcom_canadapost_priority",
3197
+ "freightcom_canadapost_priority",
3198
+ ),
3199
+ ("standard_service", "standard_service"),
3200
+ ("geodis_EXP", "geodis_EXP"),
3201
+ ("geodis_MES", "geodis_MES"),
3202
+ ("geodis_express_france", "geodis_express_france"),
3203
+ (
3204
+ "geodis_retour_trans_fr_messagerie_plus",
3205
+ "geodis_retour_trans_fr_messagerie_plus",
3206
+ ),
3207
+ ("letter_ordered", "letter_ordered"),
3208
+ ("letter_simple", "letter_simple"),
3209
+ ("letter_valued", "letter_valued"),
3210
+ ("package_ordered", "package_ordered"),
3211
+ ("package_simple", "package_simple"),
3212
+ ("package_valued", "package_valued"),
3213
+ ("parcel_simple", "parcel_simple"),
3214
+ ("parcel_valued", "parcel_valued"),
3215
+ ("postcard_ordered", "postcard_ordered"),
3216
+ ("postcard_simple", "postcard_simple"),
3217
+ ("sekogram_simple", "sekogram_simple"),
3218
+ ("sprint_simple", "sprint_simple"),
3219
+ ("yes_ordered_value", "yes_ordered_value"),
3220
+ ("locate2u_local_delivery", "locate2u_local_delivery"),
3221
+ ("purolator_express_9_am", "purolator_express_9_am"),
3222
+ ("purolator_express_us", "purolator_express_us"),
3223
+ ("purolator_express_10_30_am", "purolator_express_10_30_am"),
3224
+ ("purolator_express_us_9_am", "purolator_express_us_9_am"),
3225
+ ("purolator_express_12_pm", "purolator_express_12_pm"),
3226
+ ("purolator_express_us_10_30_am", "purolator_express_us_10_30_am"),
3227
+ ("purolator_express", "purolator_express"),
3228
+ ("purolator_express_us_12_00", "purolator_express_us_12_00"),
3229
+ ("purolator_express_evening", "purolator_express_evening"),
3230
+ ("purolator_express_envelope_us", "purolator_express_envelope_us"),
3231
+ (
3232
+ "purolator_express_envelope_9_am",
3233
+ "purolator_express_envelope_9_am",
3234
+ ),
3235
+ (
3236
+ "purolator_express_us_envelope_9_am",
3237
+ "purolator_express_us_envelope_9_am",
3238
+ ),
3239
+ (
3240
+ "purolator_express_envelope_10_30_am",
3241
+ "purolator_express_envelope_10_30_am",
3242
+ ),
3243
+ (
3244
+ "purolator_express_us_envelope_10_30_am",
3245
+ "purolator_express_us_envelope_10_30_am",
3246
+ ),
3247
+ (
3248
+ "purolator_express_envelope_12_pm",
3249
+ "purolator_express_envelope_12_pm",
3250
+ ),
3251
+ (
3252
+ "purolator_express_us_envelope_12_00",
3253
+ "purolator_express_us_envelope_12_00",
3254
+ ),
3255
+ ("purolator_express_envelope", "purolator_express_envelope"),
3256
+ ("purolator_express_pack_us", "purolator_express_pack_us"),
3257
+ (
3258
+ "purolator_express_envelope_evening",
3259
+ "purolator_express_envelope_evening",
3260
+ ),
3261
+ (
3262
+ "purolator_express_us_pack_9_am",
3263
+ "purolator_express_us_pack_9_am",
3264
+ ),
3265
+ ("purolator_express_pack_9_am", "purolator_express_pack_9_am"),
3266
+ (
3267
+ "purolator_express_us_pack_10_30_am",
3268
+ "purolator_express_us_pack_10_30_am",
3269
+ ),
3270
+ (
3271
+ "purolator_express_pack10_30_am",
3272
+ "purolator_express_pack10_30_am",
3273
+ ),
3274
+ (
3275
+ "purolator_express_us_pack_12_00",
3276
+ "purolator_express_us_pack_12_00",
3277
+ ),
3278
+ ("purolator_express_pack_12_pm", "purolator_express_pack_12_pm"),
3279
+ ("purolator_express_box_us", "purolator_express_box_us"),
3280
+ ("purolator_express_pack", "purolator_express_pack"),
3281
+ ("purolator_express_us_box_9_am", "purolator_express_us_box_9_am"),
3282
+ (
3283
+ "purolator_express_pack_evening",
3284
+ "purolator_express_pack_evening",
3285
+ ),
3286
+ (
3287
+ "purolator_express_us_box_10_30_am",
3288
+ "purolator_express_us_box_10_30_am",
3289
+ ),
3290
+ ("purolator_express_box_9_am", "purolator_express_box_9_am"),
3291
+ (
3292
+ "purolator_express_us_box_12_00",
3293
+ "purolator_express_us_box_12_00",
3294
+ ),
3295
+ (
3296
+ "purolator_express_box_10_30_am",
3297
+ "purolator_express_box_10_30_am",
3298
+ ),
3299
+ ("purolator_ground_us", "purolator_ground_us"),
3300
+ ("purolator_express_box_12_pm", "purolator_express_box_12_pm"),
3301
+ (
3302
+ "purolator_express_international",
3303
+ "purolator_express_international",
3304
+ ),
3305
+ ("purolator_express_box", "purolator_express_box"),
3306
+ (
3307
+ "purolator_express_international_9_am",
3308
+ "purolator_express_international_9_am",
3309
+ ),
3310
+ ("purolator_express_box_evening", "purolator_express_box_evening"),
3311
+ (
3312
+ "purolator_express_international_10_30_am",
3313
+ "purolator_express_international_10_30_am",
3314
+ ),
3315
+ ("purolator_ground", "purolator_ground"),
3316
+ (
3317
+ "purolator_express_international_12_00",
3318
+ "purolator_express_international_12_00",
3319
+ ),
3320
+ ("purolator_ground_9_am", "purolator_ground_9_am"),
3321
+ (
3322
+ "purolator_express_envelope_international",
3323
+ "purolator_express_envelope_international",
3324
+ ),
3325
+ ("purolator_ground_10_30_am", "purolator_ground_10_30_am"),
3326
+ (
3327
+ "purolator_express_international_envelope_9_am",
3328
+ "purolator_express_international_envelope_9_am",
3329
+ ),
3330
+ ("purolator_ground_evening", "purolator_ground_evening"),
3331
+ (
3332
+ "purolator_express_international_envelope_10_30_am",
3333
+ "purolator_express_international_envelope_10_30_am",
3334
+ ),
3335
+ ("purolator_quick_ship", "purolator_quick_ship"),
3336
+ (
3337
+ "purolator_express_international_envelope_12_00",
3338
+ "purolator_express_international_envelope_12_00",
3339
+ ),
3340
+ ("purolator_quick_ship_envelope", "purolator_quick_ship_envelope"),
3341
+ (
3342
+ "purolator_express_pack_international",
3343
+ "purolator_express_pack_international",
3344
+ ),
3345
+ ("purolator_quick_ship_pack", "purolator_quick_ship_pack"),
3346
+ (
3347
+ "purolator_express_international_pack_9_am",
3348
+ "purolator_express_international_pack_9_am",
3349
+ ),
3350
+ ("purolator_quick_ship_box", "purolator_quick_ship_box"),
3351
+ (
3352
+ "purolator_express_international_pack_10_30_am",
3353
+ "purolator_express_international_pack_10_30_am",
3354
+ ),
3355
+ (
3356
+ "purolator_express_international_pack_12_00",
3357
+ "purolator_express_international_pack_12_00",
3358
+ ),
3359
+ (
3360
+ "purolator_express_box_international",
3361
+ "purolator_express_box_international",
3362
+ ),
3363
+ (
3364
+ "purolator_express_international_box_9_am",
3365
+ "purolator_express_international_box_9_am",
3366
+ ),
3367
+ (
3368
+ "purolator_express_international_box_10_30_am",
3369
+ "purolator_express_international_box_10_30_am",
3370
+ ),
3371
+ (
3372
+ "purolator_express_international_box_12_00",
3373
+ "purolator_express_international_box_12_00",
3374
+ ),
3375
+ ("roadie_local_delivery", "roadie_local_delivery"),
3376
+ ("sendle_standard_pickup", "sendle_standard_pickup"),
3377
+ ("sendle_standard_dropoff", "sendle_standard_dropoff"),
3378
+ ("sendle_express_pickup", "sendle_express_pickup"),
3379
+ ("tge_freight_service", "tge_freight_service"),
3380
+ ("tnt_special_express", "tnt_special_express"),
3381
+ ("tnt_9_00_express", "tnt_9_00_express"),
3382
+ ("tnt_10_00_express", "tnt_10_00_express"),
3383
+ ("tnt_12_00_express", "tnt_12_00_express"),
3384
+ ("tnt_express", "tnt_express"),
3385
+ ("tnt_economy_express", "tnt_economy_express"),
3386
+ ("tnt_global_express", "tnt_global_express"),
3387
+ ("ups_standard", "ups_standard"),
3388
+ ("ups_worldwide_express", "ups_worldwide_express"),
3389
+ ("ups_worldwide_expedited", "ups_worldwide_expedited"),
3390
+ ("ups_worldwide_express_plus", "ups_worldwide_express_plus"),
3391
+ ("ups_worldwide_saver", "ups_worldwide_saver"),
3392
+ ("ups_2nd_day_air", "ups_2nd_day_air"),
3393
+ ("ups_2nd_day_air_am", "ups_2nd_day_air_am"),
3394
+ ("ups_3_day_select", "ups_3_day_select"),
3395
+ ("ups_ground", "ups_ground"),
3396
+ ("ups_next_day_air", "ups_next_day_air"),
3397
+ ("ups_next_day_air_early", "ups_next_day_air_early"),
3398
+ ("ups_next_day_air_saver", "ups_next_day_air_saver"),
3399
+ ("ups_expedited_ca", "ups_expedited_ca"),
3400
+ ("ups_express_saver_ca", "ups_express_saver_ca"),
3401
+ ("ups_3_day_select_ca_us", "ups_3_day_select_ca_us"),
3402
+ ("ups_access_point_economy_ca", "ups_access_point_economy_ca"),
3403
+ ("ups_express_ca", "ups_express_ca"),
3404
+ ("ups_express_early_ca", "ups_express_early_ca"),
3405
+ ("ups_express_saver_intl_ca", "ups_express_saver_intl_ca"),
3406
+ ("ups_standard_ca", "ups_standard_ca"),
3407
+ ("ups_worldwide_expedited_ca", "ups_worldwide_expedited_ca"),
3408
+ ("ups_worldwide_express_ca", "ups_worldwide_express_ca"),
3409
+ ("ups_worldwide_express_plus_ca", "ups_worldwide_express_plus_ca"),
3410
+ ("ups_express_early_ca_us", "ups_express_early_ca_us"),
3411
+ ("ups_access_point_economy_eu", "ups_access_point_economy_eu"),
3412
+ ("ups_expedited_eu", "ups_expedited_eu"),
3413
+ ("ups_express_eu", "ups_express_eu"),
3414
+ ("ups_standard_eu", "ups_standard_eu"),
3415
+ ("ups_worldwide_express_plus_eu", "ups_worldwide_express_plus_eu"),
3416
+ ("ups_worldwide_saver_eu", "ups_worldwide_saver_eu"),
3417
+ ("ups_access_point_economy_mx", "ups_access_point_economy_mx"),
3418
+ ("ups_expedited_mx", "ups_expedited_mx"),
3419
+ ("ups_express_mx", "ups_express_mx"),
3420
+ ("ups_standard_mx", "ups_standard_mx"),
3421
+ ("ups_worldwide_express_plus_mx", "ups_worldwide_express_plus_mx"),
3422
+ ("ups_worldwide_saver_mx", "ups_worldwide_saver_mx"),
3423
+ ("ups_access_point_economy_pl", "ups_access_point_economy_pl"),
3424
+ (
3425
+ "ups_today_dedicated_courrier_pl",
3426
+ "ups_today_dedicated_courrier_pl",
3427
+ ),
3428
+ ("ups_today_express_pl", "ups_today_express_pl"),
3429
+ ("ups_today_express_saver_pl", "ups_today_express_saver_pl"),
3430
+ ("ups_today_standard_pl", "ups_today_standard_pl"),
3431
+ ("ups_expedited_pl", "ups_expedited_pl"),
3432
+ ("ups_express_pl", "ups_express_pl"),
3433
+ ("ups_express_plus_pl", "ups_express_plus_pl"),
3434
+ ("ups_express_saver_pl", "ups_express_saver_pl"),
3435
+ ("ups_standard_pl", "ups_standard_pl"),
3436
+ ("ups_2nd_day_air_pr", "ups_2nd_day_air_pr"),
3437
+ ("ups_ground_pr", "ups_ground_pr"),
3438
+ ("ups_next_day_air_pr", "ups_next_day_air_pr"),
3439
+ ("ups_next_day_air_early_pr", "ups_next_day_air_early_pr"),
3440
+ ("ups_worldwide_expedited_pr", "ups_worldwide_expedited_pr"),
3441
+ ("ups_worldwide_express_pr", "ups_worldwide_express_pr"),
3442
+ ("ups_worldwide_express_plus_pr", "ups_worldwide_express_plus_pr"),
3443
+ ("ups_worldwide_saver_pr", "ups_worldwide_saver_pr"),
3444
+ ("ups_express_12_00_de", "ups_express_12_00_de"),
3445
+ ("ups_worldwide_express_freight", "ups_worldwide_express_freight"),
3446
+ (
3447
+ "ups_worldwide_express_freight_midday",
3448
+ "ups_worldwide_express_freight_midday",
3449
+ ),
3450
+ ("ups_worldwide_economy_ddu", "ups_worldwide_economy_ddu"),
3451
+ ("ups_worldwide_economy_ddp", "ups_worldwide_economy_ddp"),
3452
+ ("usps_first_class", "usps_first_class"),
3453
+ ("usps_first_class_commercial", "usps_first_class_commercial"),
3454
+ (
3455
+ "usps_first_class_hfp_commercial",
3456
+ "usps_first_class_hfp_commercial",
3457
+ ),
3458
+ ("usps_priority", "usps_priority"),
3459
+ ("usps_priority_commercial", "usps_priority_commercial"),
3460
+ ("usps_priority_cpp", "usps_priority_cpp"),
3461
+ ("usps_priority_hfp_commercial", "usps_priority_hfp_commercial"),
3462
+ ("usps_priority_hfp_cpp", "usps_priority_hfp_cpp"),
3463
+ ("usps_priority_mail_express", "usps_priority_mail_express"),
3464
+ (
3465
+ "usps_priority_mail_express_commercial",
3466
+ "usps_priority_mail_express_commercial",
3467
+ ),
3468
+ (
3469
+ "usps_priority_mail_express_cpp",
3470
+ "usps_priority_mail_express_cpp",
3471
+ ),
3472
+ ("usps_priority_mail_express_sh", "usps_priority_mail_express_sh"),
3473
+ (
3474
+ "usps_priority_mail_express_sh_commercial",
3475
+ "usps_priority_mail_express_sh_commercial",
3476
+ ),
3477
+ (
3478
+ "usps_priority_mail_express_hfp",
3479
+ "usps_priority_mail_express_hfp",
3480
+ ),
3481
+ (
3482
+ "usps_priority_mail_express_hfp_commercial",
3483
+ "usps_priority_mail_express_hfp_commercial",
3484
+ ),
3485
+ (
3486
+ "usps_priority_mail_express_hfp_cpp",
3487
+ "usps_priority_mail_express_hfp_cpp",
3488
+ ),
3489
+ ("usps_priority_mail_cubic", "usps_priority_mail_cubic"),
3490
+ ("usps_retail_ground", "usps_retail_ground"),
3491
+ ("usps_media", "usps_media"),
3492
+ ("usps_library", "usps_library"),
3493
+ ("usps_all", "usps_all"),
3494
+ ("usps_online", "usps_online"),
3495
+ ("usps_plus", "usps_plus"),
3496
+ ("usps_bpm", "usps_bpm"),
3497
+ ("usps_ground_advantage", "usps_ground_advantage"),
3498
+ (
3499
+ "usps_ground_advantage_commercial",
3500
+ "usps_ground_advantage_commercial",
3501
+ ),
3502
+ ("usps_ground_advantage_hfp", "usps_ground_advantage_hfp"),
3503
+ (
3504
+ "usps_ground_advantage_hfp_commercial",
3505
+ "usps_ground_advantage_hfp_commercial",
3506
+ ),
3507
+ ("usps_ground_advantage_cubic", "usps_ground_advantage_cubic"),
3508
+ ("usps_first_class", "usps_first_class"),
3509
+ ("usps_first_class_commercial", "usps_first_class_commercial"),
3510
+ (
3511
+ "usps_first_class_hfp_commercial",
3512
+ "usps_first_class_hfp_commercial",
3513
+ ),
3514
+ ("usps_priority", "usps_priority"),
3515
+ ("usps_priority_commercial", "usps_priority_commercial"),
3516
+ ("usps_priority_cpp", "usps_priority_cpp"),
3517
+ ("usps_priority_hfp_commercial", "usps_priority_hfp_commercial"),
3518
+ ("usps_priority_hfp_cpp", "usps_priority_hfp_cpp"),
3519
+ ("usps_priority_mail_express", "usps_priority_mail_express"),
3520
+ (
3521
+ "usps_priority_mail_express_commercial",
3522
+ "usps_priority_mail_express_commercial",
3523
+ ),
3524
+ (
3525
+ "usps_priority_mail_express_cpp",
3526
+ "usps_priority_mail_express_cpp",
3527
+ ),
3528
+ ("usps_priority_mail_express_sh", "usps_priority_mail_express_sh"),
3529
+ (
3530
+ "usps_priority_mail_express_sh_commercial",
3531
+ "usps_priority_mail_express_sh_commercial",
3532
+ ),
3533
+ (
3534
+ "usps_priority_mail_express_hfp",
3535
+ "usps_priority_mail_express_hfp",
3536
+ ),
3537
+ (
3538
+ "usps_priority_mail_express_hfp_commercial",
3539
+ "usps_priority_mail_express_hfp_commercial",
3540
+ ),
3541
+ (
3542
+ "usps_priority_mail_express_hfp_cpp",
3543
+ "usps_priority_mail_express_hfp_cpp",
3544
+ ),
3545
+ ("usps_priority_mail_cubic", "usps_priority_mail_cubic"),
3546
+ ("usps_retail_ground", "usps_retail_ground"),
3547
+ ("usps_media", "usps_media"),
3548
+ ("usps_library", "usps_library"),
3549
+ ("usps_all", "usps_all"),
3550
+ ("usps_online", "usps_online"),
3551
+ ("usps_plus", "usps_plus"),
3552
+ ("usps_bpm", "usps_bpm"),
3553
+ ("zoom2u_VIP", "zoom2u_VIP"),
3554
+ ("zoom2u_3_hour", "zoom2u_3_hour"),
3555
+ ("zoom2u_same_day", "zoom2u_same_day"),
3556
+ ],
3557
+ help_text="\n The list of services you want to apply the surcharge to.\n <br/>\n Note that by default, the surcharge is applied to all services\n ",
3558
+ null=True,
3559
+ ),
3560
+ ),
3561
+ ]