aws / aws-cli

Universal Command Line Interface for Amazon Web Services
Other
15.36k stars 4.09k forks source link

AWS S3 Sync/Copy (still) fatally fails if timestamp for one file is 'out of range' #1493

Closed ionFish closed 8 years ago

ionFish commented 9 years ago

I initially reported this as issue #855 and it was Closed in January, marked resolved, but the issue still occurs:

# aws s3 sync --only-show-errors /local/dir s3://remote-bucket/dir Could not retrieve file stat of "/local/dir/long/path/to/file.otf": year is out of range

Without --only-show-errors I can see the following:

... Completed 11 part(s) with ... file(s) remaining

Then it terminates.

rayluo commented 9 years ago

Sounds like we will need to do an experiment to reproduce that. @ionFish are you using Linux environment this time? And what is your aws-cli version? If you could also isolate that file to a single directory and then run "aws s3 sync ... --debug", that would be very helpful.

ionFish commented 9 years ago
# uname -a
Linux server 3.16.0-4-amd64 #1 SMP Debian 3.16.7-ckt11-1+deb8u2 (2015-07-17) x86_64 GNU/Linux

# aws --version
aws-cli/1.8.2 Python/2.7.9 Linux/3.16.0-4-amd64

# (sync with debug enabled)
2015-09-09 15:02:52,949 - MainThread - awscli.clidriver - DEBUG - CLI version: aws-cli/1.8.2 Python/2.7.9 Linux/3.16.0-4-amd64, botocore version: 1.2.0
2015-09-09 15:02:52,949 - MainThread - awscli.clidriver - DEBUG - Arguments entered to CLI: ['s3', 'sync', '--debug', '--exclude', '.*', '/redacted', 's3://redacted']
...
2015-09-09 15:03:49,084 - MainThread - awscli.customizations.s3.s3handler - DEBUG - Exception caught during task execution: Could not retrieve file stat of "/redacted/HelveticaNeueLTStd-LtCn.otf": year is out of range
Traceback (most recent call last):
  File "/usr/local/lib/python2.7/dist-packages/awscli/customizations/s3/s3handler.py", line 97, in call
    total_files, total_parts = self._enqueue_tasks(files)
  File "/usr/local/lib/python2.7/dist-packages/awscli/customizations/s3/s3handler.py", line 175, in _enqueue_tasks
    for filename in files:
  File "/usr/local/lib/python2.7/dist-packages/awscli/customizations/s3/fileinfobuilder.py", line 31, in call
    for file_base in files:
  File "/usr/local/lib/python2.7/dist-packages/awscli/customizations/s3/comparator.py", line 79, in call
    src_file = advance_iterator(src_files)
  File "/usr/local/lib/python2.7/dist-packages/awscli/customizations/s3/filters.py", line 114, in call
    for file_info in file_infos:
  File "/usr/local/lib/python2.7/dist-packages/awscli/customizations/s3/filegenerator.py", line 138, in call
    for src_path, size, last_update in file_list:
  File "/usr/local/lib/python2.7/dist-packages/awscli/customizations/s3/filegenerator.py", line 190, in list_files
    for x in self.list_files(file_path, dir_op):
  File "/usr/local/lib/python2.7/dist-packages/awscli/customizations/s3/filegenerator.py", line 190, in list_files
    for x in self.list_files(file_path, dir_op):
  File "/usr/local/lib/python2.7/dist-packages/awscli/customizations/s3/filegenerator.py", line 190, in list_files
    for x in self.list_files(file_path, dir_op):
  File "/usr/local/lib/python2.7/dist-packages/awscli/customizations/s3/filegenerator.py", line 190, in list_files
    for x in self.list_files(file_path, dir_op):
  File "/usr/local/lib/python2.7/dist-packages/awscli/customizations/s3/filegenerator.py", line 190, in list_files
    for x in self.list_files(file_path, dir_op):
  File "/usr/local/lib/python2.7/dist-packages/awscli/customizations/s3/filegenerator.py", line 193, in list_files
    size, last_update = get_file_stat(file_path)
  File "/usr/local/lib/python2.7/dist-packages/awscli/customizations/s3/utils.py", line 222, in get_file_stat
    path, e))
ValueError: Could not retrieve file stat of "/redacted/HelveticaNeueLTStd-LtCn.otf": year is out of range
...

If you need more of the log let me know -- it's 13MB and contains a lot of "confidential" (customer names, project names) information.

antonio-guillen commented 8 years ago

Same problem here

System info:

$ uname -a
Linux ApacheSistemas 3.13.0-55-generic #94-Ubuntu SMP Thu Jun 18 00:27:10 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux
$ aws --version
aws-cli/1.2.9 Python/3.4.0 Linux/3.13.0-55-generic

CLI on debug mode:

$ aws --debug s3 sync /mnt/BKUPRACK/....../Testing/ "s3://test-s3/BACKUP/"
2015-09-25 10:38:13,250 - awscli.clidriver - DEBUG - CLI version: aws-cli/1.2.9 Python/3.4.0 Linux/3.13.0-55-generic, botocore version: 0.29.0
2015-09-25 10:38:13,254 - botocore.hooks - DEBUG - Event building-parameter-table.s3.sync: calling handler <function add_cmd_params at 0x7fe3d030f7b8>
2015-09-25 10:38:13,260 - botocore.service - DEBUG - Creating service object for: s3
2015-09-25 10:38:13,260 - botocore.base - DEBUG - Attempting to load: aws/s3
2015-09-25 10:38:13,338 - botocore.base - DEBUG - Found data file: /usr/lib/python3/dist-packages/botocore/data/aws/s3.json
2015-09-25 10:38:13,339 - botocore.hooks - DEBUG - Event service-created: calling handler <function register_retries_for_service at 0x7fe3d06bf620>
2015-09-25 10:38:13,339 - botocore.handlers - DEBUG - Registering retry handlers for service: Service(s3)
2015-09-25 10:38:13,341 - botocore.hooks - DEBUG - Event creating-endpoint.s3: calling handler <function maybe_switch_to_s3sigv4 at 0x7fe3d06bf730>
2015-09-25 10:38:13,341 - botocore.credentials - INFO - Found credentials in config file.
2015-09-25 10:38:13,525 - awscli.customizations.s3.s3handler - DEBUG - Exception caught during task execution: year is out of range
Traceback (most recent call last):
  File "/usr/share/awscli/awscli/customizations/s3/s3handler.py", line 76, in call
    total_files, total_parts = self._enqueue_tasks(files)
  File "/usr/share/awscli/awscli/customizations/s3/s3handler.py", line 151, in _enqueue_tasks
    for filename in files:
  File "/usr/share/awscli/awscli/customizations/s3/comparator.py", line 84, in call
    src_file = advance_iterator(src_files)
  File "/usr/share/awscli/awscli/customizations/s3/filegenerator.py", line 76, in call
    for src_path, size, last_update in file_list:
  File "/usr/share/awscli/awscli/customizations/s3/filegenerator.py", line 133, in list_files
    for x in self.list_files(file_path, dir_op):
  File "/usr/share/awscli/awscli/customizations/s3/filegenerator.py", line 133, in list_files
    for x in self.list_files(file_path, dir_op):
  File "/usr/share/awscli/awscli/customizations/s3/filegenerator.py", line 136, in list_files
    size, last_update = get_file_stat(file_path)
  File "/usr/share/awscli/awscli/customizations/s3/utils.py", line 91, in get_file_stat
    update_time = datetime.fromtimestamp(stats.st_mtime, tzlocal())
ValueError: year is out of range
2015-09-25 10:38:13,558 - awscli.customizations.s3.executer - DEBUG - Received print task: {'error': True, 'message': 'year is out of range'}
year is out of range
Completed 1 part(s) with ... file(s) remaining
$

Files that cause the problem:

$ tocuh x
$ find /mnt/BKUPRACK/.../Testing -newer x -ls
280535119  116 -------rwx   1 188745304 188744193   116323 sep 14  30828 /mnt/BKUPRACK/..../Testing/001.jpg
280535118   44 -------rwx   1 188745304 188744193    44544 sep 14  30828 /mnt/BKUPRACK/..../Testing/002.xls
147972267   72 -------rwx   1 188745304 188744193    71680 sep 14  30828 /mnt/BKUPRACK/..../Testing/003.doc
558293030   28 -------rwx   1 188745304 188744193    28672 sep 14  30828 /mnt/BKUPRACK/..../Testing/004.xls
600186989   28 -------rwx   1 188745304 188744193    28672 sep 14  30828 /mnt/BKUPRACK/..../Testing/005.xls
385794141   32 -------rwx   1 188745304 188744193    30208 sep 14  30828 /mnt/BKUPRACK/..../Testing/006.xls
433856565   32 -------rwx   1 188745304 188744193    30208 sep 14  30828 /mnt/BKUPRACK/..../Testing/007.xls
354992164   32 -------rwx   1 188745304 188744193    30208 sep 14  30828 /mnt/BKUPRACK/..../Testing/008.xls
354992165  140 -------rwx   1 188745304 188744193   143128 sep 14  30828 /mnt/BKUPRACK/..../Testing/009.jpg
375251053   36 -------rwx   1 188745304 188744193    33280 sep 14  30828 /mnt/BKUPRACK/..../Testing/010.xls
419692637    8 -------rwx   1 188745304 188744193     7168 sep 14  30828 /mnt/BKUPRACK/..../Testing/011.xls
419692636   32 -------rwx   1 188745304 188744193    32768 sep 14  30828 /mnt/BKUPRACK/..../Testing/012.xls

Observe the wrong date file

BrendanThompson commented 8 years ago

I get the same issue, except in my instance it's under a Windows environment. Our linux boxes don't seem to get struck down by this.

dduleep commented 8 years ago

in happen in 1.9.2 please check

windows 2007 32bit

