aa-ledger 1.0.3__py3-none-any.whl → 2.0.0__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 (280) hide show
  1. {aa_ledger-1.0.3.dist-info → aa_ledger-2.0.0.dist-info}/METADATA +6 -6
  2. aa_ledger-2.0.0.dist-info/RECORD +267 -0
  3. {aa_ledger-1.0.3.dist-info → aa_ledger-2.0.0.dist-info}/WHEEL +1 -1
  4. ledger/__init__.py +2 -2
  5. ledger/admin.py +23 -18
  6. ledger/api/__init__.py +23 -7
  7. ledger/api/{ledger/admin.py → admin.py} +25 -31
  8. ledger/api/alliance.py +755 -0
  9. ledger/api/character.py +786 -0
  10. ledger/api/corporation.py +1141 -0
  11. ledger/api/{helpers.py → helpers/core.py} +33 -33
  12. ledger/api/helpers/icons.py +372 -0
  13. ledger/api/helpers/planetary_helper.py +354 -0
  14. ledger/api/planetary.py +354 -0
  15. ledger/api/schema.py +240 -15
  16. ledger/app_settings.py +18 -26
  17. ledger/auth_hooks.py +2 -2
  18. ledger/constants.py +50 -177
  19. ledger/decorators.py +2 -46
  20. ledger/forms.py +133 -39
  21. ledger/helpers/billboard.py +194 -144
  22. ledger/helpers/cache.py +105 -0
  23. ledger/helpers/discord.py +2 -4
  24. ledger/helpers/eveonline.py +160 -0
  25. ledger/helpers/ledger_data.py +23 -0
  26. ledger/helpers/ref_type.py +53 -78
  27. ledger/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  28. ledger/locale/cs_CZ/LC_MESSAGES/django.po +349 -193
  29. ledger/locale/de/LC_MESSAGES/django.mo +0 -0
  30. ledger/locale/de/LC_MESSAGES/django.po +528 -379
  31. ledger/locale/django.pot +717 -553
  32. ledger/locale/es/LC_MESSAGES/django.mo +0 -0
  33. ledger/locale/es/LC_MESSAGES/django.po +349 -194
  34. ledger/locale/fr_FR/LC_MESSAGES/django.mo +0 -0
  35. ledger/locale/fr_FR/LC_MESSAGES/django.po +349 -193
  36. ledger/locale/it_IT/LC_MESSAGES/django.mo +0 -0
  37. ledger/locale/it_IT/LC_MESSAGES/django.po +349 -193
  38. ledger/locale/ja/LC_MESSAGES/django.mo +0 -0
  39. ledger/locale/ja/LC_MESSAGES/django.po +348 -193
  40. ledger/locale/ko_KR/LC_MESSAGES/django.mo +0 -0
  41. ledger/locale/ko_KR/LC_MESSAGES/django.po +349 -193
  42. ledger/locale/nl_NL/LC_MESSAGES/django.mo +0 -0
  43. ledger/locale/nl_NL/LC_MESSAGES/django.po +349 -193
  44. ledger/locale/pl_PL/LC_MESSAGES/django.mo +0 -0
  45. ledger/locale/pl_PL/LC_MESSAGES/django.po +350 -193
  46. ledger/locale/ru/LC_MESSAGES/django.mo +0 -0
  47. ledger/locale/ru/LC_MESSAGES/django.po +348 -193
  48. ledger/locale/sk/LC_MESSAGES/django.mo +0 -0
  49. ledger/locale/sk/LC_MESSAGES/django.po +348 -193
  50. ledger/locale/uk/LC_MESSAGES/django.mo +0 -0
  51. ledger/locale/uk/LC_MESSAGES/django.po +348 -193
  52. ledger/locale/zh_Hans/LC_MESSAGES/django.mo +0 -0
  53. ledger/locale/zh_Hans/LC_MESSAGES/django.po +348 -193
  54. ledger/managers/character_audit_manager.py +28 -20
  55. ledger/managers/character_journal_manager.py +187 -358
  56. ledger/managers/character_mining_manager.py +64 -30
  57. ledger/managers/character_planetary_manager.py +185 -138
  58. ledger/managers/corporation_audit_manager.py +36 -27
  59. ledger/managers/corporation_journal_manager.py +94 -57
  60. ledger/managers/general_manager.py +12 -8
  61. ledger/migrations/0018_remove_characterplanet_ledger_char_planet__58a5b6_idx_and_more.py +44 -0
  62. ledger/migrations/0019_rename_characteraudit_characterowner_and_more.py +48 -0
  63. ledger/models/__init__.py +5 -11
  64. ledger/models/characteraudit.py +101 -109
  65. ledger/models/corporationaudit.py +94 -49
  66. ledger/models/general.py +105 -211
  67. ledger/models/helpers/update_manager.py +302 -0
  68. ledger/models/planetary.py +60 -205
  69. ledger/providers.py +101 -0
  70. ledger/static/ledger/css/{ledger.css → aa-ledger.css} +54 -28
  71. ledger/static/ledger/js/aa-ledger.js +124 -0
  72. ledger/static/ledger/js/charts.js +25 -1
  73. ledger/static/ledger/js/view-alliance-ledger.js +383 -0
  74. ledger/static/ledger/js/view-character-ledger.js +388 -0
  75. ledger/static/ledger/js/view-corporation-ledger.js +402 -0
  76. ledger/static/ledger/js/view-planetary.js +492 -0
  77. ledger/static/ledger/libs/amCharts/5.14.4/js/flow.js +2 -0
  78. ledger/static/ledger/libs/amCharts/5.14.4/js/index.js +2 -0
  79. ledger/static/ledger/libs/amCharts/5.14.4/js/percent.js +2 -0
  80. ledger/static/ledger/libs/amCharts/5.14.4/js/themes/Animated.js +2 -0
  81. ledger/static/ledger/libs/amCharts/5.14.4/js/themes/Dark.js +2 -0
  82. ledger/static/ledger/libs/amCharts/5.14.4/js/xy.js +2 -0
  83. ledger/static/ledger/libs/datatables/2.3.5/css/dataTables.bootstrap5.css +610 -0
  84. ledger/static/ledger/libs/datatables/2.3.5/js/dataTables.bootstrap5.js +122 -0
  85. ledger/static/ledger/libs/datatables/2.3.5/js/dataTables.js +14127 -0
  86. ledger/static/ledger/libs/datatables/Extensions/ColumnControl/1.1.1/css/columnControl.bootstrap5.css +516 -0
  87. ledger/static/ledger/libs/datatables/Extensions/ColumnControl/1.1.1/css/columnControl.dataTables.css +529 -0
  88. ledger/static/ledger/libs/datatables/Extensions/ColumnControl/1.1.1/js/columnControl.bootstrap5.js +73 -0
  89. ledger/static/ledger/libs/datatables/Extensions/ColumnControl/1.1.1/js/dataTables.columnControl.js +3090 -0
  90. ledger/static/ledger/libs/datatables/Extensions/FixedHeader/4.0.4/css/fixedHeader.bootstrap5.css +20 -0
  91. ledger/static/ledger/libs/datatables/Extensions/FixedHeader/4.0.4/js/dataTables.fixedHeader.js +1203 -0
  92. ledger/static/ledger/libs/datatables/Extensions/FixedHeader/4.0.4/js/fixedHeader.bootstrap5.js +59 -0
  93. ledger/tasks.py +157 -146
  94. ledger/templates/ledger/base.html +59 -21
  95. ledger/templates/ledger/bundles/aa-ledger-css.html +3 -0
  96. ledger/templates/ledger/bundles/aa-ledger-js.html +3 -0
  97. ledger/templates/ledger/bundles/view-alliance-ledger-js.html +14 -0
  98. ledger/templates/ledger/bundles/view-character-ledger-js.html +15 -0
  99. ledger/templates/ledger/bundles/view-character-planetary-css.html +3 -0
  100. ledger/templates/ledger/bundles/view-character-planetary-js.html +4 -0
  101. ledger/templates/ledger/bundles/view-corporation-ledger-js.html +15 -0
  102. ledger/templates/ledger/partials/modal/confirm.html +0 -1
  103. ledger/templates/ledger/partials/modal/request-accept-delete-alliance.html +38 -0
  104. ledger/templates/ledger/partials/modal/request-accept-delete-character.html +38 -0
  105. ledger/templates/ledger/partials/modal/request-accept-delete-corporation.html +38 -0
  106. ledger/templates/ledger/partials/modal/request-accept-switch-notification.html +38 -0
  107. ledger/templates/ledger/partials/modal/request-view-alliance-details.html +26 -0
  108. ledger/templates/ledger/partials/modal/request-view-character-details.html +26 -0
  109. ledger/templates/ledger/partials/modal/request-view-corporation-details.html +26 -0
  110. ledger/templates/ledger/partials/modal/request-view-extractor.html +32 -0
  111. ledger/templates/ledger/partials/modal/request-view-factory.html +31 -0
  112. ledger/templates/ledger/partials/{menu → navigation}/administration.html +8 -0
  113. ledger/templates/ledger/partials/{menu → navigation}/navigation.html +2 -2
  114. ledger/templates/ledger/partials/{administration → view-alliance-administration}/alliance_corporations.html +3 -3
  115. ledger/templates/ledger/partials/view-alliance-administration/dashboard.html +81 -0
  116. ledger/templates/ledger/partials/view-alliance-ledger/alliance-billboard.html +25 -0
  117. ledger/templates/ledger/partials/view-alliance-ledger/alliance-ledger-details.html +21 -0
  118. ledger/templates/ledger/partials/view-alliance-ledger/alliance-table.html +24 -0
  119. ledger/templates/ledger/partials/view-alliance-ledger/information/daily.html +18 -0
  120. ledger/templates/ledger/partials/view-alliance-ledger/information/hourly.html +18 -0
  121. ledger/templates/ledger/partials/view-alliance-ledger/information/summary.html +19 -0
  122. ledger/templates/ledger/partials/{administration → view-character-administration}/character.html +1 -9
  123. ledger/templates/ledger/partials/{administration → view-character-administration}/dashboard.html +0 -34
  124. ledger/templates/ledger/partials/view-character-ledger/character-billboard.html +25 -0
  125. ledger/templates/ledger/partials/view-character-ledger/character-ledger-details.html +21 -0
  126. ledger/templates/ledger/partials/view-character-ledger/character-table.html +25 -0
  127. ledger/templates/ledger/partials/view-character-ledger/information/daily.html +18 -0
  128. ledger/templates/ledger/partials/view-character-ledger/information/hourly.html +18 -0
  129. ledger/templates/ledger/partials/view-character-ledger/information/summary.html +19 -0
  130. ledger/templates/ledger/partials/view-character-planetary/extractor-table.html +24 -0
  131. ledger/templates/ledger/partials/view-character-planetary/factory-table.html +24 -0
  132. ledger/templates/ledger/partials/view-character-planetary/planetary-table.html +22 -0
  133. ledger/templates/ledger/partials/view-character-planetary/storage-table.html +23 -0
  134. ledger/templates/ledger/partials/{administration → view-corporation-administration}/corporation.html +5 -13
  135. ledger/templates/ledger/partials/{administration → view-corporation-administration}/corporation_characters.html +1 -1
  136. ledger/templates/ledger/partials/view-corporation-administration/dashboard.html +81 -0
  137. ledger/templates/ledger/partials/view-corporation-ledger/corporation-billboard.html +25 -0
  138. ledger/templates/ledger/partials/view-corporation-ledger/corporation-ledger-details.html +21 -0
  139. ledger/templates/ledger/partials/view-corporation-ledger/corporation-table.html +26 -0
  140. ledger/templates/ledger/partials/view-corporation-ledger/information/daily.html +18 -0
  141. ledger/templates/ledger/partials/view-corporation-ledger/information/hourly.html +18 -0
  142. ledger/templates/ledger/partials/view-corporation-ledger/information/summary.html +19 -0
  143. ledger/templates/ledger/view-administration.html +62 -0
  144. ledger/templates/ledger/view-alliance-administration.html +49 -0
  145. ledger/templates/ledger/view-alliance-ledger.html +72 -0
  146. ledger/templates/ledger/view-alliance-overview.html +131 -0
  147. ledger/templates/ledger/view-character-administration.html +42 -0
  148. ledger/templates/ledger/view-character-ledger.html +73 -0
  149. ledger/templates/ledger/view-character-overview.html +135 -0
  150. ledger/templates/ledger/view-character-planetary-overview.html +135 -0
  151. ledger/templates/ledger/view-character-planetary.html +73 -0
  152. ledger/templates/ledger/view-corporation-administration.html +42 -0
  153. ledger/templates/ledger/view-corporation-ledger.html +73 -0
  154. ledger/templates/ledger/view-corporation-overview.html +131 -0
  155. ledger/templatetags/ledger.py +3 -5
  156. ledger/tests/__init__.py +187 -0
  157. ledger/tests/test_admin.py +164 -68
  158. ledger/tests/test_auth_hook.py +31 -13
  159. ledger/tests/test_decarators.py +14 -79
  160. ledger/tests/test_discord_installed.py +0 -1
  161. ledger/tests/test_helpers/test_ledger_data.py +19 -0
  162. ledger/tests/test_managers/test_character_audit_manager.py +111 -69
  163. ledger/tests/test_managers/test_character_journal_manager.py +48 -208
  164. ledger/tests/test_managers/test_character_mining_manager.py +37 -16
  165. ledger/tests/test_managers/test_corporation_division_manager.py +66 -28
  166. ledger/tests/test_managers/test_corporation_journal_manager.py +39 -42
  167. ledger/tests/test_managers/test_general_manager.py +78 -18
  168. ledger/tests/test_managers/test_planetary_manager.py +73 -32
  169. ledger/tests/test_models/test_characteraudit.py +58 -74
  170. ledger/tests/test_models/test_characterminingledger.py +20 -26
  171. ledger/tests/test_models/test_characterwalletjournal.py +10 -33
  172. ledger/tests/test_models/test_corporationaudit.py +41 -35
  173. ledger/tests/test_models/test_corporationwalletjournal.py +35 -32
  174. ledger/tests/test_models/test_general.py +44 -11
  175. ledger/tests/test_models/test_planetary.py +14 -80
  176. ledger/tests/test_templatetags.py +2 -7
  177. ledger/tests/test_views/corporation/test_add_corp.py +16 -35
  178. ledger/tests/test_views/corporation/test_delete_corporation.py +66 -42
  179. ledger/tests/test_views/test_access.py +512 -545
  180. ledger/tests/test_views/test_add_ally.py +57 -46
  181. ledger/tests/test_views/test_add_char.py +21 -33
  182. ledger/tests/test_views/test_delete_character.py +24 -21
  183. ledger/tests/testdata/README_ESI_STUB.md +430 -0
  184. ledger/tests/testdata/esi_stub_openapi.py +511 -0
  185. ledger/tests/testdata/integrations/__init__.py +0 -0
  186. ledger/tests/testdata/{load_eveuniverse.py → integrations/eveuniverse.py} +0 -1
  187. ledger/tests/testdata/integrations/planetary.py +13 -0
  188. ledger/tests/testdata/json/factory.json +281 -0
  189. ledger/tests/testdata/json/inactive.json +281 -0
  190. ledger/tests/testdata/json/pins.json +175 -272
  191. ledger/tests/testdata/json/route.json +95 -528
  192. ledger/tests/testdata/test_esi_stub.py +468 -0
  193. ledger/tests/testdata/utils.py +601 -0
  194. ledger/thirdparty/charlink_hook.py +60 -30
  195. ledger/urls.py +0 -135
  196. ledger/views/alliance/add_ally.py +2 -4
  197. ledger/views/alliance/alliance_ledger.py +64 -147
  198. ledger/views/character/add_char.py +8 -10
  199. ledger/views/character/character_ledger.py +60 -126
  200. ledger/views/character/planetary.py +5 -98
  201. ledger/views/corporation/add_corp.py +10 -12
  202. ledger/views/corporation/corporation_ledger.py +65 -327
  203. ledger/views/index.py +92 -30
  204. aa_ledger-1.0.3.dist-info/RECORD +0 -236
  205. ledger/api/api_helper/planetary_helper.py +0 -107
  206. ledger/api/ledger/__init__.py +0 -7
  207. ledger/api/ledger/planetary.py +0 -231
  208. ledger/helpers/alliance.py +0 -317
  209. ledger/helpers/character.py +0 -251
  210. ledger/helpers/core.py +0 -665
  211. ledger/helpers/corporation.py +0 -427
  212. ledger/helpers/data_exporter.py +0 -452
  213. ledger/static/ledger/js/planetary-confirm.js +0 -66
  214. ledger/static/ledger/js/planetary.js +0 -143
  215. ledger/templates/ledger/admin.html +0 -43
  216. ledger/templates/ledger/allyledger/admin/alliance_administration.html +0 -46
  217. ledger/templates/ledger/allyledger/admin/alliance_overview.html +0 -108
  218. ledger/templates/ledger/allyledger/alliance_ledger.html +0 -86
  219. ledger/templates/ledger/bundles/character-ledger-bundles.html +0 -66
  220. ledger/templates/ledger/bundles/corporation-ledger-bundles.html +0 -75
  221. ledger/templates/ledger/bundles/ledger-bundles.html +0 -23
  222. ledger/templates/ledger/bundles/ledger-css.html +0 -3
  223. ledger/templates/ledger/bundles/planetary-bundles.html +0 -50
  224. ledger/templates/ledger/bundles/table-css.html +0 -3
  225. ledger/templates/ledger/charledger/admin/character_administration.html +0 -39
  226. ledger/templates/ledger/charledger/admin/character_overview.html +0 -106
  227. ledger/templates/ledger/charledger/character_ledger.html +0 -94
  228. ledger/templates/ledger/charledger/planetary/admin/planetary_overview.html +0 -123
  229. ledger/templates/ledger/charledger/planetary/planetary_ledger.html +0 -54
  230. ledger/templates/ledger/corpledger/admin/corporation_administration.html +0 -39
  231. ledger/templates/ledger/corpledger/admin/corporation_overview.html +0 -108
  232. ledger/templates/ledger/corpledger/corporation_ledger.html +0 -129
  233. ledger/templates/ledger/data-export.html +0 -78
  234. ledger/templates/ledger/error.html +0 -31
  235. ledger/templates/ledger/partials/form/error-message.html +0 -1
  236. ledger/templates/ledger/partials/information/daily.html +0 -56
  237. ledger/templates/ledger/partials/information/day.html +0 -48
  238. ledger/templates/ledger/partials/information/error.html +0 -8
  239. ledger/templates/ledger/partials/information/hourly.html +0 -53
  240. ledger/templates/ledger/partials/information/summary.html +0 -88
  241. ledger/templates/ledger/partials/information/view_character_content.html +0 -35
  242. ledger/templates/ledger/partials/modal/switchalarm_confirm.html +0 -39
  243. ledger/templates/ledger/partials/modal/view_extractor.html +0 -48
  244. ledger/templates/ledger/partials/modal/view_factory.html +0 -123
  245. ledger/templates/ledger/partials/table/char-ledger.html +0 -85
  246. ledger/templates/ledger/partials/table/corp-ledger.html +0 -66
  247. ledger/templates/ledger/partials/table/planetary.html +0 -18
  248. ledger/templates/ledger/partials/thirdparty/billboard.html +0 -22
  249. ledger/templates/ledger/partials/view/card.html +0 -160
  250. ledger/templates/ledger/permission.html +0 -2
  251. ledger/tests/test_helpers/test_billboard.py +0 -11
  252. ledger/tests/test_helpers/test_data_exporter.py +0 -207
  253. ledger/tests/test_tasks.py +0 -282
  254. ledger/tests/test_view_helpers/test_core.py +0 -47
  255. ledger/tests/test_views/corporation/test_corporation.py +0 -267
  256. ledger/tests/test_views/test_planetary.py +0 -137
  257. ledger/tests/testdata/esi_stub.py +0 -109
  258. ledger/tests/testdata/esi_stub_migration.py +0 -80
  259. ledger/tests/testdata/generate_characteraudit.py +0 -106
  260. ledger/tests/testdata/generate_corporationaudit.py +0 -74
  261. ledger/tests/testdata/generate_events.py +0 -31
  262. ledger/tests/testdata/generate_miningledger.py +0 -13
  263. ledger/tests/testdata/generate_planets.py +0 -48
  264. ledger/tests/testdata/generate_walletjournal.py +0 -42
  265. ledger/tests/testdata/json/czarno-pins.json +0 -240
  266. ledger/tests/testdata/json/czarno-routes.json +0 -165
  267. ledger/tests/testdata/json/pins2.json +0 -538
  268. {aa_ledger-1.0.3.dist-info → aa_ledger-2.0.0.dist-info}/licenses/LICENSE +0 -0
  269. /ledger/{tests/test_view_helpers → api/helpers}/__init__.py +0 -0
  270. /ledger/templates/ledger/bundles/{ally-administration-bundles.html → view-alliance-administration-js.html} +0 -0
  271. /ledger/templates/ledger/bundles/{char-administration-bundles.html → view-character-administration-js.html} +0 -0
  272. /ledger/templates/ledger/bundles/{corp-administration-bundles.html → view-corporation-administration-js.html} +0 -0
  273. /ledger/templates/ledger/partials/{administration → view-alliance-administration}/alliance.html +0 -0
  274. /ledger/tests/testdata/{esi.json → esi_test_data.json} +0 -0
  275. /ledger/tests/testdata/{allianceauth.json → integrations/allianceauth.json} +0 -0
  276. /ledger/tests/testdata/{load_allianceauth.py → integrations/allianceauth.py} +0 -0
  277. /ledger/tests/testdata/{eveentity.json → integrations/eveentity.json} +0 -0
  278. /ledger/tests/testdata/{load_eveentity.py → integrations/eveentity.py} +0 -0
  279. /ledger/tests/testdata/{eveuniverse.json → integrations/eveuniverse.json} +0 -0
  280. /ledger/tests/testdata/{planetary.json → integrations/planetary.json} +0 -0
