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,4704 @@
1
+ # Generated by Django 5.1.9 on 2025-05-09 06:56
2
+
3
+ import karrio.server.core.fields
4
+ from django.db import migrations
5
+
6
+
7
+ class Migration(migrations.Migration):
8
+
9
+ dependencies = [
10
+ ("pricing", "0061_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
+ ("easypost", "easypost"),
39
+ ("easyship", "easyship"),
40
+ ("eshipper", "eshipper"),
41
+ ("fedex", "fedex"),
42
+ ("freightcom", "freightcom"),
43
+ ("generic", "generic"),
44
+ ("geodis", "geodis"),
45
+ ("hay_post", "hay_post"),
46
+ ("laposte", "laposte"),
47
+ ("locate2u", "locate2u"),
48
+ ("nationex", "nationex"),
49
+ ("purolator", "purolator"),
50
+ ("roadie", "roadie"),
51
+ ("royalmail", "royalmail"),
52
+ ("sapient", "sapient"),
53
+ ("seko", "seko"),
54
+ ("sendle", "sendle"),
55
+ ("tge", "tge"),
56
+ ("tnt", "tnt"),
57
+ ("ups", "ups"),
58
+ ("usps", "usps"),
59
+ ("usps_international", "usps_international"),
60
+ ("zoom2u", "zoom2u"),
61
+ ],
62
+ 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 ",
63
+ null=True,
64
+ ),
65
+ ),
66
+ migrations.AlterField(
67
+ model_name="surcharge",
68
+ name="services",
69
+ field=karrio.server.core.fields.MultiChoiceField(
70
+ blank=True,
71
+ choices=[
72
+ ("allied_road_service", "allied_road_service"),
73
+ ("allied_parcel_service", "allied_parcel_service"),
74
+ (
75
+ "allied_standard_pallet_service",
76
+ "allied_standard_pallet_service",
77
+ ),
78
+ (
79
+ "allied_oversized_pallet_service",
80
+ "allied_oversized_pallet_service",
81
+ ),
82
+ ("allied_road_service", "allied_road_service"),
83
+ ("allied_parcel_service", "allied_parcel_service"),
84
+ (
85
+ "allied_standard_pallet_service",
86
+ "allied_standard_pallet_service",
87
+ ),
88
+ (
89
+ "allied_oversized_pallet_service",
90
+ "allied_oversized_pallet_service",
91
+ ),
92
+ ("allied_local_normal_service", "allied_local_normal_service"),
93
+ ("allied_local_vip_service", "allied_local_vip_service"),
94
+ (
95
+ "allied_local_executive_service",
96
+ "allied_local_executive_service",
97
+ ),
98
+ ("allied_local_gold_service", "allied_local_gold_service"),
99
+ ("amazon_shipping_ground", "amazon_shipping_ground"),
100
+ ("amazon_shipping_standard", "amazon_shipping_standard"),
101
+ ("amazon_shipping_premium", "amazon_shipping_premium"),
102
+ ("asendia_us_e_com_tracked_ddp", "asendia_us_e_com_tracked_ddp"),
103
+ ("asendia_us_fully_tracked", "asendia_us_fully_tracked"),
104
+ ("asendia_us_country_tracked", "asendia_us_country_tracked"),
105
+ ("australiapost_parcel_post", "australiapost_parcel_post"),
106
+ ("australiapost_express_post", "australiapost_express_post"),
107
+ (
108
+ "australiapost_parcel_post_signature",
109
+ "australiapost_parcel_post_signature",
110
+ ),
111
+ (
112
+ "australiapost_express_post_signature",
113
+ "australiapost_express_post_signature",
114
+ ),
115
+ (
116
+ "australiapost_intl_standard_pack_track",
117
+ "australiapost_intl_standard_pack_track",
118
+ ),
119
+ (
120
+ "australiapost_intl_standard_with_signature",
121
+ "australiapost_intl_standard_with_signature",
122
+ ),
123
+ (
124
+ "australiapost_intl_express_merch",
125
+ "australiapost_intl_express_merch",
126
+ ),
127
+ (
128
+ "australiapost_intl_express_docs",
129
+ "australiapost_intl_express_docs",
130
+ ),
131
+ (
132
+ "australiapost_eparcel_post_returns",
133
+ "australiapost_eparcel_post_returns",
134
+ ),
135
+ (
136
+ "australiapost_express_eparcel_post_returns",
137
+ "australiapost_express_eparcel_post_returns",
138
+ ),
139
+ ("boxknight_sameday", "boxknight_sameday"),
140
+ ("boxknight_nextday", "boxknight_nextday"),
141
+ ("boxknight_scheduled", "boxknight_scheduled"),
142
+ ("bpack_24h_pro", "bpack_24h_pro"),
143
+ ("bpack_24h_business", "bpack_24h_business"),
144
+ ("bpack_bus", "bpack_bus"),
145
+ ("bpack_pallet", "bpack_pallet"),
146
+ ("bpack_easy_retour", "bpack_easy_retour"),
147
+ ("bpack_xl", "bpack_xl"),
148
+ ("bpack_bpost", "bpack_bpost"),
149
+ ("bpack_24_7", "bpack_24_7"),
150
+ ("bpack_world_business", "bpack_world_business"),
151
+ ("bpack_world_express_pro", "bpack_world_express_pro"),
152
+ ("bpack_europe_business", "bpack_europe_business"),
153
+ ("bpack_world_easy_return", "bpack_world_easy_return"),
154
+ ("bpack_bpost_international", "bpack_bpost_international"),
155
+ ("bpack_24_7_international", "bpack_24_7_international"),
156
+ ("canadapost_regular_parcel", "canadapost_regular_parcel"),
157
+ ("canadapost_expedited_parcel", "canadapost_expedited_parcel"),
158
+ ("canadapost_xpresspost", "canadapost_xpresspost"),
159
+ (
160
+ "canadapost_xpresspost_certified",
161
+ "canadapost_xpresspost_certified",
162
+ ),
163
+ ("canadapost_priority", "canadapost_priority"),
164
+ ("canadapost_library_books", "canadapost_library_books"),
165
+ (
166
+ "canadapost_expedited_parcel_usa",
167
+ "canadapost_expedited_parcel_usa",
168
+ ),
169
+ (
170
+ "canadapost_priority_worldwide_envelope_usa",
171
+ "canadapost_priority_worldwide_envelope_usa",
172
+ ),
173
+ (
174
+ "canadapost_priority_worldwide_pak_usa",
175
+ "canadapost_priority_worldwide_pak_usa",
176
+ ),
177
+ (
178
+ "canadapost_priority_worldwide_parcel_usa",
179
+ "canadapost_priority_worldwide_parcel_usa",
180
+ ),
181
+ (
182
+ "canadapost_small_packet_usa_air",
183
+ "canadapost_small_packet_usa_air",
184
+ ),
185
+ ("canadapost_tracked_packet_usa", "canadapost_tracked_packet_usa"),
186
+ (
187
+ "canadapost_tracked_packet_usa_lvm",
188
+ "canadapost_tracked_packet_usa_lvm",
189
+ ),
190
+ ("canadapost_xpresspost_usa", "canadapost_xpresspost_usa"),
191
+ (
192
+ "canadapost_xpresspost_international",
193
+ "canadapost_xpresspost_international",
194
+ ),
195
+ (
196
+ "canadapost_international_parcel_air",
197
+ "canadapost_international_parcel_air",
198
+ ),
199
+ (
200
+ "canadapost_international_parcel_surface",
201
+ "canadapost_international_parcel_surface",
202
+ ),
203
+ (
204
+ "canadapost_priority_worldwide_envelope_intl",
205
+ "canadapost_priority_worldwide_envelope_intl",
206
+ ),
207
+ (
208
+ "canadapost_priority_worldwide_pak_intl",
209
+ "canadapost_priority_worldwide_pak_intl",
210
+ ),
211
+ (
212
+ "canadapost_priority_worldwide_parcel_intl",
213
+ "canadapost_priority_worldwide_parcel_intl",
214
+ ),
215
+ (
216
+ "canadapost_small_packet_international_air",
217
+ "canadapost_small_packet_international_air",
218
+ ),
219
+ (
220
+ "canadapost_small_packet_international_surface",
221
+ "canadapost_small_packet_international_surface",
222
+ ),
223
+ (
224
+ "canadapost_tracked_packet_international",
225
+ "canadapost_tracked_packet_international",
226
+ ),
227
+ ("chronopost_retrait_bureau", "chronopost_retrait_bureau"),
228
+ ("chronopost_13", "chronopost_13"),
229
+ ("chronopost_10", "chronopost_10"),
230
+ ("chronopost_18", "chronopost_18"),
231
+ ("chronopost_relais", "chronopost_relais"),
232
+ (
233
+ "chronopost_express_international",
234
+ "chronopost_express_international",
235
+ ),
236
+ (
237
+ "chronopost_premium_international",
238
+ "chronopost_premium_international",
239
+ ),
240
+ (
241
+ "chronopost_classic_international",
242
+ "chronopost_classic_international",
243
+ ),
244
+ (
245
+ "colissimo_home_without_signature",
246
+ "colissimo_home_without_signature",
247
+ ),
248
+ ("colissimo_home_with_signature", "colissimo_home_with_signature"),
249
+ ("colissimo_eco_france", "colissimo_eco_france"),
250
+ ("colissimo_return_france", "colissimo_return_france"),
251
+ (
252
+ "colissimo_flash_without_signature",
253
+ "colissimo_flash_without_signature",
254
+ ),
255
+ (
256
+ "colissimo_flash_with_signature",
257
+ "colissimo_flash_with_signature",
258
+ ),
259
+ (
260
+ "colissimo_oversea_home_without_signature",
261
+ "colissimo_oversea_home_without_signature",
262
+ ),
263
+ (
264
+ "colissimo_oversea_home_with_signature",
265
+ "colissimo_oversea_home_with_signature",
266
+ ),
267
+ (
268
+ "colissimo_eco_om_without_signature",
269
+ "colissimo_eco_om_without_signature",
270
+ ),
271
+ (
272
+ "colissimo_eco_om_with_signature",
273
+ "colissimo_eco_om_with_signature",
274
+ ),
275
+ ("colissimo_retour_om", "colissimo_retour_om"),
276
+ (
277
+ "colissimo_return_international_from_france",
278
+ "colissimo_return_international_from_france",
279
+ ),
280
+ (
281
+ "colissimo_economical_big_export_offer",
282
+ "colissimo_economical_big_export_offer",
283
+ ),
284
+ (
285
+ "colissimo_out_of_home_national_international",
286
+ "colissimo_out_of_home_national_international",
287
+ ),
288
+ ("dhl_logistics_services", "dhl_logistics_services"),
289
+ ("dhl_domestic_express_12_00", "dhl_domestic_express_12_00"),
290
+ ("dhl_express_choice", "dhl_express_choice"),
291
+ ("dhl_express_choice_nondoc", "dhl_express_choice_nondoc"),
292
+ ("dhl_jetline", "dhl_jetline"),
293
+ ("dhl_sprintline", "dhl_sprintline"),
294
+ ("dhl_air_capacity_sales", "dhl_air_capacity_sales"),
295
+ ("dhl_express_easy", "dhl_express_easy"),
296
+ ("dhl_express_easy_nondoc", "dhl_express_easy_nondoc"),
297
+ ("dhl_parcel_product", "dhl_parcel_product"),
298
+ ("dhl_accounting", "dhl_accounting"),
299
+ ("dhl_breakbulk_express", "dhl_breakbulk_express"),
300
+ ("dhl_medical_express", "dhl_medical_express"),
301
+ ("dhl_express_worldwide_doc", "dhl_express_worldwide_doc"),
302
+ ("dhl_express_9_00_nondoc", "dhl_express_9_00_nondoc"),
303
+ ("dhl_freight_worldwide_nondoc", "dhl_freight_worldwide_nondoc"),
304
+ ("dhl_economy_select_domestic", "dhl_economy_select_domestic"),
305
+ ("dhl_economy_select_nondoc", "dhl_economy_select_nondoc"),
306
+ ("dhl_express_domestic_9_00", "dhl_express_domestic_9_00"),
307
+ ("dhl_jumbo_box_nondoc", "dhl_jumbo_box_nondoc"),
308
+ ("dhl_express_9_00", "dhl_express_9_00"),
309
+ ("dhl_express_10_30", "dhl_express_10_30"),
310
+ ("dhl_express_10_30_nondoc", "dhl_express_10_30_nondoc"),
311
+ ("dhl_express_domestic", "dhl_express_domestic"),
312
+ ("dhl_express_domestic_10_30", "dhl_express_domestic_10_30"),
313
+ ("dhl_express_worldwide_nondoc", "dhl_express_worldwide_nondoc"),
314
+ ("dhl_medical_express_nondoc", "dhl_medical_express_nondoc"),
315
+ ("dhl_globalmail", "dhl_globalmail"),
316
+ ("dhl_same_day", "dhl_same_day"),
317
+ ("dhl_express_12_00", "dhl_express_12_00"),
318
+ ("dhl_express_worldwide", "dhl_express_worldwide"),
319
+ ("dhl_parcel_product_nondoc", "dhl_parcel_product_nondoc"),
320
+ ("dhl_economy_select", "dhl_economy_select"),
321
+ ("dhl_express_envelope", "dhl_express_envelope"),
322
+ ("dhl_express_12_00_nondoc", "dhl_express_12_00_nondoc"),
323
+ ("dhl_destination_charges", "dhl_destination_charges"),
324
+ ("dhl_express_all", "dhl_express_all"),
325
+ ("dhl_parcel_de_paket", "dhl_parcel_de_paket"),
326
+ ("dhl_parcel_de_warenpost", "dhl_parcel_de_warenpost"),
327
+ ("dhl_parcel_de_europaket", "dhl_parcel_de_europaket"),
328
+ (
329
+ "dhl_parcel_de_paket_international",
330
+ "dhl_parcel_de_paket_international",
331
+ ),
332
+ (
333
+ "dhl_parcel_de_warenpost_international",
334
+ "dhl_parcel_de_warenpost_international",
335
+ ),
336
+ ("dhl_poland_premium", "dhl_poland_premium"),
337
+ ("dhl_poland_polska", "dhl_poland_polska"),
338
+ ("dhl_poland_09", "dhl_poland_09"),
339
+ ("dhl_poland_12", "dhl_poland_12"),
340
+ ("dhl_poland_connect", "dhl_poland_connect"),
341
+ ("dhl_poland_international", "dhl_poland_international"),
342
+ ("dpd_cl", "dpd_cl"),
343
+ ("dpd_express_10h", "dpd_express_10h"),
344
+ ("dpd_express_12h", "dpd_express_12h"),
345
+ ("dpd_express_18h_guarantee", "dpd_express_18h_guarantee"),
346
+ ("dpd_express_b2b_predict", "dpd_express_b2b_predict"),
347
+ ("easypost_amazonmws_ups_rates", "easypost_amazonmws_ups_rates"),
348
+ ("easypost_amazonmws_usps_rates", "easypost_amazonmws_usps_rates"),
349
+ (
350
+ "easypost_amazonmws_fedex_rates",
351
+ "easypost_amazonmws_fedex_rates",
352
+ ),
353
+ ("easypost_amazonmws_ups_labels", "easypost_amazonmws_ups_labels"),
354
+ (
355
+ "easypost_amazonmws_usps_labels",
356
+ "easypost_amazonmws_usps_labels",
357
+ ),
358
+ (
359
+ "easypost_amazonmws_fedex_labels",
360
+ "easypost_amazonmws_fedex_labels",
361
+ ),
362
+ (
363
+ "easypost_amazonmws_ups_tracking",
364
+ "easypost_amazonmws_ups_tracking",
365
+ ),
366
+ (
367
+ "easypost_amazonmws_usps_tracking",
368
+ "easypost_amazonmws_usps_tracking",
369
+ ),
370
+ (
371
+ "easypost_amazonmws_fedex_tracking",
372
+ "easypost_amazonmws_fedex_tracking",
373
+ ),
374
+ (
375
+ "easypost_apc_parcel_connect_book_service",
376
+ "easypost_apc_parcel_connect_book_service",
377
+ ),
378
+ (
379
+ "easypost_apc_parcel_connect_expedited_ddp",
380
+ "easypost_apc_parcel_connect_expedited_ddp",
381
+ ),
382
+ (
383
+ "easypost_apc_parcel_connect_expedited_ddu",
384
+ "easypost_apc_parcel_connect_expedited_ddu",
385
+ ),
386
+ (
387
+ "easypost_apc_parcel_connect_priority_ddp",
388
+ "easypost_apc_parcel_connect_priority_ddp",
389
+ ),
390
+ (
391
+ "easypost_apc_parcel_connect_priority_ddp_delcon",
392
+ "easypost_apc_parcel_connect_priority_ddp_delcon",
393
+ ),
394
+ (
395
+ "easypost_apc_parcel_connect_priority_ddu",
396
+ "easypost_apc_parcel_connect_priority_ddu",
397
+ ),
398
+ (
399
+ "easypost_apc_parcel_connect_priority_ddu_delcon",
400
+ "easypost_apc_parcel_connect_priority_ddu_delcon",
401
+ ),
402
+ (
403
+ "easypost_apc_parcel_connect_priority_ddupqw",
404
+ "easypost_apc_parcel_connect_priority_ddupqw",
405
+ ),
406
+ (
407
+ "easypost_apc_parcel_connect_standard_ddu",
408
+ "easypost_apc_parcel_connect_standard_ddu",
409
+ ),
410
+ (
411
+ "easypost_apc_parcel_connect_standard_ddupqw",
412
+ "easypost_apc_parcel_connect_standard_ddupqw",
413
+ ),
414
+ (
415
+ "easypost_apc_parcel_connect_packet_ddu",
416
+ "easypost_apc_parcel_connect_packet_ddu",
417
+ ),
418
+ ("easypost_asendia_pmi", "easypost_asendia_pmi"),
419
+ ("easypost_asendia_e_packet", "easypost_asendia_e_packet"),
420
+ ("easypost_asendia_ipa", "easypost_asendia_ipa"),
421
+ ("easypost_asendia_isal", "easypost_asendia_isal"),
422
+ ("easypost_asendia_us_ads", "easypost_asendia_us_ads"),
423
+ (
424
+ "easypost_asendia_us_air_freight_inbound",
425
+ "easypost_asendia_us_air_freight_inbound",
426
+ ),
427
+ (
428
+ "easypost_asendia_us_air_freight_outbound",
429
+ "easypost_asendia_us_air_freight_outbound",
430
+ ),
431
+ (
432
+ "easypost_asendia_us_domestic_bound_printer_matter_expedited",
433
+ "easypost_asendia_us_domestic_bound_printer_matter_expedited",
434
+ ),
435
+ (
436
+ "easypost_asendia_us_domestic_bound_printer_matter_ground",
437
+ "easypost_asendia_us_domestic_bound_printer_matter_ground",
438
+ ),
439
+ (
440
+ "easypost_asendia_us_domestic_flats_expedited",
441
+ "easypost_asendia_us_domestic_flats_expedited",
442
+ ),
443
+ (
444
+ "easypost_asendia_us_domestic_flats_ground",
445
+ "easypost_asendia_us_domestic_flats_ground",
446
+ ),
447
+ (
448
+ "easypost_asendia_us_domestic_parcel_ground_over1lb",
449
+ "easypost_asendia_us_domestic_parcel_ground_over1lb",
450
+ ),
451
+ (
452
+ "easypost_asendia_us_domestic_parcel_ground_under1lb",
453
+ "easypost_asendia_us_domestic_parcel_ground_under1lb",
454
+ ),
455
+ (
456
+ "easypost_asendia_us_domestic_parcel_max_over1lb",
457
+ "easypost_asendia_us_domestic_parcel_max_over1lb",
458
+ ),
459
+ (
460
+ "easypost_asendia_us_domestic_parcel_max_under1lb",
461
+ "easypost_asendia_us_domestic_parcel_max_under1lb",
462
+ ),
463
+ (
464
+ "easypost_asendia_us_domestic_parcel_over1lb_expedited",
465
+ "easypost_asendia_us_domestic_parcel_over1lb_expedited",
466
+ ),
467
+ (
468
+ "easypost_asendia_us_domestic_parcel_under1lb_expedited",
469
+ "easypost_asendia_us_domestic_parcel_under1lb_expedited",
470
+ ),
471
+ (
472
+ "easypost_asendia_us_domestic_promo_parcel_expedited",
473
+ "easypost_asendia_us_domestic_promo_parcel_expedited",
474
+ ),
475
+ (
476
+ "easypost_asendia_us_domestic_promo_parcel_ground",
477
+ "easypost_asendia_us_domestic_promo_parcel_ground",
478
+ ),
479
+ (
480
+ "easypost_asendia_us_bulk_freight",
481
+ "easypost_asendia_us_bulk_freight",
482
+ ),
483
+ (
484
+ "easypost_asendia_us_business_mail_canada_lettermail",
485
+ "easypost_asendia_us_business_mail_canada_lettermail",
486
+ ),
487
+ (
488
+ "easypost_asendia_us_business_mail_canada_lettermail_machineable",
489
+ "easypost_asendia_us_business_mail_canada_lettermail_machineable",
490
+ ),
491
+ (
492
+ "easypost_asendia_us_business_mail_economy",
493
+ "easypost_asendia_us_business_mail_economy",
494
+ ),
495
+ (
496
+ "easypost_asendia_us_business_mail_economy_lp_wholesale",
497
+ "easypost_asendia_us_business_mail_economy_lp_wholesale",
498
+ ),
499
+ (
500
+ "easypost_asendia_us_business_mail_economy_sp_wholesale",
501
+ "easypost_asendia_us_business_mail_economy_sp_wholesale",
502
+ ),
503
+ (
504
+ "easypost_asendia_us_business_mail_ipa",
505
+ "easypost_asendia_us_business_mail_ipa",
506
+ ),
507
+ (
508
+ "easypost_asendia_us_business_mail_isal",
509
+ "easypost_asendia_us_business_mail_isal",
510
+ ),
511
+ (
512
+ "easypost_asendia_us_business_mail_priority",
513
+ "easypost_asendia_us_business_mail_priority",
514
+ ),
515
+ (
516
+ "easypost_asendia_us_business_mail_priority_lp_wholesale",
517
+ "easypost_asendia_us_business_mail_priority_lp_wholesale",
518
+ ),
519
+ (
520
+ "easypost_asendia_us_business_mail_priority_sp_wholesale",
521
+ "easypost_asendia_us_business_mail_priority_sp_wholesale",
522
+ ),
523
+ (
524
+ "easypost_asendia_us_marketing_mail_canada_personalized_lcp",
525
+ "easypost_asendia_us_marketing_mail_canada_personalized_lcp",
526
+ ),
527
+ (
528
+ "easypost_asendia_us_marketing_mail_canada_personalized_machineable",
529
+ "easypost_asendia_us_marketing_mail_canada_personalized_machineable",
530
+ ),
531
+ (
532
+ "easypost_asendia_us_marketing_mail_canada_personalized_ndg",
533
+ "easypost_asendia_us_marketing_mail_canada_personalized_ndg",
534
+ ),
535
+ (
536
+ "easypost_asendia_us_marketing_mail_economy",
537
+ "easypost_asendia_us_marketing_mail_economy",
538
+ ),
539
+ (
540
+ "easypost_asendia_us_marketing_mail_ipa",
541
+ "easypost_asendia_us_marketing_mail_ipa",
542
+ ),
543
+ (
544
+ "easypost_asendia_us_marketing_mail_isal",
545
+ "easypost_asendia_us_marketing_mail_isal",
546
+ ),
547
+ (
548
+ "easypost_asendia_us_marketing_mail_priority",
549
+ "easypost_asendia_us_marketing_mail_priority",
550
+ ),
551
+ (
552
+ "easypost_asendia_us_publications_canada_lcp",
553
+ "easypost_asendia_us_publications_canada_lcp",
554
+ ),
555
+ (
556
+ "easypost_asendia_us_publications_canada_ndg",
557
+ "easypost_asendia_us_publications_canada_ndg",
558
+ ),
559
+ (
560
+ "easypost_asendia_us_publications_economy",
561
+ "easypost_asendia_us_publications_economy",
562
+ ),
563
+ (
564
+ "easypost_asendia_us_publications_ipa",
565
+ "easypost_asendia_us_publications_ipa",
566
+ ),
567
+ (
568
+ "easypost_asendia_us_publications_isal",
569
+ "easypost_asendia_us_publications_isal",
570
+ ),
571
+ (
572
+ "easypost_asendia_us_publications_priority",
573
+ "easypost_asendia_us_publications_priority",
574
+ ),
575
+ (
576
+ "easypost_asendia_us_epaq_elite",
577
+ "easypost_asendia_us_epaq_elite",
578
+ ),
579
+ (
580
+ "easypost_asendia_us_epaq_elite_custom",
581
+ "easypost_asendia_us_epaq_elite_custom",
582
+ ),
583
+ (
584
+ "easypost_asendia_us_epaq_elite_dap",
585
+ "easypost_asendia_us_epaq_elite_dap",
586
+ ),
587
+ (
588
+ "easypost_asendia_us_epaq_elite_ddp",
589
+ "easypost_asendia_us_epaq_elite_ddp",
590
+ ),
591
+ (
592
+ "easypost_asendia_us_epaq_elite_ddp_oversized",
593
+ "easypost_asendia_us_epaq_elite_ddp_oversized",
594
+ ),
595
+ (
596
+ "easypost_asendia_us_epaq_elite_dpd",
597
+ "easypost_asendia_us_epaq_elite_dpd",
598
+ ),
599
+ (
600
+ "easypost_asendia_us_epaq_elite_direct_access_canada_ddp",
601
+ "easypost_asendia_us_epaq_elite_direct_access_canada_ddp",
602
+ ),
603
+ (
604
+ "easypost_asendia_us_epaq_elite_oversized",
605
+ "easypost_asendia_us_epaq_elite_oversized",
606
+ ),
607
+ ("easypost_asendia_us_epaq_plus", "easypost_asendia_us_epaq_plus"),
608
+ (
609
+ "easypost_asendia_us_epaq_plus_custom",
610
+ "easypost_asendia_us_epaq_plus_custom",
611
+ ),
612
+ (
613
+ "easypost_asendia_us_epaq_plus_customs_prepaid",
614
+ "easypost_asendia_us_epaq_plus_customs_prepaid",
615
+ ),
616
+ (
617
+ "easypost_asendia_us_epaq_plus_dap",
618
+ "easypost_asendia_us_epaq_plus_dap",
619
+ ),
620
+ (
621
+ "easypost_asendia_us_epaq_plus_ddp",
622
+ "easypost_asendia_us_epaq_plus_ddp",
623
+ ),
624
+ (
625
+ "easypost_asendia_us_epaq_plus_economy",
626
+ "easypost_asendia_us_epaq_plus_economy",
627
+ ),
628
+ (
629
+ "easypost_asendia_us_epaq_plus_wholesale",
630
+ "easypost_asendia_us_epaq_plus_wholesale",
631
+ ),
632
+ (
633
+ "easypost_asendia_us_epaq_pluse_packet",
634
+ "easypost_asendia_us_epaq_pluse_packet",
635
+ ),
636
+ (
637
+ "easypost_asendia_us_epaq_pluse_packet_canada_customs_pre_paid",
638
+ "easypost_asendia_us_epaq_pluse_packet_canada_customs_pre_paid",
639
+ ),
640
+ (
641
+ "easypost_asendia_us_epaq_pluse_packet_canada_ddp",
642
+ "easypost_asendia_us_epaq_pluse_packet_canada_ddp",
643
+ ),
644
+ (
645
+ "easypost_asendia_us_epaq_returns_domestic",
646
+ "easypost_asendia_us_epaq_returns_domestic",
647
+ ),
648
+ (
649
+ "easypost_asendia_us_epaq_returns_international",
650
+ "easypost_asendia_us_epaq_returns_international",
651
+ ),
652
+ (
653
+ "easypost_asendia_us_epaq_select",
654
+ "easypost_asendia_us_epaq_select",
655
+ ),
656
+ (
657
+ "easypost_asendia_us_epaq_select_custom",
658
+ "easypost_asendia_us_epaq_select_custom",
659
+ ),
660
+ (
661
+ "easypost_asendia_us_epaq_select_customs_prepaid_by_shopper",
662
+ "easypost_asendia_us_epaq_select_customs_prepaid_by_shopper",
663
+ ),
664
+ (
665
+ "easypost_asendia_us_epaq_select_dap",
666
+ "easypost_asendia_us_epaq_select_dap",
667
+ ),
668
+ (
669
+ "easypost_asendia_us_epaq_select_ddp",
670
+ "easypost_asendia_us_epaq_select_ddp",
671
+ ),
672
+ (
673
+ "easypost_asendia_us_epaq_select_ddp_direct_access",
674
+ "easypost_asendia_us_epaq_select_ddp_direct_access",
675
+ ),
676
+ (
677
+ "easypost_asendia_us_epaq_select_direct_access",
678
+ "easypost_asendia_us_epaq_select_direct_access",
679
+ ),
680
+ (
681
+ "easypost_asendia_us_epaq_select_direct_access_canada_ddp",
682
+ "easypost_asendia_us_epaq_select_direct_access_canada_ddp",
683
+ ),
684
+ (
685
+ "easypost_asendia_us_epaq_select_economy",
686
+ "easypost_asendia_us_epaq_select_economy",
687
+ ),
688
+ (
689
+ "easypost_asendia_us_epaq_select_oversized",
690
+ "easypost_asendia_us_epaq_select_oversized",
691
+ ),
692
+ (
693
+ "easypost_asendia_us_epaq_select_oversized_ddp",
694
+ "easypost_asendia_us_epaq_select_oversized_ddp",
695
+ ),
696
+ (
697
+ "easypost_asendia_us_epaq_select_pmei",
698
+ "easypost_asendia_us_epaq_select_pmei",
699
+ ),
700
+ (
701
+ "easypost_asendia_us_epaq_select_pmei_canada_customs_pre_paid",
702
+ "easypost_asendia_us_epaq_select_pmei_canada_customs_pre_paid",
703
+ ),
704
+ (
705
+ "easypost_asendia_us_epaq_select_pmeipc_postage",
706
+ "easypost_asendia_us_epaq_select_pmeipc_postage",
707
+ ),
708
+ (
709
+ "easypost_asendia_us_epaq_select_pmi",
710
+ "easypost_asendia_us_epaq_select_pmi",
711
+ ),
712
+ (
713
+ "easypost_asendia_us_epaq_select_pmi_canada_customs_prepaid",
714
+ "easypost_asendia_us_epaq_select_pmi_canada_customs_prepaid",
715
+ ),
716
+ (
717
+ "easypost_asendia_us_epaq_select_pmi_canada_ddp",
718
+ "easypost_asendia_us_epaq_select_pmi_canada_ddp",
719
+ ),
720
+ (
721
+ "easypost_asendia_us_epaq_select_pmi_non_presort",
722
+ "easypost_asendia_us_epaq_select_pmi_non_presort",
723
+ ),
724
+ (
725
+ "easypost_asendia_us_epaq_select_pmipc_postage",
726
+ "easypost_asendia_us_epaq_select_pmipc_postage",
727
+ ),
728
+ (
729
+ "easypost_asendia_us_epaq_standard",
730
+ "easypost_asendia_us_epaq_standard",
731
+ ),
732
+ (
733
+ "easypost_asendia_us_epaq_standard_custom",
734
+ "easypost_asendia_us_epaq_standard_custom",
735
+ ),
736
+ (
737
+ "easypost_asendia_us_epaq_standard_economy",
738
+ "easypost_asendia_us_epaq_standard_economy",
739
+ ),
740
+ (
741
+ "easypost_asendia_us_epaq_standard_ipa",
742
+ "easypost_asendia_us_epaq_standard_ipa",
743
+ ),
744
+ (
745
+ "easypost_asendia_us_epaq_standard_isal",
746
+ "easypost_asendia_us_epaq_standard_isal",
747
+ ),
748
+ (
749
+ "easypost_asendia_us_epaq_select_pmei_non_presort",
750
+ "easypost_asendia_us_epaq_select_pmei_non_presort",
751
+ ),
752
+ (
753
+ "easypost_australiapost_express_post",
754
+ "easypost_australiapost_express_post",
755
+ ),
756
+ (
757
+ "easypost_australiapost_express_post_signature",
758
+ "easypost_australiapost_express_post_signature",
759
+ ),
760
+ (
761
+ "easypost_australiapost_parcel_post",
762
+ "easypost_australiapost_parcel_post",
763
+ ),
764
+ (
765
+ "easypost_australiapost_parcel_post_signature",
766
+ "easypost_australiapost_parcel_post_signature",
767
+ ),
768
+ (
769
+ "easypost_australiapost_parcel_post_extra",
770
+ "easypost_australiapost_parcel_post_extra",
771
+ ),
772
+ (
773
+ "easypost_australiapost_parcel_post_wine_plus_signature",
774
+ "easypost_australiapost_parcel_post_wine_plus_signature",
775
+ ),
776
+ ("easypost_axlehire_delivery", "easypost_axlehire_delivery"),
777
+ (
778
+ "easypost_better_trucks_next_day",
779
+ "easypost_better_trucks_next_day",
780
+ ),
781
+ ("easypost_bond_standard", "easypost_bond_standard"),
782
+ (
783
+ "easypost_canadapost_regular_parcel",
784
+ "easypost_canadapost_regular_parcel",
785
+ ),
786
+ (
787
+ "easypost_canadapost_expedited_parcel",
788
+ "easypost_canadapost_expedited_parcel",
789
+ ),
790
+ (
791
+ "easypost_canadapost_xpresspost",
792
+ "easypost_canadapost_xpresspost",
793
+ ),
794
+ (
795
+ "easypost_canadapost_xpresspost_certified",
796
+ "easypost_canadapost_xpresspost_certified",
797
+ ),
798
+ ("easypost_canadapost_priority", "easypost_canadapost_priority"),
799
+ (
800
+ "easypost_canadapost_library_books",
801
+ "easypost_canadapost_library_books",
802
+ ),
803
+ (
804
+ "easypost_canadapost_expedited_parcel_usa",
805
+ "easypost_canadapost_expedited_parcel_usa",
806
+ ),
807
+ (
808
+ "easypost_canadapost_priority_worldwide_envelope_usa",
809
+ "easypost_canadapost_priority_worldwide_envelope_usa",
810
+ ),
811
+ (
812
+ "easypost_canadapost_priority_worldwide_pak_usa",
813
+ "easypost_canadapost_priority_worldwide_pak_usa",
814
+ ),
815
+ (
816
+ "easypost_canadapost_priority_worldwide_parcel_usa",
817
+ "easypost_canadapost_priority_worldwide_parcel_usa",
818
+ ),
819
+ (
820
+ "easypost_canadapost_small_packet_usa_air",
821
+ "easypost_canadapost_small_packet_usa_air",
822
+ ),
823
+ (
824
+ "easypost_canadapost_tracked_packet_usa",
825
+ "easypost_canadapost_tracked_packet_usa",
826
+ ),
827
+ (
828
+ "easypost_canadapost_tracked_packet_usalvm",
829
+ "easypost_canadapost_tracked_packet_usalvm",
830
+ ),
831
+ (
832
+ "easypost_canadapost_xpresspost_usa",
833
+ "easypost_canadapost_xpresspost_usa",
834
+ ),
835
+ (
836
+ "easypost_canadapost_xpresspost_international",
837
+ "easypost_canadapost_xpresspost_international",
838
+ ),
839
+ (
840
+ "easypost_canadapost_international_parcel_air",
841
+ "easypost_canadapost_international_parcel_air",
842
+ ),
843
+ (
844
+ "easypost_canadapost_international_parcel_surface",
845
+ "easypost_canadapost_international_parcel_surface",
846
+ ),
847
+ (
848
+ "easypost_canadapost_priority_worldwide_envelope_intl",
849
+ "easypost_canadapost_priority_worldwide_envelope_intl",
850
+ ),
851
+ (
852
+ "easypost_canadapost_priority_worldwide_pak_intl",
853
+ "easypost_canadapost_priority_worldwide_pak_intl",
854
+ ),
855
+ (
856
+ "easypost_canadapost_priority_worldwide_parcel_intl",
857
+ "easypost_canadapost_priority_worldwide_parcel_intl",
858
+ ),
859
+ (
860
+ "easypost_canadapost_small_packet_international_air",
861
+ "easypost_canadapost_small_packet_international_air",
862
+ ),
863
+ (
864
+ "easypost_canadapost_small_packet_international_surface",
865
+ "easypost_canadapost_small_packet_international_surface",
866
+ ),
867
+ (
868
+ "easypost_canadapost_tracked_packet_international",
869
+ "easypost_canadapost_tracked_packet_international",
870
+ ),
871
+ ("easypost_canpar_ground", "easypost_canpar_ground"),
872
+ ("easypost_canpar_select_letter", "easypost_canpar_select_letter"),
873
+ ("easypost_canpar_select_pak", "easypost_canpar_select_pak"),
874
+ ("easypost_canpar_select", "easypost_canpar_select"),
875
+ (
876
+ "easypost_canpar_overnight_letter",
877
+ "easypost_canpar_overnight_letter",
878
+ ),
879
+ ("easypost_canpar_overnight_pak", "easypost_canpar_overnight_pak"),
880
+ ("easypost_canpar_overnight", "easypost_canpar_overnight"),
881
+ ("easypost_canpar_select_usa", "easypost_canpar_select_usa"),
882
+ ("easypost_canpar_usa_pak", "easypost_canpar_usa_pak"),
883
+ ("easypost_canpar_usa_letter", "easypost_canpar_usa_letter"),
884
+ ("easypost_canpar_usa", "easypost_canpar_usa"),
885
+ ("easypost_canpar_international", "easypost_canpar_international"),
886
+ ("easypost_cdl_distribution", "easypost_cdl_distribution"),
887
+ ("easypost_cdl_same_day", "easypost_cdl_same_day"),
888
+ (
889
+ "easypost_courier_express_basic_parcel",
890
+ "easypost_courier_express_basic_parcel",
891
+ ),
892
+ (
893
+ "easypost_couriersplease_domestic_priority_signature",
894
+ "easypost_couriersplease_domestic_priority_signature",
895
+ ),
896
+ (
897
+ "easypost_couriersplease_domestic_priority",
898
+ "easypost_couriersplease_domestic_priority",
899
+ ),
900
+ (
901
+ "easypost_couriersplease_domestic_off_peak_signature",
902
+ "easypost_couriersplease_domestic_off_peak_signature",
903
+ ),
904
+ (
905
+ "easypost_couriersplease_domestic_off_peak",
906
+ "easypost_couriersplease_domestic_off_peak",
907
+ ),
908
+ (
909
+ "easypost_couriersplease_gold_domestic_signature",
910
+ "easypost_couriersplease_gold_domestic_signature",
911
+ ),
912
+ (
913
+ "easypost_couriersplease_gold_domestic",
914
+ "easypost_couriersplease_gold_domestic",
915
+ ),
916
+ (
917
+ "easypost_couriersplease_australian_city_express_signature",
918
+ "easypost_couriersplease_australian_city_express_signature",
919
+ ),
920
+ (
921
+ "easypost_couriersplease_australian_city_express",
922
+ "easypost_couriersplease_australian_city_express",
923
+ ),
924
+ (
925
+ "easypost_couriersplease_domestic_saver_signature",
926
+ "easypost_couriersplease_domestic_saver_signature",
927
+ ),
928
+ (
929
+ "easypost_couriersplease_domestic_saver",
930
+ "easypost_couriersplease_domestic_saver",
931
+ ),
932
+ (
933
+ "easypost_couriersplease_road_express",
934
+ "easypost_couriersplease_road_express",
935
+ ),
936
+ (
937
+ "easypost_couriersplease_5_kg_satchel",
938
+ "easypost_couriersplease_5_kg_satchel",
939
+ ),
940
+ (
941
+ "easypost_couriersplease_3_kg_satchel",
942
+ "easypost_couriersplease_3_kg_satchel",
943
+ ),
944
+ (
945
+ "easypost_couriersplease_1_kg_satchel",
946
+ "easypost_couriersplease_1_kg_satchel",
947
+ ),
948
+ (
949
+ "easypost_couriersplease_5_kg_satchel_atl",
950
+ "easypost_couriersplease_5_kg_satchel_atl",
951
+ ),
952
+ (
953
+ "easypost_couriersplease_3_kg_satchel_atl",
954
+ "easypost_couriersplease_3_kg_satchel_atl",
955
+ ),
956
+ (
957
+ "easypost_couriersplease_1_kg_satchel_atl",
958
+ "easypost_couriersplease_1_kg_satchel_atl",
959
+ ),
960
+ (
961
+ "easypost_couriersplease_500_gram_satchel",
962
+ "easypost_couriersplease_500_gram_satchel",
963
+ ),
964
+ (
965
+ "easypost_couriersplease_500_gram_satchel_atl",
966
+ "easypost_couriersplease_500_gram_satchel_atl",
967
+ ),
968
+ (
969
+ "easypost_couriersplease_25_kg_parcel",
970
+ "easypost_couriersplease_25_kg_parcel",
971
+ ),
972
+ (
973
+ "easypost_couriersplease_10_kg_parcel",
974
+ "easypost_couriersplease_10_kg_parcel",
975
+ ),
976
+ (
977
+ "easypost_couriersplease_5_kg_parcel",
978
+ "easypost_couriersplease_5_kg_parcel",
979
+ ),
980
+ (
981
+ "easypost_couriersplease_3_kg_parcel",
982
+ "easypost_couriersplease_3_kg_parcel",
983
+ ),
984
+ (
985
+ "easypost_couriersplease_1_kg_parcel",
986
+ "easypost_couriersplease_1_kg_parcel",
987
+ ),
988
+ (
989
+ "easypost_couriersplease_500_gram_parcel",
990
+ "easypost_couriersplease_500_gram_parcel",
991
+ ),
992
+ (
993
+ "easypost_couriersplease_500_gram_parcel_atl",
994
+ "easypost_couriersplease_500_gram_parcel_atl",
995
+ ),
996
+ (
997
+ "easypost_couriersplease_express_international_priority",
998
+ "easypost_couriersplease_express_international_priority",
999
+ ),
1000
+ (
1001
+ "easypost_couriersplease_international_saver",
1002
+ "easypost_couriersplease_international_saver",
1003
+ ),
1004
+ (
1005
+ "easypost_couriersplease_international_express_import",
1006
+ "easypost_couriersplease_international_express_import",
1007
+ ),
1008
+ (
1009
+ "easypost_couriersplease_domestic_tracked",
1010
+ "easypost_couriersplease_domestic_tracked",
1011
+ ),
1012
+ (
1013
+ "easypost_couriersplease_international_economy",
1014
+ "easypost_couriersplease_international_economy",
1015
+ ),
1016
+ (
1017
+ "easypost_couriersplease_international_standard",
1018
+ "easypost_couriersplease_international_standard",
1019
+ ),
1020
+ (
1021
+ "easypost_couriersplease_international_express",
1022
+ "easypost_couriersplease_international_express",
1023
+ ),
1024
+ (
1025
+ "easypost_deutschepost_packet_plus",
1026
+ "easypost_deutschepost_packet_plus",
1027
+ ),
1028
+ (
1029
+ "easypost_deutschepost_uk_priority_packet_plus",
1030
+ "easypost_deutschepost_uk_priority_packet_plus",
1031
+ ),
1032
+ (
1033
+ "easypost_deutschepost_uk_priority_packet",
1034
+ "easypost_deutschepost_uk_priority_packet",
1035
+ ),
1036
+ (
1037
+ "easypost_deutschepost_uk_priority_packet_tracked",
1038
+ "easypost_deutschepost_uk_priority_packet_tracked",
1039
+ ),
1040
+ (
1041
+ "easypost_deutschepost_uk_business_mail_registered",
1042
+ "easypost_deutschepost_uk_business_mail_registered",
1043
+ ),
1044
+ (
1045
+ "easypost_deutschepost_uk_standard_packet",
1046
+ "easypost_deutschepost_uk_standard_packet",
1047
+ ),
1048
+ (
1049
+ "easypost_deutschepost_uk_business_mail_standard",
1050
+ "easypost_deutschepost_uk_business_mail_standard",
1051
+ ),
1052
+ ("easypost_dhl_ecom_asia_packet", "easypost_dhl_ecom_asia_packet"),
1053
+ (
1054
+ "easypost_dhl_ecom_asia_parcel_direct",
1055
+ "easypost_dhl_ecom_asia_parcel_direct",
1056
+ ),
1057
+ (
1058
+ "easypost_dhl_ecom_asia_parcel_direct_expedited",
1059
+ "easypost_dhl_ecom_asia_parcel_direct_expedited",
1060
+ ),
1061
+ (
1062
+ "easypost_dhl_ecom_parcel_expedited",
1063
+ "easypost_dhl_ecom_parcel_expedited",
1064
+ ),
1065
+ (
1066
+ "easypost_dhl_ecom_parcel_expedited_max",
1067
+ "easypost_dhl_ecom_parcel_expedited_max",
1068
+ ),
1069
+ (
1070
+ "easypost_dhl_ecom_parcel_ground",
1071
+ "easypost_dhl_ecom_parcel_ground",
1072
+ ),
1073
+ (
1074
+ "easypost_dhl_ecom_bpm_expedited",
1075
+ "easypost_dhl_ecom_bpm_expedited",
1076
+ ),
1077
+ ("easypost_dhl_ecom_bpm_ground", "easypost_dhl_ecom_bpm_ground"),
1078
+ (
1079
+ "easypost_dhl_ecom_parcel_international_direct",
1080
+ "easypost_dhl_ecom_parcel_international_direct",
1081
+ ),
1082
+ (
1083
+ "easypost_dhl_ecom_parcel_international_standard",
1084
+ "easypost_dhl_ecom_parcel_international_standard",
1085
+ ),
1086
+ (
1087
+ "easypost_dhl_ecom_packet_international",
1088
+ "easypost_dhl_ecom_packet_international",
1089
+ ),
1090
+ (
1091
+ "easypost_dhl_ecom_parcel_international_direct_priority",
1092
+ "easypost_dhl_ecom_parcel_international_direct_priority",
1093
+ ),
1094
+ (
1095
+ "easypost_dhl_ecom_parcel_international_direct_standard",
1096
+ "easypost_dhl_ecom_parcel_international_direct_standard",
1097
+ ),
1098
+ (
1099
+ "easypost_dhl_express_break_bulk_economy",
1100
+ "easypost_dhl_express_break_bulk_economy",
1101
+ ),
1102
+ (
1103
+ "easypost_dhl_express_break_bulk_express",
1104
+ "easypost_dhl_express_break_bulk_express",
1105
+ ),
1106
+ (
1107
+ "easypost_dhl_express_domestic_economy_select",
1108
+ "easypost_dhl_express_domestic_economy_select",
1109
+ ),
1110
+ (
1111
+ "easypost_dhl_express_domestic_express",
1112
+ "easypost_dhl_express_domestic_express",
1113
+ ),
1114
+ (
1115
+ "easypost_dhl_express_domestic_express1030",
1116
+ "easypost_dhl_express_domestic_express1030",
1117
+ ),
1118
+ (
1119
+ "easypost_dhl_express_domestic_express1200",
1120
+ "easypost_dhl_express_domestic_express1200",
1121
+ ),
1122
+ (
1123
+ "easypost_dhl_express_economy_select",
1124
+ "easypost_dhl_express_economy_select",
1125
+ ),
1126
+ (
1127
+ "easypost_dhl_express_economy_select_non_doc",
1128
+ "easypost_dhl_express_economy_select_non_doc",
1129
+ ),
1130
+ (
1131
+ "easypost_dhl_express_euro_pack",
1132
+ "easypost_dhl_express_euro_pack",
1133
+ ),
1134
+ (
1135
+ "easypost_dhl_express_europack_non_doc",
1136
+ "easypost_dhl_express_europack_non_doc",
1137
+ ),
1138
+ (
1139
+ "easypost_dhl_express_express1030",
1140
+ "easypost_dhl_express_express1030",
1141
+ ),
1142
+ (
1143
+ "easypost_dhl_express_express1030_non_doc",
1144
+ "easypost_dhl_express_express1030_non_doc",
1145
+ ),
1146
+ (
1147
+ "easypost_dhl_express_express1200_non_doc",
1148
+ "easypost_dhl_express_express1200_non_doc",
1149
+ ),
1150
+ (
1151
+ "easypost_dhl_express_express1200",
1152
+ "easypost_dhl_express_express1200",
1153
+ ),
1154
+ (
1155
+ "easypost_dhl_express_express900",
1156
+ "easypost_dhl_express_express900",
1157
+ ),
1158
+ (
1159
+ "easypost_dhl_express_express900_non_doc",
1160
+ "easypost_dhl_express_express900_non_doc",
1161
+ ),
1162
+ (
1163
+ "easypost_dhl_express_express_easy",
1164
+ "easypost_dhl_express_express_easy",
1165
+ ),
1166
+ (
1167
+ "easypost_dhl_express_express_easy_non_doc",
1168
+ "easypost_dhl_express_express_easy_non_doc",
1169
+ ),
1170
+ (
1171
+ "easypost_dhl_express_express_envelope",
1172
+ "easypost_dhl_express_express_envelope",
1173
+ ),
1174
+ (
1175
+ "easypost_dhl_express_express_worldwide",
1176
+ "easypost_dhl_express_express_worldwide",
1177
+ ),
1178
+ (
1179
+ "easypost_dhl_express_express_worldwide_b2_c",
1180
+ "easypost_dhl_express_express_worldwide_b2_c",
1181
+ ),
1182
+ (
1183
+ "easypost_dhl_express_express_worldwide_b2_c_non_doc",
1184
+ "easypost_dhl_express_express_worldwide_b2_c_non_doc",
1185
+ ),
1186
+ (
1187
+ "easypost_dhl_express_express_worldwide_ecx",
1188
+ "easypost_dhl_express_express_worldwide_ecx",
1189
+ ),
1190
+ (
1191
+ "easypost_dhl_express_express_worldwide_non_doc",
1192
+ "easypost_dhl_express_express_worldwide_non_doc",
1193
+ ),
1194
+ (
1195
+ "easypost_dhl_express_freight_worldwide",
1196
+ "easypost_dhl_express_freight_worldwide",
1197
+ ),
1198
+ (
1199
+ "easypost_dhl_express_globalmail_business",
1200
+ "easypost_dhl_express_globalmail_business",
1201
+ ),
1202
+ ("easypost_dhl_express_jet_line", "easypost_dhl_express_jet_line"),
1203
+ (
1204
+ "easypost_dhl_express_jumbo_box",
1205
+ "easypost_dhl_express_jumbo_box",
1206
+ ),
1207
+ (
1208
+ "easypost_dhl_express_logistics_services",
1209
+ "easypost_dhl_express_logistics_services",
1210
+ ),
1211
+ ("easypost_dhl_express_same_day", "easypost_dhl_express_same_day"),
1212
+ (
1213
+ "easypost_dhl_express_secure_line",
1214
+ "easypost_dhl_express_secure_line",
1215
+ ),
1216
+ (
1217
+ "easypost_dhl_express_sprint_line",
1218
+ "easypost_dhl_express_sprint_line",
1219
+ ),
1220
+ ("easypost_dpd_classic", "easypost_dpd_classic"),
1221
+ ("easypost_dpd_8_30", "easypost_dpd_8_30"),
1222
+ ("easypost_dpd_10_00", "easypost_dpd_10_00"),
1223
+ ("easypost_dpd_12_00", "easypost_dpd_12_00"),
1224
+ ("easypost_dpd_18_00", "easypost_dpd_18_00"),
1225
+ ("easypost_dpd_express", "easypost_dpd_express"),
1226
+ ("easypost_dpd_parcelletter", "easypost_dpd_parcelletter"),
1227
+ ("easypost_dpd_parcelletterplus", "easypost_dpd_parcelletterplus"),
1228
+ (
1229
+ "easypost_dpd_internationalmail",
1230
+ "easypost_dpd_internationalmail",
1231
+ ),
1232
+ (
1233
+ "easypost_dpd_uk_air_express_international_air",
1234
+ "easypost_dpd_uk_air_express_international_air",
1235
+ ),
1236
+ (
1237
+ "easypost_dpd_uk_air_classic_international_air",
1238
+ "easypost_dpd_uk_air_classic_international_air",
1239
+ ),
1240
+ ("easypost_dpd_uk_parcel_sunday", "easypost_dpd_uk_parcel_sunday"),
1241
+ (
1242
+ "easypost_dpd_uk_freight_parcel_sunday",
1243
+ "easypost_dpd_uk_freight_parcel_sunday",
1244
+ ),
1245
+ ("easypost_dpd_uk_pallet_sunday", "easypost_dpd_uk_pallet_sunday"),
1246
+ (
1247
+ "easypost_dpd_uk_pallet_dpd_classic",
1248
+ "easypost_dpd_uk_pallet_dpd_classic",
1249
+ ),
1250
+ (
1251
+ "easypost_dpd_uk_expresspak_dpd_classic",
1252
+ "easypost_dpd_uk_expresspak_dpd_classic",
1253
+ ),
1254
+ (
1255
+ "easypost_dpd_uk_expresspak_sunday",
1256
+ "easypost_dpd_uk_expresspak_sunday",
1257
+ ),
1258
+ (
1259
+ "easypost_dpd_uk_parcel_dpd_classic",
1260
+ "easypost_dpd_uk_parcel_dpd_classic",
1261
+ ),
1262
+ (
1263
+ "easypost_dpd_uk_parcel_dpd_two_day",
1264
+ "easypost_dpd_uk_parcel_dpd_two_day",
1265
+ ),
1266
+ (
1267
+ "easypost_dpd_uk_parcel_dpd_next_day",
1268
+ "easypost_dpd_uk_parcel_dpd_next_day",
1269
+ ),
1270
+ ("easypost_dpd_uk_parcel_dpd12", "easypost_dpd_uk_parcel_dpd12"),
1271
+ ("easypost_dpd_uk_parcel_dpd10", "easypost_dpd_uk_parcel_dpd10"),
1272
+ (
1273
+ "easypost_dpd_uk_parcel_return_to_shop",
1274
+ "easypost_dpd_uk_parcel_return_to_shop",
1275
+ ),
1276
+ (
1277
+ "easypost_dpd_uk_parcel_saturday",
1278
+ "easypost_dpd_uk_parcel_saturday",
1279
+ ),
1280
+ (
1281
+ "easypost_dpd_uk_parcel_saturday12",
1282
+ "easypost_dpd_uk_parcel_saturday12",
1283
+ ),
1284
+ (
1285
+ "easypost_dpd_uk_parcel_saturday10",
1286
+ "easypost_dpd_uk_parcel_saturday10",
1287
+ ),
1288
+ (
1289
+ "easypost_dpd_uk_parcel_sunday12",
1290
+ "easypost_dpd_uk_parcel_sunday12",
1291
+ ),
1292
+ (
1293
+ "easypost_dpd_uk_freight_parcel_dpd_classic",
1294
+ "easypost_dpd_uk_freight_parcel_dpd_classic",
1295
+ ),
1296
+ (
1297
+ "easypost_dpd_uk_freight_parcel_sunday12",
1298
+ "easypost_dpd_uk_freight_parcel_sunday12",
1299
+ ),
1300
+ (
1301
+ "easypost_dpd_uk_expresspak_dpd_next_day",
1302
+ "easypost_dpd_uk_expresspak_dpd_next_day",
1303
+ ),
1304
+ (
1305
+ "easypost_dpd_uk_expresspak_dpd12",
1306
+ "easypost_dpd_uk_expresspak_dpd12",
1307
+ ),
1308
+ (
1309
+ "easypost_dpd_uk_expresspak_dpd10",
1310
+ "easypost_dpd_uk_expresspak_dpd10",
1311
+ ),
1312
+ (
1313
+ "easypost_dpd_uk_expresspak_saturday",
1314
+ "easypost_dpd_uk_expresspak_saturday",
1315
+ ),
1316
+ (
1317
+ "easypost_dpd_uk_expresspak_saturday12",
1318
+ "easypost_dpd_uk_expresspak_saturday12",
1319
+ ),
1320
+ (
1321
+ "easypost_dpd_uk_expresspak_saturday10",
1322
+ "easypost_dpd_uk_expresspak_saturday10",
1323
+ ),
1324
+ (
1325
+ "easypost_dpd_uk_expresspak_sunday12",
1326
+ "easypost_dpd_uk_expresspak_sunday12",
1327
+ ),
1328
+ (
1329
+ "easypost_dpd_uk_pallet_sunday12",
1330
+ "easypost_dpd_uk_pallet_sunday12",
1331
+ ),
1332
+ (
1333
+ "easypost_dpd_uk_pallet_dpd_two_day",
1334
+ "easypost_dpd_uk_pallet_dpd_two_day",
1335
+ ),
1336
+ (
1337
+ "easypost_dpd_uk_pallet_dpd_next_day",
1338
+ "easypost_dpd_uk_pallet_dpd_next_day",
1339
+ ),
1340
+ ("easypost_dpd_uk_pallet_dpd12", "easypost_dpd_uk_pallet_dpd12"),
1341
+ ("easypost_dpd_uk_pallet_dpd10", "easypost_dpd_uk_pallet_dpd10"),
1342
+ (
1343
+ "easypost_dpd_uk_pallet_saturday",
1344
+ "easypost_dpd_uk_pallet_saturday",
1345
+ ),
1346
+ (
1347
+ "easypost_dpd_uk_pallet_saturday12",
1348
+ "easypost_dpd_uk_pallet_saturday12",
1349
+ ),
1350
+ (
1351
+ "easypost_dpd_uk_pallet_saturday10",
1352
+ "easypost_dpd_uk_pallet_saturday10",
1353
+ ),
1354
+ (
1355
+ "easypost_dpd_uk_freight_parcel_dpd_two_day",
1356
+ "easypost_dpd_uk_freight_parcel_dpd_two_day",
1357
+ ),
1358
+ (
1359
+ "easypost_dpd_uk_freight_parcel_dpd_next_day",
1360
+ "easypost_dpd_uk_freight_parcel_dpd_next_day",
1361
+ ),
1362
+ (
1363
+ "easypost_dpd_uk_freight_parcel_dpd12",
1364
+ "easypost_dpd_uk_freight_parcel_dpd12",
1365
+ ),
1366
+ (
1367
+ "easypost_dpd_uk_freight_parcel_dpd10",
1368
+ "easypost_dpd_uk_freight_parcel_dpd10",
1369
+ ),
1370
+ (
1371
+ "easypost_dpd_uk_freight_parcel_saturday",
1372
+ "easypost_dpd_uk_freight_parcel_saturday",
1373
+ ),
1374
+ (
1375
+ "easypost_dpd_uk_freight_parcel_saturday12",
1376
+ "easypost_dpd_uk_freight_parcel_saturday12",
1377
+ ),
1378
+ (
1379
+ "easypost_dpd_uk_freight_parcel_saturday10",
1380
+ "easypost_dpd_uk_freight_parcel_saturday10",
1381
+ ),
1382
+ (
1383
+ "easypost_epost_courier_service_ddp",
1384
+ "easypost_epost_courier_service_ddp",
1385
+ ),
1386
+ (
1387
+ "easypost_epost_courier_service_ddu",
1388
+ "easypost_epost_courier_service_ddu",
1389
+ ),
1390
+ (
1391
+ "easypost_epost_domestic_economy_parcel",
1392
+ "easypost_epost_domestic_economy_parcel",
1393
+ ),
1394
+ (
1395
+ "easypost_epost_domestic_parcel_bpm",
1396
+ "easypost_epost_domestic_parcel_bpm",
1397
+ ),
1398
+ (
1399
+ "easypost_epost_domestic_priority_parcel",
1400
+ "easypost_epost_domestic_priority_parcel",
1401
+ ),
1402
+ (
1403
+ "easypost_epost_domestic_priority_parcel_bpm",
1404
+ "easypost_epost_domestic_priority_parcel_bpm",
1405
+ ),
1406
+ ("easypost_epost_emi_service", "easypost_epost_emi_service"),
1407
+ (
1408
+ "easypost_epost_economy_parcel_service",
1409
+ "easypost_epost_economy_parcel_service",
1410
+ ),
1411
+ ("easypost_epost_ipa_service", "easypost_epost_ipa_service"),
1412
+ ("easypost_epost_isal_service", "easypost_epost_isal_service"),
1413
+ ("easypost_epost_pmi_service", "easypost_epost_pmi_service"),
1414
+ (
1415
+ "easypost_epost_priority_parcel_ddp",
1416
+ "easypost_epost_priority_parcel_ddp",
1417
+ ),
1418
+ (
1419
+ "easypost_epost_priority_parcel_ddu",
1420
+ "easypost_epost_priority_parcel_ddu",
1421
+ ),
1422
+ (
1423
+ "easypost_epost_priority_parcel_delivery_confirmation_ddp",
1424
+ "easypost_epost_priority_parcel_delivery_confirmation_ddp",
1425
+ ),
1426
+ (
1427
+ "easypost_epost_priority_parcel_delivery_confirmation_ddu",
1428
+ "easypost_epost_priority_parcel_delivery_confirmation_ddu",
1429
+ ),
1430
+ (
1431
+ "easypost_epost_epacket_service",
1432
+ "easypost_epost_epacket_service",
1433
+ ),
1434
+ (
1435
+ "easypost_estafeta_next_day_by930",
1436
+ "easypost_estafeta_next_day_by930",
1437
+ ),
1438
+ (
1439
+ "easypost_estafeta_next_day_by1130",
1440
+ "easypost_estafeta_next_day_by1130",
1441
+ ),
1442
+ ("easypost_estafeta_next_day", "easypost_estafeta_next_day"),
1443
+ ("easypost_estafeta_two_day", "easypost_estafeta_two_day"),
1444
+ ("easypost_estafeta_ltl", "easypost_estafeta_ltl"),
1445
+ ("easypost_fastway_parcel", "easypost_fastway_parcel"),
1446
+ ("easypost_fastway_satchel", "easypost_fastway_satchel"),
1447
+ ("easypost_fedex_ground", "easypost_fedex_ground"),
1448
+ ("easypost_fedex_2_day", "easypost_fedex_2_day"),
1449
+ ("easypost_fedex_2_day_am", "easypost_fedex_2_day_am"),
1450
+ ("easypost_fedex_express_saver", "easypost_fedex_express_saver"),
1451
+ (
1452
+ "easypost_fedex_standard_overnight",
1453
+ "easypost_fedex_standard_overnight",
1454
+ ),
1455
+ (
1456
+ "easypost_fedex_first_overnight",
1457
+ "easypost_fedex_first_overnight",
1458
+ ),
1459
+ (
1460
+ "easypost_fedex_priority_overnight",
1461
+ "easypost_fedex_priority_overnight",
1462
+ ),
1463
+ (
1464
+ "easypost_fedex_international_economy",
1465
+ "easypost_fedex_international_economy",
1466
+ ),
1467
+ (
1468
+ "easypost_fedex_international_first",
1469
+ "easypost_fedex_international_first",
1470
+ ),
1471
+ (
1472
+ "easypost_fedex_international_priority",
1473
+ "easypost_fedex_international_priority",
1474
+ ),
1475
+ (
1476
+ "easypost_fedex_ground_home_delivery",
1477
+ "easypost_fedex_ground_home_delivery",
1478
+ ),
1479
+ (
1480
+ "easypost_fedex_crossborder_cbec",
1481
+ "easypost_fedex_crossborder_cbec",
1482
+ ),
1483
+ (
1484
+ "easypost_fedex_crossborder_cbecl",
1485
+ "easypost_fedex_crossborder_cbecl",
1486
+ ),
1487
+ (
1488
+ "easypost_fedex_crossborder_cbecp",
1489
+ "easypost_fedex_crossborder_cbecp",
1490
+ ),
1491
+ (
1492
+ "easypost_fedex_sameday_city_economy_service",
1493
+ "easypost_fedex_sameday_city_economy_service",
1494
+ ),
1495
+ (
1496
+ "easypost_fedex_sameday_city_standard_service",
1497
+ "easypost_fedex_sameday_city_standard_service",
1498
+ ),
1499
+ (
1500
+ "easypost_fedex_sameday_city_priority_service",
1501
+ "easypost_fedex_sameday_city_priority_service",
1502
+ ),
1503
+ (
1504
+ "easypost_fedex_sameday_city_last_mile",
1505
+ "easypost_fedex_sameday_city_last_mile",
1506
+ ),
1507
+ ("easypost_fedex_smart_post", "easypost_fedex_smart_post"),
1508
+ ("easypost_globegistics_pmei", "easypost_globegistics_pmei"),
1509
+ (
1510
+ "easypost_globegistics_ecom_domestic",
1511
+ "easypost_globegistics_ecom_domestic",
1512
+ ),
1513
+ (
1514
+ "easypost_globegistics_ecom_europe",
1515
+ "easypost_globegistics_ecom_europe",
1516
+ ),
1517
+ (
1518
+ "easypost_globegistics_ecom_express",
1519
+ "easypost_globegistics_ecom_express",
1520
+ ),
1521
+ (
1522
+ "easypost_globegistics_ecom_extra",
1523
+ "easypost_globegistics_ecom_extra",
1524
+ ),
1525
+ (
1526
+ "easypost_globegistics_ecom_ipa",
1527
+ "easypost_globegistics_ecom_ipa",
1528
+ ),
1529
+ (
1530
+ "easypost_globegistics_ecom_isal",
1531
+ "easypost_globegistics_ecom_isal",
1532
+ ),
1533
+ (
1534
+ "easypost_globegistics_ecom_pmei_duty_paid",
1535
+ "easypost_globegistics_ecom_pmei_duty_paid",
1536
+ ),
1537
+ (
1538
+ "easypost_globegistics_ecom_pmi_duty_paid",
1539
+ "easypost_globegistics_ecom_pmi_duty_paid",
1540
+ ),
1541
+ (
1542
+ "easypost_globegistics_ecom_packet",
1543
+ "easypost_globegistics_ecom_packet",
1544
+ ),
1545
+ (
1546
+ "easypost_globegistics_ecom_packet_ddp",
1547
+ "easypost_globegistics_ecom_packet_ddp",
1548
+ ),
1549
+ (
1550
+ "easypost_globegistics_ecom_priority",
1551
+ "easypost_globegistics_ecom_priority",
1552
+ ),
1553
+ (
1554
+ "easypost_globegistics_ecom_standard",
1555
+ "easypost_globegistics_ecom_standard",
1556
+ ),
1557
+ (
1558
+ "easypost_globegistics_ecom_tracked_ddp",
1559
+ "easypost_globegistics_ecom_tracked_ddp",
1560
+ ),
1561
+ (
1562
+ "easypost_globegistics_ecom_tracked_ddu",
1563
+ "easypost_globegistics_ecom_tracked_ddu",
1564
+ ),
1565
+ (
1566
+ "easypost_gso_early_priority_overnight",
1567
+ "easypost_gso_early_priority_overnight",
1568
+ ),
1569
+ (
1570
+ "easypost_gso_priority_overnight",
1571
+ "easypost_gso_priority_overnight",
1572
+ ),
1573
+ (
1574
+ "easypost_gso_california_parcel_service",
1575
+ "easypost_gso_california_parcel_service",
1576
+ ),
1577
+ (
1578
+ "easypost_gso_saturday_delivery_service",
1579
+ "easypost_gso_saturday_delivery_service",
1580
+ ),
1581
+ (
1582
+ "easypost_gso_early_saturday_service",
1583
+ "easypost_gso_early_saturday_service",
1584
+ ),
1585
+ (
1586
+ "easypost_hermes_domestic_delivery",
1587
+ "easypost_hermes_domestic_delivery",
1588
+ ),
1589
+ (
1590
+ "easypost_hermes_domestic_delivery_signed",
1591
+ "easypost_hermes_domestic_delivery_signed",
1592
+ ),
1593
+ (
1594
+ "easypost_hermes_international_delivery",
1595
+ "easypost_hermes_international_delivery",
1596
+ ),
1597
+ (
1598
+ "easypost_hermes_international_delivery_signed",
1599
+ "easypost_hermes_international_delivery_signed",
1600
+ ),
1601
+ (
1602
+ "easypost_interlink_air_classic_international_air",
1603
+ "easypost_interlink_air_classic_international_air",
1604
+ ),
1605
+ (
1606
+ "easypost_interlink_air_express_international_air",
1607
+ "easypost_interlink_air_express_international_air",
1608
+ ),
1609
+ (
1610
+ "easypost_interlink_expresspak1_by10_30",
1611
+ "easypost_interlink_expresspak1_by10_30",
1612
+ ),
1613
+ (
1614
+ "easypost_interlink_expresspak1_by12",
1615
+ "easypost_interlink_expresspak1_by12",
1616
+ ),
1617
+ (
1618
+ "easypost_interlink_expresspak1_next_day",
1619
+ "easypost_interlink_expresspak1_next_day",
1620
+ ),
1621
+ (
1622
+ "easypost_interlink_expresspak1_saturday",
1623
+ "easypost_interlink_expresspak1_saturday",
1624
+ ),
1625
+ (
1626
+ "easypost_interlink_expresspak1_saturday_by10_30",
1627
+ "easypost_interlink_expresspak1_saturday_by10_30",
1628
+ ),
1629
+ (
1630
+ "easypost_interlink_expresspak1_saturday_by12",
1631
+ "easypost_interlink_expresspak1_saturday_by12",
1632
+ ),
1633
+ (
1634
+ "easypost_interlink_expresspak1_sunday",
1635
+ "easypost_interlink_expresspak1_sunday",
1636
+ ),
1637
+ (
1638
+ "easypost_interlink_expresspak1_sunday_by12",
1639
+ "easypost_interlink_expresspak1_sunday_by12",
1640
+ ),
1641
+ (
1642
+ "easypost_interlink_expresspak5_by10",
1643
+ "easypost_interlink_expresspak5_by10",
1644
+ ),
1645
+ (
1646
+ "easypost_interlink_expresspak5_by10_30",
1647
+ "easypost_interlink_expresspak5_by10_30",
1648
+ ),
1649
+ (
1650
+ "easypost_interlink_expresspak5_by12",
1651
+ "easypost_interlink_expresspak5_by12",
1652
+ ),
1653
+ (
1654
+ "easypost_interlink_expresspak5_next_day",
1655
+ "easypost_interlink_expresspak5_next_day",
1656
+ ),
1657
+ (
1658
+ "easypost_interlink_expresspak5_saturday",
1659
+ "easypost_interlink_expresspak5_saturday",
1660
+ ),
1661
+ (
1662
+ "easypost_interlink_expresspak5_saturday_by10",
1663
+ "easypost_interlink_expresspak5_saturday_by10",
1664
+ ),
1665
+ (
1666
+ "easypost_interlink_expresspak5_saturday_by10_30",
1667
+ "easypost_interlink_expresspak5_saturday_by10_30",
1668
+ ),
1669
+ (
1670
+ "easypost_interlink_expresspak5_saturday_by12",
1671
+ "easypost_interlink_expresspak5_saturday_by12",
1672
+ ),
1673
+ (
1674
+ "easypost_interlink_expresspak5_sunday",
1675
+ "easypost_interlink_expresspak5_sunday",
1676
+ ),
1677
+ (
1678
+ "easypost_interlink_expresspak5_sunday_by12",
1679
+ "easypost_interlink_expresspak5_sunday_by12",
1680
+ ),
1681
+ (
1682
+ "easypost_interlink_freight_by10",
1683
+ "easypost_interlink_freight_by10",
1684
+ ),
1685
+ (
1686
+ "easypost_interlink_freight_by12",
1687
+ "easypost_interlink_freight_by12",
1688
+ ),
1689
+ (
1690
+ "easypost_interlink_freight_next_day",
1691
+ "easypost_interlink_freight_next_day",
1692
+ ),
1693
+ (
1694
+ "easypost_interlink_freight_saturday",
1695
+ "easypost_interlink_freight_saturday",
1696
+ ),
1697
+ (
1698
+ "easypost_interlink_freight_saturday_by10",
1699
+ "easypost_interlink_freight_saturday_by10",
1700
+ ),
1701
+ (
1702
+ "easypost_interlink_freight_saturday_by12",
1703
+ "easypost_interlink_freight_saturday_by12",
1704
+ ),
1705
+ (
1706
+ "easypost_interlink_freight_sunday",
1707
+ "easypost_interlink_freight_sunday",
1708
+ ),
1709
+ (
1710
+ "easypost_interlink_freight_sunday_by12",
1711
+ "easypost_interlink_freight_sunday_by12",
1712
+ ),
1713
+ (
1714
+ "easypost_interlink_parcel_by10",
1715
+ "easypost_interlink_parcel_by10",
1716
+ ),
1717
+ (
1718
+ "easypost_interlink_parcel_by10_30",
1719
+ "easypost_interlink_parcel_by10_30",
1720
+ ),
1721
+ (
1722
+ "easypost_interlink_parcel_by12",
1723
+ "easypost_interlink_parcel_by12",
1724
+ ),
1725
+ (
1726
+ "easypost_interlink_parcel_dpd_europe_by_road",
1727
+ "easypost_interlink_parcel_dpd_europe_by_road",
1728
+ ),
1729
+ (
1730
+ "easypost_interlink_parcel_next_day",
1731
+ "easypost_interlink_parcel_next_day",
1732
+ ),
1733
+ (
1734
+ "easypost_interlink_parcel_return",
1735
+ "easypost_interlink_parcel_return",
1736
+ ),
1737
+ (
1738
+ "easypost_interlink_parcel_return_to_shop",
1739
+ "easypost_interlink_parcel_return_to_shop",
1740
+ ),
1741
+ (
1742
+ "easypost_interlink_parcel_saturday",
1743
+ "easypost_interlink_parcel_saturday",
1744
+ ),
1745
+ (
1746
+ "easypost_interlink_parcel_saturday_by10",
1747
+ "easypost_interlink_parcel_saturday_by10",
1748
+ ),
1749
+ (
1750
+ "easypost_interlink_parcel_saturday_by10_30",
1751
+ "easypost_interlink_parcel_saturday_by10_30",
1752
+ ),
1753
+ (
1754
+ "easypost_interlink_parcel_saturday_by12",
1755
+ "easypost_interlink_parcel_saturday_by12",
1756
+ ),
1757
+ (
1758
+ "easypost_interlink_parcel_ship_to_shop",
1759
+ "easypost_interlink_parcel_ship_to_shop",
1760
+ ),
1761
+ (
1762
+ "easypost_interlink_parcel_sunday",
1763
+ "easypost_interlink_parcel_sunday",
1764
+ ),
1765
+ (
1766
+ "easypost_interlink_parcel_sunday_by12",
1767
+ "easypost_interlink_parcel_sunday_by12",
1768
+ ),
1769
+ (
1770
+ "easypost_interlink_parcel_two_day",
1771
+ "easypost_interlink_parcel_two_day",
1772
+ ),
1773
+ (
1774
+ "easypost_interlink_pickup_parcel_dpd_europe_by_road",
1775
+ "easypost_interlink_pickup_parcel_dpd_europe_by_road",
1776
+ ),
1777
+ ("easypost_lasership_weekend", "easypost_lasership_weekend"),
1778
+ ("easypost_loomis_ground", "easypost_loomis_ground"),
1779
+ ("easypost_loomis_express1800", "easypost_loomis_express1800"),
1780
+ ("easypost_loomis_express1200", "easypost_loomis_express1200"),
1781
+ ("easypost_loomis_express900", "easypost_loomis_express900"),
1782
+ ("easypost_lso_ground_early", "easypost_lso_ground_early"),
1783
+ ("easypost_lso_ground_basic", "easypost_lso_ground_basic"),
1784
+ ("easypost_lso_priority_basic", "easypost_lso_priority_basic"),
1785
+ ("easypost_lso_priority_early", "easypost_lso_priority_early"),
1786
+ (
1787
+ "easypost_lso_priority_saturday",
1788
+ "easypost_lso_priority_saturday",
1789
+ ),
1790
+ ("easypost_lso_priority2nd_day", "easypost_lso_priority2nd_day"),
1791
+ (
1792
+ "easypost_newgistics_parcel_select",
1793
+ "easypost_newgistics_parcel_select",
1794
+ ),
1795
+ (
1796
+ "easypost_newgistics_parcel_select_lightweight",
1797
+ "easypost_newgistics_parcel_select_lightweight",
1798
+ ),
1799
+ ("easypost_newgistics_express", "easypost_newgistics_express"),
1800
+ (
1801
+ "easypost_newgistics_first_class_mail",
1802
+ "easypost_newgistics_first_class_mail",
1803
+ ),
1804
+ (
1805
+ "easypost_newgistics_priority_mail",
1806
+ "easypost_newgistics_priority_mail",
1807
+ ),
1808
+ (
1809
+ "easypost_newgistics_bound_printed_matter",
1810
+ "easypost_newgistics_bound_printed_matter",
1811
+ ),
1812
+ ("easypost_ontrac_sunrise", "easypost_ontrac_sunrise"),
1813
+ ("easypost_ontrac_gold", "easypost_ontrac_gold"),
1814
+ (
1815
+ "easypost_ontrac_on_trac_ground",
1816
+ "easypost_ontrac_on_trac_ground",
1817
+ ),
1818
+ (
1819
+ "easypost_ontrac_palletized_freight",
1820
+ "easypost_ontrac_palletized_freight",
1821
+ ),
1822
+ ("easypost_osm_first", "easypost_osm_first"),
1823
+ ("easypost_osm_expedited", "easypost_osm_expedited"),
1824
+ ("easypost_osm_bpm", "easypost_osm_bpm"),
1825
+ ("easypost_osm_media_mail", "easypost_osm_media_mail"),
1826
+ ("easypost_osm_marketing_parcel", "easypost_osm_marketing_parcel"),
1827
+ (
1828
+ "easypost_osm_marketing_parcel_tracked",
1829
+ "easypost_osm_marketing_parcel_tracked",
1830
+ ),
1831
+ ("easypost_parcll_economy_west", "easypost_parcll_economy_west"),
1832
+ ("easypost_parcll_economy_east", "easypost_parcll_economy_east"),
1833
+ (
1834
+ "easypost_parcll_economy_central",
1835
+ "easypost_parcll_economy_central",
1836
+ ),
1837
+ (
1838
+ "easypost_parcll_economy_northeast",
1839
+ "easypost_parcll_economy_northeast",
1840
+ ),
1841
+ ("easypost_parcll_economy_south", "easypost_parcll_economy_south"),
1842
+ (
1843
+ "easypost_parcll_expedited_west",
1844
+ "easypost_parcll_expedited_west",
1845
+ ),
1846
+ (
1847
+ "easypost_parcll_expedited_northeast",
1848
+ "easypost_parcll_expedited_northeast",
1849
+ ),
1850
+ ("easypost_parcll_regional_west", "easypost_parcll_regional_west"),
1851
+ ("easypost_parcll_regional_east", "easypost_parcll_regional_east"),
1852
+ (
1853
+ "easypost_parcll_regional_central",
1854
+ "easypost_parcll_regional_central",
1855
+ ),
1856
+ (
1857
+ "easypost_parcll_regional_northeast",
1858
+ "easypost_parcll_regional_northeast",
1859
+ ),
1860
+ (
1861
+ "easypost_parcll_regional_south",
1862
+ "easypost_parcll_regional_south",
1863
+ ),
1864
+ (
1865
+ "easypost_parcll_us_to_canada_economy_west",
1866
+ "easypost_parcll_us_to_canada_economy_west",
1867
+ ),
1868
+ (
1869
+ "easypost_parcll_us_to_canada_economy_central",
1870
+ "easypost_parcll_us_to_canada_economy_central",
1871
+ ),
1872
+ (
1873
+ "easypost_parcll_us_to_canada_economy_northeast",
1874
+ "easypost_parcll_us_to_canada_economy_northeast",
1875
+ ),
1876
+ (
1877
+ "easypost_parcll_us_to_europe_economy_west",
1878
+ "easypost_parcll_us_to_europe_economy_west",
1879
+ ),
1880
+ (
1881
+ "easypost_parcll_us_to_europe_economy_northeast",
1882
+ "easypost_parcll_us_to_europe_economy_northeast",
1883
+ ),
1884
+ ("easypost_purolator_express", "easypost_purolator_express"),
1885
+ (
1886
+ "easypost_purolator_express12_pm",
1887
+ "easypost_purolator_express12_pm",
1888
+ ),
1889
+ (
1890
+ "easypost_purolator_express_pack12_pm",
1891
+ "easypost_purolator_express_pack12_pm",
1892
+ ),
1893
+ (
1894
+ "easypost_purolator_express_box12_pm",
1895
+ "easypost_purolator_express_box12_pm",
1896
+ ),
1897
+ (
1898
+ "easypost_purolator_express_envelope12_pm",
1899
+ "easypost_purolator_express_envelope12_pm",
1900
+ ),
1901
+ (
1902
+ "easypost_purolator_express1030_am",
1903
+ "easypost_purolator_express1030_am",
1904
+ ),
1905
+ (
1906
+ "easypost_purolator_express9_am",
1907
+ "easypost_purolator_express9_am",
1908
+ ),
1909
+ (
1910
+ "easypost_purolator_express_box",
1911
+ "easypost_purolator_express_box",
1912
+ ),
1913
+ (
1914
+ "easypost_purolator_express_box1030_am",
1915
+ "easypost_purolator_express_box1030_am",
1916
+ ),
1917
+ (
1918
+ "easypost_purolator_express_box9_am",
1919
+ "easypost_purolator_express_box9_am",
1920
+ ),
1921
+ (
1922
+ "easypost_purolator_express_box_evening",
1923
+ "easypost_purolator_express_box_evening",
1924
+ ),
1925
+ (
1926
+ "easypost_purolator_express_box_international",
1927
+ "easypost_purolator_express_box_international",
1928
+ ),
1929
+ (
1930
+ "easypost_purolator_express_box_international1030_am",
1931
+ "easypost_purolator_express_box_international1030_am",
1932
+ ),
1933
+ (
1934
+ "easypost_purolator_express_box_international1200",
1935
+ "easypost_purolator_express_box_international1200",
1936
+ ),
1937
+ (
1938
+ "easypost_purolator_express_box_international9_am",
1939
+ "easypost_purolator_express_box_international9_am",
1940
+ ),
1941
+ (
1942
+ "easypost_purolator_express_box_us",
1943
+ "easypost_purolator_express_box_us",
1944
+ ),
1945
+ (
1946
+ "easypost_purolator_express_box_us1030_am",
1947
+ "easypost_purolator_express_box_us1030_am",
1948
+ ),
1949
+ (
1950
+ "easypost_purolator_express_box_us1200",
1951
+ "easypost_purolator_express_box_us1200",
1952
+ ),
1953
+ (
1954
+ "easypost_purolator_express_box_us9_am",
1955
+ "easypost_purolator_express_box_us9_am",
1956
+ ),
1957
+ (
1958
+ "easypost_purolator_express_envelope",
1959
+ "easypost_purolator_express_envelope",
1960
+ ),
1961
+ (
1962
+ "easypost_purolator_express_envelope1030_am",
1963
+ "easypost_purolator_express_envelope1030_am",
1964
+ ),
1965
+ (
1966
+ "easypost_purolator_express_envelope9_am",
1967
+ "easypost_purolator_express_envelope9_am",
1968
+ ),
1969
+ (
1970
+ "easypost_purolator_express_envelope_evening",
1971
+ "easypost_purolator_express_envelope_evening",
1972
+ ),
1973
+ (
1974
+ "easypost_purolator_express_envelope_international",
1975
+ "easypost_purolator_express_envelope_international",
1976
+ ),
1977
+ (
1978
+ "easypost_purolator_express_envelope_international1030_am",
1979
+ "easypost_purolator_express_envelope_international1030_am",
1980
+ ),
1981
+ (
1982
+ "easypost_purolator_express_envelope_international1200",
1983
+ "easypost_purolator_express_envelope_international1200",
1984
+ ),
1985
+ (
1986
+ "easypost_purolator_express_envelope_international9_am",
1987
+ "easypost_purolator_express_envelope_international9_am",
1988
+ ),
1989
+ (
1990
+ "easypost_purolator_express_envelope_us",
1991
+ "easypost_purolator_express_envelope_us",
1992
+ ),
1993
+ (
1994
+ "easypost_purolator_express_envelope_us1030_am",
1995
+ "easypost_purolator_express_envelope_us1030_am",
1996
+ ),
1997
+ (
1998
+ "easypost_purolator_express_envelope_us1200",
1999
+ "easypost_purolator_express_envelope_us1200",
2000
+ ),
2001
+ (
2002
+ "easypost_purolator_express_envelope_us9_am",
2003
+ "easypost_purolator_express_envelope_us9_am",
2004
+ ),
2005
+ (
2006
+ "easypost_purolator_express_evening",
2007
+ "easypost_purolator_express_evening",
2008
+ ),
2009
+ (
2010
+ "easypost_purolator_express_international",
2011
+ "easypost_purolator_express_international",
2012
+ ),
2013
+ (
2014
+ "easypost_purolator_express_international1030_am",
2015
+ "easypost_purolator_express_international1030_am",
2016
+ ),
2017
+ (
2018
+ "easypost_purolator_express_international1200",
2019
+ "easypost_purolator_express_international1200",
2020
+ ),
2021
+ (
2022
+ "easypost_purolator_express_international9_am",
2023
+ "easypost_purolator_express_international9_am",
2024
+ ),
2025
+ (
2026
+ "easypost_purolator_express_pack",
2027
+ "easypost_purolator_express_pack",
2028
+ ),
2029
+ (
2030
+ "easypost_purolator_express_pack1030_am",
2031
+ "easypost_purolator_express_pack1030_am",
2032
+ ),
2033
+ (
2034
+ "easypost_purolator_express_pack9_am",
2035
+ "easypost_purolator_express_pack9_am",
2036
+ ),
2037
+ (
2038
+ "easypost_purolator_express_pack_evening",
2039
+ "easypost_purolator_express_pack_evening",
2040
+ ),
2041
+ (
2042
+ "easypost_purolator_express_pack_international",
2043
+ "easypost_purolator_express_pack_international",
2044
+ ),
2045
+ (
2046
+ "easypost_purolator_express_pack_international1030_am",
2047
+ "easypost_purolator_express_pack_international1030_am",
2048
+ ),
2049
+ (
2050
+ "easypost_purolator_express_pack_international1200",
2051
+ "easypost_purolator_express_pack_international1200",
2052
+ ),
2053
+ (
2054
+ "easypost_purolator_express_pack_international9_am",
2055
+ "easypost_purolator_express_pack_international9_am",
2056
+ ),
2057
+ (
2058
+ "easypost_purolator_express_pack_us",
2059
+ "easypost_purolator_express_pack_us",
2060
+ ),
2061
+ (
2062
+ "easypost_purolator_express_pack_us1030_am",
2063
+ "easypost_purolator_express_pack_us1030_am",
2064
+ ),
2065
+ (
2066
+ "easypost_purolator_express_pack_us1200",
2067
+ "easypost_purolator_express_pack_us1200",
2068
+ ),
2069
+ (
2070
+ "easypost_purolator_express_pack_us9_am",
2071
+ "easypost_purolator_express_pack_us9_am",
2072
+ ),
2073
+ ("easypost_purolator_express_us", "easypost_purolator_express_us"),
2074
+ (
2075
+ "easypost_purolator_express_us1030_am",
2076
+ "easypost_purolator_express_us1030_am",
2077
+ ),
2078
+ (
2079
+ "easypost_purolator_express_us1200",
2080
+ "easypost_purolator_express_us1200",
2081
+ ),
2082
+ (
2083
+ "easypost_purolator_express_us9_am",
2084
+ "easypost_purolator_express_us9_am",
2085
+ ),
2086
+ ("easypost_purolator_ground", "easypost_purolator_ground"),
2087
+ (
2088
+ "easypost_purolator_ground1030_am",
2089
+ "easypost_purolator_ground1030_am",
2090
+ ),
2091
+ ("easypost_purolator_ground9_am", "easypost_purolator_ground9_am"),
2092
+ (
2093
+ "easypost_purolator_ground_distribution",
2094
+ "easypost_purolator_ground_distribution",
2095
+ ),
2096
+ (
2097
+ "easypost_purolator_ground_evening",
2098
+ "easypost_purolator_ground_evening",
2099
+ ),
2100
+ (
2101
+ "easypost_purolator_ground_regional",
2102
+ "easypost_purolator_ground_regional",
2103
+ ),
2104
+ ("easypost_purolator_ground_us", "easypost_purolator_ground_us"),
2105
+ (
2106
+ "easypost_royalmail_international_signed",
2107
+ "easypost_royalmail_international_signed",
2108
+ ),
2109
+ (
2110
+ "easypost_royalmail_international_tracked",
2111
+ "easypost_royalmail_international_tracked",
2112
+ ),
2113
+ (
2114
+ "easypost_royalmail_international_tracked_and_signed",
2115
+ "easypost_royalmail_international_tracked_and_signed",
2116
+ ),
2117
+ ("easypost_royalmail_1st_class", "easypost_royalmail_1st_class"),
2118
+ (
2119
+ "easypost_royalmail_1st_class_signed_for",
2120
+ "easypost_royalmail_1st_class_signed_for",
2121
+ ),
2122
+ ("easypost_royalmail_2nd_class", "easypost_royalmail_2nd_class"),
2123
+ (
2124
+ "easypost_royalmail_2nd_class_signed_for",
2125
+ "easypost_royalmail_2nd_class_signed_for",
2126
+ ),
2127
+ (
2128
+ "easypost_royalmail_royal_mail24",
2129
+ "easypost_royalmail_royal_mail24",
2130
+ ),
2131
+ (
2132
+ "easypost_royalmail_royal_mail24_signed_for",
2133
+ "easypost_royalmail_royal_mail24_signed_for",
2134
+ ),
2135
+ (
2136
+ "easypost_royalmail_royal_mail48",
2137
+ "easypost_royalmail_royal_mail48",
2138
+ ),
2139
+ (
2140
+ "easypost_royalmail_royal_mail48_signed_for",
2141
+ "easypost_royalmail_royal_mail48_signed_for",
2142
+ ),
2143
+ (
2144
+ "easypost_royalmail_special_delivery_guaranteed1pm",
2145
+ "easypost_royalmail_special_delivery_guaranteed1pm",
2146
+ ),
2147
+ (
2148
+ "easypost_royalmail_special_delivery_guaranteed9am",
2149
+ "easypost_royalmail_special_delivery_guaranteed9am",
2150
+ ),
2151
+ (
2152
+ "easypost_royalmail_standard_letter1st_class",
2153
+ "easypost_royalmail_standard_letter1st_class",
2154
+ ),
2155
+ (
2156
+ "easypost_royalmail_standard_letter1st_class_signed_for",
2157
+ "easypost_royalmail_standard_letter1st_class_signed_for",
2158
+ ),
2159
+ (
2160
+ "easypost_royalmail_standard_letter2nd_class",
2161
+ "easypost_royalmail_standard_letter2nd_class",
2162
+ ),
2163
+ (
2164
+ "easypost_royalmail_standard_letter2nd_class_signed_for",
2165
+ "easypost_royalmail_standard_letter2nd_class_signed_for",
2166
+ ),
2167
+ ("easypost_royalmail_tracked24", "easypost_royalmail_tracked24"),
2168
+ (
2169
+ "easypost_royalmail_tracked24_high_volume",
2170
+ "easypost_royalmail_tracked24_high_volume",
2171
+ ),
2172
+ (
2173
+ "easypost_royalmail_tracked24_high_volume_signature",
2174
+ "easypost_royalmail_tracked24_high_volume_signature",
2175
+ ),
2176
+ (
2177
+ "easypost_royalmail_tracked24_signature",
2178
+ "easypost_royalmail_tracked24_signature",
2179
+ ),
2180
+ ("easypost_royalmail_tracked48", "easypost_royalmail_tracked48"),
2181
+ (
2182
+ "easypost_royalmail_tracked48_high_volume",
2183
+ "easypost_royalmail_tracked48_high_volume",
2184
+ ),
2185
+ (
2186
+ "easypost_royalmail_tracked48_high_volume_signature",
2187
+ "easypost_royalmail_tracked48_high_volume_signature",
2188
+ ),
2189
+ (
2190
+ "easypost_royalmail_tracked48_signature",
2191
+ "easypost_royalmail_tracked48_signature",
2192
+ ),
2193
+ (
2194
+ "easypost_seko_ecommerce_standard_tracked",
2195
+ "easypost_seko_ecommerce_standard_tracked",
2196
+ ),
2197
+ (
2198
+ "easypost_seko_ecommerce_express_tracked",
2199
+ "easypost_seko_ecommerce_express_tracked",
2200
+ ),
2201
+ (
2202
+ "easypost_seko_domestic_express",
2203
+ "easypost_seko_domestic_express",
2204
+ ),
2205
+ (
2206
+ "easypost_seko_domestic_standard",
2207
+ "easypost_seko_domestic_standard",
2208
+ ),
2209
+ ("easypost_sendle_easy", "easypost_sendle_easy"),
2210
+ ("easypost_sendle_pro", "easypost_sendle_pro"),
2211
+ ("easypost_sendle_plus", "easypost_sendle_plus"),
2212
+ (
2213
+ "easypost_sfexpress_international_standard_express_doc",
2214
+ "easypost_sfexpress_international_standard_express_doc",
2215
+ ),
2216
+ (
2217
+ "easypost_sfexpress_international_standard_express_parcel",
2218
+ "easypost_sfexpress_international_standard_express_parcel",
2219
+ ),
2220
+ (
2221
+ "easypost_sfexpress_international_economy_express_pilot",
2222
+ "easypost_sfexpress_international_economy_express_pilot",
2223
+ ),
2224
+ (
2225
+ "easypost_sfexpress_international_economy_express_doc",
2226
+ "easypost_sfexpress_international_economy_express_doc",
2227
+ ),
2228
+ ("easypost_speedee_delivery", "easypost_speedee_delivery"),
2229
+ ("easypost_startrack_express", "easypost_startrack_express"),
2230
+ ("easypost_startrack_premium", "easypost_startrack_premium"),
2231
+ (
2232
+ "easypost_startrack_fixed_price_premium",
2233
+ "easypost_startrack_fixed_price_premium",
2234
+ ),
2235
+ (
2236
+ "easypost_tforce_same_day_white_glove",
2237
+ "easypost_tforce_same_day_white_glove",
2238
+ ),
2239
+ (
2240
+ "easypost_tforce_next_day_white_glove",
2241
+ "easypost_tforce_next_day_white_glove",
2242
+ ),
2243
+ ("easypost_uds_delivery_service", "easypost_uds_delivery_service"),
2244
+ ("easypost_ups_standard", "easypost_ups_standard"),
2245
+ ("easypost_ups_saver", "easypost_ups_saver"),
2246
+ ("easypost_ups_express_plus", "easypost_ups_express_plus"),
2247
+ ("easypost_ups_next_day_air", "easypost_ups_next_day_air"),
2248
+ (
2249
+ "easypost_ups_next_day_air_saver",
2250
+ "easypost_ups_next_day_air_saver",
2251
+ ),
2252
+ (
2253
+ "easypost_ups_next_day_air_early_am",
2254
+ "easypost_ups_next_day_air_early_am",
2255
+ ),
2256
+ ("easypost_ups_2nd_day_air", "easypost_ups_2nd_day_air"),
2257
+ ("easypost_ups_2nd_day_air_am", "easypost_ups_2nd_day_air_am"),
2258
+ ("easypost_ups_3_day_select", "easypost_ups_3_day_select"),
2259
+ (
2260
+ "easypost_ups_mail_expedited_mail_innovations",
2261
+ "easypost_ups_mail_expedited_mail_innovations",
2262
+ ),
2263
+ (
2264
+ "easypost_ups_mail_priority_mail_innovations",
2265
+ "easypost_ups_mail_priority_mail_innovations",
2266
+ ),
2267
+ (
2268
+ "easypost_ups_mail_economy_mail_innovations",
2269
+ "easypost_ups_mail_economy_mail_innovations",
2270
+ ),
2271
+ ("easypost_usps_library_mail", "easypost_usps_library_mail"),
2272
+ (
2273
+ "easypost_usps_first_class_mail_international",
2274
+ "easypost_usps_first_class_mail_international",
2275
+ ),
2276
+ (
2277
+ "easypost_usps_first_class_package_international_service",
2278
+ "easypost_usps_first_class_package_international_service",
2279
+ ),
2280
+ (
2281
+ "easypost_usps_priority_mail_international",
2282
+ "easypost_usps_priority_mail_international",
2283
+ ),
2284
+ (
2285
+ "easypost_usps_express_mail_international",
2286
+ "easypost_usps_express_mail_international",
2287
+ ),
2288
+ ("easypost_veho_next_day", "easypost_veho_next_day"),
2289
+ ("easypost_veho_same_day", "easypost_veho_same_day"),
2290
+ ("easyship_aramex_parcel", "easyship_aramex_parcel"),
2291
+ ("easyship_sfexpress_domestic", "easyship_sfexpress_domestic"),
2292
+ ("easyship_hkpost_speedpost", "easyship_hkpost_speedpost"),
2293
+ (
2294
+ "easyship_hkpost_air_mail_tracking",
2295
+ "easyship_hkpost_air_mail_tracking",
2296
+ ),
2297
+ ("easyship_hkpost_eexpress", "easyship_hkpost_eexpress"),
2298
+ ("easyship_hkpost_air_parcel", "easyship_hkpost_air_parcel"),
2299
+ ("easyship_sfexpress_mail", "easyship_sfexpress_mail"),
2300
+ ("easyship_hkpost_local_parcel", "easyship_hkpost_local_parcel"),
2301
+ (
2302
+ "easyship_ups_saver_net_battery",
2303
+ "easyship_ups_saver_net_battery",
2304
+ ),
2305
+ ("easyship_ups_worldwide_saver", "easyship_ups_worldwide_saver"),
2306
+ ("easyship_hkpost_air_parcel_xp", "easyship_hkpost_air_parcel_xp"),
2307
+ ("easyship_singpost_airmail", "easyship_singpost_airmail"),
2308
+ ("easyship_simplypost_express", "easyship_simplypost_express"),
2309
+ ("easyship_singpost_e_pack", "easyship_singpost_e_pack"),
2310
+ (
2311
+ "easyship_usps_priority_mail_express",
2312
+ "easyship_usps_priority_mail_express",
2313
+ ),
2314
+ (
2315
+ "easyship_usps_first_class_international",
2316
+ "easyship_usps_first_class_international",
2317
+ ),
2318
+ (
2319
+ "easyship_usps_priority_mail_international_express",
2320
+ "easyship_usps_priority_mail_international_express",
2321
+ ),
2322
+ (
2323
+ "easyship_usps_priority_mail_international",
2324
+ "easyship_usps_priority_mail_international",
2325
+ ),
2326
+ (
2327
+ "easyship_fedex_international_priority",
2328
+ "easyship_fedex_international_priority",
2329
+ ),
2330
+ (
2331
+ "easyship_usps_ground_advantage",
2332
+ "easyship_usps_ground_advantage",
2333
+ ),
2334
+ ("easyship_usps_priority_mail", "easyship_usps_priority_mail"),
2335
+ (
2336
+ "easyship_ups_worldwide_express",
2337
+ "easyship_ups_worldwide_express",
2338
+ ),
2339
+ ("easyship_ups_ground", "easyship_ups_ground"),
2340
+ (
2341
+ "easyship_ups_worldwide_expedited",
2342
+ "easyship_ups_worldwide_expedited",
2343
+ ),
2344
+ (
2345
+ "easyship_fedex_international_economy",
2346
+ "easyship_fedex_international_economy",
2347
+ ),
2348
+ (
2349
+ "easyship_fedex_priority_overnight",
2350
+ "easyship_fedex_priority_overnight",
2351
+ ),
2352
+ (
2353
+ "easyship_fedex_standard_overnight",
2354
+ "easyship_fedex_standard_overnight",
2355
+ ),
2356
+ ("easyship_fedex_2_day_a_m", "easyship_fedex_2_day_a_m"),
2357
+ ("easyship_fedex_2_day", "easyship_fedex_2_day"),
2358
+ ("easyship_fedex_express_saver", "easyship_fedex_express_saver"),
2359
+ ("easyship_ups_next_day_air", "easyship_ups_next_day_air"),
2360
+ ("easyship_ups_2nd_day_air", "easyship_ups_2nd_day_air"),
2361
+ ("easyship_ups_3_day_select", "easyship_ups_3_day_select"),
2362
+ ("easyship_ups_standard", "easyship_ups_standard"),
2363
+ ("easyship_usps_media", "easyship_usps_media"),
2364
+ (
2365
+ "easyship_sfexpress_standard_express",
2366
+ "easyship_sfexpress_standard_express",
2367
+ ),
2368
+ (
2369
+ "easyship_sfexpress_economy_express",
2370
+ "easyship_sfexpress_economy_express",
2371
+ ),
2372
+ (
2373
+ "easyship_global_post_global_post_economy",
2374
+ "easyship_global_post_global_post_economy",
2375
+ ),
2376
+ (
2377
+ "easyship_global_post_global_post_priority",
2378
+ "easyship_global_post_global_post_priority",
2379
+ ),
2380
+ (
2381
+ "easyship_singpost_speed_post_priority",
2382
+ "easyship_singpost_speed_post_priority",
2383
+ ),
2384
+ (
2385
+ "easyship_skypostal_standard_private_delivery",
2386
+ "easyship_skypostal_standard_private_delivery",
2387
+ ),
2388
+ ("easyship_tnt_1000_express", "easyship_tnt_1000_express"),
2389
+ ("easyship_toll_express_parcel", "easyship_toll_express_parcel"),
2390
+ (
2391
+ "easyship_sendle_premium_international",
2392
+ "easyship_sendle_premium_international",
2393
+ ),
2394
+ (
2395
+ "easyship_sendle_premium_domestic",
2396
+ "easyship_sendle_premium_domestic",
2397
+ ),
2398
+ ("easyship_sendle_pro_domestic", "easyship_sendle_pro_domestic"),
2399
+ ("easyship_quantium_e_pac", "easyship_quantium_e_pac"),
2400
+ ("easyship_usps_pm_flat_rate", "easyship_usps_pm_flat_rate"),
2401
+ ("easyship_usps_pmi_flat_rate", "easyship_usps_pmi_flat_rate"),
2402
+ ("easyship_quantium_mail", "easyship_quantium_mail"),
2403
+ (
2404
+ "easyship_quantium_international_mail",
2405
+ "easyship_quantium_international_mail",
2406
+ ),
2407
+ (
2408
+ "easyship_apc_parcel_connect_expedited",
2409
+ "easyship_apc_parcel_connect_expedited",
2410
+ ),
2411
+ ("easyship_aramex_epx", "easyship_aramex_epx"),
2412
+ ("easyship_tnt_road_express", "easyship_tnt_road_express"),
2413
+ ("easyship_tnt_overnight", "easyship_tnt_overnight"),
2414
+ ("easyship_usps_pme_flat_rate", "easyship_usps_pme_flat_rate"),
2415
+ ("easyship_usps_pmei_flat_rate", "easyship_usps_pmei_flat_rate"),
2416
+ ("easyship_easyship_cdek_russia", "easyship_easyship_cdek_russia"),
2417
+ (
2418
+ "easyship_usps_pmei_flat_rate_padded_envelope",
2419
+ "easyship_usps_pmei_flat_rate_padded_envelope",
2420
+ ),
2421
+ (
2422
+ "easyship_easyship_mate_bike_shipping_services",
2423
+ "easyship_easyship_mate_bike_shipping_services",
2424
+ ),
2425
+ (
2426
+ "easyship_dhl_express_documents",
2427
+ "easyship_dhl_express_documents",
2428
+ ),
2429
+ (
2430
+ "easyship_evri_uk_home_delivery",
2431
+ "easyship_evri_uk_home_delivery",
2432
+ ),
2433
+ ("easyship_evri_home_delivery", "easyship_evri_home_delivery"),
2434
+ ("easyship_dpd_next_day", "easyship_dpd_next_day"),
2435
+ ("easyship_dpd_classic_parcel", "easyship_dpd_classic_parcel"),
2436
+ (
2437
+ "easyship_dpd_classic_expresspak",
2438
+ "easyship_dpd_classic_expresspak",
2439
+ ),
2440
+ ("easyship_dpd_air_classic", "easyship_dpd_air_classic"),
2441
+ (
2442
+ "easyship_singpost_speed_post_express",
2443
+ "easyship_singpost_speed_post_express",
2444
+ ),
2445
+ ("easyship_ups_expedited", "easyship_ups_expedited"),
2446
+ ("easyship_tnt_0900_express", "easyship_tnt_0900_express"),
2447
+ ("easyship_tnt_1200_express", "easyship_tnt_1200_express"),
2448
+ (
2449
+ "easyship_canadapost_domestic_regular_parcel",
2450
+ "easyship_canadapost_domestic_regular_parcel",
2451
+ ),
2452
+ (
2453
+ "easyship_canadapost_domestic_expedited_parcel",
2454
+ "easyship_canadapost_domestic_expedited_parcel",
2455
+ ),
2456
+ (
2457
+ "easyship_canadapost_domestic_xpresspost_domestic",
2458
+ "easyship_canadapost_domestic_xpresspost_domestic",
2459
+ ),
2460
+ (
2461
+ "easyship_canadapost_domestic_priority",
2462
+ "easyship_canadapost_domestic_priority",
2463
+ ),
2464
+ (
2465
+ "easyship_canadapost_usa_small_packet_air",
2466
+ "easyship_canadapost_usa_small_packet_air",
2467
+ ),
2468
+ (
2469
+ "easyship_canadapost_usa_expedited_parcel",
2470
+ "easyship_canadapost_usa_expedited_parcel",
2471
+ ),
2472
+ (
2473
+ "easyship_canadapost_usa_tracked_parcel",
2474
+ "easyship_canadapost_usa_tracked_parcel",
2475
+ ),
2476
+ (
2477
+ "easyship_canadapost_usa_xpresspost",
2478
+ "easyship_canadapost_usa_xpresspost",
2479
+ ),
2480
+ (
2481
+ "easyship_canadapost_international_xpresspost",
2482
+ "easyship_canadapost_international_xpresspost",
2483
+ ),
2484
+ (
2485
+ "easyship_canadapost_international_small_packet_air",
2486
+ "easyship_canadapost_international_small_packet_air",
2487
+ ),
2488
+ (
2489
+ "easyship_canadapost_international_tracked_packet",
2490
+ "easyship_canadapost_international_tracked_packet",
2491
+ ),
2492
+ (
2493
+ "easyship_canadapost_international_small_packet_surface",
2494
+ "easyship_canadapost_international_small_packet_surface",
2495
+ ),
2496
+ (
2497
+ "easyship_canadapost_international_parcel_surface",
2498
+ "easyship_canadapost_international_parcel_surface",
2499
+ ),
2500
+ (
2501
+ "easyship_canadapost_international_parcel_air",
2502
+ "easyship_canadapost_international_parcel_air",
2503
+ ),
2504
+ ("easyship_couriersplease_atl", "easyship_couriersplease_atl"),
2505
+ (
2506
+ "easyship_couriersplease_signature",
2507
+ "easyship_couriersplease_signature",
2508
+ ),
2509
+ ("easyship_canpar_international", "easyship_canpar_international"),
2510
+ ("easyship_canpar_usa", "easyship_canpar_usa"),
2511
+ ("easyship_canpar_select_usa", "easyship_canpar_select_usa"),
2512
+ ("easyship_canpar_usa_pak", "easyship_canpar_usa_pak"),
2513
+ ("easyship_canpar_overnight_pak", "easyship_canpar_overnight_pak"),
2514
+ ("easyship_canpar_select_pak", "easyship_canpar_select_pak"),
2515
+ ("easyship_canpar_select", "easyship_canpar_select"),
2516
+ ("easyship_ups_express_saver", "easyship_ups_express_saver"),
2517
+ (
2518
+ "easyship_ebay_send_sf_express_economy_express",
2519
+ "easyship_ebay_send_sf_express_economy_express",
2520
+ ),
2521
+ (
2522
+ "easyship_ups_worldwide_express_plus",
2523
+ "easyship_ups_worldwide_express_plus",
2524
+ ),
2525
+ (
2526
+ "easyship_quantium_intl_priority",
2527
+ "easyship_quantium_intl_priority",
2528
+ ),
2529
+ (
2530
+ "easyship_ups_next_day_air_early",
2531
+ "easyship_ups_next_day_air_early",
2532
+ ),
2533
+ (
2534
+ "easyship_ups_next_day_air_saver",
2535
+ "easyship_ups_next_day_air_saver",
2536
+ ),
2537
+ ("easyship_ups_2nd_day_air_a_m", "easyship_ups_2nd_day_air_a_m"),
2538
+ ("easyship_fedex_home_delivery", "easyship_fedex_home_delivery"),
2539
+ (
2540
+ "easyship_asendia_country_tracked",
2541
+ "easyship_asendia_country_tracked",
2542
+ ),
2543
+ (
2544
+ "easyship_asendia_fully_tracked",
2545
+ "easyship_asendia_fully_tracked",
2546
+ ),
2547
+ (
2548
+ "easyship_dhl_express_express_dg",
2549
+ "easyship_dhl_express_express_dg",
2550
+ ),
2551
+ (
2552
+ "easyship_fedex_international_priority_dg",
2553
+ "easyship_fedex_international_priority_dg",
2554
+ ),
2555
+ ("easyship_colissimo_expert", "easyship_colissimo_expert"),
2556
+ ("easyship_colissimo_access", "easyship_colissimo_access"),
2557
+ (
2558
+ "easyship_mondialrelay_international_home_delivery",
2559
+ "easyship_mondialrelay_international_home_delivery",
2560
+ ),
2561
+ ("easyship_fedex_economy", "easyship_fedex_economy"),
2562
+ (
2563
+ "easyship_dhl_express_express1200",
2564
+ "easyship_dhl_express_express1200",
2565
+ ),
2566
+ (
2567
+ "easyship_dhl_express_express0900",
2568
+ "easyship_dhl_express_express0900",
2569
+ ),
2570
+ (
2571
+ "easyship_dhl_express_express1800",
2572
+ "easyship_dhl_express_express1800",
2573
+ ),
2574
+ (
2575
+ "easyship_dhl_express_express_worldwide",
2576
+ "easyship_dhl_express_express_worldwide",
2577
+ ),
2578
+ (
2579
+ "easyship_dhl_express_economy_select",
2580
+ "easyship_dhl_express_economy_select",
2581
+ ),
2582
+ (
2583
+ "easyship_dhl_express_express1030_international",
2584
+ "easyship_dhl_express_express1030_international",
2585
+ ),
2586
+ (
2587
+ "easyship_dhl_express_domestic_express0900",
2588
+ "easyship_dhl_express_domestic_express0900",
2589
+ ),
2590
+ (
2591
+ "easyship_dhl_express_domestic_express1200",
2592
+ "easyship_dhl_express_domestic_express1200",
2593
+ ),
2594
+ ("easyship_evri_lightand_large", "easyship_evri_lightand_large"),
2595
+ (
2596
+ "easyship_ninjavan_standard_deliveries",
2597
+ "easyship_ninjavan_standard_deliveries",
2598
+ ),
2599
+ (
2600
+ "easyship_couriersplease_parcel_tier2",
2601
+ "easyship_couriersplease_parcel_tier2",
2602
+ ),
2603
+ (
2604
+ "easyship_skypostal_postal_packet_standard",
2605
+ "easyship_skypostal_postal_packet_standard",
2606
+ ),
2607
+ ("easyship_easyshipdemo_basic", "easyship_easyshipdemo_basic"),
2608
+ ("easyship_easyshipdemo_tracked", "easyship_easyshipdemo_tracked"),
2609
+ ("easyship_easyshipdemo_battery", "easyship_easyshipdemo_battery"),
2610
+ (
2611
+ "easyship_dhl_express_domestic_express",
2612
+ "easyship_dhl_express_domestic_express",
2613
+ ),
2614
+ ("easyship_fedex_smart_post", "easyship_fedex_smart_post"),
2615
+ (
2616
+ "easyship_fedex_international_connect_plus",
2617
+ "easyship_fedex_international_connect_plus",
2618
+ ),
2619
+ ("easyship_ups_saver_net", "easyship_ups_saver_net"),
2620
+ (
2621
+ "easyship_chronopost_chrono_classic",
2622
+ "easyship_chronopost_chrono_classic",
2623
+ ),
2624
+ (
2625
+ "easyship_chronopost_chrono_express",
2626
+ "easyship_chronopost_chrono_express",
2627
+ ),
2628
+ ("easyship_chronopost_chrono10", "easyship_chronopost_chrono10"),
2629
+ ("easyship_chronopost_chrono13", "easyship_chronopost_chrono13"),
2630
+ ("easyship_chronopost_chrono18", "easyship_chronopost_chrono18"),
2631
+ (
2632
+ "easyship_omniparcel_parcel_expedited",
2633
+ "easyship_omniparcel_parcel_expedited",
2634
+ ),
2635
+ (
2636
+ "easyship_omniparcel_parcel_expedited_plus",
2637
+ "easyship_omniparcel_parcel_expedited_plus",
2638
+ ),
2639
+ (
2640
+ "easyship_evri_home_delivery_domestic",
2641
+ "easyship_evri_home_delivery_domestic",
2642
+ ),
2643
+ (
2644
+ "easyship_evri_home_domestic_postable",
2645
+ "easyship_evri_home_domestic_postable",
2646
+ ),
2647
+ (
2648
+ "easyship_skypostal_packet_express",
2649
+ "easyship_skypostal_packet_express",
2650
+ ),
2651
+ (
2652
+ "easyship_parcelforce_express48_large",
2653
+ "easyship_parcelforce_express48_large",
2654
+ ),
2655
+ (
2656
+ "easyship_parcelforce_express24",
2657
+ "easyship_parcelforce_express24",
2658
+ ),
2659
+ (
2660
+ "easyship_parcelforce_express1000",
2661
+ "easyship_parcelforce_express1000",
2662
+ ),
2663
+ (
2664
+ "easyship_parcelforce_express_am",
2665
+ "easyship_parcelforce_express_am",
2666
+ ),
2667
+ (
2668
+ "easyship_parcelforce_express48",
2669
+ "easyship_parcelforce_express48",
2670
+ ),
2671
+ (
2672
+ "easyship_parcelforce_euro_economy",
2673
+ "easyship_parcelforce_euro_economy",
2674
+ ),
2675
+ (
2676
+ "easyship_parcelforce_global_priority",
2677
+ "easyship_parcelforce_global_priority",
2678
+ ),
2679
+ (
2680
+ "easyship_fedex_cross_border_trakpak_worldwide_hermes",
2681
+ "easyship_fedex_cross_border_trakpak_worldwide_hermes",
2682
+ ),
2683
+ (
2684
+ "easyship_fedex_cross_border_trakpak_worldwide",
2685
+ "easyship_fedex_cross_border_trakpak_worldwide",
2686
+ ),
2687
+ (
2688
+ "easyship_evri_home_domestic_postable_next_day",
2689
+ "easyship_evri_home_domestic_postable_next_day",
2690
+ ),
2691
+ (
2692
+ "easyship_dpd_express_pak_next_day",
2693
+ "easyship_dpd_express_pak_next_day",
2694
+ ),
2695
+ (
2696
+ "easyship_dpd_classic_express_pak",
2697
+ "easyship_dpd_classic_express_pak",
2698
+ ),
2699
+ ("easyship_evri_light_and_large", "easyship_evri_light_and_large"),
2700
+ (
2701
+ "easyship_evri_home_delivery_domestic_next_day",
2702
+ "easyship_evri_home_delivery_domestic_next_day",
2703
+ ),
2704
+ (
2705
+ "easyship_evri_home_delivery_eu",
2706
+ "easyship_evri_home_delivery_eu",
2707
+ ),
2708
+ ("easyship_asendia_epaq_plus", "easyship_asendia_epaq_plus"),
2709
+ ("easyship_asendia_epaq_select", "easyship_asendia_epaq_select"),
2710
+ (
2711
+ "easyship_usps_lightweight_standard",
2712
+ "easyship_usps_lightweight_standard",
2713
+ ),
2714
+ (
2715
+ "easyship_usps_lightweight_economy",
2716
+ "easyship_usps_lightweight_economy",
2717
+ ),
2718
+ (
2719
+ "easyship_ups_domestic_express_saver",
2720
+ "easyship_ups_domestic_express_saver",
2721
+ ),
2722
+ ("easyship_apg_e_packet", "easyship_apg_e_packet"),
2723
+ ("easyship_apg_e_packet_plus", "easyship_apg_e_packet_plus"),
2724
+ (
2725
+ "easyship_couriersplease_ecom_base_kilo",
2726
+ "easyship_couriersplease_ecom_base_kilo",
2727
+ ),
2728
+ (
2729
+ "easyship_couriersplease_stdatlbase_kilo",
2730
+ "easyship_couriersplease_stdatlbase_kilo",
2731
+ ),
2732
+ (
2733
+ "easyship_nz_post_international_courier",
2734
+ "easyship_nz_post_international_courier",
2735
+ ),
2736
+ (
2737
+ "easyship_nz_post_air_small_parcel",
2738
+ "easyship_nz_post_air_small_parcel",
2739
+ ),
2740
+ (
2741
+ "easyship_nz_post_tracked_air_satchel",
2742
+ "easyship_nz_post_tracked_air_satchel",
2743
+ ),
2744
+ (
2745
+ "easyship_nz_post_economy_parcel",
2746
+ "easyship_nz_post_economy_parcel",
2747
+ ),
2748
+ ("easyship_nz_post_parcel_local", "easyship_nz_post_parcel_local"),
2749
+ (
2750
+ "easyship_dhl_express_express_domestic",
2751
+ "easyship_dhl_express_express_domestic",
2752
+ ),
2753
+ (
2754
+ "easyship_alliedexpress_roadexpress",
2755
+ "easyship_alliedexpress_roadexpress",
2756
+ ),
2757
+ (
2758
+ "easyship_flatexportrate_asendiae_paqselect",
2759
+ "easyship_flatexportrate_asendiae_paqselect",
2760
+ ),
2761
+ (
2762
+ "easyship_flatexportrate_asendia_country_tracked",
2763
+ "easyship_flatexportrate_asendia_country_tracked",
2764
+ ),
2765
+ ("easyship_singpost_nsaver", "easyship_singpost_nsaver"),
2766
+ ("easyship_colisprive_home", "easyship_colisprive_home"),
2767
+ ("easyship_osm_domestic_parcel", "easyship_osm_domestic_parcel"),
2768
+ (
2769
+ "easyship_malca_amit_door_to_door",
2770
+ "easyship_malca_amit_door_to_door",
2771
+ ),
2772
+ (
2773
+ "easyship_ninjavan_next_day_deliveries",
2774
+ "easyship_ninjavan_next_day_deliveries",
2775
+ ),
2776
+ ("easyship_asendia_e_paqselect", "easyship_asendia_e_paqselect"),
2777
+ ("easyship_dpd_classic", "easyship_dpd_classic"),
2778
+ (
2779
+ "easyship_usps_priority_mail_signature",
2780
+ "easyship_usps_priority_mail_signature",
2781
+ ),
2782
+ (
2783
+ "easyship_bringer_packet_standard",
2784
+ "easyship_bringer_packet_standard",
2785
+ ),
2786
+ ("easyship_bringer_prime", "easyship_bringer_prime"),
2787
+ (
2788
+ "easyship_orangeds_expedited_ddp",
2789
+ "easyship_orangeds_expedited_ddp",
2790
+ ),
2791
+ (
2792
+ "easyship_orangeds_expedited_ddu",
2793
+ "easyship_orangeds_expedited_ddu",
2794
+ ),
2795
+ ("easyship_sendle_preferred", "easyship_sendle_preferred"),
2796
+ ("easyship_ups_ground_saver", "easyship_ups_ground_saver"),
2797
+ (
2798
+ "easyship_ups_upsground_saver_us",
2799
+ "easyship_ups_upsground_saver_us",
2800
+ ),
2801
+ (
2802
+ "easyship_passport_priority_delcon_dduewr",
2803
+ "easyship_passport_priority_delcon_dduewr",
2804
+ ),
2805
+ (
2806
+ "easyship_passport_priority_delcon_ddpewr",
2807
+ "easyship_passport_priority_delcon_ddpewr",
2808
+ ),
2809
+ (
2810
+ "easyship_bringer_tracked_parcel",
2811
+ "easyship_bringer_tracked_parcel",
2812
+ ),
2813
+ ("easyship_ups_express_early", "easyship_ups_express_early"),
2814
+ (
2815
+ "easyship_ups_wolrdwide_express",
2816
+ "easyship_ups_wolrdwide_express",
2817
+ ),
2818
+ ("eshipper_fedex_2day_freight", "eshipper_fedex_2day_freight"),
2819
+ ("eshipper_fedex_3day_freight", "eshipper_fedex_3day_freight"),
2820
+ (
2821
+ "eshipper_sameday_9_am_guaranteed",
2822
+ "eshipper_sameday_9_am_guaranteed",
2823
+ ),
2824
+ (
2825
+ "eshipper_project44_a_duie_pyle",
2826
+ "eshipper_project44_a_duie_pyle",
2827
+ ),
2828
+ (
2829
+ "eshipper_project44_aaa_cooper_transportation",
2830
+ "eshipper_project44_aaa_cooper_transportation",
2831
+ ),
2832
+ (
2833
+ "eshipper_project44_aberdeen_express",
2834
+ "eshipper_project44_aberdeen_express",
2835
+ ),
2836
+ (
2837
+ "eshipper_project44_abf_freight",
2838
+ "eshipper_project44_abf_freight",
2839
+ ),
2840
+ ("eshipper_project44_abfs", "eshipper_project44_abfs"),
2841
+ ("eshipper_sameday_am_service", "eshipper_sameday_am_service"),
2842
+ ("eshipper_apex_trucking", "eshipper_apex_trucking"),
2843
+ (
2844
+ "eshipper_project44_averitt_express",
2845
+ "eshipper_project44_averitt_express",
2846
+ ),
2847
+ (
2848
+ "eshipper_project44_brown_transfer_company",
2849
+ "eshipper_project44_brown_transfer_company",
2850
+ ),
2851
+ (
2852
+ "eshipper_canada_worldwide_next_flight_out",
2853
+ "eshipper_canada_worldwide_next_flight_out",
2854
+ ),
2855
+ (
2856
+ "eshipper_project44_central_freight_lines",
2857
+ "eshipper_project44_central_freight_lines",
2858
+ ),
2859
+ (
2860
+ "eshipper_project44_central_transport",
2861
+ "eshipper_project44_central_transport",
2862
+ ),
2863
+ (
2864
+ "eshipper_project44_chicago_suburban_express",
2865
+ "eshipper_project44_chicago_suburban_express",
2866
+ ),
2867
+ (
2868
+ "eshipper_project44_clear_lane_freight",
2869
+ "eshipper_project44_clear_lane_freight",
2870
+ ),
2871
+ (
2872
+ "eshipper_project44_con_way_freight",
2873
+ "eshipper_project44_con_way_freight",
2874
+ ),
2875
+ (
2876
+ "eshipper_project44_conway_freight",
2877
+ "eshipper_project44_conway_freight",
2878
+ ),
2879
+ (
2880
+ "eshipper_project44_crosscountry_courier",
2881
+ "eshipper_project44_crosscountry_courier",
2882
+ ),
2883
+ ("eshipper_project44_day_ross", "eshipper_project44_day_ross"),
2884
+ ("eshipper_day_and_ross", "eshipper_day_and_ross"),
2885
+ ("eshipper_day_ross_r_and_l", "eshipper_day_ross_r_and_l"),
2886
+ (
2887
+ "eshipper_project44_daylight_transport",
2888
+ "eshipper_project44_daylight_transport",
2889
+ ),
2890
+ (
2891
+ "eshipper_project44_dayton_freight_lines",
2892
+ "eshipper_project44_dayton_freight_lines",
2893
+ ),
2894
+ (
2895
+ "eshipper_project44_dependable_highway_express",
2896
+ "eshipper_project44_dependable_highway_express",
2897
+ ),
2898
+ ("eshipper_dhl_ground", "eshipper_dhl_ground"),
2899
+ (
2900
+ "eshipper_smarte_post_int_l_dhl_packet_international",
2901
+ "eshipper_smarte_post_int_l_dhl_packet_international",
2902
+ ),
2903
+ (
2904
+ "eshipper_smarte_post_int_l_dhl_parcel_international_direct",
2905
+ "eshipper_smarte_post_int_l_dhl_parcel_international_direct",
2906
+ ),
2907
+ (
2908
+ "eshipper_smarte_post_int_l_dhl_parcel_international_standard",
2909
+ "eshipper_smarte_post_int_l_dhl_parcel_international_standard",
2910
+ ),
2911
+ (
2912
+ "eshipper_project44_dohrn_transfer_company",
2913
+ "eshipper_project44_dohrn_transfer_company",
2914
+ ),
2915
+ (
2916
+ "eshipper_project44_dugan_truck_line",
2917
+ "eshipper_project44_dugan_truck_line",
2918
+ ),
2919
+ (
2920
+ "eshipper_aramex_economy_document_express",
2921
+ "eshipper_aramex_economy_document_express",
2922
+ ),
2923
+ (
2924
+ "eshipper_aramex_economy_parcel_express",
2925
+ "eshipper_aramex_economy_parcel_express",
2926
+ ),
2927
+ (
2928
+ "eshipper_envoi_same_day_delivery",
2929
+ "eshipper_envoi_same_day_delivery",
2930
+ ),
2931
+ ("eshipper_dhl_esi_export", "eshipper_dhl_esi_export"),
2932
+ (
2933
+ "eshipper_project44_estes_express_lines",
2934
+ "eshipper_project44_estes_express_lines",
2935
+ ),
2936
+ ("eshipper_ups_expedited", "eshipper_ups_expedited"),
2937
+ (
2938
+ "eshipper_project44_expedited_freight_systems",
2939
+ "eshipper_project44_expedited_freight_systems",
2940
+ ),
2941
+ ("eshipper_ups_express", "eshipper_ups_express"),
2942
+ ("eshipper_dhl_express_1030am", "eshipper_dhl_express_1030am"),
2943
+ ("eshipper_dhl_express_12pm", "eshipper_dhl_express_12pm"),
2944
+ ("eshipper_dhl_express_9am", "eshipper_dhl_express_9am"),
2945
+ ("eshipper_dhl_express_envelope", "eshipper_dhl_express_envelope"),
2946
+ (
2947
+ "eshipper_canpar_express_letter",
2948
+ "eshipper_canpar_express_letter",
2949
+ ),
2950
+ ("eshipper_canpar_express_pak", "eshipper_canpar_express_pak"),
2951
+ (
2952
+ "eshipper_canpar_express_parcel",
2953
+ "eshipper_canpar_express_parcel",
2954
+ ),
2955
+ (
2956
+ "eshipper_dhl_express_worldwide",
2957
+ "eshipper_dhl_express_worldwide",
2958
+ ),
2959
+ ("eshipper_fastfrate_rail", "eshipper_fastfrate_rail"),
2960
+ ("eshipper_fedex_2nd_day", "eshipper_fedex_2nd_day"),
2961
+ ("eshipper_fedex_economy", "eshipper_fedex_economy"),
2962
+ (
2963
+ "eshipper_fedex_first_overnight",
2964
+ "eshipper_fedex_first_overnight",
2965
+ ),
2966
+ (
2967
+ "eshipper_project44_fedex_freight_canada",
2968
+ "eshipper_project44_fedex_freight_canada",
2969
+ ),
2970
+ (
2971
+ "eshipper_project44_fedex_freight_east",
2972
+ "eshipper_project44_fedex_freight_east",
2973
+ ),
2974
+ (
2975
+ "eshipper_fedex_freight_economy",
2976
+ "eshipper_fedex_freight_economy",
2977
+ ),
2978
+ (
2979
+ "eshipper_project44_fedex_freight_national_canada",
2980
+ "eshipper_project44_fedex_freight_national_canada",
2981
+ ),
2982
+ (
2983
+ "eshipper_project44_fedex_freight_national_usa",
2984
+ "eshipper_project44_fedex_freight_national_usa",
2985
+ ),
2986
+ (
2987
+ "eshipper_fedex_freight_priority",
2988
+ "eshipper_fedex_freight_priority",
2989
+ ),
2990
+ (
2991
+ "eshipper_project44_fedex_freight_usa",
2992
+ "eshipper_project44_fedex_freight_usa",
2993
+ ),
2994
+ ("eshipper_fedex_ground", "eshipper_fedex_ground"),
2995
+ (
2996
+ "eshipper_fedex_international_connect_plus",
2997
+ "eshipper_fedex_international_connect_plus",
2998
+ ),
2999
+ ("eshipper_fedex_intl_economy", "eshipper_fedex_intl_economy"),
3000
+ (
3001
+ "eshipper_fedex_intl_economy_freight",
3002
+ "eshipper_fedex_intl_economy_freight",
3003
+ ),
3004
+ ("eshipper_fedex_intl_priority", "eshipper_fedex_intl_priority"),
3005
+ (
3006
+ "eshipper_fedex_intl_priority_express",
3007
+ "eshipper_fedex_intl_priority_express",
3008
+ ),
3009
+ (
3010
+ "eshipper_fedex_intl_priority_freight",
3011
+ "eshipper_fedex_intl_priority_freight",
3012
+ ),
3013
+ (
3014
+ "eshipper_project44_fedex_national",
3015
+ "eshipper_project44_fedex_national",
3016
+ ),
3017
+ ("eshipper_fedex_priority", "eshipper_fedex_priority"),
3018
+ (
3019
+ "eshipper_fedex_standard_overnight",
3020
+ "eshipper_fedex_standard_overnight",
3021
+ ),
3022
+ ("eshipper_project44_forwardair", "eshipper_project44_forwardair"),
3023
+ (
3024
+ "eshipper_project44_frontline_freight",
3025
+ "eshipper_project44_frontline_freight",
3026
+ ),
3027
+ ("eshipper_ups_ground", "eshipper_ups_ground"),
3028
+ (
3029
+ "eshipper_sameday_ground_service",
3030
+ "eshipper_sameday_ground_service",
3031
+ ),
3032
+ (
3033
+ "eshipper_sameday_h1_deliver_to_curbside",
3034
+ "eshipper_sameday_h1_deliver_to_curbside",
3035
+ ),
3036
+ (
3037
+ "eshipper_sameday_h3_delivery_packaging_removal",
3038
+ "eshipper_sameday_h3_delivery_packaging_removal",
3039
+ ),
3040
+ (
3041
+ "eshipper_sameday_h4_delivery_to_curbside",
3042
+ "eshipper_sameday_h4_delivery_to_curbside",
3043
+ ),
3044
+ (
3045
+ "eshipper_sameday_h5_delivery_to_room_of_choice_2_man",
3046
+ "eshipper_sameday_h5_delivery_to_room_of_choice_2_man",
3047
+ ),
3048
+ (
3049
+ "eshipper_sameday_h6_delivery_packaging_removal_2_man",
3050
+ "eshipper_sameday_h6_delivery_packaging_removal_2_man",
3051
+ ),
3052
+ (
3053
+ "eshipper_project44_holland_motor_express",
3054
+ "eshipper_project44_holland_motor_express",
3055
+ ),
3056
+ ("eshipper_dhl_import_express", "eshipper_dhl_import_express"),
3057
+ (
3058
+ "eshipper_dhl_import_express_12pm",
3059
+ "eshipper_dhl_import_express_12pm",
3060
+ ),
3061
+ (
3062
+ "eshipper_dhl_import_express_9am",
3063
+ "eshipper_dhl_import_express_9am",
3064
+ ),
3065
+ ("eshipper_project44_jp_express", "eshipper_project44_jp_express"),
3066
+ ("eshipper_kindersley_expedited", "eshipper_kindersley_expedited"),
3067
+ ("eshipper_kindersley_rail", "eshipper_kindersley_rail"),
3068
+ ("eshipper_kindersley_regular", "eshipper_kindersley_regular"),
3069
+ ("eshipper_kindersley_road", "eshipper_kindersley_road"),
3070
+ (
3071
+ "eshipper_project44_lakeville_motor_express",
3072
+ "eshipper_project44_lakeville_motor_express",
3073
+ ),
3074
+ ("eshipper_day_ross_ltl", "eshipper_day_ross_ltl"),
3075
+ ("eshipper_sameday_ltl_service", "eshipper_sameday_ltl_service"),
3076
+ ("eshipper_mainliner_road", "eshipper_mainliner_road"),
3077
+ (
3078
+ "eshipper_project44_manitoulin_tlx_inc",
3079
+ "eshipper_project44_manitoulin_tlx_inc",
3080
+ ),
3081
+ (
3082
+ "eshipper_project44_midwest_motor_express",
3083
+ "eshipper_project44_midwest_motor_express",
3084
+ ),
3085
+ ("eshipper_mo_rail", "eshipper_mo_rail"),
3086
+ (
3087
+ "eshipper_project44_monroe_transportation_services",
3088
+ "eshipper_project44_monroe_transportation_services",
3089
+ ),
3090
+ (
3091
+ "eshipper_project44_mountain_valley_express",
3092
+ "eshipper_project44_mountain_valley_express",
3093
+ ),
3094
+ (
3095
+ "eshipper_project44_n_m_transfer",
3096
+ "eshipper_project44_n_m_transfer",
3097
+ ),
3098
+ (
3099
+ "eshipper_project44_new_england_motor_freight",
3100
+ "eshipper_project44_new_england_motor_freight",
3101
+ ),
3102
+ (
3103
+ "eshipper_project44_new_penn_motor_express",
3104
+ "eshipper_project44_new_penn_motor_express",
3105
+ ),
3106
+ (
3107
+ "eshipper_project44_oak_harbor_freight",
3108
+ "eshipper_project44_oak_harbor_freight",
3109
+ ),
3110
+ (
3111
+ "eshipper_project44_old_dominion_freight",
3112
+ "eshipper_project44_old_dominion_freight",
3113
+ ),
3114
+ ("eshipper_project44_pitt_ohio", "eshipper_project44_pitt_ohio"),
3115
+ ("eshipper_sameday_pm_service", "eshipper_sameday_pm_service"),
3116
+ ("eshipper_project44_polaris", "eshipper_project44_polaris"),
3117
+ (
3118
+ "eshipper_aramex_priority_letter_express",
3119
+ "eshipper_aramex_priority_letter_express",
3120
+ ),
3121
+ (
3122
+ "eshipper_aramex_priority_parcel_express",
3123
+ "eshipper_aramex_priority_parcel_express",
3124
+ ),
3125
+ ("eshipper_purolator_express", "eshipper_purolator_express"),
3126
+ (
3127
+ "eshipper_purolator_express_1030",
3128
+ "eshipper_purolator_express_1030",
3129
+ ),
3130
+ (
3131
+ "eshipper_purolator_express_9am",
3132
+ "eshipper_purolator_express_9am",
3133
+ ),
3134
+ (
3135
+ "eshipper_purolator_expresscheque",
3136
+ "eshipper_purolator_expresscheque",
3137
+ ),
3138
+ ("eshipper_purolator_ground", "eshipper_purolator_ground"),
3139
+ (
3140
+ "eshipper_purolator_ground_1030",
3141
+ "eshipper_purolator_ground_1030",
3142
+ ),
3143
+ ("eshipper_purolator_ground_9am", "eshipper_purolator_ground_9am"),
3144
+ ("eshipper_purolator", "eshipper_purolator"),
3145
+ ("eshipper_purolator_10_30", "eshipper_purolator_10_30"),
3146
+ ("eshipper_purolator_9am", "eshipper_purolator_9am"),
3147
+ ("eshipper_purolator_puropak", "eshipper_purolator_puropak"),
3148
+ (
3149
+ "eshipper_purolator_puropak_10_30",
3150
+ "eshipper_purolator_puropak_10_30",
3151
+ ),
3152
+ (
3153
+ "eshipper_purolator_puropak_9am",
3154
+ "eshipper_purolator_puropak_9am",
3155
+ ),
3156
+ (
3157
+ "eshipper_project44_rl_carriers",
3158
+ "eshipper_project44_rl_carriers",
3159
+ ),
3160
+ (
3161
+ "eshipper_project44_roadrunner_transportation_services",
3162
+ "eshipper_project44_roadrunner_transportation_services",
3163
+ ),
3164
+ (
3165
+ "eshipper_project44_saia_ltl_freight",
3166
+ "eshipper_project44_saia_ltl_freight",
3167
+ ),
3168
+ (
3169
+ "eshipper_project44_saia_motor_freight",
3170
+ "eshipper_project44_saia_motor_freight",
3171
+ ),
3172
+ (
3173
+ "eshipper_ups_second_day_air_a_m",
3174
+ "eshipper_ups_second_day_air_a_m",
3175
+ ),
3176
+ ("eshipper_canpar_select_letter", "eshipper_canpar_select_letter"),
3177
+ ("eshipper_canpar_select_pak", "eshipper_canpar_select_pak"),
3178
+ ("eshipper_canpar_select_parcel", "eshipper_canpar_select_parcel"),
3179
+ (
3180
+ "eshipper_project44_southeastern_freight_lines",
3181
+ "eshipper_project44_southeastern_freight_lines",
3182
+ ),
3183
+ (
3184
+ "eshipper_project44_southwestern_motor_transport",
3185
+ "eshipper_project44_southwestern_motor_transport",
3186
+ ),
3187
+ ("eshipper_speedy", "eshipper_speedy"),
3188
+ ("eshipper_ups_standard", "eshipper_ups_standard"),
3189
+ (
3190
+ "eshipper_project44_standard_forwarding",
3191
+ "eshipper_project44_standard_forwarding",
3192
+ ),
3193
+ ("eshipper_tforce_freight_ltl", "eshipper_tforce_freight_ltl"),
3194
+ (
3195
+ "eshipper_tforce_freight_ltl_guaranteed",
3196
+ "eshipper_tforce_freight_ltl_guaranteed",
3197
+ ),
3198
+ (
3199
+ "eshipper_tforce_freight_ltl_guaranteed_a_m",
3200
+ "eshipper_tforce_freight_ltl_guaranteed_a_m",
3201
+ ),
3202
+ ("eshipper_tforce_standard_ltl", "eshipper_tforce_standard_ltl"),
3203
+ ("eshipper_ups_three_day_select", "eshipper_ups_three_day_select"),
3204
+ (
3205
+ "eshipper_project44_total_transportation_distribution",
3206
+ "eshipper_project44_total_transportation_distribution",
3207
+ ),
3208
+ (
3209
+ "eshipper_project44_tst_overland_express",
3210
+ "eshipper_project44_tst_overland_express",
3211
+ ),
3212
+ ("eshipper_project44_ups", "eshipper_project44_ups"),
3213
+ ("eshipper_ups_freight", "eshipper_ups_freight"),
3214
+ ("eshipper_ups_freight_canada", "eshipper_ups_freight_canada"),
3215
+ ("eshipper_ups_saver", "eshipper_ups_saver"),
3216
+ (
3217
+ "eshipper_sameday_urgent_letter",
3218
+ "eshipper_sameday_urgent_letter",
3219
+ ),
3220
+ ("eshipper_sameday_urgent_pac", "eshipper_sameday_urgent_pac"),
3221
+ ("eshipper_canpar_usa", "eshipper_canpar_usa"),
3222
+ (
3223
+ "eshipper_project44_usf_reddaway",
3224
+ "eshipper_project44_usf_reddaway",
3225
+ ),
3226
+ (
3227
+ "eshipper_ods_usps_light_weight_parcel_budget",
3228
+ "eshipper_ods_usps_light_weight_parcel_budget",
3229
+ ),
3230
+ (
3231
+ "eshipper_ods_usps_light_weight_parcel_expedited",
3232
+ "eshipper_ods_usps_light_weight_parcel_expedited",
3233
+ ),
3234
+ (
3235
+ "eshipper_ods_usps_parcel_select_budget",
3236
+ "eshipper_ods_usps_parcel_select_budget",
3237
+ ),
3238
+ (
3239
+ "eshipper_ods_usps_parcel_select_expedited",
3240
+ "eshipper_ods_usps_parcel_select_expedited",
3241
+ ),
3242
+ (
3243
+ "eshipper_project44_valley_cartage",
3244
+ "eshipper_project44_valley_cartage",
3245
+ ),
3246
+ (
3247
+ "eshipper_project44_vision_express_ltl",
3248
+ "eshipper_project44_vision_express_ltl",
3249
+ ),
3250
+ (
3251
+ "eshipper_project44_ward_trucking",
3252
+ "eshipper_project44_ward_trucking",
3253
+ ),
3254
+ ("eshipper_western_canada_rail", "eshipper_western_canada_rail"),
3255
+ (
3256
+ "eshipper_ups_worldwide_expedited",
3257
+ "eshipper_ups_worldwide_expedited",
3258
+ ),
3259
+ (
3260
+ "eshipper_ups_worldwide_express",
3261
+ "eshipper_ups_worldwide_express",
3262
+ ),
3263
+ (
3264
+ "eshipper_project44_xpo_logistics",
3265
+ "eshipper_project44_xpo_logistics",
3266
+ ),
3267
+ (
3268
+ "eshipper_project44_xpress_global_systems",
3269
+ "eshipper_project44_xpress_global_systems",
3270
+ ),
3271
+ (
3272
+ "eshipper_canadapost_xpress_post",
3273
+ "eshipper_canadapost_xpress_post",
3274
+ ),
3275
+ ("eshipper_project44_yrc", "eshipper_project44_yrc"),
3276
+ (
3277
+ "eshipper_canadapost_air_parcel_intl",
3278
+ "eshipper_canadapost_air_parcel_intl",
3279
+ ),
3280
+ (
3281
+ "eshipper_canadapost_expedited_parcel_usa",
3282
+ "eshipper_canadapost_expedited_parcel_usa",
3283
+ ),
3284
+ (
3285
+ "eshipper_canadapost_priority_courier",
3286
+ "eshipper_canadapost_priority_courier",
3287
+ ),
3288
+ ("eshipper_canadapost_regular", "eshipper_canadapost_regular"),
3289
+ (
3290
+ "eshipper_canadapost_small_packet",
3291
+ "eshipper_canadapost_small_packet",
3292
+ ),
3293
+ (
3294
+ "eshipper_canadapost_small_packet_international_air",
3295
+ "eshipper_canadapost_small_packet_international_air",
3296
+ ),
3297
+ (
3298
+ "eshipper_canadapost_small_packet_international_surface",
3299
+ "eshipper_canadapost_small_packet_international_surface",
3300
+ ),
3301
+ (
3302
+ "eshipper_canadapost_surface_parcel_intl",
3303
+ "eshipper_canadapost_surface_parcel_intl",
3304
+ ),
3305
+ (
3306
+ "eshipper_canadapost_xpress_post_intl",
3307
+ "eshipper_canadapost_xpress_post_intl",
3308
+ ),
3309
+ (
3310
+ "eshipper_canadapost_xpress_post_usa",
3311
+ "eshipper_canadapost_xpress_post_usa",
3312
+ ),
3313
+ ("eshipper_canpar_international", "eshipper_canpar_international"),
3314
+ (
3315
+ "eshipper_canpar_usa_select_letter",
3316
+ "eshipper_canpar_usa_select_letter",
3317
+ ),
3318
+ (
3319
+ "eshipper_canpar_usa_select_pak",
3320
+ "eshipper_canpar_usa_select_pak",
3321
+ ),
3322
+ (
3323
+ "eshipper_canpar_usa_select_parcel",
3324
+ "eshipper_canpar_usa_select_parcel",
3325
+ ),
3326
+ ("eshipper_cpx_canada_post", "eshipper_cpx_canada_post"),
3327
+ ("eshipper_dhl_economy_select", "eshipper_dhl_economy_select"),
3328
+ ("eshipper_apex_v", "eshipper_apex_v"),
3329
+ ("eshipper_apex_trucking_v", "eshipper_apex_trucking_v"),
3330
+ ("eshipper_kingsway_road", "eshipper_kingsway_road"),
3331
+ ("eshipper_m_o_eastbound", "eshipper_m_o_eastbound"),
3332
+ (
3333
+ "eshipper_national_fastfreight_rail",
3334
+ "eshipper_national_fastfreight_rail",
3335
+ ),
3336
+ (
3337
+ "eshipper_national_fastfreight_road",
3338
+ "eshipper_national_fastfreight_road",
3339
+ ),
3340
+ ("eshipper_vitran_rail", "eshipper_vitran_rail"),
3341
+ ("eshipper_vitran_road", "eshipper_vitran_road"),
3342
+ ("eshipper_fedex_ground_us", "eshipper_fedex_ground_us"),
3343
+ (
3344
+ "eshipper_fedex_international_priority",
3345
+ "eshipper_fedex_international_priority",
3346
+ ),
3347
+ (
3348
+ "eshipper_fedex_international_priority_express",
3349
+ "eshipper_fedex_international_priority_express",
3350
+ ),
3351
+ ("eshipper_project44_day_ross_v", "eshipper_project44_day_ross_v"),
3352
+ (
3353
+ "eshipper_project44_purolator_freight",
3354
+ "eshipper_project44_purolator_freight",
3355
+ ),
3356
+ (
3357
+ "eshipper_project44_r_l_carriers",
3358
+ "eshipper_project44_r_l_carriers",
3359
+ ),
3360
+ ("eshipper_pyk_ground_advantage", "eshipper_pyk_ground_advantage"),
3361
+ ("eshipper_usps_priority_mail", "eshipper_usps_priority_mail"),
3362
+ ("eshipper_skip", "eshipper_skip"),
3363
+ (
3364
+ "eshipper_smarte_post_intl_dhl_parcel_international_direct_ngr",
3365
+ "eshipper_smarte_post_intl_dhl_parcel_international_direct_ngr",
3366
+ ),
3367
+ (
3368
+ "eshipper_smarte_post_intl_global_mail_business_priority",
3369
+ "eshipper_smarte_post_intl_global_mail_business_priority",
3370
+ ),
3371
+ (
3372
+ "eshipper_smarte_post_intl_global_mail_business_standard",
3373
+ "eshipper_smarte_post_intl_global_mail_business_standard",
3374
+ ),
3375
+ (
3376
+ "eshipper_smarte_post_intl_global_mail_packet_plus_priority",
3377
+ "eshipper_smarte_post_intl_global_mail_packet_plus_priority",
3378
+ ),
3379
+ (
3380
+ "eshipper_smarte_post_intl_global_mail_packet_priority",
3381
+ "eshipper_smarte_post_intl_global_mail_packet_priority",
3382
+ ),
3383
+ (
3384
+ "eshipper_smarte_post_intl_global_mail_packet_standard",
3385
+ "eshipper_smarte_post_intl_global_mail_packet_standard",
3386
+ ),
3387
+ (
3388
+ "eshipper_smarte_post_intl_global_mail_parcel_direct_priority_yyz",
3389
+ "eshipper_smarte_post_intl_global_mail_parcel_direct_priority_yyz",
3390
+ ),
3391
+ (
3392
+ "eshipper_smarte_post_intl_global_mail_parcel_direct_standard_yyz",
3393
+ "eshipper_smarte_post_intl_global_mail_parcel_direct_standard_yyz",
3394
+ ),
3395
+ (
3396
+ "eshipper_smarte_post_intl_global_mail_parcel_priority",
3397
+ "eshipper_smarte_post_intl_global_mail_parcel_priority",
3398
+ ),
3399
+ (
3400
+ "eshipper_smarte_post_intl_global_mail_parcel_standard",
3401
+ "eshipper_smarte_post_intl_global_mail_parcel_standard",
3402
+ ),
3403
+ ("eshipper_ups_express_early_am", "eshipper_ups_express_early_am"),
3404
+ (
3405
+ "eshipper_ups_worldwide_express_plus",
3406
+ "eshipper_ups_worldwide_express_plus",
3407
+ ),
3408
+ (
3409
+ "eshipper_usps_first_class_package_return_service",
3410
+ "eshipper_usps_first_class_package_return_service",
3411
+ ),
3412
+ ("eshipper_usps_library_mail", "eshipper_usps_library_mail"),
3413
+ ("eshipper_usps_media_mail", "eshipper_usps_media_mail"),
3414
+ ("eshipper_usps_parcel_select", "eshipper_usps_parcel_select"),
3415
+ ("eshipper_usps_pbx", "eshipper_usps_pbx"),
3416
+ ("eshipper_usps_pbx_lightweight", "eshipper_usps_pbx_lightweight"),
3417
+ (
3418
+ "eshipper_usps_priority_mail_express",
3419
+ "eshipper_usps_priority_mail_express",
3420
+ ),
3421
+ (
3422
+ "eshipper_usps_priority_mail_open_and_distribute",
3423
+ "eshipper_usps_priority_mail_open_and_distribute",
3424
+ ),
3425
+ (
3426
+ "eshipper_usps_priority_mail_return_service",
3427
+ "eshipper_usps_priority_mail_return_service",
3428
+ ),
3429
+ (
3430
+ "eshipper_usps_retail_ground_formerly_standard_post",
3431
+ "eshipper_usps_retail_ground_formerly_standard_post",
3432
+ ),
3433
+ (
3434
+ "fedex_international_priority_express",
3435
+ "fedex_international_priority_express",
3436
+ ),
3437
+ ("fedex_international_first", "fedex_international_first"),
3438
+ ("fedex_international_priority", "fedex_international_priority"),
3439
+ ("fedex_international_economy", "fedex_international_economy"),
3440
+ ("fedex_ground", "fedex_ground"),
3441
+ ("fedex_cargo_mail", "fedex_cargo_mail"),
3442
+ (
3443
+ "fedex_cargo_international_premium",
3444
+ "fedex_cargo_international_premium",
3445
+ ),
3446
+ ("fedex_first_overnight", "fedex_first_overnight"),
3447
+ ("fedex_first_overnight_freight", "fedex_first_overnight_freight"),
3448
+ ("fedex_1_day_freight", "fedex_1_day_freight"),
3449
+ ("fedex_2_day_freight", "fedex_2_day_freight"),
3450
+ ("fedex_3_day_freight", "fedex_3_day_freight"),
3451
+ (
3452
+ "fedex_international_priority_freight",
3453
+ "fedex_international_priority_freight",
3454
+ ),
3455
+ (
3456
+ "fedex_international_economy_freight",
3457
+ "fedex_international_economy_freight",
3458
+ ),
3459
+ (
3460
+ "fedex_cargo_airport_to_airport",
3461
+ "fedex_cargo_airport_to_airport",
3462
+ ),
3463
+ (
3464
+ "fedex_international_priority_distribution",
3465
+ "fedex_international_priority_distribution",
3466
+ ),
3467
+ (
3468
+ "fedex_ip_direct_distribution_freight",
3469
+ "fedex_ip_direct_distribution_freight",
3470
+ ),
3471
+ (
3472
+ "fedex_intl_ground_distribution",
3473
+ "fedex_intl_ground_distribution",
3474
+ ),
3475
+ ("fedex_ground_home_delivery", "fedex_ground_home_delivery"),
3476
+ ("fedex_smart_post", "fedex_smart_post"),
3477
+ ("fedex_priority_overnight", "fedex_priority_overnight"),
3478
+ ("fedex_standard_overnight", "fedex_standard_overnight"),
3479
+ ("fedex_2_day", "fedex_2_day"),
3480
+ ("fedex_2_day_am", "fedex_2_day_am"),
3481
+ ("fedex_express_saver", "fedex_express_saver"),
3482
+ ("fedex_same_day", "fedex_same_day"),
3483
+ ("fedex_same_day_city", "fedex_same_day_city"),
3484
+ ("fedex_one_day_freight", "fedex_one_day_freight"),
3485
+ (
3486
+ "fedex_international_economy_distribution",
3487
+ "fedex_international_economy_distribution",
3488
+ ),
3489
+ (
3490
+ "fedex_international_connect_plus",
3491
+ "fedex_international_connect_plus",
3492
+ ),
3493
+ (
3494
+ "fedex_international_distribution_freight",
3495
+ "fedex_international_distribution_freight",
3496
+ ),
3497
+ ("fedex_regional_economy", "fedex_regional_economy"),
3498
+ ("fedex_next_day_freight", "fedex_next_day_freight"),
3499
+ ("fedex_next_day", "fedex_next_day"),
3500
+ ("fedex_next_day_10am", "fedex_next_day_10am"),
3501
+ ("fedex_next_day_12pm", "fedex_next_day_12pm"),
3502
+ ("fedex_next_day_end_of_day", "fedex_next_day_end_of_day"),
3503
+ ("fedex_distance_deferred", "fedex_distance_deferred"),
3504
+ ("freightcom_all", "freightcom_all"),
3505
+ ("freightcom_usf_holland", "freightcom_usf_holland"),
3506
+ ("freightcom_central_transport", "freightcom_central_transport"),
3507
+ ("freightcom_estes", "freightcom_estes"),
3508
+ ("freightcom_canpar_ground", "freightcom_canpar_ground"),
3509
+ ("freightcom_canpar_select", "freightcom_canpar_select"),
3510
+ ("freightcom_canpar_overnight", "freightcom_canpar_overnight"),
3511
+ ("freightcom_dicom_ground", "freightcom_dicom_ground"),
3512
+ ("freightcom_purolator_ground", "freightcom_purolator_ground"),
3513
+ ("freightcom_purolator_express", "freightcom_purolator_express"),
3514
+ (
3515
+ "freightcom_purolator_express_9_am",
3516
+ "freightcom_purolator_express_9_am",
3517
+ ),
3518
+ (
3519
+ "freightcom_purolator_express_10_30_am",
3520
+ "freightcom_purolator_express_10_30_am",
3521
+ ),
3522
+ (
3523
+ "freightcom_purolator_ground_us",
3524
+ "freightcom_purolator_ground_us",
3525
+ ),
3526
+ (
3527
+ "freightcom_purolator_express_us",
3528
+ "freightcom_purolator_express_us",
3529
+ ),
3530
+ (
3531
+ "freightcom_purolator_express_us_9_am",
3532
+ "freightcom_purolator_express_us_9_am",
3533
+ ),
3534
+ (
3535
+ "freightcom_purolator_express_us_10_30_am",
3536
+ "freightcom_purolator_express_us_10_30_am",
3537
+ ),
3538
+ (
3539
+ "freightcom_fedex_express_saver",
3540
+ "freightcom_fedex_express_saver",
3541
+ ),
3542
+ ("freightcom_fedex_ground", "freightcom_fedex_ground"),
3543
+ ("freightcom_fedex_2day", "freightcom_fedex_2day"),
3544
+ (
3545
+ "freightcom_fedex_priority_overnight",
3546
+ "freightcom_fedex_priority_overnight",
3547
+ ),
3548
+ (
3549
+ "freightcom_fedex_standard_overnight",
3550
+ "freightcom_fedex_standard_overnight",
3551
+ ),
3552
+ (
3553
+ "freightcom_fedex_first_overnight",
3554
+ "freightcom_fedex_first_overnight",
3555
+ ),
3556
+ (
3557
+ "freightcom_fedex_international_priority",
3558
+ "freightcom_fedex_international_priority",
3559
+ ),
3560
+ (
3561
+ "freightcom_fedex_international_economy",
3562
+ "freightcom_fedex_international_economy",
3563
+ ),
3564
+ ("freightcom_ups_standard", "freightcom_ups_standard"),
3565
+ ("freightcom_ups_expedited", "freightcom_ups_expedited"),
3566
+ ("freightcom_ups_express_saver", "freightcom_ups_express_saver"),
3567
+ ("freightcom_ups_express", "freightcom_ups_express"),
3568
+ ("freightcom_ups_express_early", "freightcom_ups_express_early"),
3569
+ ("freightcom_ups_3day_select", "freightcom_ups_3day_select"),
3570
+ (
3571
+ "freightcom_ups_worldwide_expedited",
3572
+ "freightcom_ups_worldwide_expedited",
3573
+ ),
3574
+ (
3575
+ "freightcom_ups_worldwide_express",
3576
+ "freightcom_ups_worldwide_express",
3577
+ ),
3578
+ (
3579
+ "freightcom_ups_worldwide_express_plus",
3580
+ "freightcom_ups_worldwide_express_plus",
3581
+ ),
3582
+ (
3583
+ "freightcom_ups_worldwide_express_saver",
3584
+ "freightcom_ups_worldwide_express_saver",
3585
+ ),
3586
+ ("freightcom_dhl_express_easy", "freightcom_dhl_express_easy"),
3587
+ ("freightcom_dhl_express_10_30", "freightcom_dhl_express_10_30"),
3588
+ (
3589
+ "freightcom_dhl_express_worldwide",
3590
+ "freightcom_dhl_express_worldwide",
3591
+ ),
3592
+ ("freightcom_dhl_express_12_00", "freightcom_dhl_express_12_00"),
3593
+ ("freightcom_dhl_economy_select", "freightcom_dhl_economy_select"),
3594
+ (
3595
+ "freightcom_dhl_ecommerce_am_service",
3596
+ "freightcom_dhl_ecommerce_am_service",
3597
+ ),
3598
+ (
3599
+ "freightcom_dhl_ecommerce_ground_service",
3600
+ "freightcom_dhl_ecommerce_ground_service",
3601
+ ),
3602
+ (
3603
+ "freightcom_canadapost_regular_parcel",
3604
+ "freightcom_canadapost_regular_parcel",
3605
+ ),
3606
+ (
3607
+ "freightcom_canadapost_expedited_parcel",
3608
+ "freightcom_canadapost_expedited_parcel",
3609
+ ),
3610
+ (
3611
+ "freightcom_canadapost_xpresspost",
3612
+ "freightcom_canadapost_xpresspost",
3613
+ ),
3614
+ (
3615
+ "freightcom_canadapost_priority",
3616
+ "freightcom_canadapost_priority",
3617
+ ),
3618
+ ("standard_service", "standard_service"),
3619
+ ("geodis_EXP", "geodis_EXP"),
3620
+ ("geodis_MES", "geodis_MES"),
3621
+ ("geodis_express_france", "geodis_express_france"),
3622
+ (
3623
+ "geodis_retour_trans_fr_messagerie_plus",
3624
+ "geodis_retour_trans_fr_messagerie_plus",
3625
+ ),
3626
+ ("letter_ordered", "letter_ordered"),
3627
+ ("letter_simple", "letter_simple"),
3628
+ ("letter_valued", "letter_valued"),
3629
+ ("package_ordered", "package_ordered"),
3630
+ ("package_simple", "package_simple"),
3631
+ ("package_valued", "package_valued"),
3632
+ ("parcel_simple", "parcel_simple"),
3633
+ ("parcel_valued", "parcel_valued"),
3634
+ ("postcard_ordered", "postcard_ordered"),
3635
+ ("postcard_simple", "postcard_simple"),
3636
+ ("sekogram_simple", "sekogram_simple"),
3637
+ ("sprint_simple", "sprint_simple"),
3638
+ ("yes_ordered_value", "yes_ordered_value"),
3639
+ ("locate2u_local_delivery", "locate2u_local_delivery"),
3640
+ ("purolator_express_9_am", "purolator_express_9_am"),
3641
+ ("purolator_express_us", "purolator_express_us"),
3642
+ ("purolator_express_10_30_am", "purolator_express_10_30_am"),
3643
+ ("purolator_express_us_9_am", "purolator_express_us_9_am"),
3644
+ ("purolator_express_12_pm", "purolator_express_12_pm"),
3645
+ ("purolator_express_us_10_30_am", "purolator_express_us_10_30_am"),
3646
+ ("purolator_express", "purolator_express"),
3647
+ ("purolator_express_us_12_00", "purolator_express_us_12_00"),
3648
+ ("purolator_express_evening", "purolator_express_evening"),
3649
+ ("purolator_express_envelope_us", "purolator_express_envelope_us"),
3650
+ (
3651
+ "purolator_express_envelope_9_am",
3652
+ "purolator_express_envelope_9_am",
3653
+ ),
3654
+ (
3655
+ "purolator_express_us_envelope_9_am",
3656
+ "purolator_express_us_envelope_9_am",
3657
+ ),
3658
+ (
3659
+ "purolator_express_envelope_10_30_am",
3660
+ "purolator_express_envelope_10_30_am",
3661
+ ),
3662
+ (
3663
+ "purolator_express_us_envelope_10_30_am",
3664
+ "purolator_express_us_envelope_10_30_am",
3665
+ ),
3666
+ (
3667
+ "purolator_express_envelope_12_pm",
3668
+ "purolator_express_envelope_12_pm",
3669
+ ),
3670
+ (
3671
+ "purolator_express_us_envelope_12_00",
3672
+ "purolator_express_us_envelope_12_00",
3673
+ ),
3674
+ ("purolator_express_envelope", "purolator_express_envelope"),
3675
+ ("purolator_express_pack_us", "purolator_express_pack_us"),
3676
+ (
3677
+ "purolator_express_envelope_evening",
3678
+ "purolator_express_envelope_evening",
3679
+ ),
3680
+ (
3681
+ "purolator_express_us_pack_9_am",
3682
+ "purolator_express_us_pack_9_am",
3683
+ ),
3684
+ ("purolator_express_pack_9_am", "purolator_express_pack_9_am"),
3685
+ (
3686
+ "purolator_express_us_pack_10_30_am",
3687
+ "purolator_express_us_pack_10_30_am",
3688
+ ),
3689
+ (
3690
+ "purolator_express_pack10_30_am",
3691
+ "purolator_express_pack10_30_am",
3692
+ ),
3693
+ (
3694
+ "purolator_express_us_pack_12_00",
3695
+ "purolator_express_us_pack_12_00",
3696
+ ),
3697
+ ("purolator_express_pack_12_pm", "purolator_express_pack_12_pm"),
3698
+ ("purolator_express_box_us", "purolator_express_box_us"),
3699
+ ("purolator_express_pack", "purolator_express_pack"),
3700
+ ("purolator_express_us_box_9_am", "purolator_express_us_box_9_am"),
3701
+ (
3702
+ "purolator_express_pack_evening",
3703
+ "purolator_express_pack_evening",
3704
+ ),
3705
+ (
3706
+ "purolator_express_us_box_10_30_am",
3707
+ "purolator_express_us_box_10_30_am",
3708
+ ),
3709
+ ("purolator_express_box_9_am", "purolator_express_box_9_am"),
3710
+ (
3711
+ "purolator_express_us_box_12_00",
3712
+ "purolator_express_us_box_12_00",
3713
+ ),
3714
+ (
3715
+ "purolator_express_box_10_30_am",
3716
+ "purolator_express_box_10_30_am",
3717
+ ),
3718
+ ("purolator_ground_us", "purolator_ground_us"),
3719
+ ("purolator_express_box_12_pm", "purolator_express_box_12_pm"),
3720
+ (
3721
+ "purolator_express_international",
3722
+ "purolator_express_international",
3723
+ ),
3724
+ ("purolator_express_box", "purolator_express_box"),
3725
+ (
3726
+ "purolator_express_international_9_am",
3727
+ "purolator_express_international_9_am",
3728
+ ),
3729
+ ("purolator_express_box_evening", "purolator_express_box_evening"),
3730
+ (
3731
+ "purolator_express_international_10_30_am",
3732
+ "purolator_express_international_10_30_am",
3733
+ ),
3734
+ ("purolator_ground", "purolator_ground"),
3735
+ (
3736
+ "purolator_express_international_12_00",
3737
+ "purolator_express_international_12_00",
3738
+ ),
3739
+ ("purolator_ground_9_am", "purolator_ground_9_am"),
3740
+ (
3741
+ "purolator_express_envelope_international",
3742
+ "purolator_express_envelope_international",
3743
+ ),
3744
+ ("purolator_ground_10_30_am", "purolator_ground_10_30_am"),
3745
+ (
3746
+ "purolator_express_international_envelope_9_am",
3747
+ "purolator_express_international_envelope_9_am",
3748
+ ),
3749
+ ("purolator_ground_evening", "purolator_ground_evening"),
3750
+ (
3751
+ "purolator_express_international_envelope_10_30_am",
3752
+ "purolator_express_international_envelope_10_30_am",
3753
+ ),
3754
+ ("purolator_quick_ship", "purolator_quick_ship"),
3755
+ (
3756
+ "purolator_express_international_envelope_12_00",
3757
+ "purolator_express_international_envelope_12_00",
3758
+ ),
3759
+ ("purolator_quick_ship_envelope", "purolator_quick_ship_envelope"),
3760
+ (
3761
+ "purolator_express_pack_international",
3762
+ "purolator_express_pack_international",
3763
+ ),
3764
+ ("purolator_quick_ship_pack", "purolator_quick_ship_pack"),
3765
+ (
3766
+ "purolator_express_international_pack_9_am",
3767
+ "purolator_express_international_pack_9_am",
3768
+ ),
3769
+ ("purolator_quick_ship_box", "purolator_quick_ship_box"),
3770
+ (
3771
+ "purolator_express_international_pack_10_30_am",
3772
+ "purolator_express_international_pack_10_30_am",
3773
+ ),
3774
+ (
3775
+ "purolator_express_international_pack_12_00",
3776
+ "purolator_express_international_pack_12_00",
3777
+ ),
3778
+ (
3779
+ "purolator_express_box_international",
3780
+ "purolator_express_box_international",
3781
+ ),
3782
+ (
3783
+ "purolator_express_international_box_9_am",
3784
+ "purolator_express_international_box_9_am",
3785
+ ),
3786
+ (
3787
+ "purolator_express_international_box_10_30_am",
3788
+ "purolator_express_international_box_10_30_am",
3789
+ ),
3790
+ (
3791
+ "purolator_express_international_box_12_00",
3792
+ "purolator_express_international_box_12_00",
3793
+ ),
3794
+ ("roadie_local_delivery", "roadie_local_delivery"),
3795
+ (
3796
+ "sapient_royal_mail_hm_forces_mail",
3797
+ "sapient_royal_mail_hm_forces_mail",
3798
+ ),
3799
+ (
3800
+ "sapient_royal_mail_hm_forces_signed_for",
3801
+ "sapient_royal_mail_hm_forces_signed_for",
3802
+ ),
3803
+ (
3804
+ "sapient_royal_mail_hm_forces_special_delivery_500",
3805
+ "sapient_royal_mail_hm_forces_special_delivery_500",
3806
+ ),
3807
+ (
3808
+ "sapient_royal_mail_hm_forces_special_delivery_1000",
3809
+ "sapient_royal_mail_hm_forces_special_delivery_1000",
3810
+ ),
3811
+ (
3812
+ "sapient_royal_mail_hm_forces_special_delivery_2500",
3813
+ "sapient_royal_mail_hm_forces_special_delivery_2500",
3814
+ ),
3815
+ (
3816
+ "sapient_royal_mail_international_business_personal_correspondence_max_sort_residue_ll",
3817
+ "sapient_royal_mail_international_business_personal_correspondence_max_sort_residue_ll",
3818
+ ),
3819
+ (
3820
+ "sapient_royal_mail_international_business_mail_ll_max_sort_residue_standard",
3821
+ "sapient_royal_mail_international_business_mail_ll_max_sort_residue_standard",
3822
+ ),
3823
+ (
3824
+ "sapient_royal_mail_international_business_personal_correspondence_max_sort_residue_l",
3825
+ "sapient_royal_mail_international_business_personal_correspondence_max_sort_residue_l",
3826
+ ),
3827
+ (
3828
+ "sapient_royal_mail_international_business_mail_l_max_sort_residue_standard",
3829
+ "sapient_royal_mail_international_business_mail_l_max_sort_residue_standard",
3830
+ ),
3831
+ (
3832
+ "sapient_royal_mail_international_business_printed_matter_packet",
3833
+ "sapient_royal_mail_international_business_printed_matter_packet",
3834
+ ),
3835
+ ("sapient_royal_mail_1st_class", "sapient_royal_mail_1st_class"),
3836
+ ("sapient_royal_mail_2nd_class", "sapient_royal_mail_2nd_class"),
3837
+ (
3838
+ "sapient_royal_mail_1st_class_signed_for",
3839
+ "sapient_royal_mail_1st_class_signed_for",
3840
+ ),
3841
+ (
3842
+ "sapient_royal_mail_2nd_class_signed_for",
3843
+ "sapient_royal_mail_2nd_class_signed_for",
3844
+ ),
3845
+ (
3846
+ "sapient_royal_mail_international_business_parcel_priority_country_priced_boxable",
3847
+ "sapient_royal_mail_international_business_parcel_priority_country_priced_boxable",
3848
+ ),
3849
+ (
3850
+ "sapient_royal_mail_international_business_parcel_tracked_country_priced_boxable_extra_comp",
3851
+ "sapient_royal_mail_international_business_parcel_tracked_country_priced_boxable_extra_comp",
3852
+ ),
3853
+ (
3854
+ "sapient_royal_mail_international_business_parcel_priority_country_priced_boxable_ddp",
3855
+ "sapient_royal_mail_international_business_parcel_priority_country_priced_boxable_ddp",
3856
+ ),
3857
+ (
3858
+ "sapient_royal_mail_international_business_parcel_tracked_country_priced_boxable_ddp",
3859
+ "sapient_royal_mail_international_business_parcel_tracked_country_priced_boxable_ddp",
3860
+ ),
3861
+ (
3862
+ "sapient_royal_mail_international_business_parcel_tracked_country_priced_boxable",
3863
+ "sapient_royal_mail_international_business_parcel_tracked_country_priced_boxable",
3864
+ ),
3865
+ (
3866
+ "sapient_royal_mail_24_standard_signed_for_parcel_daily_rate_service",
3867
+ "sapient_royal_mail_24_standard_signed_for_parcel_daily_rate_service",
3868
+ ),
3869
+ (
3870
+ "sapient_royal_mail_48_standard_signed_for_parcel_daily_rate_service",
3871
+ "sapient_royal_mail_48_standard_signed_for_parcel_daily_rate_service",
3872
+ ),
3873
+ (
3874
+ "sapient_royal_mail_international_business_parcels_zero_sort_priority",
3875
+ "sapient_royal_mail_international_business_parcels_zero_sort_priority",
3876
+ ),
3877
+ (
3878
+ "sapient_royal_mail_international_business_parcels_zero_sort_priority_DE",
3879
+ "sapient_royal_mail_international_business_parcels_zero_sort_priority_DE",
3880
+ ),
3881
+ (
3882
+ "sapient_royal_mail_de_import_standard_24_parcel",
3883
+ "sapient_royal_mail_de_import_standard_24_parcel",
3884
+ ),
3885
+ (
3886
+ "sapient_royal_mail_de_import_standard_24_parcel_DE",
3887
+ "sapient_royal_mail_de_import_standard_24_parcel_DE",
3888
+ ),
3889
+ (
3890
+ "sapient_royal_mail_de_import_standard_24_ll",
3891
+ "sapient_royal_mail_de_import_standard_24_ll",
3892
+ ),
3893
+ (
3894
+ "sapient_royal_mail_de_import_standard_48_ll",
3895
+ "sapient_royal_mail_de_import_standard_48_ll",
3896
+ ),
3897
+ (
3898
+ "sapient_royal_mail_de_import_to_eu_tracked_signed_ll",
3899
+ "sapient_royal_mail_de_import_to_eu_tracked_signed_ll",
3900
+ ),
3901
+ (
3902
+ "sapient_royal_mail_de_import_to_eu_max_sort_ll",
3903
+ "sapient_royal_mail_de_import_to_eu_max_sort_ll",
3904
+ ),
3905
+ (
3906
+ "sapient_royal_mail_de_import_to_eu_tracked_parcel",
3907
+ "sapient_royal_mail_de_import_to_eu_tracked_parcel",
3908
+ ),
3909
+ (
3910
+ "sapient_royal_mail_de_import_to_eu_tracked_signed_parcel",
3911
+ "sapient_royal_mail_de_import_to_eu_tracked_signed_parcel",
3912
+ ),
3913
+ (
3914
+ "sapient_royal_mail_de_import_to_eu_tracked_high_vol_ll",
3915
+ "sapient_royal_mail_de_import_to_eu_tracked_high_vol_ll",
3916
+ ),
3917
+ (
3918
+ "sapient_royal_mail_de_import_to_eu_max_sort_parcel",
3919
+ "sapient_royal_mail_de_import_to_eu_max_sort_parcel",
3920
+ ),
3921
+ (
3922
+ "sapient_royal_mail_international_business_mail_ll_country_priced_priority",
3923
+ "sapient_royal_mail_international_business_mail_ll_country_priced_priority",
3924
+ ),
3925
+ (
3926
+ "sapient_royal_mail_international_business_personal_correspondence_l_priority_untracked",
3927
+ "sapient_royal_mail_international_business_personal_correspondence_l_priority_untracked",
3928
+ ),
3929
+ (
3930
+ "sapient_royal_mail_international_business_mail_ll_country_sort_priority",
3931
+ "sapient_royal_mail_international_business_mail_ll_country_sort_priority",
3932
+ ),
3933
+ (
3934
+ "sapient_royal_mail_international_business_parcels",
3935
+ "sapient_royal_mail_international_business_parcels",
3936
+ ),
3937
+ (
3938
+ "sapient_royal_mail_international_business_parcels_tracked_country_priced_extra_territorial_office_of_exchange",
3939
+ "sapient_royal_mail_international_business_parcels_tracked_country_priced_extra_territorial_office_of_exchange",
3940
+ ),
3941
+ (
3942
+ "sapient_royal_mail_international_business_parcels_tracked_signed_country_priced_extra_territorial_office_of_exchange",
3943
+ "sapient_royal_mail_international_business_parcels_tracked_signed_country_priced_extra_territorial_office_of_exchange",
3944
+ ),
3945
+ (
3946
+ "sapient_royal_mail_international_business_parcels_zero_sort_priority_extra_territorial_office_of_exchange",
3947
+ "sapient_royal_mail_international_business_parcels_zero_sort_priority_extra_territorial_office_of_exchange",
3948
+ ),
3949
+ (
3950
+ "sapient_royal_mail_international_business_mail_tracked_ll_country_priced_extra_territorial_office_of_exchange",
3951
+ "sapient_royal_mail_international_business_mail_tracked_ll_country_priced_extra_territorial_office_of_exchange",
3952
+ ),
3953
+ (
3954
+ "sapient_royal_mail_international_business_mail_tracked_signed_ll_country_priced_extra_territorial_office_of_exchange",
3955
+ "sapient_royal_mail_international_business_mail_tracked_signed_ll_country_priced_extra_territorial_office_of_exchange",
3956
+ ),
3957
+ (
3958
+ "sapient_royal_mail_international_business_mail_ll_country_priced_priority_extra_territorial_office_of_exchange",
3959
+ "sapient_royal_mail_international_business_mail_ll_country_priced_priority_extra_territorial_office_of_exchange",
3960
+ ),
3961
+ (
3962
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_extra_territorial_office_of_exchange_e",
3963
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_extra_territorial_office_of_exchange_e",
3964
+ ),
3965
+ (
3966
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_extra_comp_extra_territorial_office_of_exchange_e",
3967
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_extra_comp_extra_territorial_office_of_exchange_e",
3968
+ ),
3969
+ (
3970
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_extra_territorial_office_of_exchange_c",
3971
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_extra_territorial_office_of_exchange_c",
3972
+ ),
3973
+ (
3974
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_extra_comp_extra_territorial_office_of_exchange_c",
3975
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_extra_comp_extra_territorial_office_of_exchange_c",
3976
+ ),
3977
+ (
3978
+ "sapient_royal_mail_international_business_personal_correspondence_l_priority_untracked_extra_territorial_office_of_exchange",
3979
+ "sapient_royal_mail_international_business_personal_correspondence_l_priority_untracked_extra_territorial_office_of_exchange",
3980
+ ),
3981
+ (
3982
+ "sapient_royal_mail_international_business_personal_correspondence_l_tracked_high_vol_country_priced_extra_territorial_office_of_exchange",
3983
+ "sapient_royal_mail_international_business_personal_correspondence_l_tracked_high_vol_country_priced_extra_territorial_office_of_exchange",
3984
+ ),
3985
+ (
3986
+ "sapient_royal_mail_international_business_personal_correspondence_l_tracked_signed_high_vol_country_priced_extra_territorial_office_of_exchange",
3987
+ "sapient_royal_mail_international_business_personal_correspondence_l_tracked_signed_high_vol_country_priced_extra_territorial_office_of_exchange",
3988
+ ),
3989
+ (
3990
+ "sapient_royal_mail_international_business_personal_correspondence_signed_l_high_vol_country_priced_extra_territorial_office_of_exchange",
3991
+ "sapient_royal_mail_international_business_personal_correspondence_signed_l_high_vol_country_priced_extra_territorial_office_of_exchange",
3992
+ ),
3993
+ (
3994
+ "sapient_royal_mail_international_business_personal_correspondence_ll_country_sort_priority_extra_territorial_office_of_exchange",
3995
+ "sapient_royal_mail_international_business_personal_correspondence_ll_country_sort_priority_extra_territorial_office_of_exchange",
3996
+ ),
3997
+ (
3998
+ "sapient_royal_mail_international_business_personal_correspondence_tracked_ll_high_vol_extra_comp_country_priced_extra_territorial_office_of_exchange",
3999
+ "sapient_royal_mail_international_business_personal_correspondence_tracked_ll_high_vol_extra_comp_country_priced_extra_territorial_office_of_exchange",
4000
+ ),
4001
+ (
4002
+ "sapient_royal_mail_international_business_personal_correspondence_tracked_signed_ll_high_vol_extra_comp_country_priced_extra_territorial_office_of_exchange",
4003
+ "sapient_royal_mail_international_business_personal_correspondence_tracked_signed_ll_high_vol_extra_comp_country_priced_extra_territorial_office_of_exchange",
4004
+ ),
4005
+ (
4006
+ "sapient_royal_mail_international_business_personal_correspondence_signed_ll_extra_compensation_country_priced_extra_territorial_office_of_exchange",
4007
+ "sapient_royal_mail_international_business_personal_correspondence_signed_ll_extra_compensation_country_priced_extra_territorial_office_of_exchange",
4008
+ ),
4009
+ (
4010
+ "sapient_royal_mail_24_standard_signed_for_large_letter_flat_rate_service",
4011
+ "sapient_royal_mail_24_standard_signed_for_large_letter_flat_rate_service",
4012
+ ),
4013
+ (
4014
+ "sapient_royal_mail_48_standard_signed_for_large_letter_flat_rate_service",
4015
+ "sapient_royal_mail_48_standard_signed_for_large_letter_flat_rate_service",
4016
+ ),
4017
+ (
4018
+ "sapient_royal_mail_24_presorted_ll",
4019
+ "sapient_royal_mail_24_presorted_ll",
4020
+ ),
4021
+ (
4022
+ "sapient_royal_mail_48_presorted_ll",
4023
+ "sapient_royal_mail_48_presorted_ll",
4024
+ ),
4025
+ (
4026
+ "sapient_royal_mail_international_tracked_parcels_0_30kg",
4027
+ "sapient_royal_mail_international_tracked_parcels_0_30kg",
4028
+ ),
4029
+ (
4030
+ "sapient_royal_mail_international_business_tracked_express_npc",
4031
+ "sapient_royal_mail_international_business_tracked_express_npc",
4032
+ ),
4033
+ (
4034
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_extra_comp",
4035
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_extra_comp",
4036
+ ),
4037
+ (
4038
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_c_prio",
4039
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_c_prio",
4040
+ ),
4041
+ (
4042
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_xcomp_c_prio",
4043
+ "sapient_royal_mail_international_tracked_parcels_0_30kg_xcomp_c_prio",
4044
+ ),
4045
+ (
4046
+ "sapient_royal_mail_international_business_parcels_zone_sort_priority_service",
4047
+ "sapient_royal_mail_international_business_parcels_zone_sort_priority_service",
4048
+ ),
4049
+ (
4050
+ "sapient_royal_mail_international_business_mail_large_letter_zone_sort_priority",
4051
+ "sapient_royal_mail_international_business_mail_large_letter_zone_sort_priority",
4052
+ ),
4053
+ (
4054
+ "sapient_royal_mail_international_business_mail_large_letter_zone_sort_priority_machine",
4055
+ "sapient_royal_mail_international_business_mail_large_letter_zone_sort_priority_machine",
4056
+ ),
4057
+ (
4058
+ "sapient_royal_mail_international_business_mail_letters_zone_sort_priority",
4059
+ "sapient_royal_mail_international_business_mail_letters_zone_sort_priority",
4060
+ ),
4061
+ (
4062
+ "sapient_royal_mail_import_de_tracked_returns_24",
4063
+ "sapient_royal_mail_import_de_tracked_returns_24",
4064
+ ),
4065
+ (
4066
+ "sapient_royal_mail_import_de_tracked_returns_48",
4067
+ "sapient_royal_mail_import_de_tracked_returns_48",
4068
+ ),
4069
+ (
4070
+ "sapient_royal_mail_import_de_tracked_24_letter_boxable_high_volume",
4071
+ "sapient_royal_mail_import_de_tracked_24_letter_boxable_high_volume",
4072
+ ),
4073
+ (
4074
+ "sapient_royal_mail_import_de_tracked_48_letter_boxable_high_volume",
4075
+ "sapient_royal_mail_import_de_tracked_48_letter_boxable_high_volume",
4076
+ ),
4077
+ (
4078
+ "sapient_royal_mail_import_de_tracked_48_letter_boxable",
4079
+ "sapient_royal_mail_import_de_tracked_48_letter_boxable",
4080
+ ),
4081
+ (
4082
+ "sapient_royal_mail_import_de_tracked_24_letter_boxable",
4083
+ "sapient_royal_mail_import_de_tracked_24_letter_boxable",
4084
+ ),
4085
+ (
4086
+ "sapient_royal_mail_import_de_tracked_48_high_volume",
4087
+ "sapient_royal_mail_import_de_tracked_48_high_volume",
4088
+ ),
4089
+ (
4090
+ "sapient_royal_mail_import_de_tracked_24_high_volume",
4091
+ "sapient_royal_mail_import_de_tracked_24_high_volume",
4092
+ ),
4093
+ (
4094
+ "sapient_royal_mail_import_de_tracked_24",
4095
+ "sapient_royal_mail_import_de_tracked_24",
4096
+ ),
4097
+ (
4098
+ "sapient_royal_mail_de_import_to_eu_signed_parcel",
4099
+ "sapient_royal_mail_de_import_to_eu_signed_parcel",
4100
+ ),
4101
+ (
4102
+ "sapient_royal_mail_import_de_tracked_48",
4103
+ "sapient_royal_mail_import_de_tracked_48",
4104
+ ),
4105
+ (
4106
+ "sapient_royal_mail_international_business_parcels_print_direct_priority",
4107
+ "sapient_royal_mail_international_business_parcels_print_direct_priority",
4108
+ ),
4109
+ (
4110
+ "sapient_royal_mail_international_business_parcels_print_direct_standard",
4111
+ "sapient_royal_mail_international_business_parcels_print_direct_standard",
4112
+ ),
4113
+ (
4114
+ "sapient_royal_mail_international_business_parcels_signed_extra_compensation_country_priced",
4115
+ "sapient_royal_mail_international_business_parcels_signed_extra_compensation_country_priced",
4116
+ ),
4117
+ (
4118
+ "sapient_royal_mail_international_business_parcels_tracked_zone_sort",
4119
+ "sapient_royal_mail_international_business_parcels_tracked_zone_sort",
4120
+ ),
4121
+ (
4122
+ "sapient_royal_mail_international_business_parcels_tracked_extra_comp_zone_sort",
4123
+ "sapient_royal_mail_international_business_parcels_tracked_extra_comp_zone_sort",
4124
+ ),
4125
+ (
4126
+ "sapient_royal_mail_international_business_parcels_signed_zone_sort",
4127
+ "sapient_royal_mail_international_business_parcels_signed_zone_sort",
4128
+ ),
4129
+ (
4130
+ "sapient_royal_mail_international_business_parcels_signed_extra_compensation_zone_sort",
4131
+ "sapient_royal_mail_international_business_parcels_signed_extra_compensation_zone_sort",
4132
+ ),
4133
+ (
4134
+ "sapient_royal_mail_international_business_parcels_tracked_country_priced",
4135
+ "sapient_royal_mail_international_business_parcels_tracked_country_priced",
4136
+ ),
4137
+ (
4138
+ "sapient_royal_mail_international_business_parcels_tracked_extra_comp_country_priced",
4139
+ "sapient_royal_mail_international_business_parcels_tracked_extra_comp_country_priced",
4140
+ ),
4141
+ (
4142
+ "sapient_royal_mail_international_business_parcels_signed_country_priced",
4143
+ "sapient_royal_mail_international_business_parcels_signed_country_priced",
4144
+ ),
4145
+ (
4146
+ "sapient_royal_mail_international_business_mail_tracked_high_vol_country_priced",
4147
+ "sapient_royal_mail_international_business_mail_tracked_high_vol_country_priced",
4148
+ ),
4149
+ (
4150
+ "sapient_royal_mail_international_business_mail_tracked_signed_high_vol_country_priced",
4151
+ "sapient_royal_mail_international_business_mail_tracked_signed_high_vol_country_priced",
4152
+ ),
4153
+ (
4154
+ "sapient_royal_mail_international_business_mail_signed_high_vol_country_priced",
4155
+ "sapient_royal_mail_international_business_mail_signed_high_vol_country_priced",
4156
+ ),
4157
+ (
4158
+ "sapient_royal_mail_international_business_mail_tracked_high_vol_extra_comp_country_priced",
4159
+ "sapient_royal_mail_international_business_mail_tracked_high_vol_extra_comp_country_priced",
4160
+ ),
4161
+ (
4162
+ "sapient_royal_mail_international_business_mail_tracked_signed_high_vol_extra_comp_country_priced",
4163
+ "sapient_royal_mail_international_business_mail_tracked_signed_high_vol_extra_comp_country_priced",
4164
+ ),
4165
+ (
4166
+ "sapient_royal_mail_international_business_parcel_tracked_boxable_country_priced",
4167
+ "sapient_royal_mail_international_business_parcel_tracked_boxable_country_priced",
4168
+ ),
4169
+ (
4170
+ "sapient_royal_mail_international_business_parcels_tracked_signed_zone_sort",
4171
+ "sapient_royal_mail_international_business_parcels_tracked_signed_zone_sort",
4172
+ ),
4173
+ (
4174
+ "sapient_royal_mail_international_business_parcels_tracked_signed_extra_compensation_zone_sort",
4175
+ "sapient_royal_mail_international_business_parcels_tracked_signed_extra_compensation_zone_sort",
4176
+ ),
4177
+ (
4178
+ "sapient_royal_mail_international_business_mail_tracked_signed_zone_sort",
4179
+ "sapient_royal_mail_international_business_mail_tracked_signed_zone_sort",
4180
+ ),
4181
+ (
4182
+ "sapient_royal_mail_international_business_parcels_tracked_signed_country_priced",
4183
+ "sapient_royal_mail_international_business_parcels_tracked_signed_country_priced",
4184
+ ),
4185
+ (
4186
+ "sapient_royal_mail_international_business_parcels_tracked_signed_extra_compensation_country_priced",
4187
+ "sapient_royal_mail_international_business_parcels_tracked_signed_extra_compensation_country_priced",
4188
+ ),
4189
+ (
4190
+ "sapient_royal_mail_international_business_mail_tracked_signed_country_priced",
4191
+ "sapient_royal_mail_international_business_mail_tracked_signed_country_priced",
4192
+ ),
4193
+ (
4194
+ "sapient_royal_mail_international_business_mail_tracked_zone_sort",
4195
+ "sapient_royal_mail_international_business_mail_tracked_zone_sort",
4196
+ ),
4197
+ (
4198
+ "sapient_royal_mail_international_business_mail_tracked_country_priced",
4199
+ "sapient_royal_mail_international_business_mail_tracked_country_priced",
4200
+ ),
4201
+ (
4202
+ "sapient_royal_mail_international_business_mail_signed_zone_sort",
4203
+ "sapient_royal_mail_international_business_mail_signed_zone_sort",
4204
+ ),
4205
+ (
4206
+ "sapient_royal_mail_international_business_mail_signed_country_priced",
4207
+ "sapient_royal_mail_international_business_mail_signed_country_priced",
4208
+ ),
4209
+ (
4210
+ "sapient_royal_mail_international_business_mail_signed_extra_compensation_country_priced",
4211
+ "sapient_royal_mail_international_business_mail_signed_extra_compensation_country_priced",
4212
+ ),
4213
+ (
4214
+ "sapient_royal_mail_international_business_parcels_tracked_direct_ireland_country",
4215
+ "sapient_royal_mail_international_business_parcels_tracked_direct_ireland_country",
4216
+ ),
4217
+ (
4218
+ "sapient_royal_mail_international_business_parcels_tracked_signed_ddp",
4219
+ "sapient_royal_mail_international_business_parcels_tracked_signed_ddp",
4220
+ ),
4221
+ (
4222
+ "sapient_royal_mail_international_standard_on_account",
4223
+ "sapient_royal_mail_international_standard_on_account",
4224
+ ),
4225
+ (
4226
+ "sapient_royal_mail_international_economy_on_account",
4227
+ "sapient_royal_mail_international_economy_on_account",
4228
+ ),
4229
+ (
4230
+ "sapient_royal_mail_international_signed_on_account",
4231
+ "sapient_royal_mail_international_signed_on_account",
4232
+ ),
4233
+ (
4234
+ "sapient_royal_mail_international_signed_on_account_extra_comp",
4235
+ "sapient_royal_mail_international_signed_on_account_extra_comp",
4236
+ ),
4237
+ (
4238
+ "sapient_royal_mail_international_tracked_on_account",
4239
+ "sapient_royal_mail_international_tracked_on_account",
4240
+ ),
4241
+ (
4242
+ "sapient_royal_mail_international_tracked_on_account_extra_comp",
4243
+ "sapient_royal_mail_international_tracked_on_account_extra_comp",
4244
+ ),
4245
+ (
4246
+ "sapient_royal_mail_international_tracked_signed_on_account",
4247
+ "sapient_royal_mail_international_tracked_signed_on_account",
4248
+ ),
4249
+ (
4250
+ "sapient_royal_mail_international_tracked_signed_on_account_extra_comp",
4251
+ "sapient_royal_mail_international_tracked_signed_on_account_extra_comp",
4252
+ ),
4253
+ (
4254
+ "sapient_royal_mail_48_ll_flat_rate",
4255
+ "sapient_royal_mail_48_ll_flat_rate",
4256
+ ),
4257
+ (
4258
+ "sapient_royal_mail_24_standard_signed_for_parcel_sort8_flat_rate_service",
4259
+ "sapient_royal_mail_24_standard_signed_for_parcel_sort8_flat_rate_service",
4260
+ ),
4261
+ (
4262
+ "sapient_royal_mail_48_standard_signed_for_parcel_sort8_flat_rate_service",
4263
+ "sapient_royal_mail_48_standard_signed_for_parcel_sort8_flat_rate_service",
4264
+ ),
4265
+ (
4266
+ "sapient_royal_mail_24_standard_signed_for_parcel_sort8_daily_rate_service",
4267
+ "sapient_royal_mail_24_standard_signed_for_parcel_sort8_daily_rate_service",
4268
+ ),
4269
+ (
4270
+ "sapient_royal_mail_48_standard_signed_for_parcel_sort8_daily_rate_service",
4271
+ "sapient_royal_mail_48_standard_signed_for_parcel_sort8_daily_rate_service",
4272
+ ),
4273
+ (
4274
+ "sapient_royal_mail_24_presorted_p",
4275
+ "sapient_royal_mail_24_presorted_p",
4276
+ ),
4277
+ (
4278
+ "sapient_royal_mail_48_presorted_p",
4279
+ "sapient_royal_mail_48_presorted_p",
4280
+ ),
4281
+ (
4282
+ "sapient_royal_mail_24_ll_flat_rate",
4283
+ "sapient_royal_mail_24_ll_flat_rate",
4284
+ ),
4285
+ (
4286
+ "sapient_royal_mail_rm24_presorted_p_annual_flat_rate",
4287
+ "sapient_royal_mail_rm24_presorted_p_annual_flat_rate",
4288
+ ),
4289
+ (
4290
+ "sapient_royal_mail_rm48_presorted_p_annual_flat_rate",
4291
+ "sapient_royal_mail_rm48_presorted_p_annual_flat_rate",
4292
+ ),
4293
+ (
4294
+ "sapient_royal_mail_rm48_presorted_ll_annual_flat_rate",
4295
+ "sapient_royal_mail_rm48_presorted_ll_annual_flat_rate",
4296
+ ),
4297
+ (
4298
+ "sapient_royal_mail_rm24_presorted_ll_annual_flat_rate",
4299
+ "sapient_royal_mail_rm24_presorted_ll_annual_flat_rate",
4300
+ ),
4301
+ (
4302
+ "sapient_royal_mail_24_standard_signed_for_packetpost_flat_rate_service",
4303
+ "sapient_royal_mail_24_standard_signed_for_packetpost_flat_rate_service",
4304
+ ),
4305
+ (
4306
+ "sapient_royal_mail_48_standard_signed_for_packetpost_flat_rate_service",
4307
+ "sapient_royal_mail_48_standard_signed_for_packetpost_flat_rate_service",
4308
+ ),
4309
+ (
4310
+ "sapient_royal_mail_parcelpost_flat_rate_annual",
4311
+ "sapient_royal_mail_parcelpost_flat_rate_annual",
4312
+ ),
4313
+ (
4314
+ "sapient_royal_mail_parcelpost_flat_rate_annual_PPJ",
4315
+ "sapient_royal_mail_parcelpost_flat_rate_annual_PPJ",
4316
+ ),
4317
+ (
4318
+ "sapient_royal_mail_rm24_ll_annual_flat_rate",
4319
+ "sapient_royal_mail_rm24_ll_annual_flat_rate",
4320
+ ),
4321
+ (
4322
+ "sapient_royal_mail_rm48_ll_annual_flat_rate",
4323
+ "sapient_royal_mail_rm48_ll_annual_flat_rate",
4324
+ ),
4325
+ (
4326
+ "sapient_royal_mail_international_business_personal_correspondence_max_sort_l",
4327
+ "sapient_royal_mail_international_business_personal_correspondence_max_sort_l",
4328
+ ),
4329
+ (
4330
+ "sapient_royal_mail_international_business_mail_large_letter_max_sort_priority_service",
4331
+ "sapient_royal_mail_international_business_mail_large_letter_max_sort_priority_service",
4332
+ ),
4333
+ (
4334
+ "sapient_royal_mail_international_business_mail_letters_max_sort_standard",
4335
+ "sapient_royal_mail_international_business_mail_letters_max_sort_standard",
4336
+ ),
4337
+ (
4338
+ "sapient_royal_mail_international_business_mail_large_letter_max_sort_standard_service",
4339
+ "sapient_royal_mail_international_business_mail_large_letter_max_sort_standard_service",
4340
+ ),
4341
+ (
4342
+ "sapient_royal_mail_48_sort8p_annual_flat_rate",
4343
+ "sapient_royal_mail_48_sort8p_annual_flat_rate",
4344
+ ),
4345
+ (
4346
+ "sapient_royal_mail_24_ll_daily_rate",
4347
+ "sapient_royal_mail_24_ll_daily_rate",
4348
+ ),
4349
+ (
4350
+ "sapient_royal_mail_24_p_daily_rate",
4351
+ "sapient_royal_mail_24_p_daily_rate",
4352
+ ),
4353
+ (
4354
+ "sapient_royal_mail_48_ll_daily_rate",
4355
+ "sapient_royal_mail_48_ll_daily_rate",
4356
+ ),
4357
+ (
4358
+ "sapient_royal_mail_48_p_daily_rate",
4359
+ "sapient_royal_mail_48_p_daily_rate",
4360
+ ),
4361
+ (
4362
+ "sapient_royal_mail_24_p_flat_rate",
4363
+ "sapient_royal_mail_24_p_flat_rate",
4364
+ ),
4365
+ (
4366
+ "sapient_royal_mail_48_p_flat_rate",
4367
+ "sapient_royal_mail_48_p_flat_rate",
4368
+ ),
4369
+ (
4370
+ "sapient_royal_mail_24_sort8_ll_annual_flat_rate",
4371
+ "sapient_royal_mail_24_sort8_ll_annual_flat_rate",
4372
+ ),
4373
+ (
4374
+ "sapient_royal_mail_24_sort8_p_annual_flat_rate",
4375
+ "sapient_royal_mail_24_sort8_p_annual_flat_rate",
4376
+ ),
4377
+ (
4378
+ "sapient_royal_mail_48_sort8_ll_annual_flat_rate",
4379
+ "sapient_royal_mail_48_sort8_ll_annual_flat_rate",
4380
+ ),
4381
+ (
4382
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_750",
4383
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_750",
4384
+ ),
4385
+ (
4386
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_1000",
4387
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_1000",
4388
+ ),
4389
+ (
4390
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_2500",
4391
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_2500",
4392
+ ),
4393
+ (
4394
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_750",
4395
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_750",
4396
+ ),
4397
+ (
4398
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_1000",
4399
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_1000",
4400
+ ),
4401
+ (
4402
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_2500",
4403
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_2500",
4404
+ ),
4405
+ (
4406
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_id_750",
4407
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_id_750",
4408
+ ),
4409
+ (
4410
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_id_1000",
4411
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_id_1000",
4412
+ ),
4413
+ (
4414
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_id_2500",
4415
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_id_2500",
4416
+ ),
4417
+ (
4418
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_id_750",
4419
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_id_750",
4420
+ ),
4421
+ (
4422
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_id_1000",
4423
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_id_1000",
4424
+ ),
4425
+ (
4426
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_id_2500",
4427
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_id_2500",
4428
+ ),
4429
+ (
4430
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_age_750",
4431
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_age_750",
4432
+ ),
4433
+ (
4434
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_age_1000",
4435
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_age_1000",
4436
+ ),
4437
+ (
4438
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_age_2500",
4439
+ "sapient_royal_mail_special_delivery_guaranteed_by_1pm_age_2500",
4440
+ ),
4441
+ (
4442
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_age_750",
4443
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_age_750",
4444
+ ),
4445
+ (
4446
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_age_1000",
4447
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_age_1000",
4448
+ ),
4449
+ (
4450
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_age_2500",
4451
+ "sapient_royal_mail_special_delivery_guaranteed_by_9am_age_2500",
4452
+ ),
4453
+ (
4454
+ "sapient_royal_mail_special_delivery_guaranteed_age_750",
4455
+ "sapient_royal_mail_special_delivery_guaranteed_age_750",
4456
+ ),
4457
+ (
4458
+ "sapient_royal_mail_special_delivery_guaranteed_age_1000",
4459
+ "sapient_royal_mail_special_delivery_guaranteed_age_1000",
4460
+ ),
4461
+ (
4462
+ "sapient_royal_mail_special_delivery_guaranteed_age_2500",
4463
+ "sapient_royal_mail_special_delivery_guaranteed_age_2500",
4464
+ ),
4465
+ (
4466
+ "sapient_royal_mail_special_delivery_guaranteed_id_750",
4467
+ "sapient_royal_mail_special_delivery_guaranteed_id_750",
4468
+ ),
4469
+ (
4470
+ "sapient_royal_mail_special_delivery_guaranteed_id_1000",
4471
+ "sapient_royal_mail_special_delivery_guaranteed_id_1000",
4472
+ ),
4473
+ (
4474
+ "sapient_royal_mail_special_delivery_guaranteed_id_2500",
4475
+ "sapient_royal_mail_special_delivery_guaranteed_id_2500",
4476
+ ),
4477
+ (
4478
+ "sapient_royal_mail_special_delivery_guaranteed_750",
4479
+ "sapient_royal_mail_special_delivery_guaranteed_750",
4480
+ ),
4481
+ (
4482
+ "sapient_royal_mail_special_delivery_guaranteed_1000",
4483
+ "sapient_royal_mail_special_delivery_guaranteed_1000",
4484
+ ),
4485
+ (
4486
+ "sapient_royal_mail_special_delivery_guaranteed_2500",
4487
+ "sapient_royal_mail_special_delivery_guaranteed_2500",
4488
+ ),
4489
+ (
4490
+ "sapient_royal_mail_1st_class_standard_signed_for_letters_daily_rate_service",
4491
+ "sapient_royal_mail_1st_class_standard_signed_for_letters_daily_rate_service",
4492
+ ),
4493
+ (
4494
+ "sapient_royal_mail_2nd_class_standard_signed_for_letters_daily_rate_service",
4495
+ "sapient_royal_mail_2nd_class_standard_signed_for_letters_daily_rate_service",
4496
+ ),
4497
+ (
4498
+ "sapient_royal_mail_tracked_24_high_volume_signature_age",
4499
+ "sapient_royal_mail_tracked_24_high_volume_signature_age",
4500
+ ),
4501
+ (
4502
+ "sapient_royal_mail_tracked_48_high_volume_signature_age",
4503
+ "sapient_royal_mail_tracked_48_high_volume_signature_age",
4504
+ ),
4505
+ (
4506
+ "sapient_royal_mail_tracked_24_signature_age",
4507
+ "sapient_royal_mail_tracked_24_signature_age",
4508
+ ),
4509
+ (
4510
+ "sapient_royal_mail_tracked_48_signature_age",
4511
+ "sapient_royal_mail_tracked_48_signature_age",
4512
+ ),
4513
+ (
4514
+ "sapient_royal_mail_tracked_48_high_volume_signature_no_signature",
4515
+ "sapient_royal_mail_tracked_48_high_volume_signature_no_signature",
4516
+ ),
4517
+ (
4518
+ "sapient_royal_mail_tracked_24_high_volume_signature_no_signature",
4519
+ "sapient_royal_mail_tracked_24_high_volume_signature_no_signature",
4520
+ ),
4521
+ (
4522
+ "sapient_royal_mail_tracked_24_signature_no_signature",
4523
+ "sapient_royal_mail_tracked_24_signature_no_signature",
4524
+ ),
4525
+ (
4526
+ "sapient_royal_mail_tracked_48_signature_no_signature",
4527
+ "sapient_royal_mail_tracked_48_signature_no_signature",
4528
+ ),
4529
+ (
4530
+ "sapient_royal_mail_tracked_letter_boxable_48_high_volume_signature_no_signature",
4531
+ "sapient_royal_mail_tracked_letter_boxable_48_high_volume_signature_no_signature",
4532
+ ),
4533
+ (
4534
+ "sapient_royal_mail_tracked_letter_boxable_24_high_volume_signature_no_signature",
4535
+ "sapient_royal_mail_tracked_letter_boxable_24_high_volume_signature_no_signature",
4536
+ ),
4537
+ (
4538
+ "sapient_royal_mail_tracked_letter_boxable_24_signature_no_signature",
4539
+ "sapient_royal_mail_tracked_letter_boxable_24_signature_no_signature",
4540
+ ),
4541
+ (
4542
+ "sapient_royal_mail_tracked_letter_boxable_48_signature_no_signature",
4543
+ "sapient_royal_mail_tracked_letter_boxable_48_signature_no_signature",
4544
+ ),
4545
+ (
4546
+ "sapient_royal_mail_tracked_returns_24",
4547
+ "sapient_royal_mail_tracked_returns_24",
4548
+ ),
4549
+ (
4550
+ "sapient_royal_mail_tracked_returns_48",
4551
+ "sapient_royal_mail_tracked_returns_48",
4552
+ ),
4553
+ (
4554
+ "sapient_royal_mail_international_business_parcels_zero_sort_priority_WE",
4555
+ "sapient_royal_mail_international_business_parcels_zero_sort_priority_WE",
4556
+ ),
4557
+ (
4558
+ "sapient_royal_mail_international_business_mail_large_letter_zero_sort_priority",
4559
+ "sapient_royal_mail_international_business_mail_large_letter_zero_sort_priority",
4560
+ ),
4561
+ (
4562
+ "sapient_royal_mail_international_business_mail_large_letter_zero_sort_priority_machine",
4563
+ "sapient_royal_mail_international_business_mail_large_letter_zero_sort_priority_machine",
4564
+ ),
4565
+ (
4566
+ "sapient_royal_mail_international_business_mail_letters_zero_sort_priority",
4567
+ "sapient_royal_mail_international_business_mail_letters_zero_sort_priority",
4568
+ ),
4569
+ (
4570
+ "seko_ecommerce_standard_tracked",
4571
+ "seko_ecommerce_standard_tracked",
4572
+ ),
4573
+ (
4574
+ "seko_ecommerce_express_tracked",
4575
+ "seko_ecommerce_express_tracked",
4576
+ ),
4577
+ ("seko_domestic_express", "seko_domestic_express"),
4578
+ ("seko_domestic_standard", "seko_domestic_standard"),
4579
+ ("seko_domestic_large_parcel", "seko_domestic_large_parcel"),
4580
+ ("sendle_standard_pickup", "sendle_standard_pickup"),
4581
+ ("sendle_standard_dropoff", "sendle_standard_dropoff"),
4582
+ ("sendle_express_pickup", "sendle_express_pickup"),
4583
+ ("tge_freight_service", "tge_freight_service"),
4584
+ ("tnt_special_express", "tnt_special_express"),
4585
+ ("tnt_9_00_express", "tnt_9_00_express"),
4586
+ ("tnt_10_00_express", "tnt_10_00_express"),
4587
+ ("tnt_12_00_express", "tnt_12_00_express"),
4588
+ ("tnt_express", "tnt_express"),
4589
+ ("tnt_economy_express", "tnt_economy_express"),
4590
+ ("tnt_global_express", "tnt_global_express"),
4591
+ ("ups_standard", "ups_standard"),
4592
+ ("ups_worldwide_express", "ups_worldwide_express"),
4593
+ ("ups_worldwide_expedited", "ups_worldwide_expedited"),
4594
+ ("ups_worldwide_express_plus", "ups_worldwide_express_plus"),
4595
+ ("ups_worldwide_saver", "ups_worldwide_saver"),
4596
+ ("ups_2nd_day_air", "ups_2nd_day_air"),
4597
+ ("ups_2nd_day_air_am", "ups_2nd_day_air_am"),
4598
+ ("ups_3_day_select", "ups_3_day_select"),
4599
+ ("ups_ground", "ups_ground"),
4600
+ ("ups_next_day_air", "ups_next_day_air"),
4601
+ ("ups_next_day_air_early", "ups_next_day_air_early"),
4602
+ ("ups_next_day_air_saver", "ups_next_day_air_saver"),
4603
+ ("ups_expedited_ca", "ups_expedited_ca"),
4604
+ ("ups_express_saver_ca", "ups_express_saver_ca"),
4605
+ ("ups_3_day_select_ca_us", "ups_3_day_select_ca_us"),
4606
+ ("ups_access_point_economy_ca", "ups_access_point_economy_ca"),
4607
+ ("ups_express_ca", "ups_express_ca"),
4608
+ ("ups_express_early_ca", "ups_express_early_ca"),
4609
+ ("ups_express_saver_intl_ca", "ups_express_saver_intl_ca"),
4610
+ ("ups_standard_ca", "ups_standard_ca"),
4611
+ ("ups_worldwide_expedited_ca", "ups_worldwide_expedited_ca"),
4612
+ ("ups_worldwide_express_ca", "ups_worldwide_express_ca"),
4613
+ ("ups_worldwide_express_plus_ca", "ups_worldwide_express_plus_ca"),
4614
+ ("ups_express_early_ca_us", "ups_express_early_ca_us"),
4615
+ ("ups_access_point_economy_eu", "ups_access_point_economy_eu"),
4616
+ ("ups_expedited_eu", "ups_expedited_eu"),
4617
+ ("ups_express_eu", "ups_express_eu"),
4618
+ ("ups_standard_eu", "ups_standard_eu"),
4619
+ ("ups_worldwide_express_plus_eu", "ups_worldwide_express_plus_eu"),
4620
+ ("ups_worldwide_saver_eu", "ups_worldwide_saver_eu"),
4621
+ ("ups_access_point_economy_mx", "ups_access_point_economy_mx"),
4622
+ ("ups_expedited_mx", "ups_expedited_mx"),
4623
+ ("ups_express_mx", "ups_express_mx"),
4624
+ ("ups_standard_mx", "ups_standard_mx"),
4625
+ ("ups_worldwide_express_plus_mx", "ups_worldwide_express_plus_mx"),
4626
+ ("ups_worldwide_saver_mx", "ups_worldwide_saver_mx"),
4627
+ ("ups_access_point_economy_pl", "ups_access_point_economy_pl"),
4628
+ (
4629
+ "ups_today_dedicated_courrier_pl",
4630
+ "ups_today_dedicated_courrier_pl",
4631
+ ),
4632
+ ("ups_today_express_pl", "ups_today_express_pl"),
4633
+ ("ups_today_express_saver_pl", "ups_today_express_saver_pl"),
4634
+ ("ups_today_standard_pl", "ups_today_standard_pl"),
4635
+ ("ups_expedited_pl", "ups_expedited_pl"),
4636
+ ("ups_express_pl", "ups_express_pl"),
4637
+ ("ups_express_plus_pl", "ups_express_plus_pl"),
4638
+ ("ups_express_saver_pl", "ups_express_saver_pl"),
4639
+ ("ups_standard_pl", "ups_standard_pl"),
4640
+ ("ups_2nd_day_air_pr", "ups_2nd_day_air_pr"),
4641
+ ("ups_ground_pr", "ups_ground_pr"),
4642
+ ("ups_next_day_air_pr", "ups_next_day_air_pr"),
4643
+ ("ups_next_day_air_early_pr", "ups_next_day_air_early_pr"),
4644
+ ("ups_worldwide_expedited_pr", "ups_worldwide_expedited_pr"),
4645
+ ("ups_worldwide_express_pr", "ups_worldwide_express_pr"),
4646
+ ("ups_worldwide_express_plus_pr", "ups_worldwide_express_plus_pr"),
4647
+ ("ups_worldwide_saver_pr", "ups_worldwide_saver_pr"),
4648
+ ("ups_express_12_00_de", "ups_express_12_00_de"),
4649
+ ("ups_worldwide_express_freight", "ups_worldwide_express_freight"),
4650
+ (
4651
+ "ups_worldwide_express_freight_midday",
4652
+ "ups_worldwide_express_freight_midday",
4653
+ ),
4654
+ ("ups_worldwide_economy_ddu", "ups_worldwide_economy_ddu"),
4655
+ ("ups_worldwide_economy_ddp", "ups_worldwide_economy_ddp"),
4656
+ ("usps_standard_service", "usps_standard_service"),
4657
+ ("usps_parcel_select", "usps_parcel_select"),
4658
+ (
4659
+ "usps_parcel_select_lightweight",
4660
+ "usps_parcel_select_lightweight",
4661
+ ),
4662
+ ("usps_priority_mail_express", "usps_priority_mail_express"),
4663
+ ("usps_priority_mail", "usps_priority_mail"),
4664
+ (
4665
+ "usps_first_class_package_service",
4666
+ "usps_first_class_package_service",
4667
+ ),
4668
+ ("usps_library_mail", "usps_library_mail"),
4669
+ ("usps_media_mail", "usps_media_mail"),
4670
+ ("usps_bound_printed_matter", "usps_bound_printed_matter"),
4671
+ ("usps_connect_local", "usps_connect_local"),
4672
+ ("usps_connect_mail", "usps_connect_mail"),
4673
+ ("usps_connect_next_day", "usps_connect_next_day"),
4674
+ ("usps_connect_regional", "usps_connect_regional"),
4675
+ ("usps_connect_same_day", "usps_connect_same_day"),
4676
+ ("usps_ground_advantage", "usps_ground_advantage"),
4677
+ ("usps_retail_ground", "usps_retail_ground"),
4678
+ ("usps_all", "usps_all"),
4679
+ (
4680
+ "usps_first_class_package_international_service",
4681
+ "usps_first_class_package_international_service",
4682
+ ),
4683
+ (
4684
+ "usps_priority_mail_international",
4685
+ "usps_priority_mail_international",
4686
+ ),
4687
+ (
4688
+ "usps_priority_mail_express_international",
4689
+ "usps_priority_mail_express_international",
4690
+ ),
4691
+ (
4692
+ "usps_global_express_guaranteed",
4693
+ "usps_global_express_guaranteed",
4694
+ ),
4695
+ ("usps_all", "usps_all"),
4696
+ ("zoom2u_VIP", "zoom2u_VIP"),
4697
+ ("zoom2u_3_hour", "zoom2u_3_hour"),
4698
+ ("zoom2u_same_day", "zoom2u_same_day"),
4699
+ ],
4700
+ 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 ",
4701
+ null=True,
4702
+ ),
4703
+ ),
4704
+ ]