D:\Users\ss>aws s3 sync D:\Users\ss\Desktop\SES\ s3://bucket
Could not retrieve file stat of "D:\Users\ss\Desktop\SES\fitur09.jpg": times
amp out of range for platform localtime()/gmtime() function
upload: Desktop\SES\abc.txt to s3://bucket/abc.txt
Completed 2 part(s) with ... file(s) remaining
2015-11-02 17:48:23,687 - MainThread - awscli.clidriver - DEBUG - CLI version: aws-cli/1.9.2 Python/2.7.9 Windows/7 botocore/1.3.2
2015-11-02 17:48:23,687 - MainThread - awscli.clidriver - DEBUG - Arguments entered to CLI: ['s3', 'sync', 'D:\\Users\\myuser\\Desktop\\SES\\', 's3://duleeptest', '--debug']
2015-11-02 17:48:23,687 - MainThread - botocore.hooks - DEBUG - Event session-initialized: calling handler <function add_scalar_parsers at 0x027ED530>
2015-11-02 17:48:23,687 - MainThread - botocore.hooks - DEBUG - Event session-initialized: calling handler <function inject_assume_role_provider at 0x027CF7F0>
2015-11-02 17:48:23,688 - MainThread - botocore.credentials - DEBUG - Skipping environment variable credential check because profile name was explicitly set.
2015-11-02 17:48:23,688 - MainThread - botocore.hooks - DEBUG - Event building-command-table.s3: calling handler <function add_waiters at 0x027CFDB0>
2015-11-02 17:48:23,688 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.custom.s3.anonymous: calling handler <function uri_param at 0x024CF1B0>
2015-11-02 17:48:23,688 - MainThread - botocore.hooks - DEBUG - Event building-command-table.sync: calling handler <function register_sync_strategies at 0x02608F70>
2015-11-02 17:48:23,688 - MainThread - botocore.hooks - DEBUG - Event building-command-table.sync: calling handler <function add_waiters at 0x027CFDB0>
2015-11-02 17:48:23,688 - MainThread - botocore.hooks - DEBUG - Event building-arg-table.sync: calling handler <bound method SizeOnlySync.add_sync_argument of <awscli.customizations.s3.syncstrategy.sizeonly.SizeOnlySync object at 0x02A57850>>
2015-11-02 17:48:23,688 - MainThread - botocore.hooks - DEBUG - Event building-arg-table.sync: calling handler <bound method ExactTimestampsSync.add_sync_argument of <awscli.customizations.s3.syncstrategy.exacttimestamps.ExactTimestampsSync object at 0x02A57810>>
2015-11-02 17:48:23,688 - MainThread - botocore.hooks - DEBUG - Event building-arg-table.sync: calling handler <bound method DeleteSync.add_sync_argument of <awscli.customizations.s3.syncstrategy.delete.DeleteSync object at 0x02A576D0>>
2015-11-02 17:48:23,690 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.custom.sync.grants: calling handler <function uri_param at 0x024CF1B0>
2015-11-02 17:48:23,690 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.custom.sync.content-language: calling handler <function uri_param at 0x024CF1B0>
2015-11-02 17:48:23,690 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.custom.sync.page-size: calling handler <function uri_param at 0x024CF1B0>
2015-11-02 17:48:23,690 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.custom.sync.anonymous: calling handler <function uri_param at 0x024CF1B0>
2015-11-02 17:48:23,690 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.custom.sync.exact-timestamps: calling handler <function uri_param at 0x024CF1B0>
2015-11-02 17:48:23,690 - MainThread - botocore.hooks - DEBUG - Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthand object at 0x0144E270>
2015-11-02 17:48:23,690 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.custom.sync.paths: calling handler <function uri_param at 0x024CF1B0>
2015-11-02 17:48:23,690 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.custom.sync.anonymous: calling handler <function uri_param at 0x024CF1B0>
2015-11-02 17:48:23,690 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.custom.sync.source-region: calling handler <function uri_param at 0x024CF1B0>
2015-11-02 17:48:23,690 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.custom.sync.content-encoding: calling handler <function uri_param at 0x024CF1B0>
2015-11-02 17:48:23,690 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.custom.sync.content-disposition: calling handler <function uri_param at 0x024CF1B0>
2015-11-02 17:48:23,690 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.custom.sync.cache-control: calling handler <function uri_param at 0x024CF1B0>
2015-11-02 17:48:23,690 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.custom.sync.dryrun: calling handler <function uri_param at 0x024CF1B0>
2015-11-02 17:48:23,690 - MainThread - botocore.hooks - DEBUG - Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthand object at 0x0144E270>
2015-11-02 17:48:23,691 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.custom.sync.expires: calling handler <function uri_param at 0x024CF1B0>
2015-11-02 17:48:23,691 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.custom.sync.content-type: calling handler <function uri_param at 0x024CF1B0>
2015-11-02 17:48:23,691 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.custom.sync.sse: calling handler <function uri_param at 0x024CF1B0>
2015-11-02 17:48:23,691 - MainThread - botocore.hooks - DEBUG - Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthand object at 0x0144E270>
2015-11-02 17:48:23,691 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.custom.sync.only-show-errors: calling handler <function uri_param at 0x024CF1B0>
2015-11-02 17:48:23,691 - MainThread - botocore.hooks - DEBUG - Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthand object at 0x0144E270>
2015-11-02 17:48:23,691 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.custom.sync.size-only: calling handler <function uri_param at 0x024CF1B0>
2015-11-02 17:48:23,691 - MainThread - botocore.hooks - DEBUG - Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthand object at 0x0144E270>
2015-11-02 17:48:23,691 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.custom.sync.quiet: calling handler <function uri_param at 0x024CF1B0>
2015-11-02 17:48:23,691 - MainThread - botocore.hooks - DEBUG - Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthand object at 0x0144E270>
2015-11-02 17:48:23,691 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.custom.sync.acl: calling handler <function uri_param at 0x024CF1B0>
2015-11-02 17:48:23,691 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.custom.sync.storage-class: calling handler <function uri_param at 0x024CF1B0>
2015-11-02 17:48:23,691 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.custom.sync.website-redirect: calling handler <function uri_param at 0x024CF1B0>
2015-11-02 17:48:23,691 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.custom.sync.follow-symlinks: calling handler <function uri_param at 0x024CF1B0>
2015-11-02 17:48:23,691 - MainThread - botocore.hooks - DEBUG - Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthand object at 0x0144E270>
2015-11-02 17:48:23,691 - MainThread - botocore.hooks - DEBUG - Event load-cli-arg.custom.sync.delete: calling handler <function uri_param at 0x024CF1B0>
2015-11-02 17:48:23,691 - MainThread - botocore.hooks - DEBUG - Event process-cli-arg.custom.sync: calling handler <awscli.argprocess.ParamShorthand object at 0x0144E270>
2015-11-02 17:48:23,693 - MainThread - botocore.credentials - DEBUG - Looking for credentials via: env
2015-11-02 17:48:23,693 - MainThread - botocore.credentials - DEBUG - Looking for credentials via: assume-role
2015-11-02 17:48:23,693 - MainThread - botocore.credentials - DEBUG - Looking for credentials via: shared-credentials-file
2015-11-02 17:48:23,693 - MainThread - botocore.credentials - INFO - Found credentials in shared credentials file: ~/.aws/credentials
2015-11-02 17:48:23,710 - MainThread - botocore.client - DEBUG - Registering retry handlers for service: s3
2015-11-02 17:48:23,711 - MainThread - botocore.hooks - DEBUG - Event creating-client-class.s3: calling handler <function add_generate_presigned_post at 0x02307BF0>
2015-11-02 17:48:23,711 - MainThread - botocore.hooks - DEBUG - Event creating-client-class.s3: calling handler <function add_generate_presigned_url at 0x022F74F0>
2015-11-02 17:48:23,736 - MainThread - botocore.endpoint - DEBUG - Setting s3 timeout as (60, 60)
2015-11-02 17:48:23,736 - MainThread - botocore.client - DEBUG - Registering retry handlers for service: s3
2015-11-02 17:48:23,739 - MainThread - botocore.hooks - DEBUG - Event creating-client-class.s3: calling handler <function add_generate_presigned_post at 0x02307BF0>
2015-11-02 17:48:23,739 - MainThread - botocore.hooks - DEBUG - Event creating-client-class.s3: calling handler <function add_generate_presigned_url at 0x022F74F0>
2015-11-02 17:48:23,750 - MainThread - botocore.endpoint - DEBUG - Setting s3 timeout as (60, 60)
2015-11-02 17:48:23,750 - MainThread - botocore.client - DEBUG - Registering retry handlers for service: s3
2015-11-02 17:48:23,750 - MainThread - botocore.hooks - DEBUG - Event creating-client-class.s3: calling handler <function add_generate_presigned_post at 0x02307BF0>
2015-11-02 17:48:23,750 - MainThread - botocore.hooks - DEBUG - Event creating-client-class.s3: calling handler <function add_generate_presigned_url at 0x022F74F0>
2015-11-02 17:48:23,756 - MainThread - botocore.endpoint - DEBUG - Setting s3 timeout as (60, 60)
2015-11-02 17:48:23,757 - MainThread - awscli.customizations.s3.s3handler - DEBUG - Using a multipart threshold of 8388608 and a part size of 8388608
2015-11-02 17:48:23,757 - MainThread - awscli.customizations.s3.executor - DEBUG - Using max queue size for s3 tasks of: 1000
2015-11-02 17:48:23,757 - MainThread - awscli.customizations.s3.s3handler - DEBUG - Using a multipart threshold of 8388608 and a part size of 8388608
2015-11-02 17:48:23,757 - MainThread - awscli.customizations.s3.executor - DEBUG - Using max queue size for s3 tasks of: 2
2015-11-02 17:48:23,757 - MainThread - botocore.hooks - DEBUG - Event choosing-s3-sync-strategy: calling handler <bound method SizeOnlySync.use_sync_strategy of <awscli.customizations.s3.syncstrategy.sizeonly.SizeOnlySync object at 0x02A57850>>
2015-11-02 17:48:23,757 - MainThread - botocore.hooks - DEBUG - Event choosing-s3-sync-strategy: calling handler <bound method ExactTimestampsSync.use_sync_strategy of <awscli.customizations.s3.syncstrategy.exacttimestamps.ExactTimestampsSync object at 0x02A57810>>
2015-11-02 17:48:23,759 - MainThread - botocore.hooks - DEBUG - Event choosing-s3-sync-strategy: calling handler <bound method DeleteSync.use_sync_strategy of <awscli.customizations.s3.syncstrategy.delete.DeleteSync object at 0x02A576D0>>
2015-11-02 17:48:23,759 - MainThread - awscli.customizations.s3.executor - DEBUG - Using a threadpool size of: 10
2015-11-02 17:48:23,763 - MainThread - botocore.hooks - DEBUG - Event before-parameter-build.s3.ListObjects: calling handler <function validate_bucket_name at 0x02313FB0>
2015-11-02 17:48:23,763 - MainThread - botocore.hooks - DEBUG - Event before-call.s3.ListObjects: calling handler <function add_expect_header at 0x0231A1B0>
2015-11-02 17:48:23,763 - MainThread - botocore.endpoint - DEBUG - Making request for <botocore.model.OperationModel object at 0x03567350> (verify_ssl=True) with params: {'body': '', 'url': u'https://s3-us-west-2.amazonaws.com/duleeptest?prefix=&encoding-type=url', 'headers': {'User-Agent': 'aws-cli/1.9.2 Python/2.7.9 Windows/7 botocore/1.3.2'}, 'query_string': {u'prefix': u'', u'encoding-type': 'url'}, 'url_path': u'/duleeptest', 'method': u'GET'}
2015-11-02 17:48:23,763 - MainThread - botocore.hooks - DEBUG - Event request-created.s3.ListObjects: calling handler <bound method S3._sign_request of <botocore.client.S3 object at 0x03567E90>>
2015-11-02 17:48:23,763 - MainThread - botocore.hooks - DEBUG - Event before-sign.s3.ListObjects: calling handler <function fix_s3_host at 0x02034170>
2015-11-02 17:48:23,763 - MainThread - botocore.utils - DEBUG - Checking for DNS compatible bucket for: https://s3-us-west-2.amazonaws.com/duleeptest?prefix=&encoding-type=url
2015-11-02 17:48:23,765 - MainThread - botocore.utils - DEBUG - URI updated to: https://duleeptest.s3.amazonaws.com/?prefix=&encoding-type=url
2015-11-02 17:48:23,765 - MainThread - botocore.auth - DEBUG - Calculating signature using hmacv1 auth.
2015-11-02 17:48:23,765 - MainThread - botocore.auth - DEBUG - HTTP request method: GET
2015-11-02 17:48:23,765 - MainThread - botocore.auth - DEBUG - StringToSign:
GET