@@ -1,579 +1,146 @@
1
-
2
1
  [
3
2
  {
4
- "content_type_id": 3695,
5
- "destination_pin_id": 1043445807046,
6
- "quantity": 10.0,
7
- "route_id": 1305571072,
8
- "source_pin_id": 1043445807059,
9
- "waypoints": [1043427927097, 1043429053914, 1043437196267]
10
- },
11
- {
12
- "content_type_id": 3695,
13
- "destination_pin_id": 1043445807024,
14
- "quantity": 10.0,
15
- "route_id": 1305571073,
16
- "source_pin_id": 1043445807059,
17
- "waypoints": [1043427927097, 1043429053914, 1043437196267, 1043437196271]
18
- },
19
- {
20
- "content_type_id": 3695,
21
- "destination_pin_id": 1043437196271,
22
- "quantity": 10.0,
23
- "route_id": 1305571074,
24
- "source_pin_id": 1043445807059,
25
- "waypoints": [1043427927097, 1043429053914, 1043437196267]
26
- },
27
- {
28
- "content_type_id": 3695,
29
- "destination_pin_id": 1043445807030,
30
- "quantity": 10.0,
31
- "route_id": 1305571075,
32
- "source_pin_id": 1043445807059,
33
- "waypoints": [1043427927097, 1043429053914, 1043437196267, 1043437196271]
34
- },
35
- {
36
- "content_type_id": 3695,
37
- "destination_pin_id": 1043445807027,
38
- "quantity": 10.0,
39
- "route_id": 1305571076,
40
- "source_pin_id": 1043445807059,
3
+ "content_type_id": 2398,
4
+ "destination_pin_id": 1047902592935,
5
+ "quantity": 40.0,
6
+ "route_id": 1425619744,
7
+ "source_pin_id": 1047902592918,
41
8
  "waypoints": [
42
- 1043427927097,
43
- 1043429053914,
44
- 1043437196267,
45
- 1043437196271,
46
- 1043437196279
9
+ 1047902592937
47
10
  ]
48
11
  },
49
12
  {
50
- "content_type_id": 3695,
51
- "destination_pin_id": 1043437196279,
52
- "quantity": 10.0,
53
- "route_id": 1305571077,
54
- "source_pin_id": 1043445807059,
55
- "waypoints": [1043427927097, 1043429053914, 1043437196267, 1043437196271]
56
- },
57
- {
58
- "content_type_id": 3695,
59
- "destination_pin_id": 1043445807036,
60
- "quantity": 10.0,
61
- "route_id": 1305571078,
62
- "source_pin_id": 1043445807059,
13
+ "content_type_id": 2398,
14
+ "destination_pin_id": 1047902592921,
15
+ "quantity": 40.0,
16
+ "route_id": 1425619745,
17
+ "source_pin_id": 1047902592918,
63
18
  "waypoints": [
64
- 1043427927097,
65
- 1043429053914,
66
- 1043437196267,
67
- 1043437196271,
68
- 1043437196279
19
+ 1047902592937
69
20
  ]
70
21
  },
71
22
  {
72
- "content_type_id": 2360,
73
- "destination_pin_id": 1043429053914,
74
- "quantity": 3.0,
75
- "route_id": 1305565883,
76
- "source_pin_id": 1043429053918,
77
- "waypoints": [1043429053916, 1043429053915]
78
- },
79
- {
80
- "content_type_id": 2360,
81
- "destination_pin_id": 1043429053914,
82
- "quantity": 3.0,
83
- "route_id": 1305565884,
84
- "source_pin_id": 1043429053916,
85
- "waypoints": [1043429053915]
86
- },
87
- {
88
- "content_type_id": 2360,
89
- "destination_pin_id": 1043429053914,
90
- "quantity": 3.0,
91
- "route_id": 1305565885,
92
- "source_pin_id": 1043429053915,
23
+ "content_type_id": 3689,
24
+ "destination_pin_id": 1047902592937,
25
+ "quantity": 5.0,
26
+ "route_id": 1425619399,
27
+ "source_pin_id": 1047902592935,
93
28
  "waypoints": []
94
29
  },
95
30
  {
96
- "content_type_id": 2360,
97
- "destination_pin_id": 1043429053914,
98
- "quantity": 3.0,
99
- "route_id": 1305565886,
100
- "source_pin_id": 1043437196267,
31
+ "content_type_id": 3689,
32
+ "destination_pin_id": 1047902592937,
33
+ "quantity": 5.0,
34
+ "route_id": 1425619400,
35
+ "source_pin_id": 1047902592921,
101
36
  "waypoints": []
102
37
  },
103
38
  {
104
- "content_type_id": 2360,
105
- "destination_pin_id": 1043429053914,
106
- "quantity": 3.0,
107
- "route_id": 1305565887,
108
- "source_pin_id": 1043437196271,
109
- "waypoints": [1043437196267]
110
- },
111
- {
112
- "content_type_id": 2360,
113
- "destination_pin_id": 1043429053914,
114
- "quantity": 3.0,
115
- "route_id": 1305565888,
116
- "source_pin_id": 1043437196279,
117
- "waypoints": [1043437196271, 1043437196267]
118
- },
119
- {
120
- "content_type_id": 2360,
121
- "destination_pin_id": 1043429053914,
122
- "quantity": 3.0,
123
- "route_id": 1305565889,
124
- "source_pin_id": 1043445807014,
125
- "waypoints": [1043429053916, 1043429053915]
126
- },
127
- {
128
- "content_type_id": 2360,
129
- "destination_pin_id": 1043429053914,
130
- "quantity": 3.0,
131
- "route_id": 1305565890,
132
- "source_pin_id": 1043445807016,
133
- "waypoints": [1043429053918, 1043429053916, 1043429053915]
134
- },
135
- {
136
- "content_type_id": 2360,
137
- "destination_pin_id": 1043429053914,
138
- "quantity": 3.0,
139
- "route_id": 1305565891,
140
- "source_pin_id": 1043445807018,
141
- "waypoints": [1043429053918, 1043429053916, 1043429053915]
142
- },
143
- {
144
- "content_type_id": 2360,
145
- "destination_pin_id": 1043429053914,
146
- "quantity": 3.0,
147
- "route_id": 1305565892,
148
- "source_pin_id": 1043445807020,
149
- "waypoints": [1043429053916, 1043429053915]
150
- },
151
- {
152
- "content_type_id": 2360,
153
- "destination_pin_id": 1043429053914,
154
- "quantity": 3.0,
155
- "route_id": 1305565893,
156
- "source_pin_id": 1043445807021,
157
- "waypoints": [1043437196267]
158
- },
159
- {
160
- "content_type_id": 2360,
161
- "destination_pin_id": 1043429053914,
162
- "quantity": 3.0,
163
- "route_id": 1305565894,
164
- "source_pin_id": 1043445807024,
165
- "waypoints": [1043437196271, 1043437196267]
166
- },
167
- {
168
- "content_type_id": 2360,
169
- "destination_pin_id": 1043429053914,
170
- "quantity": 3.0,
171
- "route_id": 1305565895,
172
- "source_pin_id": 1043445807027,
173
- "waypoints": [1043437196279, 1043437196271, 1043437196267]
174
- },
175
- {
176
- "content_type_id": 2360,
177
- "destination_pin_id": 1043429053914,
178
- "quantity": 3.0,
179
- "route_id": 1305565896,
180
- "source_pin_id": 1043445807030,
181
- "waypoints": [1043437196271, 1043437196267]
182
- },
183
- {
184
- "content_type_id": 2360,
185
- "destination_pin_id": 1043429053914,
186
- "quantity": 3.0,
187
- "route_id": 1305565897,
188
- "source_pin_id": 1043445807036,
189
- "waypoints": [1043437196279, 1043437196271, 1043437196267]
190
- },
191
- {
192
- "content_type_id": 2360,
193
- "destination_pin_id": 1043429053914,
194
- "quantity": 3.0,
195
- "route_id": 1305565898,
196
- "source_pin_id": 1043445807042,
197
- "waypoints": [1043429053915]
198
- },
199
- {
200
- "content_type_id": 2360,
201
- "destination_pin_id": 1043429053914,
202
- "quantity": 3.0,
203
- "route_id": 1305565899,
204
- "source_pin_id": 1043445807046,
205
- "waypoints": [1043437196267]
206
- },
207
- {
208
- "content_type_id": 2360,
209
- "destination_pin_id": 1043429053914,
210
- "quantity": 3.0,
211
- "route_id": 1305565900,
212
- "source_pin_id": 1043445807045,
213
- "waypoints": [1043429053915]
39
+ "content_type_id": 2398,
40
+ "destination_pin_id": 1047902592918,
41
+ "quantity": 20.0,
42
+ "route_id": 1425619401,
43
+ "source_pin_id": 1047902592910,
44
+ "waypoints": [
45
+ 1047902592940
46
+ ]
214
47
  },
215
48
  {
216
- "content_type_id": 2360,
217
- "destination_pin_id": 1043429053914,
218
- "quantity": 3.0,
219
- "route_id": 1305565901,
220
- "source_pin_id": 1043445807044,
49
+ "content_type_id": 2398,
50
+ "destination_pin_id": 1047902592918,
51
+ "quantity": 20.0,
52
+ "route_id": 1425619402,
53
+ "source_pin_id": 1047902592940,
221
54
  "waypoints": []
222
55
  },
223
56
  {
224
- "content_type_id": 2360,
225
- "destination_pin_id": 1043429053914,
226
- "quantity": 3.0,
227
- "route_id": 1305565902,
228
- "source_pin_id": 1043445807054,
229
- "waypoints": [1043445807047, 1043445807044]
230
- },
231
- {
232
- "content_type_id": 2360,
233
- "destination_pin_id": 1043429053914,
234
- "quantity": 3.0,
235
- "route_id": 1305565903,
236
- "source_pin_id": 1043445807047,
237
- "waypoints": [1043445807044]
238
- },
239
- {
240
- "content_type_id": 2360,
241
- "destination_pin_id": 1043429053914,
242
- "quantity": 3.0,
243
- "route_id": 1305565904,
244
- "source_pin_id": 1043445807058,
245
- "waypoints": [1043445807047, 1043445807044]
57
+ "content_type_id": 2399,
58
+ "destination_pin_id": 1047902592918,
59
+ "quantity": 20.0,
60
+ "route_id": 1425619403,
61
+ "source_pin_id": 1047902592903,
62
+ "waypoints": []
246
63
  },
247
64
  {
248
- "content_type_id": 3693,
249
- "destination_pin_id": 1043445807016,
250
- "quantity": 10.0,
251
- "route_id": 1305571035,
252
- "source_pin_id": 1043445807059,
65
+ "content_type_id": 2399,
66
+ "destination_pin_id": 1047902592918,
67
+ "quantity": 20.0,
68
+ "route_id": 1425619404,
69
+ "source_pin_id": 1047902592926,
253
70
  "waypoints": [
254
- 1043427927097,
255
- 1043429053914,
256
- 1043429053915,
257
- 1043429053916,
258
- 1043429053918
71
+ 1047902592903
259
72
  ]
260
73
  },
261
74
  {
262
- "content_type_id": 3693,
263
- "destination_pin_id": 1043429053918,
264
- "quantity": 10.0,
265
- "route_id": 1305571036,
266
- "source_pin_id": 1043445807059,
267
- "waypoints": [1043427927097, 1043429053914, 1043429053915, 1043429053916]
268
- },
269
- {
270
- "content_type_id": 3693,
271
- "destination_pin_id": 1043445807018,
272
- "quantity": 10.0,
273
- "route_id": 1305571037,
274
- "source_pin_id": 1043445807059,
75
+ "content_type_id": 2267,
76
+ "destination_pin_id": 1047902592910,
77
+ "quantity": 3000.0,
78
+ "route_id": 1425620597,
79
+ "source_pin_id": 1047902592918,
275
80
  "waypoints": [
276
- 1043427927097,
277
- 1043429053914,
278
- 1043429053915,
279
- 1043429053916,
280
- 1043429053918
81
+ 1047902592940
281
82
  ]
282
83
  },
283
84
  {
284
- "content_type_id": 3693,
285
- "destination_pin_id": 1043445807014,
286
- "quantity": 10.0,
287
- "route_id": 1305571038,
288
- "source_pin_id": 1043445807059,
289
- "waypoints": [1043427927097, 1043429053914, 1043429053915, 1043429053916]
290
- },
291
- {
292
- "content_type_id": 3693,
293
- "destination_pin_id": 1043429053916,
294
- "quantity": 10.0,
295
- "route_id": 1305571039,
296
- "source_pin_id": 1043445807059,
297
- "waypoints": [1043427927097, 1043429053914, 1043429053915]
298
- },
299
- {
300
- "content_type_id": 3693,
301
- "destination_pin_id": 1043445807020,
302
- "quantity": 10.0,
303
- "route_id": 1305571040,
304
- "source_pin_id": 1043445807059,
305
- "waypoints": [1043427927097, 1043429053914, 1043429053915, 1043429053916]
306
- },
307
- {
308
- "content_type_id": 3693,
309
- "destination_pin_id": 1043445807045,
310
- "quantity": 10.0,
311
- "route_id": 1305571041,
312
- "source_pin_id": 1043445807059,
313
- "waypoints": [1043427927097, 1043429053914, 1043429053915]
314
- },
315
- {
316
- "content_type_id": 3693,
317
- "destination_pin_id": 1043429053915,
318
- "quantity": 10.0,
319
- "route_id": 1305571042,
320
- "source_pin_id": 1043445807059,
321
- "waypoints": [1043427927097, 1043429053914]
322
- },
323
- {
324
- "content_type_id": 3693,
325
- "destination_pin_id": 1043445807042,
326
- "quantity": 10.0,
327
- "route_id": 1305571043,
328
- "source_pin_id": 1043445807059,
329
- "waypoints": [1043427927097, 1043429053914, 1043429053915]
330
- },
331
- {
332
- "content_type_id": 3693,
333
- "destination_pin_id": 1043445807054,
334
- "quantity": 10.0,
335
- "route_id": 1305571044,
336
- "source_pin_id": 1043445807059,
337
- "waypoints": [1043427927097, 1043429053914, 1043445807044, 1043445807047]
338
- },
339
- {
340
- "content_type_id": 3693,
341
- "destination_pin_id": 1043445807047,
342
- "quantity": 10.0,
343
- "route_id": 1305571045,
344
- "source_pin_id": 1043445807059,
345
- "waypoints": [1043427927097, 1043429053914, 1043445807044]
346
- },
347
- {
348
- "content_type_id": 3693,
349
- "destination_pin_id": 1043445807044,
350
- "quantity": 10.0,
351
- "route_id": 1305571046,
352
- "source_pin_id": 1043445807059,
353
- "waypoints": [1043427927097, 1043429053914]
354
- },
355
- {
356
- "content_type_id": 3693,
357
- "destination_pin_id": 1043445807058,
358
- "quantity": 10.0,
359
- "route_id": 1305571047,
360
- "source_pin_id": 1043445807059,
361
- "waypoints": [1043427927097, 1043429053914, 1043445807044, 1043445807047]
362
- },
363
- {
364
- "content_type_id": 3693,
365
- "destination_pin_id": 1043445807021,
366
- "quantity": 10.0,
367
- "route_id": 1305571048,
368
- "source_pin_id": 1043445807059,
369
- "waypoints": [1043427927097, 1043429053914, 1043437196267]
370
- },
371
- {
372
- "content_type_id": 3693,
373
- "destination_pin_id": 1043437196267,
374
- "quantity": 10.0,
375
- "route_id": 1305571049,
376
- "source_pin_id": 1043445807059,
377
- "waypoints": [1043427927097, 1043429053914]
378
- },
379
- {
380
- "content_type_id": 3693,
381
- "destination_pin_id": 1043445807046,
382
- "quantity": 10.0,
383
- "route_id": 1305571050,
384
- "source_pin_id": 1043445807059,
385
- "waypoints": [1043427927097, 1043429053914, 1043437196267]
386
- },
387
- {
388
- "content_type_id": 3693,
389
- "destination_pin_id": 1043445807024,
390
- "quantity": 10.0,
391
- "route_id": 1305571051,
392
- "source_pin_id": 1043445807059,
393
- "waypoints": [1043427927097, 1043429053914, 1043437196267, 1043437196271]
394
- },
395
- {
396
- "content_type_id": 3693,
397
- "destination_pin_id": 1043437196271,
398
- "quantity": 10.0,
399
- "route_id": 1305571052,
400
- "source_pin_id": 1043445807059,
401
- "waypoints": [1043427927097, 1043429053914, 1043437196267]
85
+ "content_type_id": 2267,
86
+ "destination_pin_id": 1047902592940,
87
+ "quantity": 3000.0,
88
+ "route_id": 1425620598,
89
+ "source_pin_id": 1047902592918,
90
+ "waypoints": []
402
91
  },
403
92
  {
404
- "content_type_id": 3693,
405
- "destination_pin_id": 1043445807030,
406
- "quantity": 10.0,
407
- "route_id": 1305571053,
408
- "source_pin_id": 1043445807059,
409
- "waypoints": [1043427927097, 1043429053914, 1043437196267, 1043437196271]
93
+ "content_type_id": 2270,
94
+ "destination_pin_id": 1047902592903,
95
+ "quantity": 3000.0,
96
+ "route_id": 1425620599,
97
+ "source_pin_id": 1047902592918,
98
+ "waypoints": []
410
99
  },
411
100
  {
412
- "content_type_id": 3693,
413
- "destination_pin_id": 1043445807027,
414
- "quantity": 10.0,
415
- "route_id": 1305571054,
416
- "source_pin_id": 1043445807059,
101
+ "content_type_id": 2270,
102
+ "destination_pin_id": 1047902592926,
103
+ "quantity": 3000.0,
104
+ "route_id": 1425620600,
105
+ "source_pin_id": 1047902592918,
417
106
  "waypoints": [
418
- 1043427927097,
419
- 1043429053914,
420
- 1043437196267,
421
- 1043437196271,
422
- 1043437196279
107
+ 1047902592903
423
108
  ]
424
109
  },
425
110
  {
426
- "content_type_id": 3693,
427
- "destination_pin_id": 1043437196279,
428
- "quantity": 10.0,
429
- "route_id": 1305571055,
430
- "source_pin_id": 1043445807059,
431
- "waypoints": [1043427927097, 1043429053914, 1043437196267, 1043437196271]
111
+ "content_type_id": 2270,
112
+ "destination_pin_id": 1047902592918,
113
+ "quantity": 187776.0,
114
+ "route_id": 1514083994,
115
+ "source_pin_id": 1047902592933,
116
+ "waypoints": []
432
117
  },
433
118
  {
434
- "content_type_id": 3693,
435
- "destination_pin_id": 1043445807036,
436
- "quantity": 10.0,
437
- "route_id": 1305571056,
438
- "source_pin_id": 1043445807059,
439
- "waypoints": [
440
- 1043427927097,
441
- 1043429053914,
442
- 1043437196267,
443
- 1043437196271,
444
- 1043437196279
445
- ]
119
+ "content_type_id": 2267,
120
+ "destination_pin_id": 1047902592918,
121
+ "quantity": 220688.0,
122
+ "route_id": 1514083995,
123
+ "source_pin_id": 1047902592919,
124
+ "waypoints": []
446
125
  },
447
126
  {
448
- "content_type_id": 3695,
449
- "destination_pin_id": 1043445807016,
450
- "quantity": 10.0,
451
- "route_id": 1305571057,
452
- "source_pin_id": 1043445807059,
127
+ "content_type_id": 2399,
128
+ "destination_pin_id": 1047902592935,
129
+ "quantity": 40.0,
130
+ "route_id": 1425619742,
131
+ "source_pin_id": 1047902592918,
453
132
  "waypoints": [
454
- 1043427927097,
455
- 1043429053914,
456
- 1043429053915,
457
- 1043429053916,
458
- 1043429053918
133
+ 1047902592937
459
134
  ]
460
135
  },
461
136
  {
462
- "content_type_id": 3695,
463
- "destination_pin_id": 1043429053918,
464
- "quantity": 10.0,
465
- "route_id": 1305571058,
466
- "source_pin_id": 1043445807059,
467
- "waypoints": [1043427927097, 1043429053914, 1043429053915, 1043429053916]
468
- },
469
- {
470
- "content_type_id": 3695,
471
- "destination_pin_id": 1043445807018,
472
- "quantity": 10.0,
473
- "route_id": 1305571059,
474
- "source_pin_id": 1043445807059,
137
+ "content_type_id": 2399,
138
+ "destination_pin_id": 1047902592921,
139
+ "quantity": 40.0,
140
+ "route_id": 1425619743,
141
+ "source_pin_id": 1047902592918,
475
142
  "waypoints": [
476
- 1043427927097,
477
- 1043429053914,
478
- 1043429053915,
479
- 1043429053916,
480
- 1043429053918
143
+ 1047902592937
481
144
  ]
482
- },
483
- {
484
- "content_type_id": 3695,
485
- "destination_pin_id": 1043445807014,
486
- "quantity": 10.0,
487
- "route_id": 1305571060,
488
- "source_pin_id": 1043445807059,
489
- "waypoints": [1043427927097, 1043429053914, 1043429053915, 1043429053916]
490
- },
491
- {
492
- "content_type_id": 3695,
493
- "destination_pin_id": 1043429053916,
494
- "quantity": 10.0,
495
- "route_id": 1305571061,
496
- "source_pin_id": 1043445807059,
497
- "waypoints": [1043427927097, 1043429053914, 1043429053915]
498
- },
499
- {
500
- "content_type_id": 3695,
501
- "destination_pin_id": 1043445807020,
502
- "quantity": 10.0,
503
- "route_id": 1305571062,
504
- "source_pin_id": 1043445807059,
505
- "waypoints": [1043427927097, 1043429053914, 1043429053915, 1043429053916]
506
- },
507
- {
508
- "content_type_id": 3695,
509
- "destination_pin_id": 1043445807054,
510
- "quantity": 10.0,
511
- "route_id": 1305571063,
512
- "source_pin_id": 1043445807059,
513
- "waypoints": [1043427927097, 1043429053914, 1043445807044, 1043445807047]
514
- },
515
- {
516
- "content_type_id": 3695,
517
- "destination_pin_id": 1043445807045,
518
- "quantity": 10.0,
519
- "route_id": 1305571064,
520
- "source_pin_id": 1043445807059,
521
- "waypoints": [1043427927097, 1043429053914, 1043429053915]
522
- },
523
- {
524
- "content_type_id": 3695,
525
- "destination_pin_id": 1043429053915,
526
- "quantity": 10.0,
527
- "route_id": 1305571065,
528
- "source_pin_id": 1043445807059,
529
- "waypoints": [1043427927097, 1043429053914]
530
- },
531
- {
532
- "content_type_id": 3695,
533
- "destination_pin_id": 1043445807042,
534
- "quantity": 10.0,
535
- "route_id": 1305571066,
536
- "source_pin_id": 1043445807059,
537
- "waypoints": [1043427927097, 1043429053914, 1043429053915]
538
- },
539
- {
540
- "content_type_id": 3695,
541
- "destination_pin_id": 1043445807047,
542
- "quantity": 10.0,
543
- "route_id": 1305571067,
544
- "source_pin_id": 1043445807059,
545
- "waypoints": [1043427927097, 1043429053914, 1043445807044]
546
- },
547
- {
548
- "content_type_id": 3695,
549
- "destination_pin_id": 1043445807044,
550
- "quantity": 10.0,
551
- "route_id": 1305571068,
552
- "source_pin_id": 1043445807059,
553
- "waypoints": [1043427927097, 1043429053914]
554
- },
555
- {
556
- "content_type_id": 3695,
557
- "destination_pin_id": 1043445807058,
558
- "quantity": 10.0,
559
- "route_id": 1305571069,
560
- "source_pin_id": 1043445807059,
561
- "waypoints": [1043427927097, 1043429053914, 1043445807044, 1043445807047]
562
- },
563
- {
564
- "content_type_id": 3695,
565
- "destination_pin_id": 1043445807021,
566
- "quantity": 10.0,
567
- "route_id": 1305571070,
568
- "source_pin_id": 1043445807059,
569
- "waypoints": [1043427927097, 1043429053914, 1043437196267]
570
- },
571
- {
572
- "content_type_id": 3695,
573
- "destination_pin_id": 1043437196267,
574
- "quantity": 10.0,
575
- "route_id": 1305571071,
576
- "source_pin_id": 1043445807059,
577
- "waypoints": [1043427927097, 1043429053914]
578
145
  }
579
146
  ]