docker-api 1.23.0 → 1.24.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (109) hide show
  1. checksums.yaml +4 -4
  2. data/.cane +1 -1
  3. data/.rspec +1 -0
  4. data/.travis.yml +7 -6
  5. data/Dockerfile +2 -0
  6. data/README.md +5 -5
  7. data/Rakefile +26 -31
  8. data/TESTING.md +7 -19
  9. data/docker-api.gemspec +0 -1
  10. data/lib/docker/image.rb +6 -2
  11. data/lib/docker/version.rb +1 -1
  12. data/spec/docker/container_spec.rb +72 -92
  13. data/spec/docker/event_spec.rb +33 -23
  14. data/spec/docker/exec_spec.rb +9 -24
  15. data/spec/docker/image_spec.rb +75 -81
  16. data/spec/docker_spec.rb +21 -32
  17. metadata +4 -200
  18. data/spec/support/vcr.rb +0 -14
  19. data/spec/vcr/Docker/_authenticate_/with_valid_credentials/logs_in_and_sets_the_creds.yml +0 -32
  20. data/spec/vcr/Docker/_info/returns_the_info_as_a_Hash.yml +0 -39
  21. data/spec/vcr/Docker/_validate_version/when_nothing_is_raised/validate_version_/.yml +0 -39
  22. data/spec/vcr/Docker/_version/returns_the_version_as_a_Hash.yml +0 -34
  23. data/spec/vcr/Docker_Container/_all/when_the_HTTP_response_is_a_200/materializes_each_Container_into_a_Docker_Container.yml +0 -125
  24. data/spec/vcr/Docker_Container/_attach/with_normal_sized_chunks/yields_each_chunk.yml +0 -125
  25. data/spec/vcr/Docker_Container/_attach/with_very_small_chunks/yields_each_chunk.yml +0 -125
  26. data/spec/vcr/Docker_Container/_changes/returns_the_changes_as_an_array.yml +0 -165
  27. data/spec/vcr/Docker_Container/_commit/creates_a_new_Image_from_the_Container_s_changes.yml +0 -165
  28. data/spec/vcr/Docker_Container/_copy/when_the_file_does_not_exist/raises_an_error.yml +0 -136
  29. data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_directory/yields_each_chunk_of_the_tarred_directory.yml +0 -241
  30. data/spec/vcr/Docker_Container/_copy/when_the_input_is_a_file/yields_each_chunk_of_the_tarred_file.yml +0 -198
  31. data/spec/vcr/Docker_Container/_create/when_creating_a_container_named_bob/should_have_name_set_to_bob.yml +0 -84
  32. data/spec/vcr/Docker_Container/_create/when_the_Container_does_not_yet_exist/when_the_HTTP_request_returns_a_200/sets_the_id.yml +0 -55
  33. data/spec/vcr/Docker_Container/_delete/deletes_the_container.yml +0 -85
  34. data/spec/vcr/Docker_Container/_exec/when_detach_is_true/returns_the_Docker_Exec_object.yml +0 -180
  35. data/spec/vcr/Docker_Container/_exec/when_passed_a_block/streams_the_stdout/stderr_messages.yml +0 -183
  36. data/spec/vcr/Docker_Container/_exec/when_passed_only_a_command/returns_the_stdout/stderr_messages_and_exit_code.yml +0 -183
  37. data/spec/vcr/Docker_Container/_exec/when_stdin_object_is_passed/returns_the_stdout/stderr_messages.yml +0 -101
  38. data/spec/vcr/Docker_Container/_exec/when_tty_is_true/returns_the_raw_stdout/stderr_output.yml +0 -182
  39. data/spec/vcr/Docker_Container/_export/yields_each_chunk.yml +0 -333
  40. data/spec/vcr/Docker_Container/_get/when_the_HTTP_response_is_a_200/materializes_the_Container_into_a_Docker_Container.yml +0 -84
  41. data/spec/vcr/Docker_Container/_json/returns_the_description_as_a_Hash.yml +0 -84
  42. data/spec/vcr/Docker_Container/_kill/kills_the_container.yml +0 -164
  43. data/spec/vcr/Docker_Container/_kill/with_a_kill_signal/kills_the_container.yml +0 -257
  44. data/spec/vcr/Docker_Container/_logs/when_not_selecting_any_stream/raises_a_client_error.yml +0 -171
  45. data/spec/vcr/Docker_Container/_logs/when_selecting_stdout/returns_blank_logs.yml +0 -82
  46. data/spec/vcr/Docker_Container/_pause/pauses_the_container.yml +0 -176
  47. data/spec/vcr/Docker_Container/_rename/renames_the_container.yml +0 -149
  48. data/spec/vcr/Docker_Container/_restart/restarts_the_container.yml +0 -243
  49. data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_does_not_return_status_code_of_0/raises_an_error.yml +0 -107
  50. data/spec/vcr/Docker_Container/_run/when_the_Container_s_command_returns_a_status_code_of_0/creates_a_new_container_to_run_the_specified_command.yml +0 -392
  51. data/spec/vcr/Docker_Container/_start/starts_the_container.yml +0 -140
  52. data/spec/vcr/Docker_Container/_stop/stops_the_container.yml +0 -164
  53. data/spec/vcr/Docker_Container/_streaming_logs/when_not_selecting_any_stream/raises_a_client_error.yml +0 -217
  54. data/spec/vcr/Docker_Container/_streaming_logs/when_passing_a_block/returns_hello_.yml +0 -131
  55. data/spec/vcr/Docker_Container/_streaming_logs/when_selecting_stdout/returns_blank_logs.yml +0 -131
  56. data/spec/vcr/Docker_Container/_streaming_logs/when_using_a_tty/returns_hello_.yml +0 -131
  57. data/spec/vcr/Docker_Container/_top/returns_the_top_commands_as_an_Array.yml +0 -194
  58. data/spec/vcr/Docker_Container/_unpause/unpauses_the_container.yml +0 -176
  59. data/spec/vcr/Docker_Container/_wait/waits_for_the_command_to_finish.yml +0 -107
  60. data/spec/vcr/Docker_Container/_wait/when_an_argument_is_given/sets_the_read_timeout_to_that_amount_of_time.yml +0 -107
  61. data/spec/vcr/Docker_Exec/_create/when_the_HTTP_request_returns_a_201/sets_the_id.yml +0 -130
  62. data/spec/vcr/Docker_Exec/_json/returns_the_description_as_a_Hash.yml +0 -207
  63. data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_false/block_is_passed/attaches_to_the_stream.yml +0 -182
  64. data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_false/returns_the_stdout_and_stderr_messages.yml +0 -182
  65. data/spec/vcr/Docker_Exec/_start_/when_detach_is_set_to_true/returns_empty_stdout/stderr_messages_with_exitcode.yml +0 -180
  66. data/spec/vcr/Docker_Exec/_start_/when_the_HTTP_request_returns_a_201/starts_the_exec_instance.yml +0 -180
  67. data/spec/vcr/Docker_Exec/_start_/when_the_command_has_already_run/raises_an_error.yml +0 -180
  68. data/spec/vcr/Docker_Exec/_start_/when_wait_set_long_time_value/returns_empty_stdout_and_stderr_messages_with_exitcode.yml +0 -189
  69. data/spec/vcr/Docker_Image/_all/materializes_each_Image_into_a_Docker_Image.yml +0 -111
  70. data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/with_a_block_capturing_build_output/calls_the_block_and_passes_build_output.yml +0 -75
  71. data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/with_specifying_a_repo_in_the_query_parameters/builds_an_image_and_tags_it.yml +0 -219
  72. data/spec/vcr/Docker_Image/_build/with_a_valid_Dockerfile/without_query_parameters/builds_an_image.yml +0 -75
  73. data/spec/vcr/Docker_Image/_build/with_an_invalid_Dockerfile/throws_a_UnexpectedResponseError.yml +0 -79
  74. data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_a_block_capturing_build_output/calls_the_block_and_passes_build_output.yml +0 -194
  75. data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_a_block_capturing_build_output/uses_a_cached_version_the_second_time/calls_the_block_and_passes_build_output.yml +0 -96
  76. data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_credentials_passed/sends_X-Registry-Config_header.yml +0 -194
  77. data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_no_query_parameters/builds_the_image.yml +0 -562
  78. data/spec/vcr/Docker_Image/_build_from_dir/with_a_valid_Dockerfile/with_specifying_a_repo_in_the_query_parameters/builds_the_image_and_tags_it.yml +0 -601
  79. data/spec/vcr/Docker_Image/_create/when_the_Image_does_not_yet_exist_and_the_body_is_a_Hash/sets_the_id_and_sends_Docker_creds.yml +0 -65
  80. data/spec/vcr/Docker_Image/_create/with_a_block_capturing_create_output/calls_the_block_and_passes_build_output.yml +0 -38
  81. data/spec/vcr/Docker_Image/_exist_/when_the_image_does_exist/returns_true.yml +0 -33
  82. data/spec/vcr/Docker_Image/_get/when_the_image_does_exist/returns_the_new_image.yml +0 -33
  83. data/spec/vcr/Docker_Image/_history/returns_the_history_of_the_Image.yml +0 -66
  84. data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_invalid/raises_an_error.yml +0 -265
  85. data/spec/vcr/Docker_Image/_import/when_the_argument_is_a_URI/when_the_URI_is_valid/returns_an_Image.yml +0 -303
  86. data/spec/vcr/Docker_Image/_import/when_the_file_does_exist/creates_the_Image.yml +0 -59
  87. data/spec/vcr/Docker_Image/_insert_local/when_a_direcory_is_passed/inserts_the_directory.yml +0 -1469
  88. data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/creates_a_new_image.yml +0 -244
  89. data/spec/vcr/Docker_Image/_insert_local/when_removing_intermediate_containers/leave_no_intermediate_containers.yml +0 -224
  90. data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_exist/creates_a_new_Image_that_has_that_file.yml +0 -289
  91. data/spec/vcr/Docker_Image/_insert_local/when_the_local_file_does_not_exist/raises_an_error.yml +0 -32
  92. data/spec/vcr/Docker_Image/_insert_local/when_there_are_multiple_files_passed/creates_a_new_Image_that_has_each_file.yml +0 -366
  93. data/spec/vcr/Docker_Image/_json/returns_additional_information_about_image_image.yml +0 -62
  94. data/spec/vcr/Docker_Image/_push/pushes_the_Image.yml +0 -246
  95. data/spec/vcr/Docker_Image/_push/streams_output_from_push.yml +0 -246
  96. data/spec/vcr/Docker_Image/_push/when_the_image_was_retrived_by_get/when_no_tag_is_specified/looks_up_the_first_repo_tag.yml +0 -382
  97. data/spec/vcr/Docker_Image/_push/when_there_are_no_credentials/still_pushes.yml +0 -264
  98. data/spec/vcr/Docker_Image/_refresh_/updates_the_info_hash.yml +0 -141
  99. data/spec/vcr/Docker_Image/_refresh_/with_an_explicit_connection/updates_using_the_provided_connection.yml +0 -62
  100. data/spec/vcr/Docker_Image/_remove/when_no_name_is_given/removes_the_Image.yml +0 -652
  101. data/spec/vcr/Docker_Image/_run/when_the_argument_is_a_String/splits_the_String_by_spaces_and_creates_a_new_Container.yml +0 -162
  102. data/spec/vcr/Docker_Image/_run/when_the_argument_is_an_Array/creates_a_new_Container.yml +0 -162
  103. data/spec/vcr/Docker_Image/_run/when_the_argument_is_nil/command_configured_in_image/should_normally_show_result_if_image_has_Cmd_configured.yml +0 -162
  104. data/spec/vcr/Docker_Image/_run/when_the_argument_is_nil/no_command_configured_in_image/should_raise_an_error_if_no_command_is_specified.yml +0 -63
  105. data/spec/vcr/Docker_Image/_save/calls_the_class_method.yml +0 -67
  106. data/spec/vcr/Docker_Image/_save/when_a_filename_is_specified/exports_tarball_of_image_to_specified_file.yml +0 -176
  107. data/spec/vcr/Docker_Image/_save/when_no_filename_is_specified/returns_raw_binary_data_as_string.yml +0 -176
  108. data/spec/vcr/Docker_Image/_search/materializes_each_Image_into_a_Docker_Image.yml +0 -79
  109. data/spec/vcr/Docker_Image/_tag/tags_the_image_with_the_repo_name.yml +0 -88