Mon, 02 Nov 2015 14:48:23 GMT
/duleeptest/
2015-11-02 17:48:23,766 - MainThread - botocore.endpoint - DEBUG - Sending http request: <PreparedRequest [GET]>
2015-11-02 17:48:23,766 - MainThread - botocore.vendored.requests.packages.urllib3.connectionpool - INFO - Starting new HTTPS connection (1): duleeptest.s3.amazonaws.com
2015-11-02 17:48:26,624 - MainThread - botocore.vendored.requests.packages.urllib3.connectionpool - DEBUG - "GET /?prefix=&encoding-type=url HTTP/1.1" 200 None
2015-11-02 17:48:27,174 - MainThread - botocore.parsers - DEBUG - Response headers: {'x-amz-bucket-region': 'us-west-2', 'x-amz-id-2': 'e7NQtH5SkwiyfDKCLCti8OIyHJI/dfVdSEfqa6Vy6w+OvEbCUEKhH+9izKQWs5S+uvq+jjaD1ts=', 'server': 'AmazonS3', 'transfer-encoding': 'chunked', 'x-amz-request-id': '1A31EC4516A24354', 'date': 'Mon, 02 Nov 2015 14:48:27 GMT', 'content-type': 'application/xml'}
2015-11-02 17:48:27,174 - MainThread - botocore.parsers - DEBUG - Response body:
<?xml version="1.0" encoding="UTF-8"?>
<ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>duleeptest</Name><Prefix></Prefix><Marker></Marker><MaxKeys>1000</MaxKeys><EncodingType>url</EncodingType><IsTruncated>false</IsTruncated><Contents><Key>abc.txt</Key><LastModified>2015-11-02T14:38:28.000Z</LastModified><ETag>&quot;ef86dfc8a37b0348ea2431ab55e1428c&quot;</ETag><Size>213</Size><Owner><ID>8dbdaad5c56f21f0daca66ca4dbb36dc80db6d671a9539ea5103103ac2774df6</ID><DisplayName>gvarughese</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-10-26-02-27-37-D6E399A4D2E9FA64</Key><LastModified>2015-10-26T02:27:39.000Z</LastModified><ETag>&quot;18fb7cb303aaa24301e529e3bd038368&quot;</ETag><Size>369</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-05-17-36-4CACF04F20878275</Key><LastModified>2015-11-02T05:17:37.000Z</LastModified><ETag>&quot;b7598e16d0af1a7dbca65dcfa9101c10&quot;</ETag><Size>8099</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-05-17-57-FBB77DDAD1FF01BB</Key><LastModified>2015-11-02T05:17:58.000Z</LastModified><ETag>&quot;e160431e651a528d50b0800adbcfb373&quot;</ETag><Size>4026</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-05-18-19-D8983AB6929FC306</Key><LastModified>2015-11-02T05:18:20.000Z</LastModified><ETag>&quot;889df9dce06fabf9c30ff8abbe67274c&quot;</ETag><Size>43284</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-05-18-19-E248F106D6227769</Key><LastModified>2015-11-02T05:18:20.000Z</LastModified><ETag>&quot;3b654e3b45f251fbfa283ae71f698c4a&quot;</ETag><Size>30810</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-05-20-38-67ABC8EB47ED9F17</Key><LastModified>2015-11-02T05:20:39.000Z</LastModified><ETag>&quot;3c12fb53ecdb33583bcea9c4d1b543f4&quot;</ETag><Size>35185</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-05-21-11-C0F3E1F85B054BFD</Key><LastModified>2015-11-02T05:21:12.000Z</LastModified><ETag>&quot;2bf42448a8e1b4b16bb2a9a5daa1854e&quot;</ETag><Size>34404</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-05-21-47-267BF382C240B97A</Key><LastModified>2015-11-02T05:21:48.000Z</LastModified><ETag>&quot;ddb122f17abe868a7cb7333e9276937a&quot;</ETag><Size>297</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-05-23-44-DB0F70CD814A6EC3</Key><LastModified>2015-11-02T05:23:45.000Z</LastModified><ETag>&quot;0ca9227bfac884d4bd66b3ad7ebfd0a2&quot;</ETag><Size>3103</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-05-24-02-A0ADFDC697074225</Key><LastModified>2015-11-02T05:24:03.000Z</LastModified><ETag>&quot;0554b27b6781b53d3f1f561f536537b8&quot;</ETag><Size>34435</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-05-24-03-2563A1979A57F651</Key><LastModified>2015-11-02T05:24:04.000Z</LastModified><ETag>&quot;54d2d690781bc2aef8cf24e982592094&quot;</ETag><Size>21009</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-05-24-31-1924AF325606BFCB</Key><LastModified>2015-11-02T05:24:32.000Z</LastModified><ETag>&quot;98c58df86bf73e12425e8189e31dfe4b&quot;</ETag><Size>12909</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-05-25-14-80FF57670CA04CCD</Key><LastModified>2015-11-02T05:25:15.000Z</LastModified><ETag>&quot;2568a2cd284d749ba2ebdd5e801751f1&quot;</ETag><Size>85575</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-05-28-06-E1782B1A6FE8A7E6</Key><LastModified>2015-11-02T05:28:07.000Z</LastModified><ETag>&quot;e230485fcd95ee9b2fa78070e9a3ef4a&quot;</ETag><Size>10361</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-05-28-38-568C1B8FD54C9217</Key><LastModified>2015-11-02T05:28:39.000Z</LastModified><ETag>&quot;c19d42e32d04962cf26f922407a4bd6e&quot;</ETag><Size>35260</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-05-28-50-6A5E5802D7204499</Key><LastModified>2015-11-02T05:28:51.000Z</LastModified><ETag>&quot;aaae701465f2a463107910ace0a04842&quot;</ETag><Size>47143</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-05-29-01-545F8C89E27D4DB8</Key><LastModified>2015-11-02T05:29:02.000Z</LastModified><ETag>&quot;d312e6de008f6f13e788b312ec352d41&quot;</ETag><Size>13331</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-05-32-38-3433D462D0137957</Key><LastModified>2015-11-02T05:32:39.000Z</LastModified><ETag>&quot;836ec61caf45bf48f3e31bab306e447d&quot;</ETag><Size>297</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-05-35-37-ED45AF45265E7375</Key><LastModified>2015-11-02T05:35:38.000Z</LastModified><ETag>&quot;9f9ae0e1fb38ac8829af0e1eb4495b19&quot;</ETag><Size>284</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-05-38-43-2DB6F135E08D4EA7</Key><LastModified>2015-11-02T05:38:44.000Z</LastModified><ETag>&quot;2a92f6b70740e37e6f5320575f6407a0&quot;</ETag><Size>974</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-05-38-55-669B108D689B56B5</Key><LastModified>2015-11-02T05:38:56.000Z</LastModified><ETag>&quot;c15d4bd2882427cceb70aa6fbe014c63&quot;</ETag><Size>38575</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-05-41-22-930BD5218BAA1CC8</Key><LastModified>2015-11-02T05:41:23.000Z</LastModified><ETag>&quot;dd561f1ef6e9a605f40995bc16688929&quot;</ETag><Size>894</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-05-41-41-6BE9D3A553CF0E94</Key><LastModified>2015-11-02T05:41:42.000Z</LastModified><ETag>&quot;3546a996ec6cf31f735df8d562dd5969&quot;</ETag><Size>8514</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-05-41-49-67D4BA32C177F8FD</Key><LastModified>2015-11-02T05:41:50.000Z</LastModified><ETag>&quot;3281cd89355f6f0a6ed6afbf15f4c716&quot;</ETag><Size>61299</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-05-42-59-C2114C9EE74B237E</Key><LastModified>2015-11-02T05:43:00.000Z</LastModified><ETag>&quot;7dff061ec2a0da73281c761e1c1a6cf4&quot;</ETag><Size>368</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-05-43-04-91602CE569E73EEA</Key><LastModified>2015-11-02T05:43:05.000Z</LastModified><ETag>&quot;1d15c8ec107936b8bdc9774bdd8b11cb&quot;</ETag><Size>20571</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-05-44-21-2B75FC445EF41D52</Key><LastModified>2015-11-02T05:44:22.000Z</LastModified><ETag>&quot;5966e8ffe43859ec9147a776c0e81a32&quot;</ETag><Size>110207</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-05-44-29-3226EC286FD668D6</Key><LastModified>2015-11-02T05:44:30.000Z</LastModified><ETag>&quot;589488fa6579add2478f73526c012578&quot;</ETag><Size>64515</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-05-44-32-868903CC3983DFDB</Key><LastModified>2015-11-02T05:44:33.000Z</LastModified><ETag>&quot;108c4241165add9273caa35f04990302&quot;</ETag><Size>12089</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-05-45-54-90312EABDF979450</Key><LastModified>2015-11-02T05:45:55.000Z</LastModified><ETag>&quot;c2854c182ff8362f4dacb72c1dbd5985&quot;</ETag><Size>368</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-05-45-59-E7EC1D08EB240C5C</Key><LastModified>2015-11-02T05:46:00.000Z</LastModified><ETag>&quot;9d0d9acca95e8e03cca004fc370c4b8f&quot;</ETag><Size>7705</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-05-47-33-975833B20B44EF0E</Key><LastModified>2015-11-02T05:47:34.000Z</LastModified><ETag>&quot;2f6332080b4b18ce906863b3ab62e21c&quot;</ETag><Size>21444</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-17-36-C12A0D512F3BC335</Key><LastModified>2015-11-02T06:17:37.000Z</LastModified><ETag>&quot;166a0fb2cd6e0588154ea66a42536922&quot;</ETag><Size>68415</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-17-37-25D2F2BECC3D4627</Key><LastModified>2015-11-02T06:17:39.000Z</LastModified><ETag>&quot;4f1a0d914793489a817a476c3b45de4d&quot;</ETag><Size>90767</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-17-40-A726AAC4E78364DC</Key><LastModified>2015-11-02T06:17:41.000Z</LastModified><ETag>&quot;916f4b8cc8ec362d642a6910f2bad804&quot;</ETag><Size>16152</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-17-41-4271189F646695E1</Key><LastModified>2015-11-02T06:17:42.000Z</LastModified><ETag>&quot;3b9d8daf69600de908c4017c350a55ae&quot;</ETag><Size>191451</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-17-41-5C8A2E5343C5BF3F</Key><LastModified>2015-11-02T06:17:42.000Z</LastModified><ETag>&quot;2128e410a3fef6a6ba203a4433ec48cf&quot;</ETag><Size>142628</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-17-43-93436F788E5D466C</Key><LastModified>2015-11-02T06:17:44.000Z</LastModified><ETag>&quot;928d767b7039fbaec0ab6bc3e147aa6d&quot;</ETag><Size>134235</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-17-45-6D074FAB1E294D73</Key><LastModified>2015-11-02T06:17:46.000Z</LastModified><ETag>&quot;52f1d8603269e19589d8a26d46050dd3&quot;</ETag><Size>119474</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-18-14-D798194F9E201BDA</Key><LastModified>2015-11-02T06:18:16.000Z</LastModified><ETag>&quot;7f4b38b094ad0c8cd544e30fb3b9c430&quot;</ETag><Size>31315</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-20-33-616B17EF3FC751D0</Key><LastModified>2015-11-02T06:20:34.000Z</LastModified><ETag>&quot;5406680cd7cc3c28adcc5bcc1ac88264&quot;</ETag><Size>64848</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-20-35-AFD9AA1243292188</Key><LastModified>2015-11-02T06:20:36.000Z</LastModified><ETag>&quot;6e49902cda31e7c0e67d8b02956c9b54&quot;</ETag><Size>38901</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-21-17-4D370FCF7F1BA72E</Key><LastModified>2015-11-02T06:21:18.000Z</LastModified><ETag>&quot;2218bcfbec147276cbfb4b258fdc5d0e&quot;</ETag><Size>72809</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-22-15-7E4CB8FDEFF4D009</Key><LastModified>2015-11-02T06:22:16.000Z</LastModified><ETag>&quot;6c3fd01d1f17d8e41fb7f9a69334a739&quot;</ETag><Size>369</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-23-27-25A19AF6CD8DA254</Key><LastModified>2015-11-02T06:23:28.000Z</LastModified><ETag>&quot;17020c22700afaac5ab01a3a9f2a6a10&quot;</ETag><Size>89443</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-23-27-AEA86EE8C48C2B2F</Key><LastModified>2015-11-02T06:23:28.000Z</LastModified><ETag>&quot;88c79e5f3c311de995c3f4f1ed40a1dc&quot;</ETag><Size>446</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-23-56-DB0DB2A38681E65E</Key><LastModified>2015-11-02T06:23:57.000Z</LastModified><ETag>&quot;c6358fdf69de97b35cbab4b4cc9930d8&quot;</ETag><Size>43038</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-24-28-40FBE51B7FA6A86D</Key><LastModified>2015-11-02T06:24:29.000Z</LastModified><ETag>&quot;d421a0512bb627d81f8631698dafe4ff&quot;</ETag><Size>12987</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-24-55-874A7B299CC3D5B4</Key><LastModified>2015-11-02T06:24:56.000Z</LastModified><ETag>&quot;98364ae61a5a417435e58e93150f412a&quot;</ETag><Size>371</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-25-40-BD79C2A9A4574357</Key><LastModified>2015-11-02T06:25:41.000Z</LastModified><ETag>&quot;0bb817b0af8a3ac28087a5a8d6d997b0&quot;</ETag><Size>1109</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-26-18-99175F347C886E72</Key><LastModified>2015-11-02T06:26:19.000Z</LastModified><ETag>&quot;20dd8c47995ec3389084833996c858c2&quot;</ETag><Size>6250</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-26-31-5408B4888D28BF61</Key><LastModified>2015-11-02T06:26:32.000Z</LastModified><ETag>&quot;7d21f53c7a4c0a7c1437e154d7d65759&quot;</ETag><Size>644</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-26-54-09FE2881CFA479AB</Key><LastModified>2015-11-02T06:26:55.000Z</LastModified><ETag>&quot;e92469d6a03818904f42c1f8067b5f85&quot;</ETag><Size>3576</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-27-43-506D47334CCA6D2F</Key><LastModified>2015-11-02T06:27:44.000Z</LastModified><ETag>&quot;fb5d859dfb26a6dea636e7cf25739e79&quot;</ETag><Size>448</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-28-48-9AA38B9327C2713A</Key><LastModified>2015-11-02T06:28:49.000Z</LastModified><ETag>&quot;41ffb00ad93d0a78eab776db539b2d2e&quot;</ETag><Size>370</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-29-13-72DE34DCBD6C656F</Key><LastModified>2015-11-02T06:29:14.000Z</LastModified><ETag>&quot;1a9a504a8509b64f20eaae1166f07254&quot;</ETag><Size>741</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-29-24-116E0CBE468E59DE</Key><LastModified>2015-11-02T06:29:25.000Z</LastModified><ETag>&quot;3515e712caaddd587b6012a59e84a2a2&quot;</ETag><Size>367</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-29-39-1C6A28EB1371DFBF</Key><LastModified>2015-11-02T06:29:40.000Z</LastModified><ETag>&quot;9e265e41b01006954f5ecd2a32854bd7&quot;</ETag><Size>1340</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-29-52-3E230B7712831277</Key><LastModified>2015-11-02T06:29:53.000Z</LastModified><ETag>&quot;2baf9a0d970dd51076b5ae9e9c03c97f&quot;</ETag><Size>372</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-32-02-A4D267AEFCB7C2A9</Key><LastModified>2015-11-02T06:32:03.000Z</LastModified><ETag>&quot;e781f8ce00243907622e0d9ade780d03&quot;</ETag><Size>371</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-32-46-53DC51AE588E01D6</Key><LastModified>2015-11-02T06:32:47.000Z</LastModified><ETag>&quot;5829f68c9129eda11e1db2fc963f81e3&quot;</ETag><Size>736</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-35-37-AFFEFBFC8FBB402C</Key><LastModified>2015-11-02T06:35:38.000Z</LastModified><ETag>&quot;8fa8a507fc9e22681c952748087d7365&quot;</ETag><Size>742</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-35-49-A8C6F5C73DFE2FAA</Key><LastModified>2015-11-02T06:35:50.000Z</LastModified><ETag>&quot;4fda332c9e2e402e3efa45751a558ada&quot;</ETag><Size>740</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-38-53-7D6DDE7661353078</Key><LastModified>2015-11-02T06:38:54.000Z</LastModified><ETag>&quot;c20a00513643a3dc1278a2aef534e715&quot;</ETag><Size>3128</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-39-11-271D28236CCAEBF9</Key><LastModified>2015-11-02T06:39:12.000Z</LastModified><ETag>&quot;d7c2f5b608d3d001a223c0be02515d1c&quot;</ETag><Size>1340</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-39-14-0B8C9DCD75DBF059</Key><LastModified>2015-11-02T06:39:15.000Z</LastModified><ETag>&quot;dab49e7cf551bf9ffe93b1b93a7f941c&quot;</ETag><Size>106688</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-40-36-D1B2E4F8336E2F5B</Key><LastModified>2015-11-02T06:40:37.000Z</LastModified><ETag>&quot;cf95be1584bb723769612afc1c25953d&quot;</ETag><Size>4919</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-41-02-A589EE710BCFB72F</Key><LastModified>2015-11-02T06:41:03.000Z</LastModified><ETag>&quot;bce88f06c9885dfb4283e5021b3672ef&quot;</ETag><Size>20591</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-41-14-6C644C342C90F650</Key><LastModified>2015-11-02T06:41:15.000Z</LastModified><ETag>&quot;71f4eba26090d72dd1bd8198ec5c61ec&quot;</ETag><Size>112193</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-41-47-078E7E1028FFC914</Key><LastModified>2015-11-02T06:41:48.000Z</LastModified><ETag>&quot;ef9c2fca23318505a848c883c863ba20&quot;</ETag><Size>16088</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-42-13-A98D92AB7075E9DB</Key><LastModified>2015-11-02T06:42:14.000Z</LastModified><ETag>&quot;d037822a84a832873ce85f331c99dbb5&quot;</ETag><Size>63325</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-42-45-422E66027C0195ED</Key><LastModified>2015-11-02T06:42:46.000Z</LastModified><ETag>&quot;aa14d0688fc3873d870d5544c5537049&quot;</ETag><Size>1341</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-43-13-6BFF0D38BBB4F5FE</Key><LastModified>2015-11-02T06:43:14.000Z</LastModified><ETag>&quot;96963067bd4eba36a517fe242f307ebd&quot;</ETag><Size>138013</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-43-22-9B7FF75901A582B8</Key><LastModified>2015-11-02T06:43:23.000Z</LastModified><ETag>&quot;540cbd47fd3cf48036f77eb03f82ea62&quot;</ETag><Size>69563</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-43-28-6D9A0E661272B9DD</Key><LastModified>2015-11-02T06:43:30.000Z</LastModified><ETag>&quot;401e89c2ec00011afb0ef0ca27d0ba00&quot;</ETag><Size>102277</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-43-29-832ECEFE4D5326A5</Key><LastModified>2015-11-02T06:43:30.000Z</LastModified><ETag>&quot;45c9d0d3ab442de7f8bed204992412a7&quot;</ETag><Size>62167</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-44-03-664D0915ABD1299E</Key><LastModified>2015-11-02T06:44:04.000Z</LastModified><ETag>&quot;a16afad184c42aee8ac0123811dfaf33&quot;</ETag><Size>309106</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-44-08-11313D771C0ADD03</Key><LastModified>2015-11-02T06:44:09.000Z</LastModified><ETag>&quot;503661b042045d1b04e01a5e85c81b4a&quot;</ETag><Size>1340</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-44-47-72A7C2935BE30FE1</Key><LastModified>2015-11-02T06:44:48.000Z</LastModified><ETag>&quot;5fa89c15a7fa24c7470341181ec0be8e&quot;</ETag><Size>14224</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-45-46-CC71D3F280085A26</Key><LastModified>2015-11-02T06:45:47.000Z</LastModified><ETag>&quot;0010901b7b800fe7ebc4120c095a9ade&quot;</ETag><Size>30764</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-46-13-EA4B5D2A44910874</Key><LastModified>2015-11-02T06:46:14.000Z</LastModified><ETag>&quot;8a181e66eb2b1e1a20efa3bd9675230e&quot;</ETag><Size>124279</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-46-33-DA0BBB08F51BFA4C</Key><LastModified>2015-11-02T06:46:34.000Z</LastModified><ETag>&quot;e9cffc4de90735d3939990f9abc0b4f7&quot;</ETag><Size>5812</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-47-01-47F93714BBCF824D</Key><LastModified>2015-11-02T06:47:02.000Z</LastModified><ETag>&quot;b1574a21772a5d4ef0ac8bce35d4d901&quot;</ETag><Size>1342</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-47-50-E96DF5299AF0E258</Key><LastModified>2015-11-02T06:47:51.000Z</LastModified><ETag>&quot;984ea606f6c2910df2d711eb79efe58b&quot;</ETag><Size>175381</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-49-27-E4975183B66E2C22</Key><LastModified>2015-11-02T06:49:28.000Z</LastModified><ETag>&quot;f23bdef6cba00c286e820565792c95e1&quot;</ETag><Size>17435</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-06-49-51-2D38C9AC58E230A9</Key><LastModified>2015-11-02T06:49:52.000Z</LastModified><ETag>&quot;da1e1b62b2c81eef254d02e3c0c0ad48&quot;</ETag><Size>3576</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-07-17-27-1E7180B0E4BE94DF</Key><LastModified>2015-11-02T07:17:28.000Z</LastModified><ETag>&quot;482c1f49a0d2a2beb75ac36fd205b593&quot;</ETag><Size>737</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-07-17-40-3790096317AD0AE4</Key><LastModified>2015-11-02T07:17:41.000Z</LastModified><ETag>&quot;648f1e3b58b1f430b2622dbc293e8531&quot;</ETag><Size>734</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-07-17-41-159DC2B7FBC38F95</Key><LastModified>2015-11-02T07:17:42.000Z</LastModified><ETag>&quot;6491c841f7c7b1de357c0aeba9f9f36b&quot;</ETag><Size>1112</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-07-17-48-CCE84DD2EB489305</Key><LastModified>2015-11-02T07:17:49.000Z</LastModified><ETag>&quot;c9d39cdf188d2016d4a6bb6f4a17c2e4&quot;</ETag><Size>738</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-07-18-35-828559DD35ADB398</Key><LastModified>2015-11-02T07:18:36.000Z</LastModified><ETag>&quot;52bbb34917eb6b1181a46228a55884e2&quot;</ETag><Size>373</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-07-23-09-EB21F4985DFEC83B</Key><LastModified>2015-11-02T07:23:10.000Z</LastModified><ETag>&quot;a005db92041eba0dc553ac0cc3d54874&quot;</ETag><Size>371</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-07-25-00-C9B2FE8F7A128B3C</Key><LastModified>2015-11-02T07:25:01.000Z</LastModified><ETag>&quot;053861aca41afce3186a32947ef5f03a&quot;</ETag><Size>371</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-07-25-21-C0137E5BB7357219</Key><LastModified>2015-11-02T07:25:22.000Z</LastModified><ETag>&quot;cdcaf0970c4b635d66968fc3fe1e68c9&quot;</ETag><Size>736</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-07-25-25-A1DA17C869CBD489</Key><LastModified>2015-11-02T07:25:26.000Z</LastModified><ETag>&quot;b373de76e0895288b477a3654466650a&quot;</ETag><Size>737</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-07-27-42-7362A231BF9C7816</Key><LastModified>2015-11-02T07:27:43.000Z</LastModified><ETag>&quot;ece6dbf297f75c1c3ab5d90091156a63&quot;</ETag><Size>737</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-07-28-39-0CD18F2DDFD536B2</Key><LastModified>2015-11-02T07:28:41.000Z</LastModified><ETag>&quot;ccb9ff0337b267e546c03b49fb422740&quot;</ETag><Size>369</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-07-28-52-47BD33A93C5020A5</Key><LastModified>2015-11-02T07:28:53.000Z</LastModified><ETag>&quot;f732f547cb30490000678b95f9775f1d&quot;</ETag><Size>744</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-07-29-04-46654A46F53C47F3</Key><LastModified>2015-11-02T07:29:05.000Z</LastModified><ETag>&quot;d1888061ae6df3bdbc4785860b15a865&quot;</ETag><Size>733</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-07-29-51-FF608DE38A572F33</Key><LastModified>2015-11-02T07:29:52.000Z</LastModified><ETag>&quot;4e13a6ccdc1ae3f44c1c7670887b7be3&quot;</ETag><Size>368</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-07-30-15-1F6A54894BF8BE18</Key><LastModified>2015-11-02T07:30:16.000Z</LastModified><ETag>&quot;3303752408b3976ca60d94249989c784&quot;</ETag><Size>740</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-07-31-47-3F047B3282842C0F</Key><LastModified>2015-11-02T07:31:48.000Z</LastModified><ETag>&quot;8f0f9969e703ec148b58fa3c644e4bbb&quot;</ETag><Size>370</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-07-33-15-4F838C87B4F2F20A</Key><LastModified>2015-11-02T07:33:16.000Z</LastModified><ETag>&quot;9330dc866394800d045a702fb910b3bb&quot;</ETag><Size>372</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-07-35-44-CA1608FAA0DE4A0D</Key><LastModified>2015-11-02T07:35:45.000Z</LastModified><ETag>&quot;68d9a115467edfccc53d80a3fd856451&quot;</ETag><Size>370</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-07-36-16-08F3E1FEE554C332</Key><LastModified>2015-11-02T07:36:17.000Z</LastModified><ETag>&quot;492d0fb068cc23533fbb0a773eae6828&quot;</ETag><Size>371</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-07-36-58-4D0BD867D4825FEC</Key><LastModified>2015-11-02T07:36:59.000Z</LastModified><ETag>&quot;e46c0ab3b72c08935562744f1d58b5a4&quot;</ETag><Size>372</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-07-37-38-4C63A7878CC160F3</Key><LastModified>2015-11-02T07:37:39.000Z</LastModified><ETag>&quot;90df644d9a5ea4783d77abd7103e53fc&quot;</ETag><Size>367</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-07-42-36-9B7B2FCC7E2A9503</Key><LastModified>2015-11-02T07:42:37.000Z</LastModified><ETag>&quot;60bffcb01ac1fbecc47f0dced19f5f48&quot;</ETag><Size>1851</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-07-43-19-D0EEED961311265E</Key><LastModified>2015-11-02T07:43:20.000Z</LastModified><ETag>&quot;15c93cc14dba35fd14a7f3f6fb58e857&quot;</ETag><Size>373</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-07-44-25-FD8EA32ACAE6F6D9</Key><LastModified>2015-11-02T07:44:26.000Z</LastModified><ETag>&quot;ddbe7fb8f4b014fab01e5b30905ba7f7&quot;</ETag><Size>372</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-07-44-48-E89EF3F50C90FCBA</Key><LastModified>2015-11-02T07:44:49.000Z</LastModified><ETag>&quot;f0ba29c1af1d9eeb176b94499fc5572b&quot;</ETag><Size>1107</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-07-45-41-9D9E6F0D220E4F4C</Key><LastModified>2015-11-02T07:45:42.000Z</LastModified><ETag>&quot;e33c78cf2b983ca902e8d0cf5d65b092&quot;</ETag><Size>371</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-07-46-54-1164D9E37B46CC42</Key><LastModified>2015-11-02T07:46:55.000Z</LastModified><ETag>&quot;a982dd40302be00c2faf691b5919242c&quot;</ETag><Size>2961</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-07-47-32-8EF0428AF9D9FE58</Key><LastModified>2015-11-02T07:47:33.000Z</LastModified><ETag>&quot;692a0acbfd241526714e2db19d579a6c&quot;</ETag><Size>370</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-07-48-55-76604E82A6E6A91F</Key><LastModified>2015-11-02T07:48:56.000Z</LastModified><ETag>&quot;92dcbcb7820b32d4d290b551bbfb8bdf&quot;</ETag><Size>370</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-07-50-47-93E85320379A3752</Key><LastModified>2015-11-02T07:50:48.000Z</LastModified><ETag>&quot;d41602c97a2d5cdd63c892289560a8bc&quot;</ETag><Size>370</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-08-17-40-99F9E8018CA9021D</Key><LastModified>2015-11-02T08:17:41.000Z</LastModified><ETag>&quot;0f6efc05e433d332bbd5230002e3a75f&quot;</ETag><Size>738</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-08-18-06-BFFED8FF7911201F</Key><LastModified>2015-11-02T08:18:07.000Z</LastModified><ETag>&quot;2906eb362308a82642cd80270c11c4ad&quot;</ETag><Size>369</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-08-18-11-DBFAE5BFC46D4F34</Key><LastModified>2015-11-02T08:18:12.000Z</LastModified><ETag>&quot;7ee745a1c7ae03ebecc30a70b8c8dcae&quot;</ETag><Size>369</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-08-18-15-92287598A56EECF5</Key><LastModified>2015-11-02T08:18:16.000Z</LastModified><ETag>&quot;46248a5afa247d4721470b361e0527d9&quot;</ETag><Size>369</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-08-20-41-C31F3AC1789E53A6</Key><LastModified>2015-11-02T08:20:42.000Z</LastModified><ETag>&quot;f906c1207275a5c83e582b2e5e91e4df&quot;</ETag><Size>369</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-08-22-58-2131037EE734BC86</Key><LastModified>2015-11-02T08:22:59.000Z</LastModified><ETag>&quot;c6208c5413ff5b5e5c8358483e2ec486&quot;</ETag><Size>369</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-08-23-57-973AD6A668CF2552</Key><LastModified>2015-11-02T08:23:58.000Z</LastModified><ETag>&quot;33f8cec55b52bdeb72733bb52390dc18&quot;</ETag><Size>368</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-08-24-10-2DDA6BA592A587DA</Key><LastModified>2015-11-02T08:24:11.000Z</LastModified><ETag>&quot;e2142275ca478bb67fd06d718b75fed9&quot;</ETag><Size>367</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-08-26-50-4FFBDE6449F696E8</Key><LastModified>2015-11-02T08:26:51.000Z</LastModified><ETag>&quot;6e3c2ef8e506b6d6b5959cb25c24e74b&quot;</ETag><Size>369</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-08-35-37-391C3C6E87A6850A</Key><LastModified>2015-11-02T08:35:38.000Z</LastModified><ETag>&quot;5d3981adb591228355d94a393ec8a333&quot;</ETag><Size>368</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-08-35-57-1E60D7FD378FBD97</Key><LastModified>2015-11-02T08:35:58.000Z</LastModified><ETag>&quot;d93029945acc2ff9c22732441d3827e7&quot;</ETag><Size>370</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-08-36-19-1C1BFD63F20895CB</Key><LastModified>2015-11-02T08:36:20.000Z</LastModified><ETag>&quot;e60bfdd6f4b319d62fa41ea277dc57a4&quot;</ETag><Size>367</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-08-38-53-A3E21B286FA3534B</Key><LastModified>2015-11-02T08:38:55.000Z</LastModified><ETag>&quot;a5a1c4190bc884fe9af17774fbcfda9e&quot;</ETag><Size>736</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-08-39-08-67CAA868FD626C24</Key><LastModified>2015-11-02T08:39:09.000Z</LastModified><ETag>&quot;e813e2a11e9f9dfb35517683073f734e&quot;</ETag><Size>369</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-08-40-09-FEAEE65D6560F546</Key><LastModified>2015-11-02T08:40:10.000Z</LastModified><ETag>&quot;868523844d9826d1deb9f46f465e7556&quot;</ETag><Size>370</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-08-41-44-EAF5D9F2846CFA8D</Key><LastModified>2015-11-02T08:41:45.000Z</LastModified><ETag>&quot;9382e63bed9d8597903771649b7683fb&quot;</ETag><Size>367</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-08-42-32-284605589AF1AF9B</Key><LastModified>2015-11-02T08:42:33.000Z</LastModified><ETag>&quot;290db13eaf498e9c5015fc524caf1d14&quot;</ETag><Size>369</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-08-44-39-7949FD9437BC0E6C</Key><LastModified>2015-11-02T08:44:40.000Z</LastModified><ETag>&quot;aa3c98f1a9a0ab0dbc35cc668e94b4c5&quot;</ETag><Size>1106</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-08-45-41-97D826C845CE7089</Key><LastModified>2015-11-02T08:45:42.000Z</LastModified><ETag>&quot;b877ad2b8a72e233e17ec9fdb9386aad&quot;</ETag><Size>738</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-08-46-01-1B98F9A6E84ED8D7</Key><LastModified>2015-11-02T08:46:02.000Z</LastModified><ETag>&quot;6c7d5887f17a0cc1a83086cb279fc99f&quot;</ETag><Size>368</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-08-46-59-17D7E52A978476D8</Key><LastModified>2015-11-02T08:47:00.000Z</LastModified><ETag>&quot;050f27b9ebc38d89456c88f00c00aa30&quot;</ETag><Size>366</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-08-47-38-8530514438DC8519</Key><LastModified>2015-11-02T08:47:39.000Z</LastModified><ETag>&quot;03f6897259c40f38d561690812c78923&quot;</ETag><Size>1106</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-08-49-42-2B42820B33578364</Key><LastModified>2015-11-02T08:49:43.000Z</LastModified><ETag>&quot;b174b8989d7ed0969927c4b18952eb70&quot;</ETag><Size>368</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-09-17-59-60AE8E56E8121DED</Key><LastModified>2015-11-02T09:18:00.000Z</LastModified><ETag>&quot;e54e679976d500922f218588ef9fa4d6&quot;</ETag><Size>737</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-09-18-06-8DEF8BFD216D94D4</Key><LastModified>2015-11-02T09:18:07.000Z</LastModified><ETag>&quot;ac67755930f2b189ac54f08de1a837d0&quot;</ETag><Size>368</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-09-23-28-B43A451A07DB2A84</Key><LastModified>2015-11-02T09:23:29.000Z</LastModified><ETag>&quot;279d275aa24700a28ae4b25748dad0ac&quot;</ETag><Size>368</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-09-26-54-0F0E034BC4FEB405</Key><LastModified>2015-11-02T09:26:55.000Z</LastModified><ETag>&quot;eab688baa51fe43542b2fe706b0330f0&quot;</ETag><Size>368</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-09-26-59-57D24A4D7AB66A84</Key><LastModified>2015-11-02T09:27:00.000Z</LastModified><ETag>&quot;1843b72373c1d40b81af67ebfef61cd9&quot;</ETag><Size>735</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-09-27-24-8E4290697D7313F8</Key><LastModified>2015-11-02T09:27:25.000Z</LastModified><ETag>&quot;9ec8c96fdce57d8d01729d23daed6a02&quot;</ETag><Size>369</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-09-32-43-C45166232CB246B1</Key><LastModified>2015-11-02T09:32:44.000Z</LastModified><ETag>&quot;9802c12b62a98fbe27d6ab5909ce173f&quot;</ETag><Size>735</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-09-35-38-C10D3E60C4DADFD1</Key><LastModified>2015-11-02T09:35:39.000Z</LastModified><ETag>&quot;8746de8115d9e68c76b8af446f760a57&quot;</ETag><Size>369</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-09-36-29-E9ADA4137836F247</Key><LastModified>2015-11-02T09:36:30.000Z</LastModified><ETag>&quot;7d638ec9695d10c0bf3278ebbef757c8&quot;</ETag><Size>1105</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-09-36-35-5959CD8856969E7D</Key><LastModified>2015-11-02T09:36:36.000Z</LastModified><ETag>&quot;1ff84a1e61c3a809824a742a34d7b844&quot;</ETag><Size>738</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-09-38-40-CDA84CEAF70F9F69</Key><LastModified>2015-11-02T09:38:41.000Z</LastModified><ETag>&quot;c3982e3d8a63fc013ced121aba216f8e&quot;</ETag><Size>369</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-09-43-35-B10D02A5E03EBDEA</Key><LastModified>2015-11-02T09:43:36.000Z</LastModified><ETag>&quot;e65cfb4785b1ca0130e831552c03ede1&quot;</ETag><Size>368</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-09-43-58-0B30E323384C93A4</Key><LastModified>2015-11-02T09:43:59.000Z</LastModified><ETag>&quot;784cbac87c6fc9fcae1f342a25094f37&quot;</ETag><Size>368</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-09-46-53-415C98854CD78C4E</Key><LastModified>2015-11-02T09:46:54.000Z</LastModified><ETag>&quot;159ffafb1b16baac1205c12f67a0f08b&quot;</ETag><Size>369</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-09-47-13-5C3AC92A5A7B8BB8</Key><LastModified>2015-11-02T09:47:14.000Z</LastModified><ETag>&quot;94b943a0de08c6c7b7cf56be6b1ca272&quot;</ETag><Size>369</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-09-47-51-DEAE313A25547C6E</Key><LastModified>2015-11-02T09:47:52.000Z</LastModified><ETag>&quot;971ec11c6ed45cf56b85c35a9b9367e1&quot;</ETag><Size>737</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-10-18-06-EAED3BCD8B6A6ADF</Key><LastModified>2015-11-02T10:18:07.000Z</LastModified><ETag>&quot;b862f063000310799c1c1c4cead7fcd1&quot;</ETag><Size>369</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-10-26-12-FA79818DE10775D6</Key><LastModified>2015-11-02T10:26:13.000Z</LastModified><ETag>&quot;af607193f861fd8fd6002aec3c4b42f1&quot;</ETag><Size>739</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-10-26-52-C86B3969355B97D2</Key><LastModified>2015-11-02T10:26:53.000Z</LastModified><ETag>&quot;2ce7f278b517ea8a33cd66bf893d4f2f&quot;</ETag><Size>739</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-10-38-31-ECF22DD43297F3AC</Key><LastModified>2015-11-02T10:38:32.000Z</LastModified><ETag>&quot;a679fd9041f3ad3b9a694b8601d34029&quot;</ETag><Size>370</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-10-38-38-9EB57583A478F8BC</Key><LastModified>2015-11-02T10:38:39.000Z</LastModified><ETag>&quot;2ac22c87043d5ffe3fd823afb22315e4&quot;</ETag><Size>369</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-10-39-33-4C17C503895F15B5</Key><LastModified>2015-11-02T10:39:34.000Z</LastModified><ETag>&quot;d2795f288a6441a4384f8824a7e9de07&quot;</ETag><Size>367</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-10-41-38-CADEF38AE1E79BF9</Key><LastModified>2015-11-02T10:41:39.000Z</LastModified><ETag>&quot;d52ca07cea9afe66b75e7495d4995c2e&quot;</ETag><Size>368</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-10-41-53-CC55FCC03C2A85AF</Key><LastModified>2015-11-02T10:41:54.000Z</LastModified><ETag>&quot;ce8d8494215f34856eaa37394564d4ce&quot;</ETag><Size>736</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-10-43-28-5F753DF167D21B18</Key><LastModified>2015-11-02T10:43:29.000Z</LastModified><ETag>&quot;dd4fd1f9b9f1a6e1a7de69a1008d31a7&quot;</ETag><Size>369</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-10-47-26-F7C3E29F8C353BEF</Key><LastModified>2015-11-02T10:47:27.000Z</LastModified><ETag>&quot;b5d351def058e5ad959174a741ba4cac&quot;</ETag><Size>367</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-10-49-38-80B3F2897F914488</Key><LastModified>2015-11-02T10:49:39.000Z</LastModified><ETag>&quot;007efa9cad8ca1a44bc86b68d6d1e6ff&quot;</ETag><Size>369</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-10-51-20-D62DE0853C475753</Key><LastModified>2015-11-02T10:51:21.000Z</LastModified><ETag>&quot;89b5a0e30dd64065f74ee242bf38978b&quot;</ETag><Size>368</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-10-52-23-58A77929A303721C</Key><LastModified>2015-11-02T10:52:24.000Z</LastModified><ETag>&quot;57479cd00adcd24dd56c0408fd11604a&quot;</ETag><Size>369</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-11-17-30-E714FEEC497E653A</Key><LastModified>2015-11-02T11:17:31.000Z</LastModified><ETag>&quot;f5c38417a84e503841f840c50116c943&quot;</ETag><Size>370</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-11-20-24-E53D1EBCA036EF46</Key><LastModified>2015-11-02T11:20:25.000Z</LastModified><ETag>&quot;b47ad3983662db4c443a3e873445e259&quot;</ETag><Size>370</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-11-24-22-FF08372A641C6BB3</Key><LastModified>2015-11-02T11:24:23.000Z</LastModified><ETag>&quot;728e7a1345f64d4716c89e72f19c1d7e&quot;</ETag><Size>367</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-11-29-37-273FC25367524CC5</Key><LastModified>2015-11-02T11:29:38.000Z</LastModified><ETag>&quot;bdc6b19d89722dc9d46efa858b8b6184&quot;</ETag><Size>738</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-11-35-58-ECFF2F837B08F806</Key><LastModified>2015-11-02T11:35:59.000Z</LastModified><ETag>&quot;e98b8f997c905e7288c5cbb6990b9dbb&quot;</ETag><Size>368</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-11-39-08-BF6C5F72ABF6E3C0</Key><LastModified>2015-11-02T11:39:09.000Z</LastModified><ETag>&quot;d2a1c5250cf168ef24274b66c9eaf1e0&quot;</ETag><Size>369</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-11-40-28-16D0262116BEB843</Key><LastModified>2015-11-02T11:40:29.000Z</LastModified><ETag>&quot;365670f67ba5a679f20b402bad3867d7&quot;</ETag><Size>367</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-11-42-04-174316583293B0AA</Key><LastModified>2015-11-02T11:42:05.000Z</LastModified><ETag>&quot;0b83907223a5d2692a10dc769fd57d57&quot;</ETag><Size>369</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-11-42-44-6473072EA531BFF7</Key><LastModified>2015-11-02T11:42:45.000Z</LastModified><ETag>&quot;d0b6646e9017493c7423577a9929b775&quot;</ETag><Size>369</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-11-46-45-B6AD6CC50B4D1893</Key><LastModified>2015-11-02T11:46:46.000Z</LastModified><ETag>&quot;c6e6a8e39d8ad600f67772b2ac9aeb87&quot;</ETag><Size>368</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-11-49-38-F50559562FD27572</Key><LastModified>2015-11-02T11:49:39.000Z</LastModified><ETag>&quot;f6f108d535a470b406162b92719c2889&quot;</ETag><Size>370</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-11-50-19-C685211F9AD0D6AF</Key><LastModified>2015-11-02T11:50:20.000Z</LastModified><ETag>&quot;1820c108f7ac79d00589650fd8ec1e05&quot;</ETag><Size>369</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-12-17-52-7561E4BF1C5C7F75</Key><LastModified>2015-11-02T12:17:53.000Z</LastModified><ETag>&quot;07e2e7d239ed889cb0465c8c9c962f6d&quot;</ETag><Size>368</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-12-20-29-9351DF5AA47A1699</Key><LastModified>2015-11-02T12:20:30.000Z</LastModified><ETag>&quot;5b4fcc8d6250c70054865548f2563328&quot;</ETag><Size>368</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-12-26-18-C7F2A599210AF78F</Key><LastModified>2015-11-02T12:26:19.000Z</LastModified><ETag>&quot;bbd23e572afe596b2b56a8edc8ff6969&quot;</ETag><Size>367</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-12-29-19-8F33B2A7524FCBD2</Key><LastModified>2015-11-02T12:29:20.000Z</LastModified><ETag>&quot;6e8e83877ed3d843b6af51d16a3f11e4&quot;</ETag><Size>368</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-12-32-00-B804507F17AA8CFF</Key><LastModified>2015-11-02T12:32:01.000Z</LastModified><ETag>&quot;992727035c4cf26a16767c469b664eed&quot;</ETag><Size>738</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-12-32-19-A27DCE117A0DD44D</Key><LastModified>2015-11-02T12:32:20.000Z</LastModified><ETag>&quot;83f39c851cd4db0aa115bdb9de88a1ef&quot;</ETag><Size>368</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-12-34-47-915259BD98AEFBA9</Key><LastModified>2015-11-02T12:34:49.000Z</LastModified><ETag>&quot;1018c2f204f80cc31ac9a1f94f59a7d5&quot;</ETag><Size>581</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-12-38-10-417D26D84B41642A</Key><LastModified>2015-11-02T12:38:11.000Z</LastModified><ETag>&quot;450ac54f9de2b7d43ec9945aa098260a&quot;</ETag><Size>368</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-12-41-37-825F7F156723966D</Key><LastModified>2015-11-02T12:41:38.000Z</LastModified><ETag>&quot;c3c5b66c2d9c745487024447024d6489&quot;</ETag><Size>737</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-12-45-22-1813FA37B5D1CCA5</Key><LastModified>2015-11-02T12:45:23.000Z</LastModified><ETag>&quot;1ae3e388601a1782c713bcb631729f40&quot;</ETag><Size>368</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-12-45-49-A35DFA824A09EEB6</Key><LastModified>2015-11-02T12:45:50.000Z</LastModified><ETag>&quot;043efb2635d3fe5ce35a24b74cf50d4c&quot;</ETag><Size>369</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-13-17-45-E1A28C367652D7B9</Key><LastModified>2015-11-02T13:17:46.000Z</LastModified><ETag>&quot;28d202bfdddfe43f0648f42e68bce2a1&quot;</ETag><Size>368</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-13-18-29-C1C37641CC37D94A</Key><LastModified>2015-11-02T13:18:30.000Z</LastModified><ETag>&quot;89fa6c11f8a78246ee45027a4940f053&quot;</ETag><Size>368</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-13-41-04-75A468BF5EC4C4E9</Key><LastModified>2015-11-02T13:41:05.000Z</LastModified><ETag>&quot;a5dd8c419bb40f5521dbbd6258f0027a&quot;</ETag><Size>366</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-13-43-48-94D04F38F7341846</Key><LastModified>2015-11-02T13:43:49.000Z</LastModified><ETag>&quot;ae7ccd2f3d44a569535c13989d44901d&quot;</ETag><Size>368</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-13-45-07-DB2DF61D6BEB31D0</Key><LastModified>2015-11-02T13:45:08.000Z</LastModified><ETag>&quot;ee5741734616524e0119b932785b7414&quot;</ETag><Size>368</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-13-47-00-0833E7C7E5B4260F</Key><LastModified>2015-11-02T13:47:01.000Z</LastModified><ETag>&quot;2ea732e9e1841d4faa62e04e9d51b6c6&quot;</ETag><Size>737</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-13-47-03-84C1635056145C83</Key><LastModified>2015-11-02T13:47:04.000Z</LastModified><ETag>&quot;1d3aa6eae4b30c6b6a229c88c2a3027d&quot;</ETag><Size>367</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-13-47-38-505CD6CBF19D0669</Key><LastModified>2015-11-02T13:47:39.000Z</LastModified><ETag>&quot;704ccce2dff4e043614390b3e52209b8&quot;</ETag><Size>735</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-13-50-02-2635667850C28054</Key><LastModified>2015-11-02T13:50:03.000Z</LastModified><ETag>&quot;651770d5a81433cd8042a193f000efd8&quot;</ETag><Size>368</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-14-17-52-0A239D5D468FB884</Key><LastModified>2015-11-02T14:17:53.000Z</LastModified><ETag>&quot;416be71873d0adb7f95f3445eec60375&quot;</ETag><Size>370</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-14-25-03-6C9AB67807A710E1</Key><LastModified>2015-11-02T14:25:05.000Z</LastModified><ETag>&quot;81d3e01391dc980e9d64e212db6d6f9b&quot;</ETag><Size>297</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-14-26-43-B3142331F2AC585E</Key><LastModified>2015-11-02T14:26:45.000Z</LastModified><ETag>&quot;2062e9c4e38dd75abeb18c14cf0fc83e&quot;</ETag><Size>369</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-14-35-52-A9651347A3AE57E7</Key><LastModified>2015-11-02T14:35:53.000Z</LastModified><ETag>&quot;d3e1ecb22a05049fca7702588b4e5b3c&quot;</ETag><Size>368</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-14-43-26-ECD43967D7359018</Key><LastModified>2015-11-02T14:43:27.000Z</LastModified><ETag>&quot;f4f2e5f7e0c650786d286f1b1dad4f18&quot;</ETag><Size>735</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-14-43-52-DA14399B4B6F1BC5</Key><LastModified>2015-11-02T14:43:53.000Z</LastModified><ETag>&quot;04e9bddbe7abeec6c443cce2f3abadfd&quot;</ETag><Size>369</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-14-44-26-90C8A1A8A48CD48A</Key><LastModified>2015-11-02T14:44:27.000Z</LastModified><ETag>&quot;5513acc1c005e5883f8dc00de7041d67&quot;</ETag><Size>369</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents><Contents><Key>logs/2015-11-02-14-45-26-62C54095F9407A18</Key><LastModified>2015-11-02T14:45:27.000Z</LastModified><ETag>&quot;12b9b1c38603fbd407f04c5686aaa7d9&quot;</ETag><Size>736</Size><Owner><ID>3272ee65a908a7677109fedda345db8d9554ba26398b2ca10581de88777e2b61</ID><DisplayName>s3-log-service</DisplayName></Owner><StorageClass>STANDARD</StorageClass></Contents></ListBucketResult>
2015-11-02 17:48:27,203 - MainThread - botocore.hooks - DEBUG - Event needs-retry.s3.ListObjects: calling handler <botocore.retryhandler.RetryHandler object at 0x036C30D0>
2015-11-02 17:48:27,203 - MainThread - botocore.retryhandler - DEBUG - No retry needed.
2015-11-02 17:48:27,203 - MainThread - botocore.hooks - DEBUG - Event after-call.s3.ListObjects: calling handler <bound method BucketLister._decode_keys of <awscli.customizations.s3.utils.BucketLister object at 0x037194F0>>
2015-11-02 17:48:27,203 - MainThread - botocore.hooks - DEBUG - Event after-call.s3.ListObjects: calling handler <function enhance_error_msg at 0x027CB370>
2015-11-02 17:48:27,203 - MainThread - botocore.hooks - DEBUG - Event after-call.s3.ListObjects: calling handler <awscli.errorhandler.ErrorHandler object at 0x027FE690>
2015-11-02 17:48:27,203 - MainThread - awscli.errorhandler - DEBUG - HTTP Response Code: 200
2015-11-02 17:48:27,203 - MainThread - awscli.customizations.s3.s3handler - DEBUG - Exception caught during task execution: Could not retrieve file stat of "D:\Users\myuser\Desktop\SES\fitur09.jpg": timestamp out of range for platform localtime()/gmtime() function
Traceback (most recent call last):
  File "awscli\customizations\s3\s3handler.pyc", line 97, in call
  File "awscli\customizations\s3\s3handler.pyc", line 175, in _enqueue_tasks
  File "awscli\customizations\s3\fileinfobuilder.pyc", line 31, in call
  File "awscli\customizations\s3\comparator.pyc", line 79, in call
  File "awscli\customizations\s3\filegenerator.pyc", line 138, in call
  File "awscli\customizations\s3\filegenerator.pyc", line 193, in list_files
  File "awscli\customizations\s3\utils.pyc", line 223, in get_file_stat
