blob: 97cc3a405dd79ae682f6ddd536aedf47c5250b3d [file] [log] [blame]
Hal Canary28f89382017-12-12 09:42:14 -05001#! /usr/bin/env python2
2# Copyright 2017 Google Inc.
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5import sys
6import zlib
7sys.stdout.write(zlib.decompress(sys.stdin.read()))
8