@@ -1,141 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: post
5
- uri: <DOCKER_HOST>/v1.16/images/create?fromImage=debian%3Awheezy
6
- body:
7
- encoding: US-ASCII
8
- string: ''
9
- headers:
10
- User-Agent:
11
- - Swipely/Docker-API 1.18.0
12
- Content-Type:
13
- - text/plain
14
- response:
15
- status:
16
- code: 200
17
- message:
18
- headers:
19
- Content-Type:
20
- - application/json
21
- Date:
22
- - Thu, 12 Feb 2015 00:55:55 GMT
23
- body:
24
- encoding: US-ASCII
25
- string: ! "{\"status\":\"The image you are pulling has been verified\",\"id\":\"debian:wheezy\"}\r\n{\"status\":\"Already
26
- exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Already
27
- exists\",\"progressDetail\":{},\"id\":\"30d39e59ffe2\"}{\"status\":\"Already
28
- exists\",\"progressDetail\":{},\"id\":\"c90d655b99b2\"}{\"status\":\"Status:
29
- Image is up to date for debian:wheezy\"}\r\n"
30
- http_version:
31
- recorded_at: Thu, 12 Feb 2015 00:55:55 GMT
32
- - request:
33
- method: get
34
- uri: <DOCKER_HOST>/v1.16/images/json?all=true
35
- body:
36
- encoding: US-ASCII
37
- string: ''
38
- headers:
39
- User-Agent:
40
- - Swipely/Docker-API 1.18.0
41
- Content-Type:
42
- - text/plain
43
- response:
44
- status:
45
- code: 200
46
- message:
47
- headers:
48
- Content-Type:
49
- - application/json
50
- Date:
51
- - Thu, 12 Feb 2015 00:55:55 GMT
52
- body:
53
- encoding: US-ASCII
54
- string: ! '[{"Created":1423702467,"Id":"c5bc00616537c7ba0f051c7212c2a8777bb50e7e195cc8768090f9075e402f31","ParentId":"c90d655b99b2ec5b7e94d38c87f92dce015c17a313caeaae0e980d9b9bed8444","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":85120773}
55
-
56
- ,{"Created":1423521618,"Id":"a47c4817ef07f98471d0182715891eb87d1b015a6c9a977b1ea766a666e96f49","ParentId":"e41eb64a720e4098e29814b767a769fd2bd19222e0885d8f252c3c64318f51d8","RepoTags":["tianon/true:latest"],"Size":0,"VirtualSize":125}
57
-
58
- ,{"Created":1423521618,"Id":"e41eb64a720e4098e29814b767a769fd2bd19222e0885d8f252c3c64318f51d8","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":125,"VirtualSize":125}
59
-
60
- ,{"Created":1422480050,"Id":"c55308716b3671d8a238a6c1245a60f66d76a3e1404b7b8b6e5fe0e65bae4943","ParentId":"214c09aed08bbf283bfb334b5a0526fa7e66ccaf667a5feee66d75af6a69bc6f","RepoTags":["registry:latest"],"Size":0,"VirtualSize":418558798}
61
-
62
- ,{"Created":1422480043,"Id":"214c09aed08bbf283bfb334b5a0526fa7e66ccaf667a5feee66d75af6a69bc6f","ParentId":"f054bc98768fef8ed7f20eb2a8184d0979fb63701ca85032f35d1f56bd1434dd","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":418558798}
63
-
64
- ,{"Created":1422480037,"Id":"f054bc98768fef8ed7f20eb2a8184d0979fb63701ca85032f35d1f56bd1434dd","ParentId":"63ad05f3af00bc944f4c42291c1120e9e568e2565a55f155e345ad0169c836cf","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":418558798}
65
-
66
- ,{"Created":1422480031,"Id":"63ad05f3af00bc944f4c42291c1120e9e568e2565a55f155e345ad0169c836cf","ParentId":"ecc59b06f5b7442bac27e1c269148f3a94fd4c07840a63e6171b1126c501e50c","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":418558798}
67
-
68
- ,{"Created":1422480025,"Id":"ecc59b06f5b7442bac27e1c269148f3a94fd4c07840a63e6171b1126c501e50c","ParentId":"8ec695ba9240c3b7096d9d661d02e4d5d879e69f82f4dd73342b6bfedb0999f8","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":50796,"VirtualSize":418558798}
69
-
70
- ,{"Created":1422480017,"Id":"8ec695ba9240c3b7096d9d661d02e4d5d879e69f82f4dd73342b6bfedb0999f8","ParentId":"eaebc036889a728ef665ae9be29dfd4a09183ff0aa2d56ace208038cd690956c","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":25397473,"VirtualSize":418508002}
71
-
72
- ,{"Created":1422479889,"Id":"eaebc036889a728ef665ae9be29dfd4a09183ff0aa2d56ace208038cd690956c","ParentId":"0e7a483810f64e4d2f4fc679d8c10d3914a975d18a2a152d26bd6655feb0af8f","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":11550557,"VirtualSize":393110529}
73
-
74
- ,{"Created":1422479878,"Id":"0e7a483810f64e4d2f4fc679d8c10d3914a975d18a2a152d26bd6655feb0af8f","ParentId":"ed34dec80489996f5b45476abc7260356dcdbf30900016041d833d6d3555d8cc","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":73,"VirtualSize":381559972}
75
-
76
- ,{"Created":1422479871,"Id":"ed34dec80489996f5b45476abc7260356dcdbf30900016041d833d6d3555d8cc","ParentId":"30e25c7b70dfe8f4f9268f613a793dfc454545c824329741c0d393c9969c9d82","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":2428766,"VirtualSize":381559899}
77
-
78
- ,{"Created":1422479860,"Id":"30e25c7b70dfe8f4f9268f613a793dfc454545c824329741c0d393c9969c9d82","ParentId":"5ba9dab47459d81c0037ca3836a368a4f8ce5050505ce89720e1fb8839ea048a","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":186447657,"VirtualSize":379131133}
79
-
80
- ,{"Created":1422470238,"Id":"5ba9dab47459d81c0037ca3836a368a4f8ce5050505ce89720e1fb8839ea048a","ParentId":"51a9c7c1f8bb2fa19bcd09789a34e63f35abb80044bc10196e304f6634cc582c","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":192683476}
81
-
82
- ,{"Created":1422470229,"Id":"51a9c7c1f8bb2fa19bcd09789a34e63f35abb80044bc10196e304f6634cc582c","ParentId":"5f92234dcf1e0ed2a2a4d9d4cbf13ae7ba911c52b8edcd1bcb0c755c85032ac3","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":1895,"VirtualSize":192683476}
83
-
84
- ,{"Created":1422470220,"Id":"5f92234dcf1e0ed2a2a4d9d4cbf13ae7ba911c52b8edcd1bcb0c755c85032ac3","ParentId":"27d47432a69bca5f2700e4dff7de0388ed65f9d3fb1ec645e2bc24c223dc1cc3","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":194533,"VirtualSize":192681581}
85
-
86
- ,{"Created":1422470199,"Id":"27d47432a69bca5f2700e4dff7de0388ed65f9d3fb1ec645e2bc24c223dc1cc3","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":192487048,"VirtualSize":192487048}
87
-
88
- ,{"Created":1422379591,"Id":"c90d655b99b2ec5b7e94d38c87f92dce015c17a313caeaae0e980d9b9bed8444","ParentId":"30d39e59ffe287f29a41a3f8bd70734afc8728329e3289945cbdc5bbf07cd980","RepoTags":["debian:wheezy"],"Size":0,"VirtualSize":85120773}
89
-
90
- ,{"Created":1422379584,"Id":"30d39e59ffe287f29a41a3f8bd70734afc8728329e3289945cbdc5bbf07cd980","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":85120773,"VirtualSize":85120773}
91
-
92
- ,{"Created":1420064641,"Id":"492dad4279bae5bb73648efe9bf467b2cfa8bab1d593595226e3e7a95d9f6c35","ParentId":"2982ec56c8d910121e7594ca7890b062f6d37fadf7575f6a6f3adbabbafac9f5","RepoTags":["busybox:ubuntu-12.04"],"Size":0,"VirtualSize":5454693}
93
-
94
- ,{"Created":1420064640,"Id":"2982ec56c8d910121e7594ca7890b062f6d37fadf7575f6a6f3adbabbafac9f5","ParentId":"df7546f9f060a2268024c8a230d8639878585defcc1bc6f79d2728a13957871b","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":5454693,"VirtualSize":5454693}
95
-
96
- ,{"Created":1420064636,"Id":"ea13149945cb6b1e746bf28032f02e9b5a793523481a0a18645fc77ad53c4ea2","ParentId":"df7546f9f060a2268024c8a230d8639878585defcc1bc6f79d2728a13957871b","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":2433303,"VirtualSize":2433303}
97
-
98
- ,{"Created":1420064636,"Id":"4986bf8c15363d1c5d15512d5266f8777bfba4974ac56e3270e7760f6f0a8125","ParentId":"ea13149945cb6b1e746bf28032f02e9b5a793523481a0a18645fc77ad53c4ea2","RepoTags":["busybox:buildroot-2014.02","busybox:latest"],"Size":0,"VirtualSize":2433303}
99
-
100
- ,{"Created":1420064634,"Id":"2aed48a4e41d3931167146e9b7492aa5639e7f6478be9eac584726ecec6824ed","ParentId":"618b1fc306b06d11e192812ede4c685dcbf886d2a0189e9a552c550fd7663df0","RepoTags":["busybox:buildroot-2013.08.1"],"Size":0,"VirtualSize":2489301}
101
-
102
- ,{"Created":1420064633,"Id":"618b1fc306b06d11e192812ede4c685dcbf886d2a0189e9a552c550fd7663df0","ParentId":"df7546f9f060a2268024c8a230d8639878585defcc1bc6f79d2728a13957871b","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":2489301,"VirtualSize":2489301}
103
-
104
- ,{"Created":1412196367,"Id":"df7546f9f060a2268024c8a230d8639878585defcc1bc6f79d2728a13957871b","ParentId":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":0}
105
-
106
- ,{"Created":1371157430,"Id":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","ParentId":"","RepoTags":["scratch:latest"],"Size":0,"VirtualSize":0}
107
-
108
- ]'
109
- http_version:
110
- recorded_at: Thu, 12 Feb 2015 00:55:55 GMT
111
- - request:
112
- method: get
113
- uri: <DOCKER_HOST>/v1.16/images/c90d655b99b2/json
114
- body:
115
- encoding: US-ASCII
116
- string: ''
117
- headers:
118
- User-Agent:
119
- - Swipely/Docker-API 1.18.0
120
- Content-Type:
121
- - text/plain
122
- response:
123
- status:
124
- code: 200
125
- message:
126
- headers:
127
- Content-Type:
128
- - application/json
129
- Date:
130
- - Thu, 12 Feb 2015 00:55:55 GMT
131
- Content-Length:
132
- - '1592'
133
- body:
134
- encoding: US-ASCII
135
- string: ! '{"Architecture":"amd64","Author":"","Checksum":"tarsum.dev+sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","Comment":"","Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/bash"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"dc534047acbb","Image":"30d39e59ffe287f29a41a3f8bd70734afc8728329e3289945cbdc5bbf07cd980","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Container":"939613a44d80d4e75ce1053d4c2ee73da091e0aaeb233abfe29a478eca1769a9","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/sh","-c","#(nop)
136
- CMD [/bin/bash]"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"dc534047acbb","Image":"30d39e59ffe287f29a41a3f8bd70734afc8728329e3289945cbdc5bbf07cd980","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-01-27T17:26:31.855267409Z","DockerVersion":"1.4.1","Id":"c90d655b99b2ec5b7e94d38c87f92dce015c17a313caeaae0e980d9b9bed8444","Os":"linux","Parent":"30d39e59ffe287f29a41a3f8bd70734afc8728329e3289945cbdc5bbf07cd980","Size":0,"VirtualSize":85120773}
137
-
138
- '
139
- http_version:
140
- recorded_at: Thu, 12 Feb 2015 00:55:55 GMT
141
- recorded_with: VCR 2.9.2
@@ -1,62 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: post
5
- uri: <DOCKER_HOST>/v1.16/images/create?fromImage=debian%3Awheezy
6
- body:
7
- encoding: US-ASCII
8
- string: ''
9
- headers:
10
- User-Agent:
11
- - Swipely/Docker-API 1.18.0
12
- Content-Type:
13
- - text/plain
14
- response:
15
- status:
16
- code: 200
17
- message:
18
- headers:
19
- Content-Type:
20
- - application/json
21
- Date:
22
- - Thu, 12 Feb 2015 00:55:56 GMT
23
- body:
24
- encoding: US-ASCII
25
- string: ! "{\"status\":\"The image you are pulling has been verified\",\"id\":\"debian:wheezy\"}\r\n{\"status\":\"Already
26
- exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Already
27
- exists\",\"progressDetail\":{},\"id\":\"30d39e59ffe2\"}{\"status\":\"Already
28
- exists\",\"progressDetail\":{},\"id\":\"c90d655b99b2\"}{\"status\":\"Status:
29
- Image is up to date for debian:wheezy\"}\r\n"
30
- http_version:
31
- recorded_at: Thu, 12 Feb 2015 00:55:56 GMT
32
- - request:
33
- method: get
34
- uri: <DOCKER_HOST>/v1.16/images/c90d655b99b2/json
35
- body:
36
- encoding: US-ASCII
37
- string: ''
38
- headers:
39
- User-Agent:
40
- - Swipely/Docker-API 1.18.0
41
- Content-Type:
42
- - text/plain
43
- response:
44
- status:
45
- code: 200
46
- message:
47
- headers:
48
- Content-Type:
49
- - application/json
50
- Date:
51
- - Thu, 12 Feb 2015 00:55:56 GMT
52
- Content-Length:
53
- - '1592'
54
- body:
55
- encoding: US-ASCII
56
- string: ! '{"Architecture":"amd64","Author":"","Checksum":"tarsum.dev+sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","Comment":"","Config":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/bash"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"dc534047acbb","Image":"30d39e59ffe287f29a41a3f8bd70734afc8728329e3289945cbdc5bbf07cd980","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Container":"939613a44d80d4e75ce1053d4c2ee73da091e0aaeb233abfe29a478eca1769a9","ContainerConfig":{"AttachStderr":false,"AttachStdin":false,"AttachStdout":false,"Cmd":["/bin/sh","-c","#(nop)
57
- CMD [/bin/bash]"],"CpuShares":0,"Cpuset":"","Domainname":"","Entrypoint":null,"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],"ExposedPorts":null,"Hostname":"dc534047acbb","Image":"30d39e59ffe287f29a41a3f8bd70734afc8728329e3289945cbdc5bbf07cd980","MacAddress":"","Memory":0,"MemorySwap":0,"NetworkDisabled":false,"OnBuild":[],"OpenStdin":false,"PortSpecs":null,"StdinOnce":false,"Tty":false,"User":"","Volumes":null,"WorkingDir":""},"Created":"2015-01-27T17:26:31.855267409Z","DockerVersion":"1.4.1","Id":"c90d655b99b2ec5b7e94d38c87f92dce015c17a313caeaae0e980d9b9bed8444","Os":"linux","Parent":"30d39e59ffe287f29a41a3f8bd70734afc8728329e3289945cbdc5bbf07cd980","Size":0,"VirtualSize":85120773}
58
-
59
- '
60
- http_version:
61
- recorded_at: Thu, 12 Feb 2015 00:55:56 GMT
62
- recorded_with: VCR 2.9.2
@@ -1,652 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: post
5
- uri: <DOCKER_HOST>/v1.16/images/create?fromImage=busybox
6
- body:
7
- encoding: US-ASCII
8
- string: ''
9
- headers:
10
- User-Agent:
11
- - Swipely/Docker-API 1.18.0
12
- Content-Type:
13
- - text/plain
14
- response:
15
- status:
16
- code: 200
17
- message:
18
- headers:
19
- Content-Type:
20
- - application/json
21
- Date:
22
- - Thu, 12 Feb 2015 00:54:48 GMT
23
- body:
24
- encoding: US-ASCII
25
- string: ! "{\"status\":\"The image you are pulling has been verified\",\"id\":\"busybox:buildroot-2013.08.1\"}\r\n{\"status\":\"Pulling
26
- fs layer\",\"progressDetail\":{},\"id\":\"618b1fc306b0\"}{\"status\":\"Pulling
27
- fs layer\",\"progressDetail\":{},\"id\":\"2aed48a4e41d\"}{\"status\":\"Already
28
- exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Already
29
- exists\",\"progressDetail\":{},\"id\":\"df7546f9f060\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":31062,\"total\":2803200,\"start\":1423702488},\"progress\":\"[\\u003e
30
- \ ] 31.06 kB/2.803 MB 55s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":67262,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=\\u003e
31
- \ ] 67.26 kB/2.803 MB 26s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1024,\"total\":1024,\"start\":1423702488},\"progress\":\"[==================================================\\u003e]
32
- 1.024 kB/1.024 kB\",\"id\":\"2aed48a4e41d\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"2aed48a4e41d\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":100030,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=\\u003e
33
- \ ] 100 kB/2.803 MB 18s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":132798,\"total\":2803200,\"start\":1423702488},\"progress\":\"[==\\u003e
34
- \ ] 132.8 kB/2.803 MB 14s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":165566,\"total\":2803200,\"start\":1423702488},\"progress\":\"[==\\u003e
35
- \ ] 165.6 kB/2.803 MB 11s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":198334,\"total\":2803200,\"start\":1423702488},\"progress\":\"[===\\u003e
36
- \ ] 198.3 kB/2.803 MB 9s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":231102,\"total\":2803200,\"start\":1423702488},\"progress\":\"[====\\u003e
37
- \ ] 231.1 kB/2.803 MB 8s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":263870,\"total\":2803200,\"start\":1423702488},\"progress\":\"[====\\u003e
38
- \ ] 263.9 kB/2.803 MB 7s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":296638,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=====\\u003e
39
- \ ] 296.6 kB/2.803 MB 6s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":329406,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=====\\u003e
40
- \ ] 329.4 kB/2.803 MB 5s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":362174,\"total\":2803200,\"start\":1423702488},\"progress\":\"[======\\u003e
41
- \ ] 362.2 kB/2.803 MB 5s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":394942,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=======\\u003e
42
- \ ] 394.9 kB/2.803 MB 5s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":427710,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=======\\u003e
43
- \ ] 427.7 kB/2.803 MB 4s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":460478,\"total\":2803200,\"start\":1423702488},\"progress\":\"[========\\u003e
44
- \ ] 460.5 kB/2.803 MB 4s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":493246,\"total\":2803200,\"start\":1423702488},\"progress\":\"[========\\u003e
45
- \ ] 493.2 kB/2.803 MB 4s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":526014,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=========\\u003e
46
- \ ] 526 kB/2.803 MB 3s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":558782,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=========\\u003e
47
- \ ] 558.8 kB/2.803 MB 3s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":591550,\"total\":2803200,\"start\":1423702488},\"progress\":\"[==========\\u003e
48
- \ ] 591.5 kB/2.803 MB 3s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":624318,\"total\":2803200,\"start\":1423702488},\"progress\":\"[===========\\u003e
49
- \ ] 624.3 kB/2.803 MB 3s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":657086,\"total\":2803200,\"start\":1423702488},\"progress\":\"[===========\\u003e
50
- \ ] 657.1 kB/2.803 MB 3s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":689854,\"total\":2803200,\"start\":1423702488},\"progress\":\"[============\\u003e
51
- \ ] 689.9 kB/2.803 MB 2s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":722622,\"total\":2803200,\"start\":1423702488},\"progress\":\"[============\\u003e
52
- \ ] 722.6 kB/2.803 MB 2s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":755390,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=============\\u003e
53
- \ ] 755.4 kB/2.803 MB 2s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":788158,\"total\":2803200,\"start\":1423702488},\"progress\":\"[==============\\u003e
54
- \ ] 788.2 kB/2.803 MB 2s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":820926,\"total\":2803200,\"start\":1423702488},\"progress\":\"[==============\\u003e
55
- \ ] 820.9 kB/2.803 MB 2s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":853694,\"total\":2803200,\"start\":1423702488},\"progress\":\"[===============\\u003e
56
- \ ] 853.7 kB/2.803 MB 2s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":886462,\"total\":2803200,\"start\":1423702488},\"progress\":\"[===============\\u003e
57
- \ ] 886.5 kB/2.803 MB 2s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":919230,\"total\":2803200,\"start\":1423702488},\"progress\":\"[================\\u003e
58
- \ ] 919.2 kB/2.803 MB 2s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":951998,\"total\":2803200,\"start\":1423702488},\"progress\":\"[================\\u003e
59
- \ ] 952 kB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":984766,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=================\\u003e
60
- \ ] 984.8 kB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1017534,\"total\":2803200,\"start\":1423702488},\"progress\":\"[==================\\u003e
61
- \ ] 1.018 MB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1050302,\"total\":2803200,\"start\":1423702488},\"progress\":\"[==================\\u003e
62
- \ ] 1.05 MB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1083070,\"total\":2803200,\"start\":1423702488},\"progress\":\"[===================\\u003e
63
- \ ] 1.083 MB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1115838,\"total\":2803200,\"start\":1423702488},\"progress\":\"[===================\\u003e
64
- \ ] 1.116 MB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1148606,\"total\":2803200,\"start\":1423702488},\"progress\":\"[====================\\u003e
65
- \ ] 1.149 MB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1181374,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=====================\\u003e
66
- \ ] 1.181 MB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1214142,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=====================\\u003e
67
- \ ] 1.214 MB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1246910,\"total\":2803200,\"start\":1423702488},\"progress\":\"[======================\\u003e
68
- \ ] 1.247 MB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1279678,\"total\":2803200,\"start\":1423702488},\"progress\":\"[======================\\u003e
69
- \ ] 1.28 MB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1312446,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=======================\\u003e
70
- \ ] 1.312 MB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1345214,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=======================\\u003e
71
- \ ] 1.345 MB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1377982,\"total\":2803200,\"start\":1423702488},\"progress\":\"[========================\\u003e
72
- \ ] 1.378 MB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1410750,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=========================\\u003e
73
- \ ] 1.411 MB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1443518,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=========================\\u003e
74
- \ ] 1.444 MB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1476286,\"total\":2803200,\"start\":1423702488},\"progress\":\"[==========================\\u003e
75
- \ ] 1.476 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1509054,\"total\":2803200,\"start\":1423702488},\"progress\":\"[==========================\\u003e
76
- \ ] 1.509 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1541822,\"total\":2803200,\"start\":1423702488},\"progress\":\"[===========================\\u003e
77
- \ ] 1.542 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1574590,\"total\":2803200,\"start\":1423702488},\"progress\":\"[============================\\u003e
78
- \ ] 1.575 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1607358,\"total\":2803200,\"start\":1423702488},\"progress\":\"[============================\\u003e
79
- \ ] 1.607 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1640126,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=============================\\u003e
80
- \ ] 1.64 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1672894,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=============================\\u003e
81
- \ ] 1.673 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1705662,\"total\":2803200,\"start\":1423702488},\"progress\":\"[==============================\\u003e
82
- \ ] 1.706 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1738430,\"total\":2803200,\"start\":1423702488},\"progress\":\"[===============================\\u003e
83
- \ ] 1.738 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1771198,\"total\":2803200,\"start\":1423702488},\"progress\":\"[===============================\\u003e
84
- \ ] 1.771 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1803966,\"total\":2803200,\"start\":1423702488},\"progress\":\"[================================\\u003e
85
- \ ] 1.804 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1836734,\"total\":2803200,\"start\":1423702488},\"progress\":\"[================================\\u003e
86
- \ ] 1.837 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1869502,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=================================\\u003e
87
- \ ] 1.87 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1902270,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=================================\\u003e
88
- \ ] 1.902 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1935038,\"total\":2803200,\"start\":1423702488},\"progress\":\"[==================================\\u003e
89
- \ ] 1.935 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1967806,\"total\":2803200,\"start\":1423702488},\"progress\":\"[===================================\\u003e
90
- \ ] 1.968 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2000574,\"total\":2803200,\"start\":1423702488},\"progress\":\"[===================================\\u003e
91
- \ ] 2.001 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2033342,\"total\":2803200,\"start\":1423702488},\"progress\":\"[====================================\\u003e
92
- \ ] 2.033 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2066110,\"total\":2803200,\"start\":1423702488},\"progress\":\"[====================================\\u003e
93
- \ ] 2.066 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2098878,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=====================================\\u003e
94
- \ ] 2.099 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2131646,\"total\":2803200,\"start\":1423702488},\"progress\":\"[======================================\\u003e
95
- \ ] 2.132 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2164414,\"total\":2803200,\"start\":1423702488},\"progress\":\"[======================================\\u003e
96
- \ ] 2.164 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2197182,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=======================================\\u003e
97
- \ ] 2.197 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2229950,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=======================================\\u003e
98
- \ ] 2.23 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2262718,\"total\":2803200,\"start\":1423702488},\"progress\":\"[========================================\\u003e
99
- \ ] 2.263 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2295486,\"total\":2803200,\"start\":1423702488},\"progress\":\"[========================================\\u003e
100
- \ ] 2.295 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2328254,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=========================================\\u003e
101
- \ ] 2.328 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2361022,\"total\":2803200,\"start\":1423702488},\"progress\":\"[==========================================\\u003e
102
- \ ] 2.361 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2393790,\"total\":2803200,\"start\":1423702488},\"progress\":\"[==========================================\\u003e
103
- \ ] 2.394 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2426558,\"total\":2803200,\"start\":1423702488},\"progress\":\"[===========================================\\u003e
104
- \ ] 2.427 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2459326,\"total\":2803200,\"start\":1423702488},\"progress\":\"[===========================================\\u003e
105
- \ ] 2.459 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2492094,\"total\":2803200,\"start\":1423702488},\"progress\":\"[============================================\\u003e
106
- \ ] 2.492 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2524862,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=============================================\\u003e
107
- \ ] 2.525 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2557630,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=============================================\\u003e
108
- \ ] 2.558 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2590398,\"total\":2803200,\"start\":1423702488},\"progress\":\"[==============================================\\u003e
109
- \ ] 2.59 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2623166,\"total\":2803200,\"start\":1423702488},\"progress\":\"[==============================================\\u003e
110
- \ ] 2.623 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2655934,\"total\":2803200,\"start\":1423702488},\"progress\":\"[===============================================\\u003e
111
- \ ] 2.656 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2688702,\"total\":2803200,\"start\":1423702488},\"progress\":\"[===============================================\\u003e
112
- \ ] 2.689 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2721470,\"total\":2803200,\"start\":1423702488},\"progress\":\"[================================================\\u003e
113
- \ ] 2.721 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2754238,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=================================================\\u003e
114
- ] 2.754 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2784166,\"total\":2803200,\"start\":1423702488},\"progress\":\"[=================================================\\u003e
115
- ] 2.784 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2803200,\"total\":2803200,\"start\":1423702488},\"progress\":\"[==================================================\\u003e]
116
- 2.803 MB/2.803 MB\",\"id\":\"618b1fc306b0\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":32768,\"total\":2803200,\"start\":1423702489},\"progress\":\"[\\u003e
117
- \ ] 32.77 kB/2.803 MB 27s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=\\u003e
118
- \ ] 65.54 kB/2.803 MB 14s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":98304,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=\\u003e
119
- \ ] 98.3 kB/2.803 MB 9s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":131072,\"total\":2803200,\"start\":1423702489},\"progress\":\"[==\\u003e
120
- \ ] 131.1 kB/2.803 MB 7s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":163840,\"total\":2803200,\"start\":1423702489},\"progress\":\"[==\\u003e
121
- \ ] 163.8 kB/2.803 MB 5s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":196608,\"total\":2803200,\"start\":1423702489},\"progress\":\"[===\\u003e
122
- \ ] 196.6 kB/2.803 MB 4s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":229376,\"total\":2803200,\"start\":1423702489},\"progress\":\"[====\\u003e
123
- \ ] 229.4 kB/2.803 MB 4s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":262144,\"total\":2803200,\"start\":1423702489},\"progress\":\"[====\\u003e
124
- \ ] 262.1 kB/2.803 MB 3s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":294912,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=====\\u003e
125
- \ ] 294.9 kB/2.803 MB 3s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":327680,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=====\\u003e
126
- \ ] 327.7 kB/2.803 MB 2s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":360448,\"total\":2803200,\"start\":1423702489},\"progress\":\"[======\\u003e
127
- \ ] 360.4 kB/2.803 MB 2s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":393216,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=======\\u003e
128
- \ ] 393.2 kB/2.803 MB 2s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":425984,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=======\\u003e
129
- \ ] 426 kB/2.803 MB 2s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":458752,\"total\":2803200,\"start\":1423702489},\"progress\":\"[========\\u003e
130
- \ ] 458.8 kB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":491520,\"total\":2803200,\"start\":1423702489},\"progress\":\"[========\\u003e
131
- \ ] 491.5 kB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":524288,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=========\\u003e
132
- \ ] 524.3 kB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":557056,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=========\\u003e
133
- \ ] 557.1 kB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":589824,\"total\":2803200,\"start\":1423702489},\"progress\":\"[==========\\u003e
134
- \ ] 589.8 kB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":622592,\"total\":2803200,\"start\":1423702489},\"progress\":\"[===========\\u003e
135
- \ ] 622.6 kB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":655360,\"total\":2803200,\"start\":1423702489},\"progress\":\"[===========\\u003e
136
- \ ] 655.4 kB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":688128,\"total\":2803200,\"start\":1423702489},\"progress\":\"[============\\u003e
137
- \ ] 688.1 kB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":720896,\"total\":2803200,\"start\":1423702489},\"progress\":\"[============\\u003e
138
- \ ] 720.9 kB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":753664,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=============\\u003e
139
- \ ] 753.7 kB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":786432,\"total\":2803200,\"start\":1423702489},\"progress\":\"[==============\\u003e
140
- \ ] 786.4 kB/2.803 MB 1s\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":819200,\"total\":2803200,\"start\":1423702489},\"progress\":\"[==============\\u003e
141
- \ ] 819.2 kB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":851968,\"total\":2803200,\"start\":1423702489},\"progress\":\"[===============\\u003e
142
- \ ] 852 kB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":884736,\"total\":2803200,\"start\":1423702489},\"progress\":\"[===============\\u003e
143
- \ ] 884.7 kB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":917504,\"total\":2803200,\"start\":1423702489},\"progress\":\"[================\\u003e
144
- \ ] 917.5 kB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":950272,\"total\":2803200,\"start\":1423702489},\"progress\":\"[================\\u003e
145
- \ ] 950.3 kB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":983040,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=================\\u003e
146
- \ ] 983 kB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1015808,\"total\":2803200,\"start\":1423702489},\"progress\":\"[==================\\u003e
147
- \ ] 1.016 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1048576,\"total\":2803200,\"start\":1423702489},\"progress\":\"[==================\\u003e
148
- \ ] 1.049 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1081344,\"total\":2803200,\"start\":1423702489},\"progress\":\"[===================\\u003e
149
- \ ] 1.081 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1114112,\"total\":2803200,\"start\":1423702489},\"progress\":\"[===================\\u003e
150
- \ ] 1.114 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1146880,\"total\":2803200,\"start\":1423702489},\"progress\":\"[====================\\u003e
151
- \ ] 1.147 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1179648,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=====================\\u003e
152
- \ ] 1.18 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1212416,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=====================\\u003e
153
- \ ] 1.212 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1245184,\"total\":2803200,\"start\":1423702489},\"progress\":\"[======================\\u003e
154
- \ ] 1.245 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1277952,\"total\":2803200,\"start\":1423702489},\"progress\":\"[======================\\u003e
155
- \ ] 1.278 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1310720,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=======================\\u003e
156
- \ ] 1.311 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1343488,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=======================\\u003e
157
- \ ] 1.343 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1376256,\"total\":2803200,\"start\":1423702489},\"progress\":\"[========================\\u003e
158
- \ ] 1.376 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1409024,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=========================\\u003e
159
- \ ] 1.409 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1441792,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=========================\\u003e
160
- \ ] 1.442 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1474560,\"total\":2803200,\"start\":1423702489},\"progress\":\"[==========================\\u003e
161
- \ ] 1.475 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1507328,\"total\":2803200,\"start\":1423702489},\"progress\":\"[==========================\\u003e
162
- \ ] 1.507 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1540096,\"total\":2803200,\"start\":1423702489},\"progress\":\"[===========================\\u003e
163
- \ ] 1.54 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1572864,\"total\":2803200,\"start\":1423702489},\"progress\":\"[============================\\u003e
164
- \ ] 1.573 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1605632,\"total\":2803200,\"start\":1423702489},\"progress\":\"[============================\\u003e
165
- \ ] 1.606 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1638400,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=============================\\u003e
166
- \ ] 1.638 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1671168,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=============================\\u003e
167
- \ ] 1.671 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1703936,\"total\":2803200,\"start\":1423702489},\"progress\":\"[==============================\\u003e
168
- \ ] 1.704 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1736704,\"total\":2803200,\"start\":1423702489},\"progress\":\"[==============================\\u003e
169
- \ ] 1.737 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1769472,\"total\":2803200,\"start\":1423702489},\"progress\":\"[===============================\\u003e
170
- \ ] 1.769 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1802240,\"total\":2803200,\"start\":1423702489},\"progress\":\"[================================\\u003e
171
- \ ] 1.802 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1835008,\"total\":2803200,\"start\":1423702489},\"progress\":\"[================================\\u003e
172
- \ ] 1.835 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1867776,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=================================\\u003e
173
- \ ] 1.868 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1900544,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=================================\\u003e
174
- \ ] 1.901 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1933312,\"total\":2803200,\"start\":1423702489},\"progress\":\"[==================================\\u003e
175
- \ ] 1.933 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1966080,\"total\":2803200,\"start\":1423702489},\"progress\":\"[===================================\\u003e
176
- \ ] 1.966 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1998848,\"total\":2803200,\"start\":1423702489},\"progress\":\"[===================================\\u003e
177
- \ ] 1.999 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2031616,\"total\":2803200,\"start\":1423702489},\"progress\":\"[====================================\\u003e
178
- \ ] 2.032 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2064384,\"total\":2803200,\"start\":1423702489},\"progress\":\"[====================================\\u003e
179
- \ ] 2.064 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2097152,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=====================================\\u003e
180
- \ ] 2.097 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2129920,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=====================================\\u003e
181
- \ ] 2.13 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2162688,\"total\":2803200,\"start\":1423702489},\"progress\":\"[======================================\\u003e
182
- \ ] 2.163 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2195456,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=======================================\\u003e
183
- \ ] 2.195 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2228224,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=======================================\\u003e
184
- \ ] 2.228 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2260992,\"total\":2803200,\"start\":1423702489},\"progress\":\"[========================================\\u003e
185
- \ ] 2.261 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2293760,\"total\":2803200,\"start\":1423702489},\"progress\":\"[========================================\\u003e
186
- \ ] 2.294 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2326528,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=========================================\\u003e
187
- \ ] 2.327 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2359296,\"total\":2803200,\"start\":1423702489},\"progress\":\"[==========================================\\u003e
188
- \ ] 2.359 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2392064,\"total\":2803200,\"start\":1423702489},\"progress\":\"[==========================================\\u003e
189
- \ ] 2.392 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2424832,\"total\":2803200,\"start\":1423702489},\"progress\":\"[===========================================\\u003e
190
- \ ] 2.425 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2457600,\"total\":2803200,\"start\":1423702489},\"progress\":\"[===========================================\\u003e
191
- \ ] 2.458 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2490368,\"total\":2803200,\"start\":1423702489},\"progress\":\"[============================================\\u003e
192
- \ ] 2.49 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2523136,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=============================================\\u003e
193
- \ ] 2.523 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2555904,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=============================================\\u003e
194
- \ ] 2.556 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2588672,\"total\":2803200,\"start\":1423702489},\"progress\":\"[==============================================\\u003e
195
- \ ] 2.589 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2621440,\"total\":2803200,\"start\":1423702489},\"progress\":\"[==============================================\\u003e
196
- \ ] 2.621 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2654208,\"total\":2803200,\"start\":1423702489},\"progress\":\"[===============================================\\u003e
197
- \ ] 2.654 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2686976,\"total\":2803200,\"start\":1423702489},\"progress\":\"[===============================================\\u003e
198
- \ ] 2.687 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2719744,\"total\":2803200,\"start\":1423702489},\"progress\":\"[================================================\\u003e
199
- \ ] 2.72 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2752512,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=================================================\\u003e
200
- ] 2.753 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2785280,\"total\":2803200,\"start\":1423702489},\"progress\":\"[=================================================\\u003e
201
- ] 2.785 MB/2.803 MB 0\",\"id\":\"618b1fc306b0\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"618b1fc306b0\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1024,\"total\":1024,\"start\":1423702489},\"progress\":\"[==================================================\\u003e]
202
- 1.024 kB/1.024 kB\",\"id\":\"2aed48a4e41d\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"2aed48a4e41d\"}{\"status\":\"The
203
- image you are pulling has been verified\",\"id\":\"busybox:buildroot-2014.02\"}\r\n{\"status\":\"Already
204
- exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Already
205
- exists\",\"progressDetail\":{},\"id\":\"df7546f9f060\"}{\"status\":\"Already
206
- exists\",\"progressDetail\":{},\"id\":\"ea13149945cb\"}{\"status\":\"Already
207
- exists\",\"progressDetail\":{},\"id\":\"4986bf8c1536\"}{\"status\":\"The image
208
- you are pulling has been verified\",\"id\":\"busybox:latest\"}\r\n{\"status\":\"Already
209
- exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Already
210
- exists\",\"progressDetail\":{},\"id\":\"df7546f9f060\"}{\"status\":\"Already
211
- exists\",\"progressDetail\":{},\"id\":\"ea13149945cb\"}{\"status\":\"Already
212
- exists\",\"progressDetail\":{},\"id\":\"4986bf8c1536\"}{\"status\":\"The image
213
- you are pulling has been verified\",\"id\":\"busybox:ubuntu-12.04\"}\r\n{\"status\":\"Pulling
214
- fs layer\",\"progressDetail\":{},\"id\":\"2982ec56c8d9\"}{\"status\":\"Pulling
215
- fs layer\",\"progressDetail\":{},\"id\":\"492dad4279ba\"}{\"status\":\"Already
216
- exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Already
217
- exists\",\"progressDetail\":{},\"id\":\"df7546f9f060\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1024,\"total\":1024,\"start\":1423702490},\"progress\":\"[==================================================\\u003e]
218
- 1.024 kB/1.024 kB\",\"id\":\"492dad4279ba\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"492dad4279ba\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":66728,\"total\":5585920,\"start\":1423702491},\"progress\":\"[\\u003e
219
- \ ] 66.73 kB/5.586 MB 4s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":123656,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=\\u003e
220
- \ ] 123.7 kB/5.586 MB 4s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":188736,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=\\u003e
221
- \ ] 188.7 kB/5.586 MB 3s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":254272,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==\\u003e
222
- \ ] 254.3 kB/5.586 MB 3s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":319808,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==\\u003e
223
- \ ] 319.8 kB/5.586 MB 2s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":385344,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===\\u003e
224
- \ ] 385.3 kB/5.586 MB 2s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":450880,\"total\":5585920,\"start\":1423702491},\"progress\":\"[====\\u003e
225
- \ ] 450.9 kB/5.586 MB 2s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":516416,\"total\":5585920,\"start\":1423702491},\"progress\":\"[====\\u003e
226
- \ ] 516.4 kB/5.586 MB 2s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":581952,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=====\\u003e
227
- \ ] 582 kB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":647488,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=====\\u003e
228
- \ ] 647.5 kB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":713024,\"total\":5585920,\"start\":1423702491},\"progress\":\"[======\\u003e
229
- \ ] 713 kB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":778560,\"total\":5585920,\"start\":1423702491},\"progress\":\"[======\\u003e
230
- \ ] 778.6 kB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":844096,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=======\\u003e
231
- \ ] 844.1 kB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":909632,\"total\":5585920,\"start\":1423702491},\"progress\":\"[========\\u003e
232
- \ ] 909.6 kB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":975168,\"total\":5585920,\"start\":1423702491},\"progress\":\"[========\\u003e
233
- \ ] 975.2 kB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1040704,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=========\\u003e
234
- \ ] 1.041 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1106240,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=========\\u003e
235
- \ ] 1.106 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1171776,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==========\\u003e
236
- \ ] 1.172 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1237312,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===========\\u003e
237
- \ ] 1.237 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1302848,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===========\\u003e
238
- \ ] 1.303 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1368384,\"total\":5585920,\"start\":1423702491},\"progress\":\"[============\\u003e
239
- \ ] 1.368 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1433920,\"total\":5585920,\"start\":1423702491},\"progress\":\"[============\\u003e
240
- \ ] 1.434 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1499456,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=============\\u003e
241
- \ ] 1.499 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1564992,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==============\\u003e
242
- \ ] 1.565 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1630528,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==============\\u003e
243
- \ ] 1.631 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1696064,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===============\\u003e
244
- \ ] 1.696 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1761600,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===============\\u003e
245
- \ ] 1.762 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1827136,\"total\":5585920,\"start\":1423702491},\"progress\":\"[================\\u003e
246
- \ ] 1.827 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1892672,\"total\":5585920,\"start\":1423702491},\"progress\":\"[================\\u003e
247
- \ ] 1.893 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1958208,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=================\\u003e
248
- \ ] 1.958 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2023744,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==================\\u003e
249
- \ ] 2.024 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2089280,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==================\\u003e
250
- \ ] 2.089 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2154816,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===================\\u003e
251
- \ ] 2.155 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2220352,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===================\\u003e
252
- \ ] 2.22 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2285888,\"total\":5585920,\"start\":1423702491},\"progress\":\"[====================\\u003e
253
- \ ] 2.286 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2351424,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=====================\\u003e
254
- \ ] 2.351 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2416960,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=====================\\u003e
255
- \ ] 2.417 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2482496,\"total\":5585920,\"start\":1423702491},\"progress\":\"[======================\\u003e
256
- \ ] 2.482 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2548032,\"total\":5585920,\"start\":1423702491},\"progress\":\"[======================\\u003e
257
- \ ] 2.548 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2613568,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=======================\\u003e
258
- \ ] 2.614 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2679104,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=======================\\u003e
259
- \ ] 2.679 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2744640,\"total\":5585920,\"start\":1423702491},\"progress\":\"[========================\\u003e
260
- \ ] 2.745 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2810176,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=========================\\u003e
261
- \ ] 2.81 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2875712,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=========================\\u003e
262
- \ ] 2.876 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2941248,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==========================\\u003e
263
- \ ] 2.941 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3006784,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==========================\\u003e
264
- \ ] 3.007 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3072320,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===========================\\u003e
265
- \ ] 3.072 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3137856,\"total\":5585920,\"start\":1423702491},\"progress\":\"[============================\\u003e
266
- \ ] 3.138 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3203392,\"total\":5585920,\"start\":1423702491},\"progress\":\"[============================\\u003e
267
- \ ] 3.203 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3268928,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=============================\\u003e
268
- \ ] 3.269 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3334464,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=============================\\u003e
269
- \ ] 3.334 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3400000,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==============================\\u003e
270
- \ ] 3.4 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3465536,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===============================\\u003e
271
- \ ] 3.466 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3531072,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===============================\\u003e
272
- \ ] 3.531 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3596608,\"total\":5585920,\"start\":1423702491},\"progress\":\"[================================\\u003e
273
- \ ] 3.597 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3662144,\"total\":5585920,\"start\":1423702491},\"progress\":\"[================================\\u003e
274
- \ ] 3.662 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3727680,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=================================\\u003e
275
- \ ] 3.728 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3793216,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=================================\\u003e
276
- \ ] 3.793 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3858752,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==================================\\u003e
277
- \ ] 3.859 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3924288,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===================================\\u003e
278
- \ ] 3.924 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3989824,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===================================\\u003e
279
- \ ] 3.99 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4055360,\"total\":5585920,\"start\":1423702491},\"progress\":\"[====================================\\u003e
280
- \ ] 4.055 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4120896,\"total\":5585920,\"start\":1423702491},\"progress\":\"[====================================\\u003e
281
- \ ] 4.121 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4186432,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=====================================\\u003e
282
- \ ] 4.186 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4251968,\"total\":5585920,\"start\":1423702491},\"progress\":\"[======================================\\u003e
283
- \ ] 4.252 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4317504,\"total\":5585920,\"start\":1423702491},\"progress\":\"[======================================\\u003e
284
- \ ] 4.318 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4383040,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=======================================\\u003e
285
- \ ] 4.383 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4448576,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=======================================\\u003e
286
- \ ] 4.449 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4514112,\"total\":5585920,\"start\":1423702491},\"progress\":\"[========================================\\u003e
287
- \ ] 4.514 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4579648,\"total\":5585920,\"start\":1423702491},\"progress\":\"[========================================\\u003e
288
- \ ] 4.58 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4645184,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=========================================\\u003e
289
- \ ] 4.645 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4710720,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==========================================\\u003e
290
- \ ] 4.711 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4776256,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==========================================\\u003e
291
- \ ] 4.776 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4841792,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===========================================\\u003e
292
- \ ] 4.842 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4907328,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===========================================\\u003e
293
- \ ] 4.907 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4972864,\"total\":5585920,\"start\":1423702491},\"progress\":\"[============================================\\u003e
294
- \ ] 4.973 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5038400,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=============================================\\u003e
295
- \ ] 5.038 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5103936,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=============================================\\u003e
296
- \ ] 5.104 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5169472,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==============================================\\u003e
297
- \ ] 5.169 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5235008,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==============================================\\u003e
298
- \ ] 5.235 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5300544,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===============================================\\u003e
299
- \ ] 5.301 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5366080,\"total\":5585920,\"start\":1423702491},\"progress\":\"[================================================\\u003e
300
- \ ] 5.366 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5431616,\"total\":5585920,\"start\":1423702491},\"progress\":\"[================================================\\u003e
301
- \ ] 5.432 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5497152,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=================================================\\u003e
302
- ] 5.497 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5562688,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=================================================\\u003e
303
- ] 5.563 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5585920,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==================================================\\u003e]
304
- 5.586 MB/5.586 MB\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":5585920,\"start\":1423702491},\"progress\":\"[\\u003e
305
- \ ] 65.54 kB/5.586 MB 1m10s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":131072,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=\\u003e
306
- \ ] 131.1 kB/5.586 MB 35s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":196608,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=\\u003e
307
- \ ] 196.6 kB/5.586 MB 23s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":262144,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==\\u003e
308
- \ ] 262.1 kB/5.586 MB 17s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":327680,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==\\u003e
309
- \ ] 327.7 kB/5.586 MB 13s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":393216,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===\\u003e
310
- \ ] 393.2 kB/5.586 MB 11s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":458752,\"total\":5585920,\"start\":1423702491},\"progress\":\"[====\\u003e
311
- \ ] 458.8 kB/5.586 MB 9s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":524288,\"total\":5585920,\"start\":1423702491},\"progress\":\"[====\\u003e
312
- \ ] 524.3 kB/5.586 MB 8s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":589824,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=====\\u003e
313
- \ ] 589.8 kB/5.586 MB 7s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":655360,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=====\\u003e
314
- \ ] 655.4 kB/5.586 MB 6s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":720896,\"total\":5585920,\"start\":1423702491},\"progress\":\"[======\\u003e
315
- \ ] 720.9 kB/5.586 MB 5s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":786432,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=======\\u003e
316
- \ ] 786.4 kB/5.586 MB 5s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":851968,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=======\\u003e
317
- \ ] 852 kB/5.586 MB 4s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":917504,\"total\":5585920,\"start\":1423702491},\"progress\":\"[========\\u003e
318
- \ ] 917.5 kB/5.586 MB 4s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":983040,\"total\":5585920,\"start\":1423702491},\"progress\":\"[========\\u003e
319
- \ ] 983 kB/5.586 MB 4s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1048576,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=========\\u003e
320
- \ ] 1.049 MB/5.586 MB 3s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1114112,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=========\\u003e
321
- \ ] 1.114 MB/5.586 MB 3s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1179648,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==========\\u003e
322
- \ ] 1.18 MB/5.586 MB 3s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1245184,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===========\\u003e
323
- \ ] 1.245 MB/5.586 MB 3s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1310720,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===========\\u003e
324
- \ ] 1.311 MB/5.586 MB 2s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1376256,\"total\":5585920,\"start\":1423702491},\"progress\":\"[============\\u003e
325
- \ ] 1.376 MB/5.586 MB 2s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1441792,\"total\":5585920,\"start\":1423702491},\"progress\":\"[============\\u003e
326
- \ ] 1.442 MB/5.586 MB 2s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1507328,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=============\\u003e
327
- \ ] 1.507 MB/5.586 MB 2s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1572864,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==============\\u003e
328
- \ ] 1.573 MB/5.586 MB 2s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1638400,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==============\\u003e
329
- \ ] 1.638 MB/5.586 MB 2s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1703936,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===============\\u003e
330
- \ ] 1.704 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1769472,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===============\\u003e
331
- \ ] 1.769 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1835008,\"total\":5585920,\"start\":1423702491},\"progress\":\"[================\\u003e
332
- \ ] 1.835 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1900544,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=================\\u003e
333
- \ ] 1.901 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1966080,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=================\\u003e
334
- \ ] 1.966 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2031616,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==================\\u003e
335
- \ ] 2.032 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2097152,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==================\\u003e
336
- \ ] 2.097 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2162688,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===================\\u003e
337
- \ ] 2.163 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2228224,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===================\\u003e
338
- \ ] 2.228 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2293760,\"total\":5585920,\"start\":1423702491},\"progress\":\"[====================\\u003e
339
- \ ] 2.294 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2359296,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=====================\\u003e
340
- \ ] 2.359 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2424832,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=====================\\u003e
341
- \ ] 2.425 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2490368,\"total\":5585920,\"start\":1423702491},\"progress\":\"[======================\\u003e
342
- \ ] 2.49 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2555904,\"total\":5585920,\"start\":1423702491},\"progress\":\"[======================\\u003e
343
- \ ] 2.556 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2621440,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=======================\\u003e
344
- \ ] 2.621 MB/5.586 MB 1s\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2686976,\"total\":5585920,\"start\":1423702491},\"progress\":\"[========================\\u003e
345
- \ ] 2.687 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2752512,\"total\":5585920,\"start\":1423702491},\"progress\":\"[========================\\u003e
346
- \ ] 2.753 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2818048,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=========================\\u003e
347
- \ ] 2.818 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2883584,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=========================\\u003e
348
- \ ] 2.884 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2949120,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==========================\\u003e
349
- \ ] 2.949 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3014656,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==========================\\u003e
350
- \ ] 3.015 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3080192,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===========================\\u003e
351
- \ ] 3.08 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3145728,\"total\":5585920,\"start\":1423702491},\"progress\":\"[============================\\u003e
352
- \ ] 3.146 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3211264,\"total\":5585920,\"start\":1423702491},\"progress\":\"[============================\\u003e
353
- \ ] 3.211 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3276800,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=============================\\u003e
354
- \ ] 3.277 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3342336,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=============================\\u003e
355
- \ ] 3.342 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3407872,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==============================\\u003e
356
- \ ] 3.408 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3473408,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===============================\\u003e
357
- \ ] 3.473 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3538944,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===============================\\u003e
358
- \ ] 3.539 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3604480,\"total\":5585920,\"start\":1423702491},\"progress\":\"[================================\\u003e
359
- \ ] 3.604 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3670016,\"total\":5585920,\"start\":1423702491},\"progress\":\"[================================\\u003e
360
- \ ] 3.67 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3735552,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=================================\\u003e
361
- \ ] 3.736 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3801088,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==================================\\u003e
362
- \ ] 3.801 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3866624,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==================================\\u003e
363
- \ ] 3.867 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3932160,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===================================\\u003e
364
- \ ] 3.932 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3997696,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===================================\\u003e
365
- \ ] 3.998 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4063232,\"total\":5585920,\"start\":1423702491},\"progress\":\"[====================================\\u003e
366
- \ ] 4.063 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4128768,\"total\":5585920,\"start\":1423702491},\"progress\":\"[====================================\\u003e
367
- \ ] 4.129 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4194304,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=====================================\\u003e
368
- \ ] 4.194 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4259840,\"total\":5585920,\"start\":1423702491},\"progress\":\"[======================================\\u003e
369
- \ ] 4.26 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4325376,\"total\":5585920,\"start\":1423702491},\"progress\":\"[======================================\\u003e
370
- \ ] 4.325 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4390912,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=======================================\\u003e
371
- \ ] 4.391 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4456448,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=======================================\\u003e
372
- \ ] 4.456 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4521984,\"total\":5585920,\"start\":1423702491},\"progress\":\"[========================================\\u003e
373
- \ ] 4.522 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4587520,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=========================================\\u003e
374
- \ ] 4.588 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4653056,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=========================================\\u003e
375
- \ ] 4.653 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4718592,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==========================================\\u003e
376
- \ ] 4.719 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4784128,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==========================================\\u003e
377
- \ ] 4.784 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4849664,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===========================================\\u003e
378
- \ ] 4.85 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4915200,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===========================================\\u003e
379
- \ ] 4.915 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4980736,\"total\":5585920,\"start\":1423702491},\"progress\":\"[============================================\\u003e
380
- \ ] 4.981 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5046272,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=============================================\\u003e
381
- \ ] 5.046 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5111808,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=============================================\\u003e
382
- \ ] 5.112 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5177344,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==============================================\\u003e
383
- \ ] 5.177 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5242880,\"total\":5585920,\"start\":1423702491},\"progress\":\"[==============================================\\u003e
384
- \ ] 5.243 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5308416,\"total\":5585920,\"start\":1423702491},\"progress\":\"[===============================================\\u003e
385
- \ ] 5.308 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5373952,\"total\":5585920,\"start\":1423702491},\"progress\":\"[================================================\\u003e
386
- \ ] 5.374 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5439488,\"total\":5585920,\"start\":1423702491},\"progress\":\"[================================================\\u003e
387
- \ ] 5.439 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5505024,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=================================================\\u003e
388
- ] 5.505 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5570560,\"total\":5585920,\"start\":1423702491},\"progress\":\"[=================================================\\u003e
389
- ] 5.571 MB/5.586 MB 0\",\"id\":\"2982ec56c8d9\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"2982ec56c8d9\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1024,\"total\":1024,\"start\":1423702492},\"progress\":\"[==================================================\\u003e]
390
- 1.024 kB/1.024 kB\",\"id\":\"492dad4279ba\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"492dad4279ba\"}{\"status\":\"The
391
- image you are pulling has been verified\",\"id\":\"busybox:ubuntu-14.04\"}\r\n{\"status\":\"Pulling
392
- fs layer\",\"progressDetail\":{},\"id\":\"e8a999563c47\"}{\"status\":\"Pulling
393
- fs layer\",\"progressDetail\":{},\"id\":\"f6169d24347d\"}{\"status\":\"Already
394
- exists\",\"progressDetail\":{},\"id\":\"511136ea3c5a\"}{\"status\":\"Already
395
- exists\",\"progressDetail\":{},\"id\":\"df7546f9f060\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1024,\"total\":1024,\"start\":1423702493},\"progress\":\"[==================================================\\u003e]
396
- 1.024 kB/1.024 kB\",\"id\":\"f6169d24347d\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"f6169d24347d\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":62264,\"total\":5742080,\"start\":1423702493},\"progress\":\"[\\u003e
397
- \ ] 62.26 kB/5.742 MB 7s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":120104,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=\\u003e
398
- \ ] 120.1 kB/5.742 MB 7s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":185184,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=\\u003e
399
- \ ] 185.2 kB/5.742 MB 5s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":250720,\"total\":5742080,\"start\":1423702493},\"progress\":\"[==\\u003e
400
- \ ] 250.7 kB/5.742 MB 5s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":316256,\"total\":5742080,\"start\":1423702493},\"progress\":\"[==\\u003e
401
- \ ] 316.3 kB/5.742 MB 4s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":381792,\"total\":5742080,\"start\":1423702493},\"progress\":\"[===\\u003e
402
- \ ] 381.8 kB/5.742 MB 4s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":447328,\"total\":5742080,\"start\":1423702493},\"progress\":\"[===\\u003e
403
- \ ] 447.3 kB/5.742 MB 3s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":512864,\"total\":5742080,\"start\":1423702493},\"progress\":\"[====\\u003e
404
- \ ] 512.9 kB/5.742 MB 3s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":578400,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=====\\u003e
405
- \ ] 578.4 kB/5.742 MB 3s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":643936,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=====\\u003e
406
- \ ] 643.9 kB/5.742 MB 3s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":709472,\"total\":5742080,\"start\":1423702493},\"progress\":\"[======\\u003e
407
- \ ] 709.5 kB/5.742 MB 2s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":775008,\"total\":5742080,\"start\":1423702493},\"progress\":\"[======\\u003e
408
- \ ] 775 kB/5.742 MB 2s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":840544,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=======\\u003e
409
- \ ] 840.5 kB/5.742 MB 2s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":906080,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=======\\u003e
410
- \ ] 906.1 kB/5.742 MB 2s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":971616,\"total\":5742080,\"start\":1423702493},\"progress\":\"[========\\u003e
411
- \ ] 971.6 kB/5.742 MB 2s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1037152,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=========\\u003e
412
- \ ] 1.037 MB/5.742 MB 2s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1102688,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=========\\u003e
413
- \ ] 1.103 MB/5.742 MB 2s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1168224,\"total\":5742080,\"start\":1423702493},\"progress\":\"[==========\\u003e
414
- \ ] 1.168 MB/5.742 MB 2s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1233760,\"total\":5742080,\"start\":1423702493},\"progress\":\"[==========\\u003e
415
- \ ] 1.234 MB/5.742 MB 2s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1299296,\"total\":5742080,\"start\":1423702493},\"progress\":\"[===========\\u003e
416
- \ ] 1.299 MB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1364832,\"total\":5742080,\"start\":1423702493},\"progress\":\"[===========\\u003e
417
- \ ] 1.365 MB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1430368,\"total\":5742080,\"start\":1423702493},\"progress\":\"[============\\u003e
418
- \ ] 1.43 MB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1495904,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=============\\u003e
419
- \ ] 1.496 MB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1561440,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=============\\u003e
420
- \ ] 1.561 MB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1626976,\"total\":5742080,\"start\":1423702493},\"progress\":\"[==============\\u003e
421
- \ ] 1.627 MB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1692512,\"total\":5742080,\"start\":1423702493},\"progress\":\"[==============\\u003e
422
- \ ] 1.693 MB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1758048,\"total\":5742080,\"start\":1423702493},\"progress\":\"[===============\\u003e
423
- \ ] 1.758 MB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1823584,\"total\":5742080,\"start\":1423702493},\"progress\":\"[===============\\u003e
424
- \ ] 1.824 MB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1889120,\"total\":5742080,\"start\":1423702493},\"progress\":\"[================\\u003e
425
- \ ] 1.889 MB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":1954656,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=================\\u003e
426
- \ ] 1.955 MB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2020192,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=================\\u003e
427
- \ ] 2.02 MB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2085728,\"total\":5742080,\"start\":1423702493},\"progress\":\"[==================\\u003e
428
- \ ] 2.086 MB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2151264,\"total\":5742080,\"start\":1423702493},\"progress\":\"[==================\\u003e
429
- \ ] 2.151 MB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2216800,\"total\":5742080,\"start\":1423702493},\"progress\":\"[===================\\u003e
430
- \ ] 2.217 MB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2282336,\"total\":5742080,\"start\":1423702493},\"progress\":\"[===================\\u003e
431
- \ ] 2.282 MB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2347872,\"total\":5742080,\"start\":1423702493},\"progress\":\"[====================\\u003e
432
- \ ] 2.348 MB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2413408,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=====================\\u003e
433
- \ ] 2.413 MB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2478944,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=====================\\u003e
434
- \ ] 2.479 MB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2544480,\"total\":5742080,\"start\":1423702493},\"progress\":\"[======================\\u003e
435
- \ ] 2.544 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2610016,\"total\":5742080,\"start\":1423702493},\"progress\":\"[======================\\u003e
436
- \ ] 2.61 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2675552,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=======================\\u003e
437
- \ ] 2.676 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2741088,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=======================\\u003e
438
- \ ] 2.741 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2806624,\"total\":5742080,\"start\":1423702493},\"progress\":\"[========================\\u003e
439
- \ ] 2.807 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2872160,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=========================\\u003e
440
- \ ] 2.872 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":2937696,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=========================\\u003e
441
- \ ] 2.938 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3003232,\"total\":5742080,\"start\":1423702493},\"progress\":\"[==========================\\u003e
442
- \ ] 3.003 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3068768,\"total\":5742080,\"start\":1423702493},\"progress\":\"[==========================\\u003e
443
- \ ] 3.069 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3134304,\"total\":5742080,\"start\":1423702493},\"progress\":\"[===========================\\u003e
444
- \ ] 3.134 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3199840,\"total\":5742080,\"start\":1423702493},\"progress\":\"[===========================\\u003e
445
- \ ] 3.2 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3265376,\"total\":5742080,\"start\":1423702493},\"progress\":\"[============================\\u003e
446
- \ ] 3.265 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3330912,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=============================\\u003e
447
- \ ] 3.331 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3396448,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=============================\\u003e
448
- \ ] 3.396 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3461984,\"total\":5742080,\"start\":1423702493},\"progress\":\"[==============================\\u003e
449
- \ ] 3.462 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3527520,\"total\":5742080,\"start\":1423702493},\"progress\":\"[==============================\\u003e
450
- \ ] 3.528 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3593056,\"total\":5742080,\"start\":1423702493},\"progress\":\"[===============================\\u003e
451
- \ ] 3.593 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3658592,\"total\":5742080,\"start\":1423702493},\"progress\":\"[===============================\\u003e
452
- \ ] 3.659 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3724128,\"total\":5742080,\"start\":1423702493},\"progress\":\"[================================\\u003e
453
- \ ] 3.724 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3789664,\"total\":5742080,\"start\":1423702493},\"progress\":\"[================================\\u003e
454
- \ ] 3.79 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3855200,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=================================\\u003e
455
- \ ] 3.855 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3920736,\"total\":5742080,\"start\":1423702493},\"progress\":\"[==================================\\u003e
456
- \ ] 3.921 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":3986272,\"total\":5742080,\"start\":1423702493},\"progress\":\"[==================================\\u003e
457
- \ ] 3.986 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4051808,\"total\":5742080,\"start\":1423702493},\"progress\":\"[===================================\\u003e
458
- \ ] 4.052 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4117344,\"total\":5742080,\"start\":1423702493},\"progress\":\"[===================================\\u003e
459
- \ ] 4.117 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4182880,\"total\":5742080,\"start\":1423702493},\"progress\":\"[====================================\\u003e
460
- \ ] 4.183 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4248416,\"total\":5742080,\"start\":1423702493},\"progress\":\"[====================================\\u003e
461
- \ ] 4.248 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4313952,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=====================================\\u003e
462
- \ ] 4.314 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4379488,\"total\":5742080,\"start\":1423702493},\"progress\":\"[======================================\\u003e
463
- \ ] 4.379 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4445024,\"total\":5742080,\"start\":1423702493},\"progress\":\"[======================================\\u003e
464
- \ ] 4.445 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4510560,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=======================================\\u003e
465
- \ ] 4.511 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4576096,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=======================================\\u003e
466
- \ ] 4.576 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4641632,\"total\":5742080,\"start\":1423702493},\"progress\":\"[========================================\\u003e
467
- \ ] 4.642 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4707168,\"total\":5742080,\"start\":1423702493},\"progress\":\"[========================================\\u003e
468
- \ ] 4.707 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4772704,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=========================================\\u003e
469
- \ ] 4.773 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4838240,\"total\":5742080,\"start\":1423702493},\"progress\":\"[==========================================\\u003e
470
- \ ] 4.838 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4903776,\"total\":5742080,\"start\":1423702493},\"progress\":\"[==========================================\\u003e
471
- \ ] 4.904 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":4969312,\"total\":5742080,\"start\":1423702493},\"progress\":\"[===========================================\\u003e
472
- \ ] 4.969 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5034848,\"total\":5742080,\"start\":1423702493},\"progress\":\"[===========================================\\u003e
473
- \ ] 5.035 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5100384,\"total\":5742080,\"start\":1423702493},\"progress\":\"[============================================\\u003e
474
- \ ] 5.1 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5165920,\"total\":5742080,\"start\":1423702493},\"progress\":\"[============================================\\u003e
475
- \ ] 5.166 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5231456,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=============================================\\u003e
476
- \ ] 5.231 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5296992,\"total\":5742080,\"start\":1423702493},\"progress\":\"[==============================================\\u003e
477
- \ ] 5.297 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5362528,\"total\":5742080,\"start\":1423702493},\"progress\":\"[==============================================\\u003e
478
- \ ] 5.363 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5428064,\"total\":5742080,\"start\":1423702493},\"progress\":\"[===============================================\\u003e
479
- \ ] 5.428 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5493600,\"total\":5742080,\"start\":1423702493},\"progress\":\"[===============================================\\u003e
480
- \ ] 5.494 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5559136,\"total\":5742080,\"start\":1423702493},\"progress\":\"[================================================\\u003e
481
- \ ] 5.559 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5624672,\"total\":5742080,\"start\":1423702493},\"progress\":\"[================================================\\u003e
482
- \ ] 5.625 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5690208,\"total\":5742080,\"start\":1423702493},\"progress\":\"[=================================================\\u003e
483
- ] 5.69 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Downloading\",\"progressDetail\":{\"current\":5742080,\"total\":5742080,\"start\":1423702493},\"progress\":\"[==================================================\\u003e]
484
- 5.742 MB/5.742 MB\",\"id\":\"e8a999563c47\"}{\"status\":\"Download complete\",\"progressDetail\":{},\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":65536,\"total\":5742080,\"start\":1423702494},\"progress\":\"[\\u003e
485
- \ ] 65.54 kB/5.742 MB 16s\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":131072,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=\\u003e
486
- \ ] 131.1 kB/5.742 MB 8s\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":196608,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=\\u003e
487
- \ ] 196.6 kB/5.742 MB 5s\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":262144,\"total\":5742080,\"start\":1423702494},\"progress\":\"[==\\u003e
488
- \ ] 262.1 kB/5.742 MB 4s\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":327680,\"total\":5742080,\"start\":1423702494},\"progress\":\"[==\\u003e
489
- \ ] 327.7 kB/5.742 MB 3s\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":393216,\"total\":5742080,\"start\":1423702494},\"progress\":\"[===\\u003e
490
- \ ] 393.2 kB/5.742 MB 2s\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":458752,\"total\":5742080,\"start\":1423702494},\"progress\":\"[===\\u003e
491
- \ ] 458.8 kB/5.742 MB 2s\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":524288,\"total\":5742080,\"start\":1423702494},\"progress\":\"[====\\u003e
492
- \ ] 524.3 kB/5.742 MB 2s\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":589824,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=====\\u003e
493
- \ ] 589.8 kB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":655360,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=====\\u003e
494
- \ ] 655.4 kB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":720896,\"total\":5742080,\"start\":1423702494},\"progress\":\"[======\\u003e
495
- \ ] 720.9 kB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":786432,\"total\":5742080,\"start\":1423702494},\"progress\":\"[======\\u003e
496
- \ ] 786.4 kB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":851968,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=======\\u003e
497
- \ ] 852 kB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":917504,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=======\\u003e
498
- \ ] 917.5 kB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":983040,\"total\":5742080,\"start\":1423702494},\"progress\":\"[========\\u003e
499
- \ ] 983 kB/5.742 MB 1s\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1048576,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=========\\u003e
500
- \ ] 1.049 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1114112,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=========\\u003e
501
- \ ] 1.114 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1179648,\"total\":5742080,\"start\":1423702494},\"progress\":\"[==========\\u003e
502
- \ ] 1.18 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1245184,\"total\":5742080,\"start\":1423702494},\"progress\":\"[==========\\u003e
503
- \ ] 1.245 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1310720,\"total\":5742080,\"start\":1423702494},\"progress\":\"[===========\\u003e
504
- \ ] 1.311 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1376256,\"total\":5742080,\"start\":1423702494},\"progress\":\"[===========\\u003e
505
- \ ] 1.376 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1441792,\"total\":5742080,\"start\":1423702494},\"progress\":\"[============\\u003e
506
- \ ] 1.442 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1507328,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=============\\u003e
507
- \ ] 1.507 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1572864,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=============\\u003e
508
- \ ] 1.573 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1638400,\"total\":5742080,\"start\":1423702494},\"progress\":\"[==============\\u003e
509
- \ ] 1.638 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1703936,\"total\":5742080,\"start\":1423702494},\"progress\":\"[==============\\u003e
510
- \ ] 1.704 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1769472,\"total\":5742080,\"start\":1423702494},\"progress\":\"[===============\\u003e
511
- \ ] 1.769 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1835008,\"total\":5742080,\"start\":1423702494},\"progress\":\"[===============\\u003e
512
- \ ] 1.835 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1900544,\"total\":5742080,\"start\":1423702494},\"progress\":\"[================\\u003e
513
- \ ] 1.901 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1966080,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=================\\u003e
514
- \ ] 1.966 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2031616,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=================\\u003e
515
- \ ] 2.032 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2097152,\"total\":5742080,\"start\":1423702494},\"progress\":\"[==================\\u003e
516
- \ ] 2.097 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2162688,\"total\":5742080,\"start\":1423702494},\"progress\":\"[==================\\u003e
517
- \ ] 2.163 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2228224,\"total\":5742080,\"start\":1423702494},\"progress\":\"[===================\\u003e
518
- \ ] 2.228 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2293760,\"total\":5742080,\"start\":1423702494},\"progress\":\"[===================\\u003e
519
- \ ] 2.294 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2359296,\"total\":5742080,\"start\":1423702494},\"progress\":\"[====================\\u003e
520
- \ ] 2.359 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2424832,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=====================\\u003e
521
- \ ] 2.425 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2490368,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=====================\\u003e
522
- \ ] 2.49 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2555904,\"total\":5742080,\"start\":1423702494},\"progress\":\"[======================\\u003e
523
- \ ] 2.556 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2621440,\"total\":5742080,\"start\":1423702494},\"progress\":\"[======================\\u003e
524
- \ ] 2.621 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2686976,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=======================\\u003e
525
- \ ] 2.687 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2752512,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=======================\\u003e
526
- \ ] 2.753 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2818048,\"total\":5742080,\"start\":1423702494},\"progress\":\"[========================\\u003e
527
- \ ] 2.818 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2883584,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=========================\\u003e
528
- \ ] 2.884 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":2949120,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=========================\\u003e
529
- \ ] 2.949 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3014656,\"total\":5742080,\"start\":1423702494},\"progress\":\"[==========================\\u003e
530
- \ ] 3.015 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3080192,\"total\":5742080,\"start\":1423702494},\"progress\":\"[==========================\\u003e
531
- \ ] 3.08 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3145728,\"total\":5742080,\"start\":1423702494},\"progress\":\"[===========================\\u003e
532
- \ ] 3.146 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3211264,\"total\":5742080,\"start\":1423702494},\"progress\":\"[===========================\\u003e
533
- \ ] 3.211 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3276800,\"total\":5742080,\"start\":1423702494},\"progress\":\"[============================\\u003e
534
- \ ] 3.277 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3342336,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=============================\\u003e
535
- \ ] 3.342 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3407872,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=============================\\u003e
536
- \ ] 3.408 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3473408,\"total\":5742080,\"start\":1423702494},\"progress\":\"[==============================\\u003e
537
- \ ] 3.473 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3538944,\"total\":5742080,\"start\":1423702494},\"progress\":\"[==============================\\u003e
538
- \ ] 3.539 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3604480,\"total\":5742080,\"start\":1423702494},\"progress\":\"[===============================\\u003e
539
- \ ] 3.604 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3670016,\"total\":5742080,\"start\":1423702494},\"progress\":\"[===============================\\u003e
540
- \ ] 3.67 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3735552,\"total\":5742080,\"start\":1423702494},\"progress\":\"[================================\\u003e
541
- \ ] 3.736 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3801088,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=================================\\u003e
542
- \ ] 3.801 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3866624,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=================================\\u003e
543
- \ ] 3.867 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3932160,\"total\":5742080,\"start\":1423702494},\"progress\":\"[==================================\\u003e
544
- \ ] 3.932 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":3997696,\"total\":5742080,\"start\":1423702494},\"progress\":\"[==================================\\u003e
545
- \ ] 3.998 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4063232,\"total\":5742080,\"start\":1423702494},\"progress\":\"[===================================\\u003e
546
- \ ] 4.063 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4128768,\"total\":5742080,\"start\":1423702494},\"progress\":\"[===================================\\u003e
547
- \ ] 4.129 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4194304,\"total\":5742080,\"start\":1423702494},\"progress\":\"[====================================\\u003e
548
- \ ] 4.194 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4259840,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=====================================\\u003e
549
- \ ] 4.26 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4325376,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=====================================\\u003e
550
- \ ] 4.325 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4390912,\"total\":5742080,\"start\":1423702494},\"progress\":\"[======================================\\u003e
551
- \ ] 4.391 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4456448,\"total\":5742080,\"start\":1423702494},\"progress\":\"[======================================\\u003e
552
- \ ] 4.456 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4521984,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=======================================\\u003e
553
- \ ] 4.522 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4587520,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=======================================\\u003e
554
- \ ] 4.588 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4653056,\"total\":5742080,\"start\":1423702494},\"progress\":\"[========================================\\u003e
555
- \ ] 4.653 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4718592,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=========================================\\u003e
556
- \ ] 4.719 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4784128,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=========================================\\u003e
557
- \ ] 4.784 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4849664,\"total\":5742080,\"start\":1423702494},\"progress\":\"[==========================================\\u003e
558
- \ ] 4.85 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4915200,\"total\":5742080,\"start\":1423702494},\"progress\":\"[==========================================\\u003e
559
- \ ] 4.915 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":4980736,\"total\":5742080,\"start\":1423702494},\"progress\":\"[===========================================\\u003e
560
- \ ] 4.981 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5046272,\"total\":5742080,\"start\":1423702494},\"progress\":\"[===========================================\\u003e
561
- \ ] 5.046 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5111808,\"total\":5742080,\"start\":1423702494},\"progress\":\"[============================================\\u003e
562
- \ ] 5.112 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5177344,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=============================================\\u003e
563
- \ ] 5.177 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5242880,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=============================================\\u003e
564
- \ ] 5.243 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5308416,\"total\":5742080,\"start\":1423702494},\"progress\":\"[==============================================\\u003e
565
- \ ] 5.308 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5373952,\"total\":5742080,\"start\":1423702494},\"progress\":\"[==============================================\\u003e
566
- \ ] 5.374 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5439488,\"total\":5742080,\"start\":1423702494},\"progress\":\"[===============================================\\u003e
567
- \ ] 5.439 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5505024,\"total\":5742080,\"start\":1423702494},\"progress\":\"[===============================================\\u003e
568
- \ ] 5.505 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5570560,\"total\":5742080,\"start\":1423702494},\"progress\":\"[================================================\\u003e
569
- \ ] 5.571 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5636096,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=================================================\\u003e
570
- ] 5.636 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":5701632,\"total\":5742080,\"start\":1423702494},\"progress\":\"[=================================================\\u003e
571
- ] 5.702 MB/5.742 MB 0\",\"id\":\"e8a999563c47\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"e8a999563c47\"}{\"status\":\"Extracting\",\"progressDetail\":{\"current\":1024,\"total\":1024,\"start\":1423702494},\"progress\":\"[==================================================\\u003e]
572
- 1.024 kB/1.024 kB\",\"id\":\"f6169d24347d\"}{\"status\":\"Pull complete\",\"progressDetail\":{},\"id\":\"f6169d24347d\"}{\"status\":\"Status:
573
- Downloaded newer image for busybox\"}\r\n"
574
- http_version:
575
- recorded_at: Thu, 12 Feb 2015 00:54:54 GMT
576
- - request:
577
- method: delete
578
- uri: <DOCKER_HOST>/v1.16/images/f6169d24347d?force=true
579
- body:
580
- encoding: US-ASCII
581
- string: ''
582
- headers:
583
- User-Agent:
584
- - Swipely/Docker-API 1.18.0
585
- Content-Type:
586
- - text/plain
587
- response:
588
- status:
589
- code: 200
590
- message:
591
- headers:
592
- Content-Type:
593
- - application/json
594
- Date:
595
- - Thu, 12 Feb 2015 00:54:55 GMT
596
- Content-Length:
597
- - '198'
598
- body:
599
- encoding: US-ASCII
600
- string: ! '[{"Untagged":"busybox:ubuntu-14.04"}
601
-
602
- ,{"Deleted":"f6169d24347d30de48e4493836bec15c78a34f08cc7f17d6a45a19d68dc283ac"}
603
-
604
- ,{"Deleted":"e8a999563c473139dc74d02eefb7b13ffea63799bc05b8936b9ad7119b37742f"}
605
-
606
- ]'
607
- http_version:
608
- recorded_at: Thu, 12 Feb 2015 00:54:55 GMT
609
- - request:
610
- method: get
611
- uri: <DOCKER_HOST>/v1.16/images/json
612
- body:
613
- encoding: US-ASCII
614
- string: ''
615
- headers:
616
- User-Agent:
617
- - Swipely/Docker-API 1.18.0
618
- Content-Type:
619
- - text/plain
620
- response:
621
- status:
622
- code: 200
623
- message:
624
- headers:
625
- Content-Type:
626
- - application/json
627
- Date:
628
- - Thu, 12 Feb 2015 00:54:55 GMT
629
- Content-Length:
630
- - '1881'
631
- body:
632
- encoding: US-ASCII
633
- string: ! '[{"Created":1423702467,"Id":"c5bc00616537c7ba0f051c7212c2a8777bb50e7e195cc8768090f9075e402f31","ParentId":"c90d655b99b2ec5b7e94d38c87f92dce015c17a313caeaae0e980d9b9bed8444","RepoTags":["\u003cnone\u003e:\u003cnone\u003e"],"Size":0,"VirtualSize":85120773}
634
-
635
- ,{"Created":1423521618,"Id":"a47c4817ef07f98471d0182715891eb87d1b015a6c9a977b1ea766a666e96f49","ParentId":"e41eb64a720e4098e29814b767a769fd2bd19222e0885d8f252c3c64318f51d8","RepoTags":["tianon/true:latest"],"Size":0,"VirtualSize":125}
636
-
637
- ,{"Created":1422480050,"Id":"c55308716b3671d8a238a6c1245a60f66d76a3e1404b7b8b6e5fe0e65bae4943","ParentId":"214c09aed08bbf283bfb334b5a0526fa7e66ccaf667a5feee66d75af6a69bc6f","RepoTags":["registry:latest"],"Size":0,"VirtualSize":418558798}
638
-
639
- ,{"Created":1422379591,"Id":"c90d655b99b2ec5b7e94d38c87f92dce015c17a313caeaae0e980d9b9bed8444","ParentId":"30d39e59ffe287f29a41a3f8bd70734afc8728329e3289945cbdc5bbf07cd980","RepoTags":["debian:wheezy"],"Size":0,"VirtualSize":85120773}
640
-
641
- ,{"Created":1420064641,"Id":"492dad4279bae5bb73648efe9bf467b2cfa8bab1d593595226e3e7a95d9f6c35","ParentId":"2982ec56c8d910121e7594ca7890b062f6d37fadf7575f6a6f3adbabbafac9f5","RepoTags":["busybox:ubuntu-12.04"],"Size":0,"VirtualSize":5454693}
642
-
643
- ,{"Created":1420064636,"Id":"4986bf8c15363d1c5d15512d5266f8777bfba4974ac56e3270e7760f6f0a8125","ParentId":"ea13149945cb6b1e746bf28032f02e9b5a793523481a0a18645fc77ad53c4ea2","RepoTags":["busybox:buildroot-2014.02","busybox:latest"],"Size":0,"VirtualSize":2433303}
644
-
645
- ,{"Created":1420064634,"Id":"2aed48a4e41d3931167146e9b7492aa5639e7f6478be9eac584726ecec6824ed","ParentId":"618b1fc306b06d11e192812ede4c685dcbf886d2a0189e9a552c550fd7663df0","RepoTags":["busybox:buildroot-2013.08.1"],"Size":0,"VirtualSize":2489301}
646
-
647
- ,{"Created":1371157430,"Id":"511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158","ParentId":"","RepoTags":["scratch:latest"],"Size":0,"VirtualSize":0}
648
-
649
- ]'
650
- http_version:
651
- recorded_at: Thu, 12 Feb 2015 00:54:55 GMT
652
- recorded_with: VCR 2.9.2