ValueError: Could not retrieve file stat of "D:\Users\myuser\Desktop\SES\fitur09.jpg": timestamp out of range for platform localtime()/gmtime() function
2015-11-02 17:48:27,203 - MainThread - awscli.customizations.s3.executor - DEBUG - Queueing end sentinel for worker thread (priority: 1)
2015-11-02 17:48:27,204 - MainThread - awscli.customizations.s3.executor - DEBUG - Queueing end sentinel for worker thread (priority: 1)
2015-11-02 17:48:27,204 - Thread-1 - awscli.customizations.s3.executor - DEBUG - Received print task: PrintTask(message='Could not retrieve file stat of "D:\\Users\\myuser\\Desktop\\SES\\fitur09.jpg": timestamp out of range for platform localtime()/gmtime() function', error=True, total_parts=None, warning=None)
Could not retrieve file stat of "D:\Users\myuser\Desktop\SES\fitur09.jpg": timestamp out of range for platform localtime()/gmtime() function
2015-11-02 17:48:27,206 - Thread-5 - awscli.customizations.s3.executor - DEBUG - Shutdown request received in worker thread, shutting down worker thread.
Completed 1 part(s) with ... file(s) remaining
2015-11-02 17:48:27,206 - MainThread - awscli.customizations.s3.executor - DEBUG - Queueing end sentinel for worker thread (priority: 1)
2015-11-02 17:48:27,207 - Thread-6 - awscli.customizations.s3.executor - DEBUG - Shutdown request received in worker thread, shutting down worker thread.
2015-11-02 17:48:27,207 - MainThread - awscli.customizations.s3.executor - DEBUG - Queueing end sentinel for worker thread (priority: 1)
2015-11-02 17:48:27,207 - Thread-7 - awscli.customizations.s3.executor - DEBUG - Shutdown request received in worker thread, shutting down worker thread.
2015-11-02 17:48:27,207 - MainThread - awscli.customizations.s3.executor - DEBUG - Queueing end sentinel for worker thread (priority: 1)
2015-11-02 17:48:27,207 - Thread-8 - awscli.customizations.s3.executor - DEBUG - Shutdown request received in worker thread, shutting down worker thread.
2015-11-02 17:48:27,207 - MainThread - awscli.customizations.s3.executor - DEBUG - Queueing end sentinel for worker thread (priority: 1)
2015-11-02 17:48:27,207 - Thread-9 - awscli.customizations.s3.executor - DEBUG - Shutdown request received in worker thread, shutting down worker thread.
2015-11-02 17:48:27,207 - MainThread - awscli.customizations.s3.executor - DEBUG - Queueing end sentinel for worker thread (priority: 1)
2015-11-02 17:48:27,207 - Thread-10 - awscli.customizations.s3.executor - DEBUG - Shutdown request received in worker thread, shutting down worker thread.
2015-11-02 17:48:27,207 - MainThread - awscli.customizations.s3.executor - DEBUG - Queueing end sentinel for worker thread (priority: 1)
2015-11-02 17:48:27,207 - Thread-11 - awscli.customizations.s3.executor - DEBUG - Shutdown request received in worker thread, shutting down worker thread.
2015-11-02 17:48:27,209 - MainThread - awscli.customizations.s3.executor - DEBUG - Queueing end sentinel for worker thread (priority: 1)
2015-11-02 17:48:27,209 - Thread-12 - awscli.customizations.s3.executor - DEBUG - Shutdown request received in worker thread, shutting down worker thread.
2015-11-02 17:48:27,209 - MainThread - awscli.customizations.s3.executor - DEBUG - Queueing end sentinel for worker thread (priority: 1)
2015-11-02 17:48:27,209 - Thread-13 - awscli.customizations.s3.executor - DEBUG - Shutdown request received in worker thread, shutting down worker thread.
2015-11-02 17:48:27,209 - Thread-14 - awscli.customizations.s3.executor - DEBUG - Shutdown request received in worker thread, shutting down worker thread.
2015-11-02 17:48:27,209 - MainThread - awscli.customizations.s3.executor - DEBUG - Waiting for thread to shutdown: <Worker(Thread-5, stopped daemon 5204)>
2015-11-02 17:48:27,210 - MainThread - awscli.customizations.s3.executor - DEBUG - Thread has been shutdown: <Worker(Thread-5, stopped daemon 5204)>
2015-11-02 17:48:27,210 - MainThread - awscli.customizations.s3.executor - DEBUG - Waiting for thread to shutdown: <Worker(Thread-6, stopped daemon 7848)>
2015-11-02 17:48:27,210 - MainThread - awscli.customizations.s3.executor - DEBUG - Thread has been shutdown: <Worker(Thread-6, stopped daemon 7848)>
2015-11-02 17:48:27,210 - MainThread - awscli.customizations.s3.executor - DEBUG - Waiting for thread to shutdown: <Worker(Thread-7, stopped daemon 5504)>
2015-11-02 17:48:27,210 - MainThread - awscli.customizations.s3.executor - DEBUG - Thread has been shutdown: <Worker(Thread-7, stopped daemon 5504)>
2015-11-02 17:48:27,210 - MainThread - awscli.customizations.s3.executor - DEBUG - Waiting for thread to shutdown: <Worker(Thread-8, stopped daemon 7408)>
2015-11-02 17:48:27,210 - MainThread - awscli.customizations.s3.executor - DEBUG - Thread has been shutdown: <Worker(Thread-8, stopped daemon 7408)>
2015-11-02 17:48:27,210 - MainThread - awscli.customizations.s3.executor - DEBUG - Waiting for thread to shutdown: <Worker(Thread-9, stopped daemon 6752)>
2015-11-02 17:48:27,210 - MainThread - awscli.customizations.s3.executor - DEBUG - Thread has been shutdown: <Worker(Thread-9, stopped daemon 6752)>
2015-11-02 17:48:27,210 - MainThread - awscli.customizations.s3.executor - DEBUG - Waiting for thread to shutdown: <Worker(Thread-10, stopped daemon 6400)>
2015-11-02 17:48:27,210 - MainThread - awscli.customizations.s3.executor - DEBUG - Thread has been shutdown: <Worker(Thread-10, stopped daemon 6400)>
2015-11-02 17:48:27,210 - MainThread - awscli.customizations.s3.executor - DEBUG - Waiting for thread to shutdown: <Worker(Thread-11, stopped daemon 6640)>
2015-11-02 17:48:27,210 - MainThread - awscli.customizations.s3.executor - DEBUG - Thread has been shutdown: <Worker(Thread-11, stopped daemon 6640)>
2015-11-02 17:48:27,210 - MainThread - awscli.customizations.s3.executor - DEBUG - Waiting for thread to shutdown: <Worker(Thread-12, stopped daemon 4368)>
2015-11-02 17:48:27,210 - MainThread - awscli.customizations.s3.executor - DEBUG - Thread has been shutdown: <Worker(Thread-12, stopped daemon 4368)>
2015-11-02 17:48:27,210 - MainThread - awscli.customizations.s3.executor - DEBUG - Waiting for thread to shutdown: <Worker(Thread-13, stopped daemon 4824)>
2015-11-02 17:48:27,210 - MainThread - awscli.customizations.s3.executor - DEBUG - Thread has been shutdown: <Worker(Thread-13, stopped daemon 4824)>
2015-11-02 17:48:27,210 - MainThread - awscli.customizations.s3.executor - DEBUG - Waiting for thread to shutdown: <Worker(Thread-14, stopped daemon 5028)>
2015-11-02 17:48:27,210 - MainThread - awscli.customizations.s3.executor - DEBUG - Thread has been shutdown: <Worker(Thread-14, stopped daemon 5028)>
2015-11-02 17:48:27,210 - MainThread - awscli.customizations.s3.executor - DEBUG - Queueing end sentinel for result thread.
2015-11-02 17:48:27,210 - MainThread - awscli.customizations.s3.executor - DEBUG - Queueing end sentinel for IO thread.
2015-11-02 17:48:27,210 - Thread-1 - awscli.customizations.s3.executor - DEBUG - Shutdown request received in print thread, shutting down print thread.
2015-11-02 17:48:27,210 - MainThread - awscli.customizations.s3.executor - DEBUG - Waiting for result thread to shutdown.
2015-11-02 17:48:27,210 - Thread-2 - awscli.customizations.s3.executor - DEBUG - Shutdown request received in IO thread, shutting down.
2015-11-02 17:48:27,210 - MainThread - awscli.customizations.s3.executor - DEBUG - Waiting for IO thread to shutdown.
2015-11-02 17:48:27,210 - MainThread - awscli.customizations.s3.executor - DEBUG - All threads have been shutdown.
kyleknap commented 8 years ago

@ionFish I reopened your original issue.

Thank you all for all of the debug logs. They should help. So what I think what we are going to do is catch the error, provide some default last modified time so the file can be uploaded/synced, but warn the user that we did this with an error code of 2.

Let's track this issue through the first issue opened about it: https://github.com/aws/aws-cli/issues/855. Closing this issue.