Вход Регистрация
Файл: wapxl.ru/top/amcharts/plugins/export/libs/pdfmake/pdfmake.js
Строк: 37475
<?php
/******/ (function(modules) { // webpackBootstrap
/******/     // The module cache
/******/     
var installedModules = {};

/******/     // The require function
/******/     
function __webpack_require__(moduleId) {

/******/         // Check if module is in cache
/******/         
if(installedModules[moduleId])
/******/             return installedModules[moduleId].exports;

/******/         // Create a new module (and put it into the cache)
/******/         
var module installedModules[moduleId] = {
/******/             exports: {},
/******/             idmoduleId,
/******/             loadedfalse
/******/         };

/******/         // Execute the module function
/******/         
modules[moduleId].call(module.exportsmodulemodule.exports__webpack_require__);

/******/         // Flag the module as loaded
/******/         
module.loaded true;

/******/         // Return the exports of the module
/******/         
return module.exports;
/******/     }


/******/     // expose the modules object (__webpack_modules__)
/******/     
__webpack_require__.modules;

/******/     // expose the module cache
/******/     
__webpack_require__.installedModules;

/******/     // __webpack_public_path__
/******/     
__webpack_require__."";

/******/     // Load entry module and return exports
/******/     
return __webpack_require__(0);
/******/ })
/************************************************************************/
/******/ 
([
/* 0 */
/***/ 
function(moduleexports__webpack_require__) {

    
/* WEBPACK VAR INJECTION */(function(global) {module.exports = global["pdfMake"] = __webpack_require__(1);
    
/* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }())))

/***/ },
/* 1 */
/***/ 
function(moduleexports__webpack_require__) {

    
/* WEBPACK VAR INJECTION */(function(Buffer) {/* jslint node: true */
    /* jslint browser: true */
    /* global BlobBuilder */
    
'use strict';

    var 
PdfPrinter __webpack_require__(6);
    var 
saveAs __webpack_require__(105);

    var 
defaultClientFonts = {
        
Roboto: {
            
normal'Roboto-Regular.ttf',
            
bold'Roboto-Medium.ttf',
            
italics'Roboto-Italic.ttf',
            
bolditalics'Roboto-Italic.ttf'
        
}
    };

    function 
Document(docDefinitionfontsvfs) {
        
this.docDefinition docDefinition;
        
this.fonts fonts || defaultClientFonts;
        
this.vfs vfs;
    }

    
Document.prototype._createDoc = function(optionscallback) {
        var 
printer = new PdfPrinter(this.fonts);
        
printer.fs.bindFS(this.vfs);

        var 
doc printer.createPdfKitDocument(this.docDefinitionoptions);
        var 
chunks = [];
        var 
result;

        
doc.on('data', function(chunk) {
            
chunks.push(chunk);
        });
        
doc.on('end', function() {
            
result Buffer.concat(chunks);
            
callback(resultdoc._pdfMakePages);
        });
        
doc.end();
    };

    
Document.prototype._getPages = function(optionscb){
      if (!
cb) throw 'getBuffer is an async method and needs a callback argument';
      
this._createDoc(options, function(ignoreBufferpages){
        
cb(pages);
      });
    };

    
Document.prototype.open = function(message) {
        
// we have to open the window immediately and store the reference
        // otherwise popup blockers will stop us
        
var win window.open('''_blank');

        try {
            
this.getDataUrl(function(result) {
                
win.location.href result;
            });
        } catch(
e) {
            
win.close();
            throw 
e;
        }
    };


    
Document.prototype.print = function() {
      
this.getDataUrl(function(dataUrl) {
        var 
iFrame document.createElement('iframe');
        
iFrame.style.position 'absolute';
        
iFrame.style.left '-99999px';
        
iFrame.src dataUrl;
        
iFrame.onload = function() {
          function 
removeIFrame(){
            
document.body.removeChild(iFrame);
            
document.removeEventListener('click'removeIFrame);
          }
          
document.addEventListener('click'removeIFramefalse);
        };

        
document.body.appendChild(iFrame);
      }, { 
autoPrinttrue });
    };

    
Document.prototype.download = function(defaultFileNamecb) {
       if(
typeof defaultFileName === "function") {
          
cb defaultFileName;
          
defaultFileName null;
       }

       
defaultFileName defaultFileName || 'file.pdf';
       
this.getBuffer(function (result) {
           var 
blob;
           try {
               
blob = new Blob([result], { type'application/pdf' });
           }
           catch (
e) {
               
// Old browser which can't handle it without making it an byte array (ie10) 
               
if (e.name == "InvalidStateError") {
                   var 
byteArray = new Uint8Array(result);
                   
blob = new Blob([byteArray.buffer], { type'application/pdf' });
               }
           }
           if (
blob) {
               
saveAs(blobdefaultFileName);
           }
           else {
               throw 
'Could not generate blob';
           }
           if (
typeof cb === "function") {
               
cb();
           }
       });
    };

    
Document.prototype.getBase64 = function(cboptions) {
        if (!
cb) throw 'getBase64 is an async method and needs a callback argument';
        
this._createDoc(options, function(buffer) {
            
cb(buffer.toString('base64'));
        });
    };

    
Document.prototype.getDataUrl = function(cboptions) {
        if (!
cb) throw 'getDataUrl is an async method and needs a callback argument';
        
this._createDoc(options, function(buffer) {
            
cb('data:application/pdf;base64,' buffer.toString('base64'));
        });
    };

    
Document.prototype.getBuffer = function(cboptions) {
        if (!
cb) throw 'getBuffer is an async method and needs a callback argument';
        
this._createDoc(options, function(buffer){
        
cb(buffer);
      });
    };

    
module.exports = {
        
createPdf: function(docDefinition) {
            return new 
Document(docDefinitionwindow.pdfMake.fontswindow.pdfMake.vfs);
        }
    };

    
/* WEBPACK VAR INJECTION */}.call(exports__webpack_require__(2).Buffer))

/***/ },
/* 2 */
/***/ 
function(moduleexports__webpack_require__) {

    
/* WEBPACK VAR INJECTION */(function(Buffer) {/*!
     * The buffer module from node.js, for the browser.
     *
     * @author   Feross Aboukhadijeh <feross@feross.org> <http://feross.org>
     * @license  MIT
     */

    
var base64 __webpack_require__(3)
    var 
ieee754 __webpack_require__(4)
    var 
isArray __webpack_require__(5)

    
exports.Buffer Buffer
    exports
.SlowBuffer SlowBuffer
    exports
.INSPECT_MAX_BYTES 50
    Buffer
.poolSize 8192 // not used by this implementation

    
var rootParent = {}

    
/**
     * If `Buffer.TYPED_ARRAY_SUPPORT`:
     *   === true    Use Uint8Array implementation (fastest)
     *   === false   Use Object implementation (most compatible, even IE6)
     *
     * Browsers that support typed arrays are IE 10+, Firefox 4+, Chrome 7+, Safari 5.1+,
     * Opera 11.6+, iOS 4.2+.
     *
     * Due to various browser bugs, sometimes the Object implementation will be used even
     * when the browser supports typed arrays.
     *
     * Note:
     *
     *   - Firefox 4-29 lacks support for adding new properties to `Uint8Array` instances,
     *     See: https://bugzilla.mozilla.org/show_bug.cgi?id=695438.
     *
     *   - Safari 5-7 lacks support for changing the `Object.prototype.constructor` property
     *     on objects.
     *
     *   - Chrome 9-10 is missing the `TypedArray.prototype.subarray` function.
     *
     *   - IE10 has a broken `TypedArray.prototype.subarray` function which returns arrays of
     *     incorrect length in some situations.

     * We detect these buggy browsers and set `Buffer.TYPED_ARRAY_SUPPORT` to `false` so they
     * get the Object implementation, which is slower but behaves correctly.
     */
    
Buffer.TYPED_ARRAY_SUPPORT = (function () {
      function 
Bar () {}
      try {
        var 
arr = new Uint8Array(1)
        
arr.foo = function () { return 42 }
        
arr.constructor Bar
        
return arr.foo() === 42 && // typed array instances can be augmented
            
arr.constructor === Bar && // constructor can be set
            
typeof arr.subarray === 'function' && // chrome 9-10 lack `subarray`
            
arr.subarray(11).byteLength === // ie10 has broken `subarray`
      
} catch (e) {
        return 
false
      
}
    })()

    function 
kMaxLength () {
      return 
Buffer.TYPED_ARRAY_SUPPORT
        
0x7fffffff
        
0x3fffffff
    
}

    
/**
     * Class: Buffer
     * =============
     *
     * The Buffer constructor returns instances of `Uint8Array` that are augmented
     * with function properties for all the node `Buffer` API functions. We use
     * `Uint8Array` so that square bracket notation works as expected -- it returns
     * a single octet.
     *
     * By augmenting the instances, we can avoid modifying the `Uint8Array`
     * prototype.
     */
    
function Buffer (arg) {
      if (!(
this instanceof Buffer)) {
        
// Avoid going through an ArgumentsAdaptorTrampoline in the common case.
        
if (arguments.length 1) return new Buffer(argarguments[1])
        return new 
Buffer(arg)
      }

      
this.length 0
      this
.parent undefined

      
// Common case.
      
if (typeof arg === 'number') {
        return 
fromNumber(thisarg)
      }

      
// Slightly less common case.
      
if (typeof arg === 'string') {
        return 
fromString(thisargarguments.length arguments[1] : 'utf8')
      }

      
// Unusual.
      
return fromObject(thisarg)
    }

    function 
fromNumber (thatlength) {
      
that allocate(thatlength checked(length) | 0)
      if (!
Buffer.TYPED_ARRAY_SUPPORT) {
        for (var 
0lengthi++) {
          
that[i] = 0
        
}
      }
      return 
that
    
}

    function 
fromString (thatstringencoding) {
      if (
typeof encoding !== 'string' || encoding === ''encoding 'utf8'

      
// Assumption: byteLength() return value is always < kMaxLength.
      
var length byteLength(stringencoding) | 0
      that 
allocate(thatlength)

      
that.write(stringencoding)
      return 
that
    
}

    function 
fromObject (thatobject) {
      if (
Buffer.isBuffer(object)) return fromBuffer(thatobject)

      if (
isArray(object)) return fromArray(thatobject)

      if (
object == null) {
        throw new 
TypeError('must start with number, buffer, array or string')
      }

      if (
typeof ArrayBuffer !== 'undefined') {
        if (
object.buffer instanceof ArrayBuffer) {
          return 
fromTypedArray(thatobject)
        }
        if (
object instanceof ArrayBuffer) {
          return 
fromArrayBuffer(thatobject)
        }
      }

      if (
object.length) return fromArrayLike(thatobject)

      return 
fromJsonObject(thatobject)
    }

    function 
fromBuffer (thatbuffer) {
      var 
length checked(buffer.length) | 0
      that 
allocate(thatlength)
      
buffer.copy(that00length)
      return 
that
    
}

    function 
fromArray (that, array) {
      var 
length checked(array.length) | 0
      that 
allocate(thatlength)
      for (var 
0length+= 1) {
        
that[i] = array[i] & 255
      
}
      return 
that
    
}

    
// Duplicate of fromArray() to keep fromArray() monomorphic.
    
function fromTypedArray (that, array) {
      var 
length checked(array.length) | 0
      that 
allocate(thatlength)
      
// Truncating the elements is probably not what people expect from typed
      // arrays with BYTES_PER_ELEMENT > 1 but it's compatible with the behavior
      // of the old Buffer constructor.
      
for (var 0length+= 1) {
        
that[i] = array[i] & 255
      
}
      return 
that
    
}

    function 
fromArrayBuffer (that, array) {
      if (
Buffer.TYPED_ARRAY_SUPPORT) {
        
// Return an augmented `Uint8Array` instance, for best performance
        
array.byteLength
        that 
Buffer._augment(new Uint8Array(array))
      } else {
        
// Fallback: Return an object instance of the Buffer class
        
that fromTypedArray(that, new Uint8Array(array))
      }
      return 
that
    
}

    function 
fromArrayLike (that, array) {
      var 
length checked(array.length) | 0
      that 
allocate(thatlength)
      for (var 
0length+= 1) {
        
that[i] = array[i] & 255
      
}
      return 
that
    
}

    
// Deserialize { type: 'Buffer', data: [1,2,3,...] } into a Buffer object.
    // Returns a zero-length buffer for inputs that don't conform to the spec.
    
function fromJsonObject (thatobject) {
      var array
      var 
length 0

      
if (object.type === 'Buffer' && isArray(object.data)) {
        array = 
object.data
        length 
checked(array.length) | 0
      
}
      
that allocate(thatlength)

      for (var 
0length+= 1) {
        
that[i] = array[i] & 255
      
}
      return 
that
    
}

    function 
allocate (thatlength) {
      if (
Buffer.TYPED_ARRAY_SUPPORT) {
        
// Return an augmented `Uint8Array` instance, for best performance
        
that Buffer._augment(new Uint8Array(length))
      } else {
        
// Fallback: Return an object instance of the Buffer class
        
that.length length
        that
._isBuffer true
      
}

      var 
fromPool length !== && length <= Buffer.poolSize >>> 1
      
if (fromPoolthat.parent rootParent

      
return that
    
}

    function 
checked (length) {
      
// Note: cannot use `length < kMaxLength` here because that fails when
      // length is NaN (which is otherwise coerced to zero.)
      
if (length >= kMaxLength()) {
        throw new 
RangeError('Attempt to allocate Buffer larger than maximum ' +
                             
'size: 0x' kMaxLength().toString(16) + ' bytes')
      }
      return 
length 0
    
}

    function 
SlowBuffer (subjectencoding) {
      if (!(
this instanceof SlowBuffer)) return new SlowBuffer(subjectencoding)

      var 
buf = new Buffer(subjectencoding)
      
delete buf.parent
      
return buf
    
}

    
Buffer.isBuffer = function isBuffer (b) {
      return !!(
!= null && b._isBuffer)
    }

    
Buffer.compare = function compare (ab) {
      if (!
Buffer.isBuffer(a) || !Buffer.isBuffer(b)) {
        throw new 
TypeError('Arguments must be Buffers')
      }

      if (
=== b) return 0

      
var a.length
      
var b.length

      
var 0
      
var len Math.min(xy)
      while (
len) {
        if (
a[i] !== b[i]) break

        ++
i
      
}

      if (
!== len) {
        
a[i]
        
b[i]
      }

      if (
y) return -1
      
if (x) return 1
      
return 0
    
}

    
Buffer.isEncoding = function isEncoding (encoding) {
      switch (
String(encoding).toLowerCase()) {
        case 
'hex':
        case 
'utf8':
        case 
'utf-8':
        case 
'ascii':
        case 
'binary':
        case 
'base64':
        case 
'raw':
        case 
'ucs2':
        case 
'ucs-2':
        case 
'utf16le':
        case 
'utf-16le':
          return 
true
        
default:
          return 
false
      
}
    }

    
Buffer.concat = function concat (list, length) {
      if (!
isArray(list)) throw new TypeError('list argument must be an Array of Buffers.')

      if (list.
length === 0) {
        return new 
Buffer(0)
      }

      var 
i
      
if (length === undefined) {
        
length 0
        
for (0< list.lengthi++) {
          
length += list[i].length
        
}
      }

      var 
buf = new Buffer(length)
      var 
pos 0
      
for (0< list.lengthi++) {
        var 
item = list[i]
        
item.copy(bufpos)
        
pos += item.length
      
}
      return 
buf
    
}

    function 
byteLength (stringencoding) {
      if (
typeof string !== 'string'string '' string

      
var len string.length
      
if (len === 0) return 0

      
// Use a for loop to avoid recursion
      
var loweredCase false
      
for (;;) {
        switch (
encoding) {
          case 
'ascii':
          case 
'binary':
          
// Deprecated
          
case 'raw':
          case 
'raws':
            return 
len
          
case 'utf8':
          case 
'utf-8':
            return 
utf8ToBytes(string).length
          
case 'ucs2':
          case 
'ucs-2':
          case 
'utf16le':
          case 
'utf-16le':
            return 
len 2
          
case 'hex':
            return 
len >>> 1
          
case 'base64':
            return 
base64ToBytes(string).length
          
default:
            if (
loweredCase) return utf8ToBytes(string).length // assume utf8
            
encoding = ('' encoding).toLowerCase()
            
loweredCase true
        
}
      }
    }
    
Buffer.byteLength byteLength

    
// pre-set for values that may exist in the future
    
Buffer.prototype.length undefined
    Buffer
.prototype.parent undefined

    
function slowToString (encodingstartend) {
      var 
loweredCase false

      start 
start 0
      end 
end === undefined || end === Infinity this.length end 0

      
if (!encodingencoding 'utf8'
      
if (start 0start 0
      
if (end this.lengthend this.length
      
if (end <= start) return ''

      
while (true) {
        switch (
encoding) {
          case 
'hex':
            return 
hexSlice(thisstartend)

          case 
'utf8':
          case 
'utf-8':
            return 
utf8Slice(thisstartend)

          case 
'ascii':
            return 
asciiSlice(thisstartend)

          case 
'binary':
            return 
binarySlice(thisstartend)

          case 
'base64':
            return 
base64Slice(thisstartend)

          case 
'ucs2':
          case 
'ucs-2':
          case 
'utf16le':
          case 
'utf-16le':
            return 
utf16leSlice(thisstartend)

          default:
            if (
loweredCase) throw new TypeError('Unknown encoding: ' encoding)
            
encoding = (encoding '').toLowerCase()
            
loweredCase true
        
}
      }
    }

    
Buffer.prototype.toString = function toString () {
      var 
length this.length 0
      
if (length === 0) return ''
      
if (arguments.length === 0) return utf8Slice(this0length)
      return 
slowToString.apply(thisarguments)
    }

    
Buffer.prototype.equals = function equals (b) {
      if (!
Buffer.isBuffer(b)) throw new TypeError('Argument must be a Buffer')
      if (
this === b) return true
      
return Buffer.compare(thisb) === 0
    
}

    
Buffer.prototype.inspect = function inspect () {
      var 
str ''
      
var max exports.INSPECT_MAX_BYTES
      
if (this.length 0) {
        
str this.toString('hex'0max).match(/.{2}/g).join(' ')
        if (
this.length maxstr += ' ... '
      
}
      return 
'<Buffer ' str '>'
    
}

    
Buffer.prototype.compare = function compare (b) {
      if (!
Buffer.isBuffer(b)) throw new TypeError('Argument must be a Buffer')
      if (
this === b) return 0
      
return Buffer.compare(thisb)
    }

    
Buffer.prototype.indexOf = function indexOf (valbyteOffset) {
      if (
byteOffset 0x7fffffffbyteOffset 0x7fffffff
      
else if (byteOffset < -0x80000000byteOffset = -0x80000000
      byteOffset 
>>= 0

      
if (this.length === 0) return -1
      
if (byteOffset >= this.length) return -1

      
// Negative offsets start from the end of the buffer
      
if (byteOffset 0byteOffset Math.max(this.length byteOffset0)

      if (
typeof val === 'string') {
        if (
val.length === 0) return -// special case: looking for empty string always fails
        
return String.prototype.indexOf.call(thisvalbyteOffset)
      }
      if (
Buffer.isBuffer(val)) {
        return 
arrayIndexOf(thisvalbyteOffset)
      }
      if (
typeof val === 'number') {
        if (
Buffer.TYPED_ARRAY_SUPPORT && Uint8Array.prototype.indexOf === 'function') {
          return 
Uint8Array.prototype.indexOf.call(thisvalbyteOffset)
        }
        return 
arrayIndexOf(this, [ val ], byteOffset)
      }

      function 
arrayIndexOf (arrvalbyteOffset) {
        var 
foundIndex = -1
        
for (var 0byteOffset arr.lengthi++) {
          if (
arr[byteOffset i] === val[foundIndex === -foundIndex]) {
            if (
foundIndex === -1foundIndex i
            
if (foundIndex === val.length) return byteOffset foundIndex
          
} else {
            
foundIndex = -1
          
}
        }
        return -
1
      
}

      throw new 
TypeError('val must be string, number or Buffer')
    }

    
// `get` is deprecated
    
Buffer.prototype.get = function get (offset) {
      
console.log('.get() is deprecated. Access using array indexes instead.')
      return 
this.readUInt8(offset)
    }

    
// `set` is deprecated
    
Buffer.prototype.set = function set (voffset) {
      
console.log('.set() is deprecated. Access using array indexes instead.')
      return 
this.writeUInt8(voffset)
    }

    function 
hexWrite (bufstringoffsetlength) {
      
offset Number(offset) || 0
      
var remaining buf.length offset
      
if (!length) {
        
length remaining
      
} else {
        
length Number(length)
        if (
length remaining) {
          
length remaining
        
}
      }

      
// must be an even number of digits
      
var strLen string.length
      
if (strLen !== 0) throw new Error('Invalid hex string')

      if (
length strLen 2) {
        
length strLen 2
      
}
      for (var 
0lengthi++) {
        var 
parsed parseInt(string.substr(22), 16)
        if (
isNaN(parsed)) throw new Error('Invalid hex string')
        
buf[offset i] = parsed
      
}
      return 
i
    
}

    function 
utf8Write (bufstringoffsetlength) {
      return 
blitBuffer(utf8ToBytes(stringbuf.length offset), bufoffsetlength)
    }

    function 
asciiWrite (bufstringoffsetlength) {
      return 
blitBuffer(asciiToBytes(string), bufoffsetlength)
    }

    function 
binaryWrite (bufstringoffsetlength) {
      return 
asciiWrite(bufstringoffsetlength)
    }

    function 
base64Write (bufstringoffsetlength) {
      return 
blitBuffer(base64ToBytes(string), bufoffsetlength)
    }

    function 
ucs2Write (bufstringoffsetlength) {
      return 
blitBuffer(utf16leToBytes(stringbuf.length offset), bufoffsetlength)
    }

    
Buffer.prototype.write = function write (stringoffsetlengthencoding) {
      
// Buffer#write(string)
      
if (offset === undefined) {
        
encoding 'utf8'
        
length this.length
        offset 
0
      
// Buffer#write(string, encoding)
      
} else if (length === undefined && typeof offset === 'string') {
        
encoding offset
        length 
this.length
        offset 
0
      
// Buffer#write(string, offset[, length][, encoding])
      
} else if (isFinite(offset)) {
        
offset offset 0
        
if (isFinite(length)) {
          
length length 0
          
if (encoding === undefinedencoding 'utf8'
        
} else {
          
encoding length
          length 
undefined
        
}
      
// legacy write(string, encoding, offset, length) - remove in v0.13
      
} else {
        var 
swap encoding
        encoding 
offset
        offset 
length 0
        length 
swap
      
}

      var 
remaining this.length offset
      
if (length === undefined || length remaininglength remaining

      
if ((string.length && (length || offset 0)) || offset this.length) {
        throw new 
RangeError('attempt to write outside buffer bounds')
      }

      if (!
encodingencoding 'utf8'

      
var loweredCase false
      
for (;;) {
        switch (
encoding) {
          case 
'hex':
            return 
hexWrite(thisstringoffsetlength)

          case 
'utf8':
          case 
'utf-8':
            return 
utf8Write(thisstringoffsetlength)

          case 
'ascii':
            return 
asciiWrite(thisstringoffsetlength)

          case 
'binary':
            return 
binaryWrite(thisstringoffsetlength)

          case 
'base64':
            
// Warning: maxLength not taken into account in base64Write
            
return base64Write(thisstringoffsetlength)

          case 
'ucs2':
          case 
'ucs-2':
          case 
'utf16le':
          case 
'utf-16le':
            return 
ucs2Write(thisstringoffsetlength)

          default:
            if (
loweredCase) throw new TypeError('Unknown encoding: ' encoding)
            
encoding = ('' encoding).toLowerCase()
            
loweredCase true
        
}
      }
    }

    
Buffer.prototype.toJSON = function toJSON () {
      return {
        
type'Buffer',
        
data: Array.prototype.slice.call(this._arr || this0)
      }
    }

    function 
base64Slice (bufstartend) {
      if (
start === && end === buf.length) {
        return 
base64.fromByteArray(buf)
      } else {
        return 
base64.fromByteArray(buf.slice(startend))
      }
    }

    function 
utf8Slice (bufstartend) {
      
end Math.min(buf.lengthend)
      var 
res = []

      var 
start
      
while (end) {
        var 
firstByte buf[i]
        var 
codePoint null
        
var bytesPerSequence = (firstByte 0xEF) ? 4
          
: (firstByte 0xDF) ? 3
          
: (firstByte 0xBF) ? 2
          
1

        
if (bytesPerSequence <= end) {
          var 
secondBytethirdBytefourthBytetempCodePoint

          
switch (bytesPerSequence) {
            case 
1:
              if (
firstByte 0x80) {
                
codePoint firstByte
              
}
              break
            case 
2:
              
secondByte buf[1]
              if ((
secondByte 0xC0) === 0x80) {
                
tempCodePoint = (firstByte 0x1F) << 0x6 | (secondByte 0x3F)
                if (
tempCodePoint 0x7F) {
                  
codePoint tempCodePoint
                
}
              }
              break
            case 
3:
              
secondByte buf[1]
              
thirdByte buf[2]
              if ((
secondByte 0xC0) === 0x80 && (thirdByte 0xC0) === 0x80) {
                
tempCodePoint = (firstByte 0xF) << 0xC | (secondByte 0x3F) << 0x6 | (thirdByte 0x3F)
                if (
tempCodePoint 0x7FF && (tempCodePoint 0xD800 || tempCodePoint 0xDFFF)) {
                  
codePoint tempCodePoint
                
}
              }
              break
            case 
4:
              
secondByte buf[1]
              
thirdByte buf[2]
              
fourthByte buf[3]
              if ((
secondByte 0xC0) === 0x80 && (thirdByte 0xC0) === 0x80 && (fourthByte 0xC0) === 0x80) {
                
tempCodePoint = (firstByte 0xF) << 0x12 | (secondByte 0x3F) << 0xC | (thirdByte 0x3F) << 0x6 | (fourthByte 0x3F)
                if (
tempCodePoint 0xFFFF && tempCodePoint 0x110000) {
                  
codePoint tempCodePoint
                
}
              }
          }
        }

        if (
codePoint === null) {
          
// we did not generate a valid codePoint so insert a
          // replacement char (U+FFFD) and advance only 1 byte
          
codePoint 0xFFFD
          bytesPerSequence 
1
        
} else if (codePoint 0xFFFF) {
          
// encode to utf16 (surrogate pair dance)
          
codePoint -= 0x10000
          res
.push(codePoint >>> 10 0x3FF 0xD800)
          
codePoint 0xDC00 codePoint 0x3FF
        
}

        
res.push(codePoint)
        
+= bytesPerSequence
      
}

      return 
decodeCodePointsArray(res)
    }

    
// Based on http://stackoverflow.com/a/22747272/680742, the browser with
    // the lowest limit is Chrome, with 0x10000 args.
    // We go 1 magnitude less, for safety
    
var MAX_ARGUMENTS_LENGTH 0x1000

    
function decodeCodePointsArray (codePoints) {
      var 
len codePoints.length
      
if (len <= MAX_ARGUMENTS_LENGTH) {
        return 
String.fromCharCode.apply(StringcodePoints// avoid extra slice()
      
}

      
// Decode in chunks to avoid "call stack size exceeded".
      
var res ''
      
var 0
      
while (len) {
        
res += String.fromCharCode.apply(
          
String,
          
codePoints.slice(i+= MAX_ARGUMENTS_LENGTH)
        )
      }
      return 
res
    
}

    function 
asciiSlice (bufstartend) {
      var 
ret ''
      
end Math.min(buf.lengthend)

      for (var 
startendi++) {
        
ret += String.fromCharCode(buf[i] & 0x7F)
      }
      return 
ret
    
}

    function 
binarySlice (bufstartend) {
      var 
ret ''
      
end Math.min(buf.lengthend)

      for (var 
startendi++) {
        
ret += String.fromCharCode(buf[i])
      }
      return 
ret
    
}

    function 
hexSlice (bufstartend) {
      var 
len buf.length

      
if (!start || start 0start 0
      
if (!end || end || end lenend len

      
var out ''
      
for (var startendi++) {
        
out += toHex(buf[i])
      }
      return 
out
    
}

    function 
utf16leSlice (bufstartend) {
      var 
bytes buf.slice(startend)
      var 
res ''
      
for (var 0bytes.length+= 2) {
        
res += String.fromCharCode(bytes[i] + bytes[1] * 256)
      }
      return 
res
    
}

    
Buffer.prototype.slice = function slice (startend) {
      var 
len this.length
      start 
= ~~start
      end 
end === undefined len : ~~end

      
if (start 0) {
        
start += len
        
if (start 0start 0
      
} else if (start len) {
        
start len
      
}

      if (
end 0) {
        
end += len
        
if (end 0end 0
      
} else if (end len) {
        
end len
      
}

      if (
end startend start

      
var newBuf
      
if (Buffer.TYPED_ARRAY_SUPPORT) {
        
newBuf Buffer._augment(this.subarray(startend))
      } else {
        var 
sliceLen end start
        newBuf 
= new Buffer(sliceLenundefined)
        for (var 
0sliceLeni++) {
          
newBuf[i] = this[start]
        }
      }

      if (
newBuf.lengthnewBuf.parent this.parent || this

      
return newBuf
    
}

    
/*
     * Need to make sure that buffer isn't trying to write out of bounds.
     */
    
function checkOffset (offsetextlength) {
      if ((
offset 1) !== || offset 0) throw new RangeError('offset is not uint')
      if (
offset ext length) throw new RangeError('Trying to access beyond buffer length')
    }

    
Buffer.prototype.readUIntLE = function readUIntLE (offsetbyteLengthnoAssert) {
      
offset offset 0
      byteLength 
byteLength 0
      
if (!noAssertcheckOffset(offsetbyteLengththis.length)

      var 
val this[offset]
      var 
mul 1
      
var 0
      
while (++byteLength && (mul *= 0x100)) {
        
val += this[offset i] * mul
      
}

      return 
val
    
}

    
Buffer.prototype.readUIntBE = function readUIntBE (offsetbyteLengthnoAssert) {
      
offset offset 0
      byteLength 
byteLength 0
      
if (!noAssert) {
        
checkOffset(offsetbyteLengththis.length)
      }

      var 
val this[offset + --byteLength]
      var 
mul 1
      
while (byteLength && (mul *= 0x100)) {
        
val += this[offset + --byteLength] * mul
      
}

      return 
val
    
}

    
Buffer.prototype.readUInt8 = function readUInt8 (offsetnoAssert) {
      if (!
noAssertcheckOffset(offset1this.length)
      return 
this[offset]
    }

    
Buffer.prototype.readUInt16LE = function readUInt16LE (offsetnoAssert) {
      if (!
noAssertcheckOffset(offset2this.length)
      return 
this[offset] | (this[offset 1] << 8)
    }

    
Buffer.prototype.readUInt16BE = function readUInt16BE (offsetnoAssert) {
      if (!
noAssertcheckOffset(offset2this.length)
      return (
this[offset] << 8) | this[offset 1]
    }

    
Buffer.prototype.readUInt32LE = function readUInt32LE (offsetnoAssert) {
      if (!
noAssertcheckOffset(offset4this.length)

      return ((
this[offset]) |
          (
this[offset 1] << 8) |
          (
this[offset 2] << 16)) +
          (
this[offset 3] * 0x1000000)
    }

    
Buffer.prototype.readUInt32BE = function readUInt32BE (offsetnoAssert) {
      if (!
noAssertcheckOffset(offset4this.length)

      return (
this[offset] * 0x1000000) +
        ((
this[offset 1] << 16) |
        (
this[offset 2] << 8) |
        
this[offset 3])
    }

    
Buffer.prototype.readIntLE = function readIntLE (offsetbyteLengthnoAssert) {
      
offset offset 0
      byteLength 
byteLength 0
      
if (!noAssertcheckOffset(offsetbyteLengththis.length)

      var 
val this[offset]
      var 
mul 1
      
var 0
      
while (++byteLength && (mul *= 0x100)) {
        
val += this[offset i] * mul
      
}
      
mul *= 0x80

      
if (val >= mulval -= Math.pow(2byteLength)

      return 
val
    
}

    
Buffer.prototype.readIntBE = function readIntBE (offsetbyteLengthnoAssert) {
      
offset offset 0
      byteLength 
byteLength 0
      
if (!noAssertcheckOffset(offsetbyteLengththis.length)

      var 
byteLength
      
var mul 1
      
var val this[offset + --i]
      while (
&& (mul *= 0x100)) {
        
val += this[offset + --i] * mul
      
}
      
mul *= 0x80

      
if (val >= mulval -= Math.pow(2byteLength)

      return 
val
    
}

    
Buffer.prototype.readInt8 = function readInt8 (offsetnoAssert) {
      if (!
noAssertcheckOffset(offset1this.length)
      if (!(
this[offset] & 0x80)) return (this[offset])
      return ((
0xff this[offset] + 1) * -1)
    }

    
Buffer.prototype.readInt16LE = function readInt16LE (offsetnoAssert) {
      if (!
noAssertcheckOffset(offset2this.length)
      var 
val this[offset] | (this[offset 1] << 8)
      return (
val 0x8000) ? val 0xFFFF0000 val
    
}

    
Buffer.prototype.readInt16BE = function readInt16BE (offsetnoAssert) {
      if (!
noAssertcheckOffset(offset2this.length)
      var 
val this[offset 1] | (this[offset] << 8)
      return (
val 0x8000) ? val 0xFFFF0000 val
    
}

    
Buffer.prototype.readInt32LE = function readInt32LE (offsetnoAssert) {
      if (!
noAssertcheckOffset(offset4this.length)

      return (
this[offset]) |
        (
this[offset 1] << 8) |
        (
this[offset 2] << 16) |
        (
this[offset 3] << 24)
    }

    
Buffer.prototype.readInt32BE = function readInt32BE (offsetnoAssert) {
      if (!
noAssertcheckOffset(offset4this.length)

      return (
this[offset] << 24) |
        (
this[offset 1] << 16) |
        (
this[offset 2] << 8) |
        (
this[offset 3])
    }

    
Buffer.prototype.readFloatLE = function readFloatLE (offsetnoAssert) {
      if (!
noAssertcheckOffset(offset4this.length)
      return 
ieee754.read(thisoffsettrue234)
    }

    
Buffer.prototype.readFloatBE = function readFloatBE (offsetnoAssert) {
      if (!
noAssertcheckOffset(offset4this.length)
      return 
ieee754.read(thisoffsetfalse234)
    }

    
Buffer.prototype.readDoubleLE = function readDoubleLE (offsetnoAssert) {
      if (!
noAssertcheckOffset(offset8this.length)
      return 
ieee754.read(thisoffsettrue528)
    }

    
Buffer.prototype.readDoubleBE = function readDoubleBE (offsetnoAssert) {
      if (!
noAssertcheckOffset(offset8this.length)
      return 
ieee754.read(thisoffsetfalse528)
    }

    function 
checkInt (bufvalueoffsetextmaxmin) {
      if (!
Buffer.isBuffer(buf)) throw new TypeError('buffer must be a Buffer instance')
      if (
value max || value min) throw new RangeError('value is out of bounds')
      if (
offset ext buf.length) throw new RangeError('index out of range')
    }

    
Buffer.prototype.writeUIntLE = function writeUIntLE (valueoffsetbyteLengthnoAssert) {
      
value = +value
      offset 
offset 0
      byteLength 
byteLength 0
      
if (!noAssertcheckInt(thisvalueoffsetbyteLengthMath.pow(2byteLength), 0)

      var 
mul 1
      
var 0
      this
[offset] = value 0xFF
      
while (++byteLength && (mul *= 0x100)) {
        
this[offset i] = (value mul) & 0xFF
      
}

      return 
offset byteLength
    
}

    
Buffer.prototype.writeUIntBE = function writeUIntBE (valueoffsetbyteLengthnoAssert) {
      
value = +value
      offset 
offset 0
      byteLength 
byteLength 0
      
if (!noAssertcheckInt(thisvalueoffsetbyteLengthMath.pow(2byteLength), 0)

      var 
byteLength 1
      
var mul 1
      this
[offset i] = value 0xFF
      
while (-->= && (mul *= 0x100)) {
        
this[offset i] = (value mul) & 0xFF
      
}

      return 
offset byteLength
    
}

    
Buffer.prototype.writeUInt8 = function writeUInt8 (valueoffsetnoAssert) {
      
value = +value
      offset 
offset 0
      
if (!noAssertcheckInt(thisvalueoffset10xff0)
      if (!
Buffer.TYPED_ARRAY_SUPPORTvalue Math.floor(value)
      
this[offset] = value
      
return offset 1
    
}

    function 
objectWriteUInt16 (bufvalueoffsetlittleEndian) {
      if (
value 0value 0xffff value 1
      
for (var 0Math.min(buf.length offset2); ji++) {
        
buf[offset i] = (value & (0xff << (* (littleEndian i)))) >>>
          (
littleEndian i) * 8
      
}
    }

    
Buffer.prototype.writeUInt16LE = function writeUInt16LE (valueoffsetnoAssert) {
      
value = +value
      offset 
offset 0
      
if (!noAssertcheckInt(thisvalueoffset20xffff0)
      if (
Buffer.TYPED_ARRAY_SUPPORT) {
        
this[offset] = value
        this
[offset 1] = (value >>> 8)
      } else {
        
objectWriteUInt16(thisvalueoffsettrue)
      }
      return 
offset 2
    
}

    
Buffer.prototype.writeUInt16BE = function writeUInt16BE (valueoffsetnoAssert) {
      
value = +value
      offset 
offset 0
      
if (!noAssertcheckInt(thisvalueoffset20xffff0)
      if (
Buffer.TYPED_ARRAY_SUPPORT) {
        
this[offset] = (value >>> 8)
        
this[offset 1] = value
      
} else {
        
objectWriteUInt16(thisvalueoffsetfalse)
      }
      return 
offset 2
    
}

    function 
objectWriteUInt32 (bufvalueoffsetlittleEndian) {
      if (
value 0value 0xffffffff value 1
      
for (var 0Math.min(buf.length offset4); ji++) {
        
buf[offset i] = (value >>> (littleEndian i) * 8) & 0xff
      
}
    }

    
Buffer.prototype.writeUInt32LE = function writeUInt32LE (valueoffsetnoAssert) {
      
value = +value
      offset 
offset 0
      
if (!noAssertcheckInt(thisvalueoffset40xffffffff0)
      if (
Buffer.TYPED_ARRAY_SUPPORT) {
        
this[offset 3] = (value >>> 24)
        
this[offset 2] = (value >>> 16)
        
this[offset 1] = (value >>> 8)
        
this[offset] = value
      
} else {
        
objectWriteUInt32(thisvalueoffsettrue)
      }
      return 
offset 4
    
}

    
Buffer.prototype.writeUInt32BE = function writeUInt32BE (valueoffsetnoAssert) {
      
value = +value
      offset 
offset 0
      
if (!noAssertcheckInt(thisvalueoffset40xffffffff0)
      if (
Buffer.TYPED_ARRAY_SUPPORT) {
        
this[offset] = (value >>> 24)
        
this[offset 1] = (value >>> 16)
        
this[offset 2] = (value >>> 8)
        
this[offset 3] = value
      
} else {
        
objectWriteUInt32(thisvalueoffsetfalse)
      }
      return 
offset 4
    
}

    
Buffer.prototype.writeIntLE = function writeIntLE (valueoffsetbyteLengthnoAssert) {
      
value = +value
      offset 
offset 0
      
if (!noAssert) {
        var 
limit Math.pow(2byteLength 1)

        
checkInt(thisvalueoffsetbyteLengthlimit 1, -limit)
      }

      var 
0
      
var mul 1
      
var sub value 0
      this
[offset] = value 0xFF
      
while (++byteLength && (mul *= 0x100)) {
        
this[offset i] = ((value mul) >> 0) - sub 0xFF
      
}

      return 
offset byteLength
    
}

    
Buffer.prototype.writeIntBE = function writeIntBE (valueoffsetbyteLengthnoAssert) {
      
value = +value
      offset 
offset 0
      
if (!noAssert) {
        var 
limit Math.pow(2byteLength 1)

        
checkInt(thisvalueoffsetbyteLengthlimit 1, -limit)
      }

      var 
byteLength 1
      
var mul 1
      
var sub value 0
      this
[offset i] = value 0xFF
      
while (-->= && (mul *= 0x100)) {
        
this[offset i] = ((value mul) >> 0) - sub 0xFF
      
}

      return 
offset byteLength
    
}

    
Buffer.prototype.writeInt8 = function writeInt8 (valueoffsetnoAssert) {
      
value = +value
      offset 
offset 0
      
if (!noAssertcheckInt(thisvalueoffset10x7f, -0x80)
      if (!
Buffer.TYPED_ARRAY_SUPPORTvalue Math.floor(value)
      if (
value 0value 0xff value 1
      this
[offset] = value
      
return offset 1
    
}

    
Buffer.prototype.writeInt16LE = function writeInt16LE (valueoffsetnoAssert) {
      
value = +value
      offset 
offset 0
      
if (!noAssertcheckInt(thisvalueoffset20x7fff, -0x8000)
      if (
Buffer.TYPED_ARRAY_SUPPORT) {
        
this[offset] = value
        this
[offset 1] = (value >>> 8)
      } else {
        
objectWriteUInt16(thisvalueoffsettrue)
      }
      return 
offset 2
    
}

    
Buffer.prototype.writeInt16BE = function writeInt16BE (valueoffsetnoAssert) {
      
value = +value
      offset 
offset 0
      
if (!noAssertcheckInt(thisvalueoffset20x7fff, -0x8000)
      if (
Buffer.TYPED_ARRAY_SUPPORT) {
        
this[offset] = (value >>> 8)
        
this[offset 1] = value
      
} else {
        
objectWriteUInt16(thisvalueoffsetfalse)
      }
      return 
offset 2
    
}

    
Buffer.prototype.writeInt32LE = function writeInt32LE (valueoffsetnoAssert) {
      
value = +value
      offset 
offset 0
      
if (!noAssertcheckInt(thisvalueoffset40x7fffffff, -0x80000000)
      if (
Buffer.TYPED_ARRAY_SUPPORT) {
        
this[offset] = value
        this
[offset 1] = (value >>> 8)
        
this[offset 2] = (value >>> 16)
        
this[offset 3] = (value >>> 24)
      } else {
        
objectWriteUInt32(thisvalueoffsettrue)
      }
      return 
offset 4
    
}

    
Buffer.prototype.writeInt32BE = function writeInt32BE (valueoffsetnoAssert) {
      
value = +value
      offset 
offset 0
      
if (!noAssertcheckInt(thisvalueoffset40x7fffffff, -0x80000000)
      if (
value 0value 0xffffffff value 1
      
if (Buffer.TYPED_ARRAY_SUPPORT) {
        
this[offset] = (value >>> 24)
        
this[offset 1] = (value >>> 16)
        
this[offset 2] = (value >>> 8)
        
this[offset 3] = value
      
} else {
        
objectWriteUInt32(thisvalueoffsetfalse)
      }
      return 
offset 4
    
}

    function 
checkIEEE754 (bufvalueoffsetextmaxmin) {
      if (
value max || value min) throw new RangeError('value is out of bounds')
      if (
offset ext buf.length) throw new RangeError('index out of range')
      if (
offset 0) throw new RangeError('index out of range')
    }

    function 
writeFloat (bufvalueoffsetlittleEndiannoAssert) {
      if (!
noAssert) {
        
checkIEEE754(bufvalueoffset43.4028234663852886e+38, -3.4028234663852886e+38)
      }
      
ieee754.write(bufvalueoffsetlittleEndian234)
      return 
offset 4
    
}

    
Buffer.prototype.writeFloatLE = function writeFloatLE (valueoffsetnoAssert) {
      return 
writeFloat(thisvalueoffsettruenoAssert)
    }

    
Buffer.prototype.writeFloatBE = function writeFloatBE (valueoffsetnoAssert) {
      return 
writeFloat(thisvalueoffsetfalsenoAssert)
    }

    function 
writeDouble (bufvalueoffsetlittleEndiannoAssert) {
      if (!
noAssert) {
        
checkIEEE754(bufvalueoffset81.7976931348623157E+308, -1.7976931348623157E+308)
      }
      
ieee754.write(bufvalueoffsetlittleEndian528)
      return 
offset 8
    
}

    
Buffer.prototype.writeDoubleLE = function writeDoubleLE (valueoffsetnoAssert) {
      return 
writeDouble(thisvalueoffsettruenoAssert)
    }

    
Buffer.prototype.writeDoubleBE = function writeDoubleBE (valueoffsetnoAssert) {
      return 
writeDouble(thisvalueoffsetfalsenoAssert)
    }

    
// copy(targetBuffer, targetStart=0, sourceStart=0, sourceEnd=buffer.length)
    
Buffer.prototype.copy = function copy (targettargetStartstartend) {
      if (!
startstart 0
      
if (!end && end !== 0end this.length
      
if (targetStart >= target.lengthtargetStart target.length
      
if (!targetStarttargetStart 0
      
if (end && end startend start

      
// Copy 0 bytes; we're done
      
if (end === start) return 0
      
if (target.length === || this.length === 0) return 0

      
// Fatal error conditions
      
if (targetStart 0) {
        throw new 
RangeError('targetStart out of bounds')
      }
      if (
start || start >= this.length) throw new RangeError('sourceStart out of bounds')
      if (
end 0) throw new RangeError('sourceEnd out of bounds')

      
// Are we oob?
      
if (end this.lengthend this.length
      
if (target.length targetStart end start) {
        
end target.length targetStart start
      
}

      var 
len end start
      
var i

      
if (this === target && start targetStart && targetStart end) {
        
// descending copy from end
        
for (len 1>= 0i--) {
          
target[targetStart] = this[start]
        }
      } else if (
len 1000 || !Buffer.TYPED_ARRAY_SUPPORT) {
        
// ascending copy from start
        
for (0leni++) {
          
target[targetStart] = this[start]
        }
      } else {
        
target._set(this.subarray(startstart len), targetStart)
      }

      return 
len
    
}

    
// fill(value, start=0, end=buffer.length)
    
Buffer.prototype.fill = function fill (valuestartend) {
      if (!
valuevalue 0
      
if (!startstart 0
      
if (!endend this.length

      
if (end start) throw new RangeError('end < start')

      
// Fill 0 bytes; we're done
      
if (end === start) return
      if (
this.length === 0) return

      if (
start || start >= this.length) throw new RangeError('start out of bounds')
      if (
end || end this.length) throw new RangeError('end out of bounds')

      var 
i
      
if (typeof value === 'number') {
        for (
startendi++) {
          
this[i] = value
        
}
      } else {
        var 
bytes utf8ToBytes(value.toString())
        var 
len bytes.length
        
for (startendi++) {
          
this[i] = bytes[len]
        }
      }

      return 
this
    
}

    
/**
     * Creates a new `ArrayBuffer` with the *copied* memory of the buffer instance.
     * Added in Node 0.12. Only available in browsers that support ArrayBuffer.
     */
    
Buffer.prototype.toArrayBuffer = function toArrayBuffer () {
      if (
typeof Uint8Array !== 'undefined') {
        if (
Buffer.TYPED_ARRAY_SUPPORT) {
          return (new 
Buffer(this)).buffer
        
} else {
          var 
buf = new Uint8Array(this.length)
          for (var 
0len buf.lengthlen+= 1) {
            
buf[i] = this[i]
          }
          return 
buf.buffer
        
}
      } else {
        throw new 
TypeError('Buffer.toArrayBuffer not supported in this browser')
      }
    }

    
// HELPER FUNCTIONS
    // ================

    
var BP Buffer.prototype

    
/**
     * Augment a Uint8Array *instance* (not the Uint8Array class!) with Buffer methods
     */
    
Buffer._augment = function _augment (arr) {
      
arr.constructor Buffer
      arr
._isBuffer true

      
// save reference to original Uint8Array set method before overwriting
      
arr._set arr.set

      
// deprecated
      
arr.get BP.get
      arr
.set BP.set

      arr
.write BP.write
      arr
.toString BP.toString
      arr
.toLocaleString BP.toString
      arr
.toJSON BP.toJSON
      arr
.equals BP.equals
      arr
.compare BP.compare
      arr
.indexOf BP.indexOf
      arr
.copy BP.copy
      arr
.slice BP.slice
      arr
.readUIntLE BP.readUIntLE
      arr
.readUIntBE BP.readUIntBE
      arr
.readUInt8 BP.readUInt8
      arr
.readUInt16LE BP.readUInt16LE
      arr
.readUInt16BE BP.readUInt16BE
      arr
.readUInt32LE BP.readUInt32LE
      arr
.readUInt32BE BP.readUInt32BE
      arr
.readIntLE BP.readIntLE
      arr
.readIntBE BP.readIntBE
      arr
.readInt8 BP.readInt8
      arr
.readInt16LE BP.readInt16LE
      arr
.readInt16BE BP.readInt16BE
      arr
.readInt32LE BP.readInt32LE
      arr
.readInt32BE BP.readInt32BE
      arr
.readFloatLE BP.readFloatLE
      arr
.readFloatBE BP.readFloatBE
      arr
.readDoubleLE BP.readDoubleLE
      arr
.readDoubleBE BP.readDoubleBE
      arr
.writeUInt8 BP.writeUInt8
      arr
.writeUIntLE BP.writeUIntLE
      arr
.writeUIntBE BP.writeUIntBE
      arr
.writeUInt16LE BP.writeUInt16LE
      arr
.writeUInt16BE BP.writeUInt16BE
      arr
.writeUInt32LE BP.writeUInt32LE
      arr
.writeUInt32BE BP.writeUInt32BE
      arr
.writeIntLE BP.writeIntLE
      arr
.writeIntBE BP.writeIntBE
      arr
.writeInt8 BP.writeInt8
      arr
.writeInt16LE BP.writeInt16LE
      arr
.writeInt16BE BP.writeInt16BE
      arr
.writeInt32LE BP.writeInt32LE
      arr
.writeInt32BE BP.writeInt32BE
      arr
.writeFloatLE BP.writeFloatLE
      arr
.writeFloatBE BP.writeFloatBE
      arr
.writeDoubleLE BP.writeDoubleLE
      arr
.writeDoubleBE BP.writeDoubleBE
      arr
.fill BP.fill
      arr
.inspect BP.inspect
      arr
.toArrayBuffer BP.toArrayBuffer

      
return arr
    
}

    var 
INVALID_BASE64_RE = /[^+/0-9A-Za-z-_]/g

    
function base64clean (str) {
      
// Node strips out invalid characters like n and t from the string, base64-js does not
      
str stringtrim(str).replace(INVALID_BASE64_RE'')
      
// Node converts strings with length < 2 to ''
      
if (str.length 2) return ''
      
// Node allows for non-padded base64 strings (missing trailing ===), base64-js does not
      
while (str.length !== 0) {
        
str str '='
      
}
      return 
str
    
}

    function 
stringtrim (str) {
      if (
str.trim) return str.trim()
      return 
str.replace(/^s+|s+$/g'')
    }

    function 
toHex (n) {
      if (
16) return '0' n.toString(16)
      return 
n.toString(16)
    }

    function 
utf8ToBytes (stringunits) {
      
units units || Infinity
      
var codePoint
      
var length string.length
      
var leadSurrogate null
      
var bytes = []

      for (var 
0lengthi++) {
        
codePoint string.charCodeAt(i)

        
// is surrogate component
        
if (codePoint 0xD7FF && codePoint 0xE000) {
          
// last char was a lead
          
if (!leadSurrogate) {
            
// no lead yet
            
if (codePoint 0xDBFF) {
              
// unexpected trail
              
if ((units -= 3) > -1bytes.push(0xEF0xBF0xBD)
              continue
            } else if (
=== length) {
              
// unpaired lead
              
if ((units -= 3) > -1bytes.push(0xEF0xBF0xBD)
              continue
            }

            
// valid lead
            
leadSurrogate codePoint

            
continue
          }

          
// 2 leads in a row
          
if (codePoint 0xDC00) {
            if ((
units -= 3) > -1bytes.push(0xEF0xBF0xBD)
            
leadSurrogate codePoint
            
continue
          }

          
// valid surrogate pair
          
codePoint leadSurrogate 0xD800 << 10 codePoint 0xDC00 0x10000
        
} else if (leadSurrogate) {
          
// valid bmp char, but last char was a lead
          
if ((units -= 3) > -1bytes.push(0xEF0xBF0xBD)
        }

        
leadSurrogate null

        
// encode utf8
        
if (codePoint 0x80) {
          if ((
units -= 1) < 0) break
          
bytes.push(codePoint)
        } else if (
codePoint 0x800) {
          if ((
units -= 2) < 0) break
          
bytes.push(
            
codePoint >> 0x6 0xC0,
            
codePoint 0x3F 0x80
          
)
        } else if (
codePoint 0x10000) {
          if ((
units -= 3) < 0) break
          
bytes.push(
            
codePoint >> 0xC 0xE0,
            
codePoint >> 0x6 0x3F 0x80,
            
codePoint 0x3F 0x80
          
)
        } else if (
codePoint 0x110000) {
          if ((
units -= 4) < 0) break
          
bytes.push(
            
codePoint >> 0x12 0xF0,
            
codePoint >> 0xC 0x3F 0x80,
            
codePoint >> 0x6 0x3F 0x80,
            
codePoint 0x3F 0x80
          
)
        } else {
          throw new 
Error('Invalid code point')
        }
      }

      return 
bytes
    
}

    function 
asciiToBytes (str) {
      var 
byteArray = []
      for (var 
0str.lengthi++) {
        
// Node's code seems to be doing this and not & 0x7F..
        
byteArray.push(str.charCodeAt(i) & 0xFF)
      }
      return 
byteArray
    
}

    function 
utf16leToBytes (strunits) {
      var 
chilo
      
var byteArray = []
      for (var 
0str.lengthi++) {
        if ((
units -= 2) < 0) break

        
str.charCodeAt(i)
        
hi >> 8
        lo 
256
        byteArray
.push(lo)
        
byteArray.push(hi)
      }

      return 
byteArray
    
}

    function 
base64ToBytes (str) {
      return 
base64.toByteArray(base64clean(str))
    }

    function 
blitBuffer (srcdstoffsetlength) {
      for (var 
0lengthi++) {
        if ((
offset >= dst.length) || (>= src.length)) break
        
dst[offset] = src[i]
      }
      return 
i
    
}

    
/* WEBPACK VAR INJECTION */}.call(exports__webpack_require__(2).Buffer))

/***/ },
/* 3 */
/***/ 
function(moduleexports__webpack_require__) {

    var 
lookup 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';

    ;(function (
exports) {
        
'use strict';

      var 
Arr = (typeof Uint8Array !== 'undefined')
        ? 
Uint8Array
        
: Array

        var 
PLUS   '+'.charCodeAt(0)
        var 
SLASH  '/'.charCodeAt(0)
        var 
NUMBER '0'.charCodeAt(0)
        var 
LOWER  'a'.charCodeAt(0)
        var 
UPPER  'A'.charCodeAt(0)
        var 
PLUS_URL_SAFE '-'.charCodeAt(0)
        var 
SLASH_URL_SAFE '_'.charCodeAt(0)

        function 
decode (elt) {
            var 
code elt.charCodeAt(0)
            if (
code === PLUS ||
                
code === PLUS_URL_SAFE)
                return 
62 // '+'
            
if (code === SLASH ||
                
code === SLASH_URL_SAFE)
                return 
63 // '/'
            
if (code NUMBER)
                return -
//no match
            
if (code NUMBER 10)
                return 
code NUMBER 26 26
            
if (code UPPER 26)
                return 
code UPPER
            
if (code LOWER 26)
                return 
code LOWER 26
        
}

        function 
b64ToByteArray (b64) {
            var 
ijltmpplaceHoldersarr

            
if (b64.length 0) {
                throw new 
Error('Invalid string. Length must be a multiple of 4')
            }

            
// the number of equal signs (place holders)
            // if there are two placeholders, than the two characters before it
            // represent one byte
            // if there is only one, then the three characters before it represent 2 bytes
            // this is just a cheap hack to not do indexOf twice
            
var len b64.length
            placeHolders 
'=' === b64.charAt(len 2) ? '=' === b64.charAt(len 1) ? 0

            
// base64 is 4/3 + up to two characters of the original data
            
arr = new Arr(b64.length placeHolders)

            
// if there are placeholders, only get up to the last complete 4 chars
            
placeHolders b64.length b64.length

            
var 0

            
function push (v) {
                
arr[L++] = v
            
}

            for (
00l+= 4+= 3) {
                
tmp = (decode(b64.charAt(i)) << 18) | (decode(b64.charAt(1)) << 12) | (decode(b64.charAt(2)) << 6) | decode(b64.charAt(3))
                
push((tmp 0xFF0000) >> 16)
                
push((tmp 0xFF00) >> 8)
                
push(tmp 0xFF)
            }

            if (
placeHolders === 2) {
                
tmp = (decode(b64.charAt(i)) << 2) | (decode(b64.charAt(1)) >> 4)
                
push(tmp 0xFF)
            } else if (
placeHolders === 1) {
                
tmp = (decode(b64.charAt(i)) << 10) | (decode(b64.charAt(1)) << 4) | (decode(b64.charAt(2)) >> 2)
                
push((tmp >> 8) & 0xFF)
                
push(tmp 0xFF)
            }

            return 
arr
        
}

        function 
uint8ToBase64 (uint8) {
            var 
i,
                
extraBytes uint8.length 3// if we have 1 byte left, pad 2 bytes
                
output "",
                
templength

            
function encode (num) {
                return 
lookup.charAt(num)
            }

            function 
tripletToBase64 (num) {
                return 
encode(num >> 18 0x3F) + encode(num >> 12 0x3F) + encode(num >> 0x3F) + encode(num 0x3F)
            }

            
// go through the array every three bytes, we'll deal with trailing stuff later
            
for (0length uint8.length extraByteslength+= 3) {
                
temp = (uint8[i] << 16) + (uint8[1] << 8) + (uint8[2])
                
output += tripletToBase64(temp)
            }

            
// pad the end with zeros, but make sure to not forget the extra bytes
            
switch (extraBytes) {
                case 
1:
                    
temp uint8[uint8.length 1]
                    
output += encode(temp >> 2)
                    
output += encode((temp << 4) & 0x3F)
                    
output += '=='
                    
break
                case 
2:
                    
temp = (uint8[uint8.length 2] << 8) + (uint8[uint8.length 1])
                    
output += encode(temp >> 10)
                    
output += encode((temp >> 4) & 0x3F)
                    
output += encode((temp << 2) & 0x3F)
                    
output += '='
                    
break
            }

            return 
output
        
}

        
exports.toByteArray b64ToByteArray
        exports
.fromByteArray uint8ToBase64
    
}( false ? (this.base64js = {}) : exports))


/***/ },
/* 4 */
/***/ 
function(moduleexports) {

    
exports.read = function (bufferoffsetisLEmLennBytes) {
      var 
em
      
var eLen nBytes mLen 1
      
var eMax = (<< eLen) - 1
      
var eBias eMax >> 1
      
var nBits = -7
      
var isLE ? (nBytes 1) : 0
      
var isLE ? -1
      
var buffer[offset i]

      
+= d

      e 
& ((<< (-nBits)) - 1)
      
>>= (-nBits)
      
nBits += eLen
      
for (; nBits 0256 buffer[offset i], += dnBits -= 8) {}

      
& ((<< (-nBits)) - 1)
      
>>= (-nBits)
      
nBits += mLen
      
for (; nBits 0256 buffer[offset i], += dnBits -= 8) {}

      if (
=== 0) {
        
eBias
      
} else if (=== eMax) {
        return 
NaN : ((? -1) * Infinity)
      } else {
        
Math.pow(2mLen)
        
eBias
      
}
      return (
? -1) * Math.pow(2mLen)
    }

    
exports.write = function (buffervalueoffsetisLEmLennBytes) {
      var 
emc
      
var eLen nBytes mLen 1
      
var eMax = (<< eLen) - 1
      
var eBias eMax >> 1
      
var rt = (mLen === 23 Math.pow(2, -24) - Math.pow(2, -77) : 0)
      var 
isLE : (nBytes 1)
      var 
isLE : -1
      
var value || (value === && value 0) ? 0

      value 
Math.abs(value)

      if (
isNaN(value) || value === Infinity) {
        
isNaN(value) ? 0
        e 
eMax
      
} else {
        
Math.floor(Math.log(value) / Math.LN2)
        if (
value * (Math.pow(2, -e)) < 1) {
          
e--
          
*= 2
        
}
        if (
eBias >= 1) {
          
value += rt c
        
} else {
          
value += rt Math.pow(2eBias)
        }
        if (
value >= 2) {
          
e++
          
/= 2
        
}

        if (
eBias >= eMax) {
          
0
          e 
eMax
        
} else if (eBias >= 1) {
          
= (value 1) * Math.pow(2mLen)
          
eBias
        
} else {
          
value Math.pow(2eBias 1) * Math.pow(2mLen)
          
0
        
}
      }

      for (; 
mLen >= 8buffer[offset i] = 0xff+= d/= 256mLen -= 8) {}

      
= (<< mLen) | m
      eLen 
+= mLen
      
for (; eLen 0buffer[offset i] = 0xff+= d/= 256eLen -= 8) {}

      
buffer[offset d] |= 128
    
}


/***/ },
/* 5 */
/***/ 
function(moduleexports) {

    
    
/**
     * isArray
     */

    
var isArray = Array.isArray;

    
/**
     * toString
     */

    
var str Object.prototype.toString;

    
/**
     * Whether or not the given `val`
     * is an array.
     *
     * example:
     *
     *        isArray([]);
     *        // > true
     *        isArray(arguments);
     *        // > false
     *        isArray('');
     *        // > false
     *
     * @param {mixed} val
     * @return {bool}
     */

    
module.exports isArray || function (val) {
      return !! 
val && '[object Array]' == str.call(val);
    };


/***/ },
/* 6 */
/***/ 
function(moduleexports__webpack_require__) {

    
/* jslint node: true */
    /* global window */
    
'use strict';

    var 
__webpack_require__(7);
    var 
FontProvider __webpack_require__(9);
    var 
LayoutBuilder __webpack_require__(11);
    var 
PdfKit __webpack_require__(24);
    var 
PDFReference __webpack_require__(46);
    var 
sizes __webpack_require__(102);
    var 
ImageMeasure __webpack_require__(103);
    var 
textDecorator __webpack_require__(104);
    var 
FontProvider __webpack_require__(9);

    
////////////////////////////////////////
    // PdfPrinter

    /**
     * @class Creates an instance of a PdfPrinter which turns document definition into a pdf
     *
     * @param {Object} fontDescriptors font definition dictionary
     *
     * @example
     * var fontDescriptors = {
     *    Roboto: {
     *        normal: 'fonts/Roboto-Regular.ttf',
     *        bold: 'fonts/Roboto-Medium.ttf',
     *        italics: 'fonts/Roboto-Italic.ttf',
     *        bolditalics: 'fonts/Roboto-Italic.ttf'
     *    }
     * };
     *
     * var printer = new PdfPrinter(fontDescriptors);
     */
    
function PdfPrinter(fontDescriptors) {
        
this.fontDescriptors fontDescriptors;
    }

    
/**
     * Executes layout engine for the specified document and renders it into a pdfkit document
     * ready to be saved.
     *
     * @param {Object} docDefinition document definition
     * @param {Object} docDefinition.content an array describing the pdf structure (for more information take a look at the examples in the /examples folder)
     * @param {Object} [docDefinition.defaultStyle] default (implicit) style definition
     * @param {Object} [docDefinition.styles] dictionary defining all styles which can be used in the document
     * @param {Object} [docDefinition.pageSize] page size (pdfkit units, A4 dimensions by default)
     * @param {Number} docDefinition.pageSize.width width
     * @param {Number} docDefinition.pageSize.height height
     * @param {Object} [docDefinition.pageMargins] page margins (pdfkit units)
     *
     * @example
     *
     * var docDefinition = {
     *    content: [
     *        'First paragraph',
     *        'Second paragraph, this time a little bit longer',
     *        { text: 'Third paragraph, slightly bigger font size', fontSize: 20 },
     *        { text: 'Another paragraph using a named style', style: 'header' },
     *        { text: ['playing with ', 'inlines' ] },
     *        { text: ['and ', { text: 'restyling ', bold: true }, 'them'] },
     *    ],
     *    styles: {
     *        header: { fontSize: 30, bold: true }
     *    }
     * }
     *
     * var pdfDoc = printer.createPdfKitDocument(docDefinition);
     *
     * pdfDoc.pipe(fs.createWriteStream('sample.pdf'));
     * pdfDoc.end();
     *
     * @return {Object} a pdfKit document object which can be saved or encode to data-url
     */
    
PdfPrinter.prototype.createPdfKitDocument = function(docDefinitionoptions) {
        
options options || {};

        var 
pageSize pageSize2widthAndHeight(docDefinition.pageSize || 'a4');

      if(
docDefinition.pageOrientation === 'landscape') {
        
pageSize = { widthpageSize.heightheightpageSize.width};
      }
        
pageSize.orientation docDefinition.pageOrientation === 'landscape' docDefinition.pageOrientation 'portrait';

        
this.pdfKitDoc = new PdfKit({ size: [ pageSize.widthpageSize.height ], compressfalse});
        
this.pdfKitDoc.info.Producer 'pdfmake';
        
this.pdfKitDoc.info.Creator 'pdfmake';
        
this.fontProvider = new FontProvider(this.fontDescriptorsthis.pdfKitDoc);

      
docDefinition.images docDefinition.images || {};

        var 
builder = new LayoutBuilder(
            
pageSize,
            
fixPageMargins(docDefinition.pageMargins || 40),
            new 
ImageMeasure(this.pdfKitDocdocDefinition.images));

      
registerDefaultTableLayouts(builder);
      if (
options.tableLayouts) {
        
builder.registerTableLayouts(options.tableLayouts);
      }

        var 
pages builder.layoutDocument(docDefinition.contentthis.fontProviderdocDefinition.styles || {}, docDefinition.defaultStyle || { fontSize12font'Roboto' }, docDefinition.backgrounddocDefinition.headerdocDefinition.footerdocDefinition.imagesdocDefinition.watermarkdocDefinition.pageBreakBefore);

        
renderPages(pagesthis.fontProviderthis.pdfKitDoc);

        if(
options.autoPrint){
        var 
printActionRef this.pdfKitDoc.ref({
          
Type'Action',
          
S'Named',
          
N'Print'
        
});
        
this.pdfKitDoc._root.data.OpenAction printActionRef;
        
printActionRef.end();
        }
        return 
this.pdfKitDoc;
    };

    function 
fixPageMargins(margin) {
        if (!
margin) return null;

        if (
typeof margin === 'number' || margin instanceof Number) {
            
margin = { leftmarginrightmargintopmarginbottommargin };
        } else if (
margin instanceof Array) {
            if (
margin.length === 2) {
                
margin = { leftmargin[0], topmargin[1], rightmargin[0], bottommargin[1] };
            } else if (
margin.length === 4) {
                
margin = { leftmargin[0], topmargin[1], rightmargin[2], bottommargin[3] };
            } else throw 
'Invalid pageMargins definition';
        }

        return 
margin;
    }

    function 
registerDefaultTableLayouts(layoutBuilder) {
      
layoutBuilder.registerTableLayouts({
        
noBorders: {
          
hLineWidth: function(i) { return 0; },
          
vLineWidth: function(i) { return 0; },
          
paddingLeft: function(i) { return && || 0; },
          
paddingRight: function(inode) { return (node.table.widths.length 1) ? 0; },
        },
        
headerLineOnly: {
          
hLineWidth: function(inode) {
            if (
=== || === node.table.body.length) return 0;
            return (
=== node.table.headerRows) ? 0;
          },
          
vLineWidth: function(i) { return 0; },
          
paddingLeft: function(i) {
            return 
=== 8;
          },
          
paddingRight: function(inode) {
            return (
=== node.table.widths.length 1) ? 8;
          }
        },
        
lightHorizontalLines: {
          
hLineWidth: function(inode) {
            if (
=== || === node.table.body.length) return 0;
            return (
=== node.table.headerRows) ? 1;
          },
          
vLineWidth: function(i) { return 0; },
          
hLineColor: function(i) { return === 'black' '#aaa'; },
          
paddingLeft: function(i) {
            return 
=== 8;
          },
          
paddingRight: function(inode) {
            return (
=== node.table.widths.length 1) ? 8;
          }
        }
      });
    }

    var 
defaultLayout = {
      
hLineWidth: function(inode) { return 1; }, //return node.table.headerRows && i === node.table.headerRows && 3 || 0; },
      
vLineWidth: function(inode) { return 1; },
      
hLineColor: function(inode) { return 'black'; },
      
vLineColor: function(inode) { return 'black'; },
      
paddingLeft: function(inode) { return 4; }, //i && 4 || 0; },
      
paddingRight: function(inode) { return 4; }, //(i < node.table.widths.length - 1) ? 4 : 0; },
      
paddingTop: function(inode) { return 2; },
      
paddingBottom: function(inode) { return 2; }
    };

    function 
pageSize2widthAndHeight(pageSize) {
        if (
typeof pageSize == 'string' || pageSize instanceof String) {
            var 
size sizes[pageSize.toUpperCase()];
            if (!
size) throw ('Page size ' pageSize ' not recognized');
            return { 
widthsize[0], heightsize[1] };
        }

        return 
pageSize;
    }

    function 
StringObject(str){
        
this.isString true;
        
this.toString = function(){
            return 
str;
        };
    }

    function 
updatePageOrientationInOptions(currentPagepdfKitDoc) {
        var 
previousPageOrientation pdfKitDoc.options.size[0] > pdfKitDoc.options.size[1] ? 'landscape' 'portrait';

        if(
currentPage.pageSize.orientation !== previousPageOrientation) {
            var 
width pdfKitDoc.options.size[0];
            var 
height pdfKitDoc.options.size[1];
            
pdfKitDoc.options.size = [heightwidth];
        }
    }

    function 
renderPages(pagesfontProviderpdfKitDoc) {
      
pdfKitDoc._pdfMakePages pages;
        for (var 
0pages.lengthi++) {
            if (
0) {
                
updatePageOrientationInOptions(pages[i], pdfKitDoc);
                
pdfKitDoc.addPage(pdfKitDoc.options);
            }

            var 
page pages[i];
        for(var 
ii 0il page.items.lengthii ilii++) {
            var 
item page.items[ii];
            switch(
item.type) {
              case 
'vector':
                  
renderVector(item.itempdfKitDoc);
                  break;
              case 
'line':
                  
renderLine(item.itemitem.item.xitem.item.ypdfKitDoc);
                  break;
              case 
'image':
                  
renderImage(item.itemitem.item.xitem.item.ypdfKitDoc);
                  break;
                    }
        }
        if(
page.watermark){
          
renderWatermark(pagepdfKitDoc);
        }

        
fontProvider.setFontRefsToPdfDoc();
      }
    }

    function 
renderLine(linexypdfKitDoc) {
        
|| 0;
        
|| 0;

        var 
ascenderHeight line.getAscenderHeight();

        
textDecorator.drawBackground(linexypdfKitDoc);

        
//TODO: line.optimizeInlines();
        
for(var 0line.inlines.lengthli++) {
            var 
inline line.inlines[i];

            
pdfKitDoc.fill(inline.color || 'black');

            
pdfKitDoc.save();
            
pdfKitDoc.transform(100, -10pdfKitDoc.page.height);


        var 
encoded inline.font.encode(inline.text);
            
pdfKitDoc.addContent('BT');

            
pdfKitDoc.addContent('' + (inline.x) + ' ' + (pdfKitDoc.page.height ascenderHeight) + ' Td');
            
pdfKitDoc.addContent('/' encoded.fontId ' ' inline.fontSize ' Tf');

            
pdfKitDoc.addContent('<' encoded.encodedText '> Tj');

            
pdfKitDoc.addContent('ET');
            
pdfKitDoc.restore();
        }

        
textDecorator.drawDecorations(linexypdfKitDoc);

    }

    function 
renderWatermark(pagepdfKitDoc){
        var 
watermark page.watermark;

        
pdfKitDoc.fill('black');
        
pdfKitDoc.opacity(0.6);

        
pdfKitDoc.save();
        
pdfKitDoc.transform(100, -10pdfKitDoc.page.height);

        var 
angle Math.atan2(pdfKitDoc.page.heightpdfKitDoc.page.width) * 180/Math.PI;
        
pdfKitDoc.rotate(angle, {origin: [pdfKitDoc.page.width/2pdfKitDoc.page.height/2]});

      var 
encoded watermark.font.encode(watermark.text);
        
pdfKitDoc.addContent('BT');
        
pdfKitDoc.addContent('' + (pdfKitDoc.page.width/watermark.size.size.width/2) + ' ' + (pdfKitDoc.page.height/watermark.size.size.height/4) + ' Td');
        
pdfKitDoc.addContent('/' encoded.fontId ' ' watermark.size.fontSize ' Tf');
        
pdfKitDoc.addContent('<' encoded.encodedText '> Tj');
        
pdfKitDoc.addContent('ET');
        
pdfKitDoc.restore();
    }

    function 
renderVector(vectorpdfDoc) {
        
//TODO: pdf optimization (there's no need to write all properties everytime)
        
pdfDoc.lineWidth(vector.lineWidth || 1);
        if (
vector.dash) {
            
pdfDoc.dash(vector.dash.length, { spacevector.dash.space || vector.dash.length });
        } else {
            
pdfDoc.undash();
        }
        
pdfDoc.fillOpacity(vector.fillOpacity || 1);
        
pdfDoc.strokeOpacity(vector.strokeOpacity || 1);
        
pdfDoc.lineJoin(vector.lineJoin || 'miter');

        
//TODO: clipping

        
switch(vector.type) {
            case 
'ellipse':
                
pdfDoc.ellipse(vector.xvector.yvector.r1vector.r2);
                break;
            case 
'rect':
                if (
vector.r) {
                    
pdfDoc.roundedRect(vector.xvector.yvector.wvector.hvector.r);
                } else {
                    
pdfDoc.rect(vector.xvector.yvector.wvector.h);
                }
                break;
            case 
'line':
                
pdfDoc.moveTo(vector.x1vector.y1);
                
pdfDoc.lineTo(vector.x2vector.y2);
                break;
            case 
'polyline':
                if (
vector.points.length === 0) break;

                
pdfDoc.moveTo(vector.points[0].xvector.points[0].y);
                for(var 
1vector.points.lengthli++) {
                    
pdfDoc.lineTo(vector.points[i].xvector.points[i].y);
                }

                if (
vector.points.length 1) {
                    var 
p1 vector.points[0];
                    var 
pn vector.points[vector.points.length 1];

                    if (
vector.closePath || p1.=== pn.&& p1.=== pn.y) {
                        
pdfDoc.closePath();
                    }
                }
                break;
        }

        if (
vector.color && vector.lineColor) {
            
pdfDoc.fillAndStroke(vector.colorvector.lineColor);
        } else if (
vector.color) {
            
pdfDoc.fill(vector.color);
        } else {
            
pdfDoc.stroke(vector.lineColor || 'black');
        }
    }

    function 
renderImage(imagexypdfKitDoc) {
        
pdfKitDoc.image(image.imageimage.ximage.y, { widthimage._widthheightimage._height });
    }

    
module.exports PdfPrinter;


    
/* temporary browser extension */
    
PdfPrinter.prototype.fs __webpack_require__(44);


/***/ },
/* 7 */
/***/ 
function(moduleexports__webpack_require__) {

    var 
__WEBPACK_AMD_DEFINE_RESULT__;/* WEBPACK VAR INJECTION */(function(module, global) {/**
     * @license
     * lodash 3.1.0 (Custom Build) <https://lodash.com/>
     * Build: `lodash modern -d -o ./index.js`
     * Copyright 2012-2015 The Dojo Foundation <http://dojofoundation.org/>
     * Based on Underscore.js 1.7.0 <http://underscorejs.org/LICENSE>
     * Copyright 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
     * Available under MIT license <https://lodash.com/license>
     */
    
;(function() {

      
/** Used as a safe reference for `undefined` in pre-ES5 environments. */
      
var undefined;

      
/** Used as the semantic version number. */
      
var VERSION '3.1.0';

      
/** Used to compose bitmasks for wrapper metadata. */
      
var BIND_FLAG 1,
          
BIND_KEY_FLAG 2,
          
CURRY_BOUND_FLAG 4,
          
CURRY_FLAG 8,
          
CURRY_RIGHT_FLAG 16,
          
PARTIAL_FLAG 32,
          
PARTIAL_RIGHT_FLAG 64,
          
REARG_FLAG 128,
          
ARY_FLAG 256;

      
/** Used as default options for `_.trunc`. */
      
var DEFAULT_TRUNC_LENGTH 30,
          
DEFAULT_TRUNC_OMISSION '...';

      
/** Used to detect when a function becomes hot. */
      
var HOT_COUNT 150,
          
HOT_SPAN 16;

      
/** Used to indicate the type of lazy iteratees. */
      
var LAZY_FILTER_FLAG 0,
          
LAZY_MAP_FLAG 1,
          
LAZY_WHILE_FLAG 2;

      
/** Used as the `TypeError` message for "Functions" methods. */
      
var FUNC_ERROR_TEXT 'Expected a function';

      
/** Used as the internal argument placeholder. */
      
var PLACEHOLDER '__lodash_placeholder__';

      
/** `Object#toString` result references. */
      
var argsTag '[object Arguments]',
          
arrayTag '[object Array]',
          
boolTag '[object Boolean]',
          
dateTag '[object Date]',
          
errorTag '[object Error]',
          
funcTag '[object Function]',
          
mapTag '[object Map]',
          
numberTag '[object Number]',
          
objectTag '[object Object]',
          
regexpTag '[object RegExp]',
          
setTag '[object Set]',
          
stringTag '[object String]',
          
weakMapTag '[object WeakMap]';

      var 
arrayBufferTag '[object ArrayBuffer]',
          
float32Tag '[object Float32Array]',
          
float64Tag '[object Float64Array]',
          
int8Tag '[object Int8Array]',
          
int16Tag '[object Int16Array]',
          
int32Tag '[object Int32Array]',
          
uint8Tag '[object Uint8Array]',
          
uint8ClampedTag '[object Uint8ClampedArray]',
          
uint16Tag '[object Uint16Array]',
          
uint32Tag '[object Uint32Array]';

      
/** Used to match empty string literals in compiled template source. */
      
var reEmptyStringLeading = /b__p += '';/g,
          
reEmptyStringMiddle = /b(__p +=) '' +/g,
          
reEmptyStringTrailing = /(__e(.*?)|b__t)) +n'';/g;

      
/** Used to match HTML entities and HTML characters. */
      
var reEscapedHtml = /&(?:amp|lt|gt|quot|#39|#96);/g,
          
reUnescapedHtml = /[&<>"'`]/g,
          reHasEscapedHtml = RegExp(reEscapedHtml.source),
          reHasUnescapedHtml = RegExp(reUnescapedHtml.source);

      /** Used to match template delimiters. */
      var reEscape = /<%-([sS]+?)%>/g,
          reEvaluate = /<%([sS]+?)%>/g,
          reInterpolate = /<%=([sS]+?)%>/g;

      /**
       * Used to match ES template delimiters.
       * See the [ES spec](https://people.mozilla.org/~jorendorff/es6-draft.html#sec-template-literal-lexical-components)
       * for more details.
       */
      var reEsTemplate = /
${([^\}]*(?:\.[^\}]*)*)}/g;

      /** Used to match `RegExp` flags from their coerced string values. */
      var reFlags = /w*$/;

      /** Used to detect named functions. */
      var reFuncName = /^s*function[ nrt]+w/;

      /** Used to detect hexadecimal string values. */
      var reHexPrefix = /^0[xX]/;

      /** Used to detect host constructors (Safari > 5). */
      var reHostCtor = /^[object .+?Constructor]$/;

      /** Used to match latin-1 supplementary letters (excluding mathematical operators). */
      var reLatin1 = /[xc0-xd6xd8-xdexdf-xf6xf8-xff]/g;

      /** Used to ensure capturing order of template delimiters. */
      var reNoMatch = /($^)/;

      /**
       * Used to match `RegExp` special characters.
       * See this [article on `RegExp` characters](http://www.regular-expressions.info/characters.html#special)
       * for more details.
       */
      var reRegExpChars = /[.*+?^
${}()|[]/\]/g,
          reHasRegExpChars = RegExp(reRegExpChars.source);

      /** Used to detect functions containing a `this` reference. */
      var reThis = /bthisb/;

      /** Used to match unescaped characters in compiled string literals. */
      var reUnescapedString = /['nru2028u2029\]/g;

      /** Used to match words to create compound words. */
      var reWords = (function() {
        var upper = '[A-Z\xc0-\xd6\xd8-\xde]',
            lower = '[a-z\xdf-\xf6\xf8-\xff]+';

        return RegExp(upper + '{2,}(?=' + upper + lower + ')|' + upper + '?' + lower + '|' + upper + '+|[0-9]+', 'g');
      }());

      /** Used to detect and test for whitespace. */
      var whitespace = (
        // Basic whitespace characters.
        ' tx0bfxa0ufeff' +

        // Line terminators.
        'nru2028u2029' +

        // Unicode category "
Zs" space separators.
        'u1680u180eu2000u2001u2002u2003u2004u2005u2006u2007u2008u2009u200au202fu205fu3000'
      );

      /** Used to assign default `context` object properties. */
      var contextProps = [
        'Array', 'ArrayBuffer', 'Date', 'Error', 'Float32Array', 'Float64Array',
        'Function', 'Int8Array', 'Int16Array', 'Int32Array', 'Math', 'Number',
        'Object', 'RegExp', 'Set', 'String', '_', 'clearTimeout', 'document',
        'isFinite', 'parseInt', 'setTimeout', 'TypeError', 'Uint8Array',
        'Uint8ClampedArray', 'Uint16Array', 'Uint32Array', 'WeakMap',
        'window', 'WinRTError'
      ];

      /** Used to make template sourceURLs easier to identify. */
      var templateCounter = -1;

      /** Used to identify `toStringTag` values of typed arrays. */
      var typedArrayTags = {};
      typedArrayTags[float32Tag] = typedArrayTags[float64Tag] =
      typedArrayTags[int8Tag] = typedArrayTags[int16Tag] =
      typedArrayTags[int32Tag] = typedArrayTags[uint8Tag] =
      typedArrayTags[uint8ClampedTag] = typedArrayTags[uint16Tag] =
      typedArrayTags[uint32Tag] = true;
      typedArrayTags[argsTag] = typedArrayTags[arrayTag] =
      typedArrayTags[arrayBufferTag] = typedArrayTags[boolTag] =
      typedArrayTags[dateTag] = typedArrayTags[errorTag] =
      typedArrayTags[funcTag] = typedArrayTags[mapTag] =
      typedArrayTags[numberTag] = typedArrayTags[objectTag] =
      typedArrayTags[regexpTag] = typedArrayTags[setTag] =
      typedArrayTags[stringTag] = typedArrayTags[weakMapTag] = false;

      /** Used to identify `toStringTag` values supported by `_.clone`. */
      var cloneableTags = {};
      cloneableTags[argsTag] = cloneableTags[arrayTag] =
      cloneableTags[arrayBufferTag] = cloneableTags[boolTag] =
      cloneableTags[dateTag] = cloneableTags[float32Tag] =
      cloneableTags[float64Tag] = cloneableTags[int8Tag] =
      cloneableTags[int16Tag] = cloneableTags[int32Tag] =
      cloneableTags[numberTag] = cloneableTags[objectTag] =
      cloneableTags[regexpTag] = cloneableTags[stringTag] =
      cloneableTags[uint8Tag] = cloneableTags[uint8ClampedTag] =
      cloneableTags[uint16Tag] = cloneableTags[uint32Tag] = true;
      cloneableTags[errorTag] = cloneableTags[funcTag] =
      cloneableTags[mapTag] = cloneableTags[setTag] =
      cloneableTags[weakMapTag] = false;

      /** Used as an internal `_.debounce` options object by `_.throttle`. */
      var debounceOptions = {
        'leading': false,
        'maxWait': 0,
        'trailing': false
      };

      /** Used to map latin-1 supplementary letters to basic latin letters. */
      var deburredLetters = {
        'xc0': 'A',  'xc1': 'A', 'xc2': 'A', 'xc3': 'A', 'xc4': 'A', 'xc5': 'A',
        'xe0': 'a',  'xe1': 'a', 'xe2': 'a', 'xe3': 'a', 'xe4': 'a', 'xe5': 'a',
        'xc7': 'C',  'xe7': 'c',
        'xd0': 'D',  'xf0': 'd',
        'xc8': 'E',  'xc9': 'E', 'xca': 'E', 'xcb': 'E',
        'xe8': 'e',  'xe9': 'e', 'xea': 'e', 'xeb': 'e',
        'xcC': 'I',  'xcd': 'I', 'xce': 'I', 'xcf': 'I',
        'xeC': 'i',  'xed': 'i', 'xee': 'i', 'xef': 'i',
        'xd1': 'N',  'xf1': 'n',
        'xd2': 'O',  'xd3': 'O', 'xd4': 'O', 'xd5': 'O', 'xd6': 'O', 'xd8': 'O',
        'xf2': 'o',  'xf3': 'o', 'xf4': 'o', 'xf5': 'o', 'xf6': 'o', 'xf8': 'o',
        'xd9': 'U',  'xda': 'U', 'xdb': 'U', 'xdc': 'U',
        'xf9': 'u',  'xfa': 'u', 'xfb': 'u', 'xfc': 'u',
        'xdd': 'Y',  'xfd': 'y', 'xff': 'y',
        'xc6': 'Ae', 'xe6': 'ae',
        'xde': 'Th', 'xfe': 'th',
        'xdf': 'ss'
      };

      /** Used to map characters to HTML entities. */
      var htmlEscapes = {
        '&': '&amp;',
        '<': '&lt;',
        '>': '&gt;',
        '"': '
&quot;',
        "'": '&#39;',
        '`': '&#96;'
      };

      /** Used to map HTML entities to characters. */
      var htmlUnescapes = {
        '&amp;': '&',
        '&lt;': '<',
        '&gt;': '>',
        '&quot;': '"',
        '
&#39;': "'",
        
'&#96;''`'
      
};

      
/** Used to determine if values are of the language type `Object`. */
      
var objectTypes = {
        
'function'true,
        
'object'true
      
};

      
/** Used to escape characters for inclusion in compiled string literals. */
      
var stringEscapes = {
        
'\': '\',
        "'": "'",
        '
n': 'n',
        '
r': 'r',
        '
u2028': 'u2028',
        '
u2029': 'u2029'
      };

      /**
       * Used as a reference to the global object.
       *
       * The `this` value is used if it is the global object to avoid Greasemonkey'
s
       
restricted `windowobjectotherwise the `windowobject is used.
       */
      var 
root = (objectTypes[typeof window] && window !== (this && this.window)) ? window this;

      
/** Detect free variable `exports`. */
      
var freeExports objectTypes[typeof exports] && exports && !exports.nodeType && exports;

      
/** Detect free variable `module`. */
      
var freeModule objectTypes[typeof module] && module && !module.nodeType && module;

      
/** Detect free variable `global` from Node.js or Browserified code and use it as `root`. */
      
var freeGlobal freeExports && freeModule && typeof global == 'object' && global;
      if (
freeGlobal && (freeGlobal.global === freeGlobal || freeGlobal.window === freeGlobal || freeGlobal.self === freeGlobal)) {
        
root freeGlobal;
      }

      
/** Detect the popular CommonJS extension `module.exports`. */
      
var moduleExports freeModule && freeModule.exports === freeExports && freeExports;

      
/*--------------------------------------------------------------------------*/

      /**
       * The base implementation of `compareAscending` which compares values and
       * sorts them in ascending order without guaranteeing a stable sort.
       *
       * @private
       * @param {*} value The value to compare to `other`.
       * @param {*} other The value to compare to `value`.
       * @returns {number} Returns the sort order indicator for `value`.
       */
      
function baseCompareAscending(valueother) {
        if (
value !== other) {
          var 
valIsReflexive value === value,
              
othIsReflexive other === other;

          if (
value other || !valIsReflexive || (typeof value == 'undefined' && othIsReflexive)) {
            return 
1;
          }
          if (
value other || !othIsReflexive || (typeof other == 'undefined' && valIsReflexive)) {
            return -
1;
          }
        }
        return 
0;
      }

      
/**
       * The base implementation of `_.indexOf` without support for binary searches.
       *
       * @private
       * @param {Array} array The array to search.
       * @param {*} value The value to search for.
       * @param {number} [fromIndex=0] The index to search from.
       * @returns {number} Returns the index of the matched value, else `-1`.
       */
      
function baseIndexOf(array, valuefromIndex) {
        if (
value !== value) {
          return 
indexOfNaN(array, fromIndex);
        }
        var 
index = (fromIndex || 0) - 1,
            
length = array.length;

        while (++
index length) {
          if (array[
index] === value) {
            return 
index;
          }
        }
        return -
1;
      }

      
/**
       * The base implementation of `_.sortBy` and `_.sortByAll` which uses `comparer`
       * to define the sort order of `array` and replaces criteria objects with their
       * corresponding values.
       *
       * @private
       * @param {Array} array The array to sort.
       * @param {Function} comparer The function to define sort order.
       * @returns {Array} Returns `array`.
       */
      
function baseSortBy(array, comparer) {
        var 
length = array.length;

        array.
sort(comparer);
        while (
length--) {
          array[
length] = array[length].value;
        }
        return array;
      }

      
/**
       * Converts `value` to a string if it is not one. An empty string is returned
       * for `null` or `undefined` values.
       *
       * @private
       * @param {*} value The value to process.
       * @returns {string} Returns the string.
       */
      
function baseToString(value) {
        if (
typeof value == 'string') {
          return 
value;
        }
        return 
value == null '' : (value '');
      }

      
/**
       * Used by `_.max` and `_.min` as the default callback for string values.
       *
       * @private
       * @param {string} string The string to inspect.
       * @returns {number} Returns the code unit of the first character of the string.
       */
      
function charAtCallback(string) {
        return 
string.charCodeAt(0);
      }

      
/**
       * Used by `_.trim` and `_.trimLeft` to get the index of the first character
       * of `string` that is not found in `chars`.
       *
       * @private
       * @param {string} string The string to inspect.
       * @param {string} chars The characters to find.
       * @returns {number} Returns the index of the first character not found in `chars`.
       */
      
function charsLeftIndex(stringchars) {
        var 
index = -1,
            
length string.length;

        while (++
index length && chars.indexOf(string.charAt(index)) > -1) {}
        return 
index;
      }

      
/**
       * Used by `_.trim` and `_.trimRight` to get the index of the last character
       * of `string` that is not found in `chars`.
       *
       * @private
       * @param {string} string The string to inspect.
       * @param {string} chars The characters to find.
       * @returns {number} Returns the index of the last character not found in `chars`.
       */
      
function charsRightIndex(stringchars) {
        var 
index string.length;

        while (
index-- && chars.indexOf(string.charAt(index)) > -1) {}
        return 
index;
      }

      
/**
       * Used by `_.sortBy` to compare transformed elements of a collection and stable
       * sort them in ascending order.
       *
       * @private
       * @param {Object} object The object to compare to `other`.
       * @param {Object} other The object to compare to `object`.
       * @returns {number} Returns the sort order indicator for `object`.
       */
      
function compareAscending(objectother) {
        return 
baseCompareAscending(object.criteriaother.criteria) || (object.index other.index);
      }

      
/**
       * Used by `_.sortByAll` to compare multiple properties of each element
       * in a collection and stable sort them in ascending order.
       *
       * @private
       * @param {Object} object The object to compare to `other`.
       * @param {Object} other The object to compare to `object`.
       * @returns {number} Returns the sort order indicator for `object`.
       */
      
function compareMultipleAscending(objectother) {
        var 
index = -1,
            
objCriteria object.criteria,
            
othCriteria other.criteria,
            
length objCriteria.length;

        while (++
index length) {
          var 
result baseCompareAscending(objCriteria[index], othCriteria[index]);
          if (
result) {
            return 
result;
          }
        }
        
// Fixes an `Array#sort` bug in the JS engine embedded in Adobe applications
        // that causes it, under certain circumstances, to provide the same value for
        // `object` and `other`. See https://github.com/jashkenas/underscore/pull/1247
        // for more details.
        //
        // This also ensures a stable sort in V8 and other engines.
        // See https://code.google.com/p/v8/issues/detail?id=90 for more details.
        
return object.index other.index;
      }

      
/**
       * Used by `_.deburr` to convert latin-1 supplementary letters to basic latin letters.
       *
       * @private
       * @param {string} letter The matched letter to deburr.
       * @returns {string} Returns the deburred letter.
       */
      
function deburrLetter(letter) {
        return 
deburredLetters[letter];
      }

      
/**
       * Used by `_.escape` to convert characters to HTML entities.
       *
       * @private
       * @param {string} chr The matched character to escape.
       * @returns {string} Returns the escaped character.
       */
      
function escapeHtmlChar(chr) {
        return 
htmlEscapes[chr];
      }

      
/**
       * Used by `_.template` to escape characters for inclusion in compiled
       * string literals.
       *
       * @private
       * @param {string} chr The matched character to escape.
       * @returns {string} Returns the escaped character.
       */
      
function escapeStringChar(chr) {
        return 
'\' + stringEscapes[chr];
      }

      /**
       * Gets the index at which the first occurrence of `NaN` is found in `array`.
       * If `fromRight` is provided elements of `array` are iterated from right to left.
       *
       * @private
       * @param {Array} array The array to search.
       * @param {number} [fromIndex] The index to search from.
       * @param {boolean} [fromRight] Specify iterating from right to left.
       * @returns {number} Returns the index of the matched `NaN`, else `-1`.
       */
      function indexOfNaN(array, fromIndex, fromRight) {
        var length = array.length,
            index = fromRight ? (fromIndex || length) : ((fromIndex || 0) - 1);

        while ((fromRight ? index-- : ++index < length)) {
          var other = array[index];
          if (other !== other) {
            return index;
          }
        }
        return -1;
      }

      /**
       * Checks if `value` is object-like.
       *
       * @private
       * @param {*} value The value to check.
       * @returns {boolean} Returns `true` if `value` is object-like, else `false`.
       */
      function isObjectLike(value) {
        return (value && typeof value == '
object') || false;
      }

      /**
       * Used by `trimmedLeftIndex` and `trimmedRightIndex` to determine if a
       * character code is whitespace.
       *
       * @private
       * @param {number} charCode The character code to inspect.
       * @returns {boolean} Returns `true` if `charCode` is whitespace, else `false`.
       */
      function isSpace(charCode) {
        return ((charCode <= 160 && (charCode >= 9 && charCode <= 13) || charCode == 32 || charCode == 160) || charCode == 5760 || charCode == 6158 ||
          (charCode >= 8192 && (charCode <= 8202 || charCode == 8232 || charCode == 8233 || charCode == 8239 || charCode == 8287 || charCode == 12288 || charCode == 65279)));
      }

      /**
       * Replaces all `placeholder` elements in `array` with an internal placeholder
       * and returns an array of their indexes.
       *
       * @private
       * @param {Array} array The array to modify.
       * @param {*} placeholder The placeholder to replace.
       * @returns {Array} Returns the new array of placeholder indexes.
       */
      function replaceHolders(array, placeholder) {
        var index = -1,
            length = array.length,
            resIndex = -1,
            result = [];

        while (++index < length) {
          if (array[index] === placeholder) {
            array[index] = PLACEHOLDER;
            result[++resIndex] = index;
          }
        }
        return result;
      }

      /**
       * An implementation of `_.uniq` optimized for sorted arrays without support
       * for callback shorthands and `this` binding.
       *
       * @private
       * @param {Array} array The array to inspect.
       * @param {Function} [iteratee] The function invoked per iteration.
       * @returns {Array} Returns the new duplicate-value-free array.
       */
      function sortedUniq(array, iteratee) {
        var seen,
            index = -1,
            length = array.length,
            resIndex = -1,
            result = [];

        while (++index < length) {
          var value = array[index],
              computed = iteratee ? iteratee(value, index, array) : value;

          if (!index || seen !== computed) {
            seen = computed;
            result[++resIndex] = value;
          }
        }
        return result;
      }

      /**
       * Used by `_.trim` and `_.trimLeft` to get the index of the first non-whitespace
       * character of `string`.
       *
       * @private
       * @param {string} string The string to inspect.
       * @returns {number} Returns the index of the first non-whitespace character.
       */
      function trimmedLeftIndex(string) {
        var index = -1,
            length = string.length;

        while (++index < length && isSpace(string.charCodeAt(index))) {}
        return index;
      }

      /**
       * Used by `_.trim` and `_.trimRight` to get the index of the last non-whitespace
       * character of `string`.
       *
       * @private
       * @param {string} string The string to inspect.
       * @returns {number} Returns the index of the last non-whitespace character.
       */
      function trimmedRightIndex(string) {
        var index = string.length;

        while (index-- && isSpace(string.charCodeAt(index))) {}
        return index;
      }

      /**
       * Used by `_.unescape` to convert HTML entities to characters.
       *
       * @private
       * @param {string} chr The matched character to unescape.
       * @returns {string} Returns the unescaped character.
       */
      function unescapeHtmlChar(chr) {
        return htmlUnescapes[chr];
      }

      /*--------------------------------------------------------------------------*/

      /**
       * Create a new pristine `lodash` function using the given `context` object.
       *
       * @static
       * @memberOf _
       * @category Utility
       * @param {Object} [context=root] The context object.
       * @returns {Function} Returns a new `lodash` function.
       * @example
       *
       * _.mixin({ '
add': function(a, b) { return a + b; } });
       *
       * var lodash = _.runInContext();
       * lodash.mixin({ '
sub': function(a, b) { return a - b; } });
       *
       * _.isFunction(_.add);
       * // => true
       * _.isFunction(_.sub);
       * // => false
       *
       * lodash.isFunction(lodash.add);
       * // => false
       * lodash.isFunction(lodash.sub);
       * // => true
       *
       * // using `context` to mock `Date#getTime` use in `_.now`
       * var mock = _.runInContext({
       *   '
Date': function() {
       *     return { '
getTime': getTimeMock };
       *   }
       * });
       *
       * // or creating a suped-up `defer` in Node.js
       * var defer = _.runInContext({ '
setTimeout': setImmediate }).defer;
       */
      function runInContext(context) {
        // Avoid issues with some ES3 environments that attempt to use values, named
        // after built-in constructors like `Object`, for the creation of literals.
        // ES5 clears this up by stating that literals must use built-in constructors.
        // See https://es5.github.io/#x11.1.5 for more details.
        context = context ? _.defaults(root.Object(), context, _.pick(root, contextProps)) : root;

        /** Native constructor references. */
        var Array = context.Array,
            Date = context.Date,
            Error = context.Error,
            Function = context.Function,
            Math = context.Math,
            Number = context.Number,
            Object = context.Object,
            RegExp = context.RegExp,
            String = context.String,
            TypeError = context.TypeError;

        /** Used for native method references. */
        var arrayProto = Array.prototype,
            objectProto = Object.prototype;

        /** Used to detect DOM support. */
        var document = (document = context.window) && document.document;

        /** Used to resolve the decompiled source of functions. */
        var fnToString = Function.prototype.toString;

        /** Used to the length of n-tuples for `_.unzip`. */
        var getLength = baseProperty('
length');

        /** Used to check objects for own properties. */
        var hasOwnProperty = objectProto.hasOwnProperty;

        /** Used to generate unique IDs. */
        var idCounter = 0;

        /**
         * Used to resolve the `toStringTag` of values.
         * See the [ES spec](https://people.mozilla.org/~jorendorff/es6-draft.html#sec-object.prototype.tostring)
         * for more details.
         */
        var objToString = objectProto.toString;

        /** Used to restore the original `_` reference in `_.noConflict`. */
        var oldDash = context._;

        /** Used to detect if a method is native. */
        var reNative = RegExp('
^' +
          escapeRegExp(objToString)
          .replace(/toString|(function).*?(?=\()| for .+?(?=\])/g, '
$1.*?') + '$'
        );

        /** Native method references. */
        var ArrayBuffer = isNative(ArrayBuffer = context.ArrayBuffer) && ArrayBuffer,
            bufferSlice = isNative(bufferSlice = ArrayBuffer && new ArrayBuffer(0).slice) && bufferSlice,
            ceil = Math.ceil,
            clearTimeout = context.clearTimeout,
            floor = Math.floor,
            getPrototypeOf = isNative(getPrototypeOf = Object.getPrototypeOf) && getPrototypeOf,
            push = arrayProto.push,
            propertyIsEnumerable = objectProto.propertyIsEnumerable,
            Set = isNative(Set = context.Set) && Set,
            setTimeout = context.setTimeout,
            splice = arrayProto.splice,
            Uint8Array = isNative(Uint8Array = context.Uint8Array) && Uint8Array,
            unshift = arrayProto.unshift,
            WeakMap = isNative(WeakMap = context.WeakMap) && WeakMap;

        /** Used to clone array buffers. */
        var Float64Array = (function() {
          // Safari 5 errors when using an array buffer to initialize a typed array
          // where the array buffer'
`byteLengthis not a multiple of the typed
          
// array's `BYTES_PER_ELEMENT`.
          
try {
            var 
func isNative(func context.Float64Array) && func,
                
result = new func(new ArrayBuffer(10), 01) && func;
          } catch(
e) {}
          return 
result;
        }());

        
/* Native method references for those with the same name as other `lodash` methods. */
        
var nativeIsArray isNative(nativeIsArray = Array.isArray) && nativeIsArray,
            
nativeCreate isNative(nativeCreate Object.create) && nativeCreate,
            
nativeIsFinite context.isFinite,
            
nativeKeys isNative(nativeKeys Object.keys) && nativeKeys,
            
nativeMax Math.max,
            
nativeMin Math.min,
            
nativeNow isNative(nativeNow Date.now) && nativeNow,
            
nativeNumIsFinite isNative(nativeNumIsFinite Number.isFinite) && nativeNumIsFinite,
            
nativeParseInt context.parseInt,
            
nativeRandom Math.random;

        
/** Used as references for `-Infinity` and `Infinity`. */
        
var NEGATIVE_INFINITY Number.NEGATIVE_INFINITY,
            
POSITIVE_INFINITY Number.POSITIVE_INFINITY;

        
/** Used as references for the maximum length and index of an array. */
        
var MAX_ARRAY_LENGTH Math.pow(232) - 1,
            
MAX_ARRAY_INDEX =  MAX_ARRAY_LENGTH 1,
            
HALF_MAX_ARRAY_LENGTH MAX_ARRAY_LENGTH >>> 1;

        
/** Used as the size, in bytes, of each `Float64Array` element. */
        
var FLOAT64_BYTES_PER_ELEMENT Float64Array Float64Array.BYTES_PER_ELEMENT 0;

        
/**
         * Used as the maximum length of an array-like value.
         * See the [ES spec](https://people.mozilla.org/~jorendorff/es6-draft.html#sec-number.max_safe_integer)
         * for more details.
         */
        
var MAX_SAFE_INTEGER Math.pow(253) - 1;

        
/** Used to store function metadata. */
        
var metaMap WeakMap && new WeakMap;

        
/*------------------------------------------------------------------------*/

        /**
         * Creates a `lodash` object which wraps `value` to enable intuitive chaining.
         * Methods that operate on and return arrays, collections, and functions can
         * be chained together. Methods that return a boolean or single value will
         * automatically end the chain returning the unwrapped value. Explicit chaining
         * may be enabled using `_.chain`. The execution of chained methods is lazy,
         * that is, execution is deferred until `_#value` is implicitly or explicitly
         * called.
         *
         * Lazy evaluation allows several methods to support shortcut fusion. Shortcut
         * fusion is an optimization that merges iteratees to avoid creating intermediate
         * arrays and reduce the number of iteratee executions.
         *
         * Chaining is supported in custom builds as long as the `_#value` method is
         * directly or indirectly included in the build.
         *
         * In addition to lodash methods, wrappers also have the following `Array` methods:
         * `concat`, `join`, `pop`, `push`, `reverse`, `shift`, `slice`, `sort`, `splice`,
         * and `unshift`
         *
         * The wrapper functions that support shortcut fusion are:
         * `drop`, `dropRight`, `dropRightWhile`, `dropWhile`, `filter`, `first`,
         * `initial`, `last`, `map`, `pluck`, `reject`, `rest`, `reverse`, `slice`,
         * `take`, `takeRight`, `takeRightWhile`, `takeWhile`, and `where`
         *
         * The chainable wrapper functions are:
         * `after`, `ary`, `assign`, `at`, `before`, `bind`, `bindAll`, `bindKey`,
         * `callback`, `chain`, `chunk`, `compact`, `concat`, `constant`, `countBy`,
         * `create`, `curry`, `debounce`, `defaults`, `defer`, `delay`, `difference`,
         * `drop`, `dropRight`, `dropRightWhile`, `dropWhile`, `filter`, `flatten`,
         * `flattenDeep`, `flow`, `flowRight`, `forEach`, `forEachRight`, `forIn`,
         * `forInRight`, `forOwn`, `forOwnRight`, `functions`, `groupBy`, `indexBy`,
         * `initial`, `intersection`, `invert`, `invoke`, `keys`, `keysIn`, `map`,
         * `mapValues`, `matches`, `memoize`, `merge`, `mixin`, `negate`, `noop`,
         * `omit`, `once`, `pairs`, `partial`, `partialRight`, `partition`, `pick`,
         * `pluck`, `property`, `propertyOf`, `pull`, `pullAt`, `push`, `range`,
         * `rearg`, `reject`, `remove`, `rest`, `reverse`, `shuffle`, `slice`, `sort`,
         * `sortBy`, `sortByAll`, `splice`, `take`, `takeRight`, `takeRightWhile`,
         * `takeWhile`, `tap`, `throttle`, `thru`, `times`, `toArray`, `toPlainObject`,
         * `transform`, `union`, `uniq`, `unshift`, `unzip`, `values`, `valuesIn`,
         * `where`, `without`, `wrap`, `xor`, `zip`, and `zipObject`
         *
         * The wrapper functions that are **not** chainable by default are:
         * `attempt`, `camelCase`, `capitalize`, `clone`, `cloneDeep`, `deburr`,
         * `endsWith`, `escape`, `escapeRegExp`, `every`, `find`, `findIndex`, `findKey`,
         * `findLast`, `findLastIndex`, `findLastKey`, `findWhere`, `first`, `has`,
         * `identity`, `includes`, `indexOf`, `isArguments`, `isArray`, `isBoolean`,
         * `isDate`, `isElement`, `isEmpty`, `isEqual`, `isError`, `isFinite`,
         * `isFunction`, `isMatch`, `isNative`, `isNaN`, `isNull`, `isNumber`,
         * `isObject`, `isPlainObject`, `isRegExp`, `isString`, `isUndefined`,
         * `isTypedArray`, `join`, `kebabCase`, `last`, `lastIndexOf`, `max`, `min`,
         * `noConflict`, `now`, `pad`, `padLeft`, `padRight`, `parseInt`, `pop`,
         * `random`, `reduce`, `reduceRight`, `repeat`, `result`, `runInContext`,
         * `shift`, `size`, `snakeCase`, `some`, `sortedIndex`, `sortedLastIndex`,
         * `startCase`, `startsWith`, `template`, `trim`, `trimLeft`, `trimRight`,
         * `trunc`, `unescape`, `uniqueId`, `value`, and `words`
         *
         * The wrapper function `sample` will return a wrapped value when `n` is provided,
         * otherwise an unwrapped value is returned.
         *
         * @name _
         * @constructor
         * @category Chain
         * @param {*} value The value to wrap in a `lodash` instance.
         * @returns {Object} Returns a `lodash` instance.
         * @example
         *
         * var wrapped = _([1, 2, 3]);
         *
         * // returns an unwrapped value
         * wrapped.reduce(function(sum, n) { return sum + n; });
         * // => 6
         *
         * // returns a wrapped value
         * var squares = wrapped.map(function(n) { return n * n; });
         *
         * _.isArray(squares);
         * // => false
         *
         * _.isArray(squares.value());
         * // => true
         */
        
function lodash(value) {
          if (
isObjectLike(value) && !isArray(value)) {
            if (
value instanceof LodashWrapper) {
              return 
value;
            }
            if (
hasOwnProperty.call(value'__wrapped__')) {
              return new 
LodashWrapper(value.__wrapped__value.__chain__arrayCopy(value.__actions__));
            }
          }
          return new 
LodashWrapper(value);
        }

        
/**
         * The base constructor for creating `lodash` wrapper objects.
         *
         * @private
         * @param {*} value The value to wrap.
         * @param {boolean} [chainAll] Enable chaining for all wrapper methods.
         * @param {Array} [actions=[]] Actions to peform to resolve the unwrapped value.
         */
        
function LodashWrapper(valuechainAllactions) {
          
this.__actions__ actions || [];
          
this.__chain__ = !!chainAll;
          
this.__wrapped__ value;
        }

        
/**
         * An object environment feature flags.
         *
         * @static
         * @memberOf _
         * @type Object
         */
        
var support lodash.support = {};

        (function(
x) {

          
/**
           * Detect if functions can be decompiled by `Function#toString`
           * (all but Firefox OS certified apps, older Opera mobile browsers, and
           * the PlayStation 3; forced `false` for Windows 8 apps).
           *
           * @memberOf _.support
           * @type boolean
           */
          
support.funcDecomp = !isNative(context.WinRTError) && reThis.test(runInContext);

          
/**
           * Detect if `Function#name` is supported (all but IE).
           *
           * @memberOf _.support
           * @type boolean
           */
          
support.funcNames typeof Function.name == 'string';

          
/**
           * Detect if the DOM is supported.
           *
           * @memberOf _.support
           * @type boolean
           */
          
try {
            
support.dom document.createDocumentFragment().nodeType === 11;
          } catch(
e) {
            
support.dom false;
          }

          
/**
           * Detect if `arguments` object indexes are non-enumerable.
           *
           * In Firefox < 4, IE < 9, PhantomJS, and Safari < 5.1 `arguments` object
           * indexes are non-enumerable. Chrome < 25 and Node.js < 0.11.0 treat
           * `arguments` object indexes as non-enumerable and fail `hasOwnProperty`
           * checks for indexes that exceed their function's formal parameters with
           * associated values of `0`.
           *
           * @memberOf _.support
           * @type boolean
           */
          
try {
            
support.nonEnumArgs = !propertyIsEnumerable.call(arguments1);
          } catch(
e) {
            
support.nonEnumArgs true;
          }
        }(
00));

        
/**
         * By default, the template delimiters used by lodash are like those in
         * embedded Ruby (ERB). Change the following template settings to use
         * alternative delimiters.
         *
         * @static
         * @memberOf _
         * @type Object
         */
        
lodash.templateSettings = {

          
/**
           * Used to detect `data` property values to be HTML-escaped.
           *
           * @memberOf _.templateSettings
           * @type RegExp
           */
          
'escape'reEscape,

          
/**
           * Used to detect code to be evaluated.
           *
           * @memberOf _.templateSettings
           * @type RegExp
           */
          
'evaluate'reEvaluate,

          
/**
           * Used to detect `data` property values to inject.
           *
           * @memberOf _.templateSettings
           * @type RegExp
           */
          
'interpolate'reInterpolate,

          
/**
           * Used to reference the data object in the template text.
           *
           * @memberOf _.templateSettings
           * @type string
           */
          
'variable''',

          
/**
           * Used to import variables into the compiled template.
           *
           * @memberOf _.templateSettings
           * @type Object
           */
          
'imports': {

            
/**
             * A reference to the `lodash` function.
             *
             * @memberOf _.templateSettings.imports
             * @type Function
             */
            
'_'lodash
          
}
        };

        
/*------------------------------------------------------------------------*/

        /**
         * Creates a lazy wrapper object which wraps `value` to enable lazy evaluation.
         *
         * @private
         * @param {*} value The value to wrap.
         */
        
function LazyWrapper(value) {
          
this.actions null;
          
this.dir 1;
          
this.dropCount 0;
          
this.filtered false;
          
this.iteratees null;
          
this.takeCount POSITIVE_INFINITY;
          
this.views null;
          
this.wrapped value;
        }

        
/**
         * Creates a clone of the lazy wrapper object.
         *
         * @private
         * @name clone
         * @memberOf LazyWrapper
         * @returns {Object} Returns the cloned `LazyWrapper` object.
         */
        
function lazyClone() {
          var 
actions this.actions,
              
iteratees this.iteratees,
              
views this.views,
              
result = new LazyWrapper(this.wrapped);

          
result.actions actions arrayCopy(actions) : null;
          
result.dir this.dir;
          
result.dropCount this.dropCount;
          
result.filtered this.filtered;
          
result.iteratees iteratees arrayCopy(iteratees) : null;
          
result.takeCount this.takeCount;
          
result.views views arrayCopy(views) : null;
          return 
result;
        }

        
/**
         * Reverses the direction of lazy iteration.
         *
         * @private
         * @name reverse
         * @memberOf LazyWrapper
         * @returns {Object} Returns the new reversed `LazyWrapper` object.
         */
        
function lazyReverse() {
          if (
this.filtered) {
            var 
result = new LazyWrapper(this);
            
result.dir = -1;
            
result.filtered true;
          } else {
            
result this.clone();
            
result.dir *= -1;
          }
          return 
result;
        }

        
/**
         * Extracts the unwrapped value from its lazy wrapper.
         *
         * @private
         * @name value
         * @memberOf LazyWrapper
         * @returns {*} Returns the unwrapped value.
         */
        
function lazyValue() {
          var array = 
this.wrapped.value();
          if (!
isArray(array)) {
            return 
baseWrapperValue(array, this.actions);
          }
          var 
dir this.dir,
              
isRight dir 0,
              
view getView(0, array.lengththis.views),
              
start view.start,
              
end view.end,
              
length end start,
              
dropCount this.dropCount,
              
takeCount nativeMin(lengththis.takeCount dropCount),
              
index isRight end start 1,
              
iteratees this.iteratees,
              
iterLength iteratees iteratees.length 0,
              
resIndex 0,
              
result = [];

          
outer:
          while (
length-- && resIndex takeCount) {
            
index += dir;

            var 
iterIndex = -1,
                
value = array[index];

            while (++
iterIndex iterLength) {
              var 
data iteratees[iterIndex],
                  
iteratee data.iteratee,
                  
computed iteratee(valueindex, array),
                  
type data.type;

              if (
type == LAZY_MAP_FLAG) {
                
value computed;
              } else if (!
computed) {
                if (
type == LAZY_FILTER_FLAG) {
                  continue 
outer;
                } else {
                  break 
outer;
                }
              }
            }
            if (
dropCount) {
              
dropCount--;
            } else {
              
result[resIndex++] = value;
            }
          }
          return 
result;
        }

        
/*------------------------------------------------------------------------*/

        /**
         * Creates a cache object to store key/value pairs.
         *
         * @private
         * @static
         * @name Cache
         * @memberOf _.memoize
         */
        
function MapCache() {
          
this.__data__ = {};
        }

        
/**
         * Removes `key` and its value from the cache.
         *
         * @private
         * @name delete
         * @memberOf _.memoize.Cache
         * @param {string} key The key of the value to remove.
         * @returns {boolean} Returns `true` if the entry was removed successfully, else `false`.
         */
        
function mapDelete(key) {
          return 
this.has(key) && delete this.__data__[key];
        }

        
/**
         * Gets the cached value for `key`.
         *
         * @private
         * @name get
         * @memberOf _.memoize.Cache
         * @param {string} key The key of the value to get.
         * @returns {*} Returns the cached value.
         */
        
function mapGet(key) {
          return 
key == '__proto__' undefined this.__data__[key];
        }

        
/**
         * Checks if a cached value for `key` exists.
         *
         * @private
         * @name has
         * @memberOf _.memoize.Cache
         * @param {string} key The key of the entry to check.
         * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
         */
        
function mapHas(key) {
          return 
key != '__proto__' && hasOwnProperty.call(this.__data__key);
        }

        
/**
         * Adds `value` to `key` of the cache.
         *
         * @private
         * @name set
         * @memberOf _.memoize.Cache
         * @param {string} key The key of the value to cache.
         * @param {*} value The value to cache.
         * @returns {Object} Returns the cache object.
         */
        
function mapSet(keyvalue) {
          if (
key != '__proto__') {
            
this.__data__[key] = value;
          }
          return 
this;
        }

        
/*------------------------------------------------------------------------*/

        /**
         *
         * Creates a cache object to store unique values.
         *
         * @private
         * @param {Array} [values] The values to cache.
         */
        
function SetCache(values) {
          var 
length values values.length 0;

          
this.data = { 'hash'nativeCreate(null), 'set': new Set };
          while (
length--) {
            
this.push(values[length]);
          }
        }

        
/**
         * Checks if `value` is in `cache` mimicking the return signature of
         * `_.indexOf` by returning `0` if the value is found, else `-1`.
         *
         * @private
         * @param {Object} cache The cache to search.
         * @param {*} value The value to search for.
         * @returns {number} Returns `0` if `value` is found, else `-1`.
         */
        
function cacheIndexOf(cachevalue) {
          var 
data cache.data,
              
result = (typeof value == 'string' || isObject(value)) ? data.set.has(value) : data.hash[value];

          return 
result : -1;
        }

        
/**
         * Adds `value` to the cache.
         *
         * @private
         * @name push
         * @memberOf SetCache
         * @param {*} value The value to cache.
         */
        
function cachePush(value) {
          var 
data this.data;
          if (
typeof value == 'string' || isObject(value)) {
            
data.set.add(value);
          } else {
            
data.hash[value] = true;
          }
        }

        
/*------------------------------------------------------------------------*/

        /**
         * Copies the values of `source` to `array`.
         *
         * @private
         * @param {Array} source The array to copy values from.
         * @param {Array} [array=[]] The array to copy values to.
         * @returns {Array} Returns `array`.
         */
        
function arrayCopy(source, array) {
          var 
index = -1,
              
length source.length;

          array || (array = Array(
length));
          while (++
index length) {
            array[
index] = source[index];
          }
          return array;
        }

        
/**
         * A specialized version of `_.forEach` for arrays without support for callback
         * shorthands or `this` binding.
         *
         * @private
         * @param {Array} array The array to iterate over.
         * @param {Function} iteratee The function invoked per iteration.
         * @returns {Array} Returns `array`.
         */
        
function arrayEach(array, iteratee) {
          var 
index = -1,
              
length = array.length;

          while (++
index length) {
            if (
iteratee(array[index], index, array) === false) {
              break;
            }
          }
          return array;
        }

        
/**
         * A specialized version of `_.forEachRight` for arrays without support for
         * callback shorthands or `this` binding.
         *
         * @private
         * @param {Array} array The array to iterate over.
         * @param {Function} iteratee The function invoked per iteration.
         * @returns {Array} Returns `array`.
         */
        
function arrayEachRight(array, iteratee) {
          var 
length = array.length;

          while (
length--) {
            if (
iteratee(array[length], length, array) === false) {
              break;
            }
          }
          return array;
        }

        
/**
         * A specialized version of `_.every` for arrays without support for callback
         * shorthands or `this` binding.
         *
         * @private
         * @param {Array} array The array to iterate over.
         * @param {Function} predicate The function invoked per iteration.
         * @returns {boolean} Returns `true` if all elements pass the predicate check,
         *  else `false`.
         */
        
function arrayEvery(array, predicate) {
          var 
index = -1,
              
length = array.length;

          while (++
index length) {
            if (!
predicate(array[index], index, array)) {
              return 
false;
            }
          }
          return 
true;
        }

        
/**
         * A specialized version of `_.filter` for arrays without support for callback
         * shorthands or `this` binding.
         *
         * @private
         * @param {Array} array The array to iterate over.
         * @param {Function} predicate The function invoked per iteration.
         * @returns {Array} Returns the new filtered array.
         */
        
function arrayFilter(array, predicate) {
          var 
index = -1,
              
length = array.length,
              
resIndex = -1,
              
result = [];

          while (++
index length) {
            var 
value = array[index];
            if (
predicate(valueindex, array)) {
              
result[++resIndex] = value;
            }
          }
          return 
result;
        }

        
/**
         * A specialized version of `_.map` for arrays without support for callback
         * shorthands or `this` binding.
         *
         * @private
         * @param {Array} array The array to iterate over.
         * @param {Function} iteratee The function invoked per iteration.
         * @returns {Array} Returns the new mapped array.
         */
        
function arrayMap(array, iteratee) {
          var 
index = -1,
              
length = array.length,
              
result = Array(length);

          while (++
index length) {
            
result[index] = iteratee(array[index], index, array);
          }
          return 
result;
        }

        
/**
         * A specialized version of `_.max` for arrays without support for iteratees.
         *
         * @private
         * @param {Array} array The array to iterate over.
         * @returns {*} Returns the maximum value.
         */
        
function arrayMax(array) {
          var 
index = -1,
              
length = array.length,
              
result NEGATIVE_INFINITY;

          while (++
index length) {
            var 
value = array[index];
            if (
value result) {
              
result value;
            }
          }
          return 
result;
        }

        
/**
         * A specialized version of `_.min` for arrays without support for iteratees.
         *
         * @private
         * @param {Array} array The array to iterate over.
         * @returns {*} Returns the minimum value.
         */
        
function arrayMin(array) {
          var 
index = -1,
              
length = array.length,
              
result POSITIVE_INFINITY;

          while (++
index length) {
            var 
value = array[index];
            if (
value result) {
              
result value;
            }
          }
          return 
result;
        }

        
/**
         * A specialized version of `_.reduce` for arrays without support for callback
         * shorthands or `this` binding.
         *
         * @private
         * @param {Array} array The array to iterate over.
         * @param {Function} iteratee The function invoked per iteration.
         * @param {*} [accumulator] The initial value.
         * @param {boolean} [initFromArray] Specify using the first element of `array`
         *  as the initial value.
         * @returns {*} Returns the accumulated value.
         */
        
function arrayReduce(array, iterateeaccumulatorinitFromArray) {
          var 
index = -1,
              
length = array.length;

          if (
initFromArray && length) {
            
accumulator = array[++index];
          }
          while (++
index length) {
            
accumulator iteratee(accumulator, array[index], index, array);
          }
          return 
accumulator;
        }

        
/**
         * A specialized version of `_.reduceRight` for arrays without support for
         * callback shorthands or `this` binding.
         *
         * @private
         * @param {Array} array The array to iterate over.
         * @param {Function} iteratee The function invoked per iteration.
         * @param {*} [accumulator] The initial value.
         * @param {boolean} [initFromArray] Specify using the last element of `array`
         *  as the initial value.
         * @returns {*} Returns the accumulated value.
         */
        
function arrayReduceRight(array, iterateeaccumulatorinitFromArray) {
          var 
length = array.length;
          if (
initFromArray && length) {
            
accumulator = array[--length];
          }
          while (
length--) {
            
accumulator iteratee(accumulator, array[length], length, array);
          }
          return 
accumulator;
        }

        
/**
         * A specialized version of `_.some` for arrays without support for callback
         * shorthands or `this` binding.
         *
         * @private
         * @param {Array} array The array to iterate over.
         * @param {Function} predicate The function invoked per iteration.
         * @returns {boolean} Returns `true` if any element passes the predicate check,
         *  else `false`.
         */
        
function arraySome(array, predicate) {
          var 
index = -1,
              
length = array.length;

          while (++
index length) {
            if (
predicate(array[index], index, array)) {
              return 
true;
            }
          }
          return 
false;
        }

        
/**
         * Used by `_.defaults` to customize its `_.assign` use.
         *
         * @private
         * @param {*} objectValue The destination object property value.
         * @param {*} sourceValue The source object property value.
         * @returns {*} Returns the value to assign to the destination object.
         */
        
function assignDefaults(objectValuesourceValue) {
          return 
typeof objectValue == 'undefined' sourceValue objectValue;
        }

        
/**
         * Used by `_.template` to customize its `_.assign` use.
         *
         * **Note:** This method is like `assignDefaults` except that it ignores
         * inherited property values when checking if a property is `undefined`.
         *
         * @private
         * @param {*} objectValue The destination object property value.
         * @param {*} sourceValue The source object property value.
         * @param {string} key The key associated with the object and source values.
         * @param {Object} object The destination object.
         * @returns {*} Returns the value to assign to the destination object.
         */
        
function assignOwnDefaults(objectValuesourceValuekeyobject) {
          return (
typeof objectValue == 'undefined' || !hasOwnProperty.call(objectkey))
            ? 
sourceValue
            
objectValue;
        }

        
/**
         * The base implementation of `_.assign` without support for argument juggling,
         * multiple sources, and `this` binding `customizer` functions.
         *
         * @private
         * @param {Object} object The destination object.
         * @param {Object} source The source object.
         * @param {Function} [customizer] The function to customize assigning values.
         * @returns {Object} Returns the destination object.
         */
        
function baseAssign(objectsourcecustomizer) {
          var 
props keys(source);
          if (!
customizer) {
            return 
baseCopy(sourceobjectprops);
          }
          var 
index = -1,
              
length props.length

          
while (++index length) {
            var 
key props[index],
                
value object[key],
                
result customizer(valuesource[key], keyobjectsource);

            if ((
result === result result !== value value === value) ||
                (
typeof value == 'undefined' && !(key in object))) {
              
object[key] = result;
            }
          }
          return 
object;
        }

        
/**
         * The base implementation of `_.at` without support for strings and individual
         * key arguments.
         *
         * @private
         * @param {Array|Object} collection The collection to iterate over.
         * @param {number[]|string[]} [props] The property names or indexes of elements to pick.
         * @returns {Array} Returns the new array of picked elements.
         */
        
function baseAt(collectionprops) {
          var 
index = -1,
              
length collection.length,
              
isArr isLength(length),
              
propsLength props.length,
              
result = Array(propsLength);

          while(++
index propsLength) {
            var 
key props[index];
            if (
isArr) {
              
key parseFloat(key);
              
result[index] = isIndex(keylength) ? collection[key] : undefined;
            } else {
              
result[index] = collection[key];
            }
          }
          return 
result;
        }

        
/**
         * Copies the properties of `source` to `object`.
         *
         * @private
         * @param {Object} source The object to copy properties from.
         * @param {Object} [object={}] The object to copy properties to.
         * @param {Array} props The property names to copy.
         * @returns {Object} Returns `object`.
         */
        
function baseCopy(sourceobjectprops) {
          if (!
props) {
            
props object;
            
object = {};
          }
          var 
index = -1,
              
length props.length;

          while (++
index length) {
            var 
key props[index];
            
object[key] = source[key];
          }
          return 
object;
        }

        
/**
         * The base implementation of `_.bindAll` without support for individual
         * method name arguments.
         *
         * @private
         * @param {Object} object The object to bind and assign the bound methods to.
         * @param {string[]} methodNames The object method names to bind.
         * @returns {Object} Returns `object`.
         */
        
function baseBindAll(objectmethodNames) {
          var 
index = -1,
              
length methodNames.length;

          while (++
index length) {
            var 
key methodNames[index];
            
object[key] = createWrapper(object[key], BIND_FLAGobject);
          }
          return 
object;
        }

        
/**
         * The base implementation of `_.callback` which supports specifying the
         * number of arguments to provide to `func`.
         *
         * @private
         * @param {*} [func=_.identity] The value to convert to a callback.
         * @param {*} [thisArg] The `this` binding of `func`.
         * @param {number} [argCount] The number of arguments to provide to `func`.
         * @returns {Function} Returns the callback.
         */
        
function baseCallback(functhisArgargCount) {
          var 
type typeof func;
          if (
type == 'function') {
            return (
typeof thisArg != 'undefined' && isBindable(func))
              ? 
bindCallback(functhisArgargCount)
              : 
func;
          }
          if (
func == null) {
            return 
identity;
          }
          
// Handle "_.property" and "_.matches" style callback shorthands.
          
return type == 'object'
            
baseMatches(func)
            : 
baseProperty(func '');
        }

        
/**
         * The base implementation of `_.clone` without support for argument juggling
         * and `this` binding `customizer` functions.
         *
         * @private
         * @param {*} value The value to clone.
         * @param {boolean} [isDeep] Specify a deep clone.
         * @param {Function} [customizer] The function to customize cloning values.
         * @param {string} [key] The key of `value`.
         * @param {Object} [object] The object `value` belongs to.
         * @param {Array} [stackA=[]] Tracks traversed source objects.
         * @param {Array} [stackB=[]] Associates clones with source counterparts.
         * @returns {*} Returns the cloned value.
         */
        
function baseClone(valueisDeepcustomizerkeyobjectstackAstackB) {
          var 
result;
          if (
customizer) {
            
result object customizer(valuekeyobject) : customizer(value);
          }
          if (
typeof result != 'undefined') {
            return 
result;
          }
          if (!
isObject(value)) {
            return 
value;
          }
          var 
isArr isArray(value);
          if (
isArr) {
            
result initCloneArray(value);
            if (!
isDeep) {
              return 
arrayCopy(valueresult);
            }
          } else {
            var 
tag objToString.call(value),
                
isFunc tag == funcTag;

            if (
tag == objectTag || tag == argsTag || (isFunc && !object)) {
              
result initCloneObject(isFunc ? {} : value);
              if (!
isDeep) {
                return 
baseCopy(valueresultkeys(value));
              }
            } else {
              return 
cloneableTags[tag]
                ? 
initCloneByTag(valuetagisDeep)
                : (
object value : {});
            }
          }
          
// Check for circular references and return corresponding clone.
          
stackA || (stackA = []);
          
stackB || (stackB = []);

          var 
length stackA.length;
          while (
length--) {
            if (
stackA[length] == value) {
              return 
stackB[length];
            }
          }
          
// Add the source value to the stack of traversed objects and associate it with its clone.
          
stackA.push(value);
          
stackB.push(result);

          
// Recursively populate clone (susceptible to call stack limits).
          
(isArr arrayEach baseForOwn)(value, function(subValuekey) {
            
result[key] = baseClone(subValueisDeepcustomizerkeyvaluestackAstackB);
          });
          return 
result;
        }

        
/**
         * The base implementation of `_.create` without support for assigning
         * properties to the created object.
         *
         * @private
         * @param {Object} prototype The object to inherit from.
         * @returns {Object} Returns the new object.
         */
        
var baseCreate = (function() {
          function 
Object() {}
          return function(
prototype) {
            if (
isObject(prototype)) {
              
Object.prototype prototype;
              var 
result = new Object;
              
Object.prototype null;
            }
            return 
result || context.Object();
          };
        }());

        
/**
         * The base implementation of `_.delay` and `_.defer` which accepts an index
         * of where to slice the arguments to provide to `func`.
         *
         * @private
         * @param {Function} func The function to delay.
         * @param {number} wait The number of milliseconds to delay invocation.
         * @param {Object} args The `arguments` object to slice and provide to `func`.
         * @returns {number} Returns the timer id.
         */
        
function baseDelay(funcwaitargsfromIndex) {
          if (!
isFunction(func)) {
            throw new 
TypeError(FUNC_ERROR_TEXT);
          }
          return 
setTimeout(function() { func.apply(undefinedbaseSlice(argsfromIndex)); }, wait);
        }

        
/**
         * The base implementation of `_.difference` which accepts a single array
         * of values to exclude.
         *
         * @private
         * @param {Array} array The array to inspect.
         * @param {Array} values The values to exclude.
         * @returns {Array} Returns the new array of filtered values.
         */
        
function baseDifference(array, values) {
          var 
length = array ? array.length 0,
              
result = [];

          if (!
length) {
            return 
result;
          }
          var 
index = -1,
              
indexOf getIndexOf(),
              
isCommon indexOf == baseIndexOf,
              
cache isCommon && values.length >= 200 && createCache(values),
              
valuesLength values.length;

          if (
cache) {
            
indexOf cacheIndexOf;
            
isCommon false;
            
values cache;
          }
          
outer:
          while (++
index length) {
            var 
value = array[index];

            if (
isCommon && value === value) {
              var 
valuesIndex valuesLength;
              while (
valuesIndex--) {
                if (
values[valuesIndex] === value) {
                  continue 
outer;
                }
              }
              
result.push(value);
            }
            else if (
indexOf(valuesvalue) < 0) {
              
result.push(value);
            }
          }
          return 
result;
        }

        
/**
         * The base implementation of `_.forEach` without support for callback
         * shorthands and `this` binding.
         *
         * @private
         * @param {Array|Object|string} collection The collection to iterate over.
         * @param {Function} iteratee The function invoked per iteration.
         * @returns {Array|Object|string} Returns `collection`.
         */
        
function baseEach(collectioniteratee) {
          var 
length collection collection.length 0;
          if (!
isLength(length)) {
            return 
baseForOwn(collectioniteratee);
          }
          var 
index = -1,
              
iterable toObject(collection);

          while (++
index length) {
            if (
iteratee(iterable[index], indexiterable) === false) {
              break;
            }
          }
          return 
collection;
        }

        
/**
         * The base implementation of `_.forEachRight` without support for callback
         * shorthands and `this` binding.
         *
         * @private
         * @param {Array|Object|string} collection The collection to iterate over.
         * @param {Function} iteratee The function invoked per iteration.
         * @returns {Array|Object|string} Returns `collection`.
         */
        
function baseEachRight(collectioniteratee) {
          var 
length collection collection.length 0;
          if (!
isLength(length)) {
            return 
baseForOwnRight(collectioniteratee);
          }
          var 
iterable toObject(collection);
          while (
length--) {
            if (
iteratee(iterable[length], lengthiterable) === false) {
              break;
            }
          }
          return 
collection;
        }

        
/**
         * The base implementation of `_.every` without support for callback
         * shorthands or `this` binding.
         *
         * @private
         * @param {Array|Object|string} collection The collection to iterate over.
         * @param {Function} predicate The function invoked per iteration.
         * @returns {boolean} Returns `true` if all elements pass the predicate check,
         *  else `false`
         */
        
function baseEvery(collectionpredicate) {
          var 
result true;
          
baseEach(collection, function(valueindexcollection) {
            
result = !!predicate(valueindexcollection);
            return 
result;
          });
          return 
result;
        }

        
/**
         * The base implementation of `_.filter` without support for callback
         * shorthands or `this` binding.
         *
         * @private
         * @param {Array|Object|string} collection The collection to iterate over.
         * @param {Function} predicate The function invoked per iteration.
         * @returns {Array} Returns the new filtered array.
         */
        
function baseFilter(collectionpredicate) {
          var 
result = [];
          
baseEach(collection, function(valueindexcollection) {
            if (
predicate(valueindexcollection)) {
              
result.push(value);
            }
          });
          return 
result;
        }

        
/**
         * The base implementation of `_.find`, `_.findLast`, `_.findKey`, and `_.findLastKey`,
         * without support for callback shorthands and `this` binding, which iterates
         * over `collection` using the provided `eachFunc`.
         *
         * @private
         * @param {Array|Object|string} collection The collection to search.
         * @param {Function} predicate The function invoked per iteration.
         * @param {Function} eachFunc The function to iterate over `collection`.
         * @param {boolean} [retKey] Specify returning the key of the found element
         *  instead of the element itself.
         * @returns {*} Returns the found element or its key, else `undefined`.
         */
        
function baseFind(collectionpredicateeachFuncretKey) {
          var 
result;
          
eachFunc(collection, function(valuekeycollection) {
            if (
predicate(valuekeycollection)) {
              
result retKey key value;
              return 
false;
            }
          });
          return 
result;
        }

        
/**
         * The base implementation of `_.flatten` with added support for restricting
         * flattening and specifying the start index.
         *
         * @private
         * @param {Array} array The array to flatten.
         * @param {boolean} [isDeep] Specify a deep flatten.
         * @param {boolean} [isStrict] Restrict flattening to arrays and `arguments` objects.
         * @param {number} [fromIndex=0] The index to start from.
         * @returns {Array} Returns the new flattened array.
         */
        
function baseFlatten(array, isDeepisStrictfromIndex) {
          var 
index = (fromIndex || 0) - 1,
              
length = array.length,
              
resIndex = -1,
              
result = [];

          while (++
index length) {
            var 
value = array[index];

            if (
isObjectLike(value) && isLength(value.length) && (isArray(value) || isArguments(value))) {
              if (
isDeep) {
                
// Recursively flatten arrays (susceptible to call stack limits).
                
value baseFlatten(valueisDeepisStrict);
              }
              var 
valIndex = -1,
                  
valLength value.length;

              
result.length += valLength;
              while (++
valIndex valLength) {
                
result[++resIndex] = value[valIndex];
              }
            } else if (!
isStrict) {
              
result[++resIndex] = value;
            }
          }
          return 
result;
        }

        
/**
         * The base implementation of `baseForIn` and `baseForOwn` which iterates
         * over `object` properties returned by `keysFunc` invoking `iteratee` for
         * each property. Iterator functions may exit iteration early by explicitly
         * returning `false`.
         *
         * @private
         * @param {Object} object The object to iterate over.
         * @param {Function} iteratee The function invoked per iteration.
         * @param {Function} keysFunc The function to get the keys of `object`.
         * @returns {Object} Returns `object`.
         */
        
function baseFor(objectiterateekeysFunc) {
          var 
index = -1,
              
iterable toObject(object),
              
props keysFunc(object),
              
length props.length;

          while (++
index length) {
            var 
key props[index];
            if (
iteratee(iterable[key], keyiterable) === false) {
              break;
            }
          }
          return 
object;
        }

        
/**
         * This function is like `baseFor` except that it iterates over properties
         * in the opposite order.
         *
         * @private
         * @param {Object} object The object to iterate over.
         * @param {Function} iteratee The function invoked per iteration.
         * @param {Function} keysFunc The function to get the keys of `object`.
         * @returns {Object} Returns `object`.
         */
        
function baseForRight(objectiterateekeysFunc) {
          var 
iterable toObject(object),
              
props keysFunc(object),
              
length props.length;

          while (
length--) {
            var 
key props[length];
            if (
iteratee(iterable[key], keyiterable) === false) {
              break;
            }
          }
          return 
object;
        }

        
/**
         * The base implementation of `_.forIn` without support for callback
         * shorthands and `this` binding.
         *
         * @private
         * @param {Object} object The object to iterate over.
         * @param {Function} iteratee The function invoked per iteration.
         * @returns {Object} Returns `object`.
         */
        
function baseForIn(objectiteratee) {
          return 
baseFor(objectiterateekeysIn);
        }

        
/**
         * The base implementation of `_.forOwn` without support for callback
         * shorthands and `this` binding.
         *
         * @private
         * @param {Object} object The object to iterate over.
         * @param {Function} iteratee The function invoked per iteration.
         * @returns {Object} Returns `object`.
         */
        
function baseForOwn(objectiteratee) {
          return 
baseFor(objectiterateekeys);
        }

        
/**
         * The base implementation of `_.forOwnRight` without support for callback
         * shorthands and `this` binding.
         *
         * @private
         * @param {Object} object The object to iterate over.
         * @param {Function} iteratee The function invoked per iteration.
         * @returns {Object} Returns `object`.
         */
        
function baseForOwnRight(objectiteratee) {
          return 
baseForRight(objectiterateekeys);
        }

        
/**
         * The base implementation of `_.functions` which creates an array of
         * `object` function property names filtered from those provided.
         *
         * @private
         * @param {Object} object The object to inspect.
         * @param {Array} props The property names to filter.
         * @returns {Array} Returns the new array of filtered property names.
         */
        
function baseFunctions(objectprops) {
          var 
index = -1,
              
length props.length,
              
resIndex = -1,
              
result = [];

          while (++
index length) {
            var 
key props[index];
            if (
isFunction(object[key])) {
              
result[++resIndex] = key;
            }
          }
          return 
result;
        }

        
/**
         * The base implementation of `_.invoke` which requires additional arguments
         * to be provided as an array of arguments rather than individually.
         *
         * @private
         * @param {Array|Object|string} collection The collection to iterate over.
         * @param {Function|string} methodName The name of the method to invoke or
         *  the function invoked per iteration.
         * @param {Array} [args] The arguments to invoke the method with.
         * @returns {Array} Returns the array of results.
         */
        
function baseInvoke(collectionmethodNameargs) {
          var 
index = -1,
              
isFunc typeof methodName == 'function',
              
length collection collection.length 0,
              
result isLength(length) ? Array(length) : [];

          
baseEach(collection, function(value) {
            var 
func isFunc methodName : (value != null && value[methodName]);
            
result[++index] = func func.apply(valueargs) : undefined;
          });
          return 
result;
        }

        
/**
         * The base implementation of `_.isEqual` without support for `this` binding
         * `customizer` functions.
         *
         * @private
         * @param {*} value The value to compare.
         * @param {*} other The other value to compare.
         * @param {Function} [customizer] The function to customize comparing values.
         * @param {boolean} [isWhere] Specify performing partial comparisons.
         * @param {Array} [stackA] Tracks traversed `value` objects.
         * @param {Array} [stackB] Tracks traversed `other` objects.
         * @returns {boolean} Returns `true` if the values are equivalent, else `false`.
         */
        
function baseIsEqual(valueothercustomizerisWherestackAstackB) {
          
// Exit early for identical values.
          
if (value === other) {
            
// Treat `+0` vs. `-0` as not equal.
            
return value !== || (value == other);
          }
          var 
valType typeof value,
              
othType typeof other;

          
// Exit early for unlike primitive values.
          
if ((valType != 'function' && valType != 'object' && othType != 'function' && othType != 'object') ||
              
value == null || other == null) {
            
// Return `false` unless both values are `NaN`.
            
return value !== value && other !== other;
          }
          return 
baseIsEqualDeep(valueotherbaseIsEqualcustomizerisWherestackAstackB);
        }

        
/**
         * A specialized version of `baseIsEqual` for arrays and objects which performs
         * deep comparisons and tracks traversed objects enabling objects with circular
         * references to be compared.
         *
         * @private
         * @param {Object} object The object to compare.
         * @param {Object} other The other object to compare.
         * @param {Function} equalFunc The function to determine equivalents of values.
         * @param {Function} [customizer] The function to customize comparing objects.
         * @param {boolean} [isWhere] Specify performing partial comparisons.
         * @param {Array} [stackA=[]] Tracks traversed `value` objects.
         * @param {Array} [stackB=[]] Tracks traversed `other` objects.
         * @returns {boolean} Returns `true` if the objects are equivalent, else `false`.
         */
        
function baseIsEqualDeep(objectotherequalFunccustomizerisWherestackAstackB) {
          var 
objIsArr isArray(object),
              
othIsArr isArray(other),
              
objTag arrayTag,
              
othTag arrayTag;

          if (!
objIsArr) {
            
objTag objToString.call(object);
            if (
objTag == argsTag) {
              
objTag objectTag;
            } else if (
objTag != objectTag) {
              
objIsArr isTypedArray(object);
            }
          }
          if (!
othIsArr) {
            
othTag objToString.call(other);
            if (
othTag == argsTag) {
              
othTag objectTag;
            } else if (
othTag != objectTag) {
              
othIsArr isTypedArray(other);
            }
          }
          var 
objIsObj objTag == objectTag,
              
othIsObj othTag == objectTag,
              
isSameTag objTag == othTag;

          if (
isSameTag && !(objIsArr || objIsObj)) {
            return 
equalByTag(objectotherobjTag);
          }
          var 
valWrapped objIsObj && hasOwnProperty.call(object'__wrapped__'),
              
othWrapped othIsObj && hasOwnProperty.call(other'__wrapped__');

          if (
valWrapped || othWrapped) {
            return 
equalFunc(valWrapped object.value() : objectothWrapped other.value() : othercustomizerisWherestackAstackB);
          }
          if (!
isSameTag) {
            return 
false;
          }
          
// Assume cyclic values are equal.
          // For more information on detecting circular references see https://es5.github.io/#JO.
          
stackA || (stackA = []);
          
stackB || (stackB = []);

          var 
length stackA.length;
          while (
length--) {
            if (
stackA[length] == object) {
              return 
stackB[length] == other;
            }
          }
          
// Add `object` and `other` to the stack of traversed objects.
          
stackA.push(object);
          
stackB.push(other);

          var 
result = (objIsArr equalArrays equalObjects)(objectotherequalFunccustomizerisWherestackAstackB);

          
stackA.pop();
          
stackB.pop();

          return 
result;
        }

        
/**
         * The base implementation of `_.isMatch` without support for callback
         * shorthands or `this` binding.
         *
         * @private
         * @param {Object} source The object to inspect.
         * @param {Array} props The source property names to match.
         * @param {Array} values The source values to match.
         * @param {Array} strictCompareFlags Strict comparison flags for source values.
         * @param {Function} [customizer] The function to customize comparing objects.
         * @returns {boolean} Returns `true` if `object` is a match, else `false`.
         */
        
function baseIsMatch(objectpropsvaluesstrictCompareFlagscustomizer) {
          var 
length props.length;
          if (
object == null) {
            return !
length;
          }
          var 
index = -1,
              
noCustomizer = !customizer;

          while (++
index length) {
            if ((
noCustomizer && strictCompareFlags[index])
                  ? 
values[index] !== object[props[index]]
                  : !
hasOwnProperty.call(objectprops[index])
                ) {
              return 
false;
            }
          }
          
index = -1;
          while (++
index length) {
            var 
key props[index];
            if (
noCustomizer && strictCompareFlags[index]) {
              var 
result hasOwnProperty.call(objectkey);
            } else {
              var 
objValue object[key],
                  
srcValue values[index];

              
result customizer customizer(objValuesrcValuekey) : undefined;
              if (
typeof result == 'undefined') {
                
result baseIsEqual(srcValueobjValuecustomizertrue);
              }
            }
            if (!
result) {
              return 
false;
            }
          }
          return 
true;
        }

        
/**
         * The base implementation of `_.map` without support for callback shorthands
         * or `this` binding.
         *
         * @private
         * @param {Array|Object|string} collection The collection to iterate over.
         * @param {Function} iteratee The function invoked per iteration.
         * @returns {Array} Returns the new mapped array.
         */
        
function baseMap(collectioniteratee) {
          var 
result = [];
          
baseEach(collection, function(valuekeycollection) {
            
result.push(iteratee(valuekeycollection));
          });
          return 
result;
        }

        
/**
         * The base implementation of `_.matches` which supports specifying whether
         * `source` should be cloned.
         *
         * @private
         * @param {Object} source The object of property values to match.
         * @returns {Function} Returns the new function.
         */
        
function baseMatches(source) {
          var 
props keys(source),
              
length props.length;

          if (
length == 1) {
            var 
key props[0],
                
value source[key];

            if (
isStrictComparable(value)) {
              return function(object) {
                return 
object != null && value === object[key] && hasOwnProperty.call(objectkey);
              };
            }
          }
          var 
values = Array(length),
              
strictCompareFlags = Array(length);

          while (
length--) {
            
value source[props[length]];
            
values[length] = value;
            
strictCompareFlags[length] = isStrictComparable(value);
          }
          return function(object) {
            return 
baseIsMatch(objectpropsvaluesstrictCompareFlags);
          };
        }

        
/**
         * The base implementation of `_.merge` without support for argument juggling,
         * multiple sources, and `this` binding `customizer` functions.
         *
         * @private
         * @param {Object} object The destination object.
         * @param {Object} source The source object.
         * @param {Function} [customizer] The function to customize merging properties.
         * @param {Array} [stackA=[]] Tracks traversed source objects.
         * @param {Array} [stackB=[]] Associates values with source counterparts.
         * @returns {Object} Returns the destination object.
         */
        
function baseMerge(objectsourcecustomizerstackAstackB) {
          var 
isSrcArr isLength(source.length) && (isArray(source) || isTypedArray(source));

          (
isSrcArr arrayEach baseForOwn)(source, function(srcValuekeysource) {
            if (
isObjectLike(srcValue)) {
              
stackA || (stackA = []);
              
stackB || (stackB = []);
              return 
baseMergeDeep(objectsourcekeybaseMergecustomizerstackAstackB);
            }
            var 
value object[key],
                
result customizer customizer(valuesrcValuekeyobjectsource) : undefined,
                
isCommon typeof result == 'undefined';

            if (
isCommon) {
              
result srcValue;
            }
            if ((
isSrcArr || typeof result != 'undefined') &&
                (
isCommon || (result === result result !== value value === value))) {
              
object[key] = result;
            }
          });
          return 
object;
        }

        
/**
         * A specialized version of `baseMerge` for arrays and objects which performs
         * deep merges and tracks traversed objects enabling objects with circular
         * references to be merged.
         *
         * @private
         * @param {Object} object The destination object.
         * @param {Object} source The source object.
         * @param {string} key The key of the value to merge.
         * @param {Function} mergeFunc The function to merge values.
         * @param {Function} [customizer] The function to customize merging properties.
         * @param {Array} [stackA=[]] Tracks traversed source objects.
         * @param {Array} [stackB=[]] Associates values with source counterparts.
         * @returns {boolean} Returns `true` if the objects are equivalent, else `false`.
         */
        
function baseMergeDeep(objectsourcekeymergeFunccustomizerstackAstackB) {
          var 
length stackA.length,
              
srcValue source[key];

          while (
length--) {
            if (
stackA[length] == srcValue) {
              
object[key] = stackB[length];
              return;
            }
          }
          var 
value object[key],
              
result customizer customizer(valuesrcValuekeyobjectsource) : undefined,
              
isCommon typeof result == 'undefined';

          if (
isCommon) {
            
result srcValue;
            if (
isLength(srcValue.length) && (isArray(srcValue) || isTypedArray(srcValue))) {
              
result isArray(value)
                ? 
value
                
: (value arrayCopy(value) : []);
            }
            else if (
isPlainObject(srcValue) || isArguments(srcValue)) {
              
result isArguments(value)
                ? 
toPlainObject(value)
                : (
isPlainObject(value) ? value : {});
            }
            else {
              
isCommon false;
            }
          }
          
// Add the source value to the stack of traversed objects and associate
          // it with its merged value.
          
stackA.push(srcValue);
          
stackB.push(result);

          if (
isCommon) {
            
// Recursively merge objects and arrays (susceptible to call stack limits).
            
object[key] = mergeFunc(resultsrcValuecustomizerstackAstackB);
          } else if (
result === result result !== value value === value) {
            
object[key] = result;
          }
        }

        
/**
         * The base implementation of `_.property` which does not coerce `key` to a string.
         *
         * @private
         * @param {string} key The key of the property to get.
         * @returns {Function} Returns the new function.
         */
        
function baseProperty(key) {
          return function(object) {
            return 
object == null undefined object[key];
          };
        }

        
/**
         * The base implementation of `_.pullAt` without support for individual
         * index arguments.
         *
         * @private
         * @param {Array} array The array to modify.
         * @param {number[]} indexes The indexes of elements to remove.
         * @returns {Array} Returns the new array of removed elements.
         */
        
function basePullAt(array, indexes) {
          var 
length indexes.length,
              
result baseAt(array, indexes);

          
indexes.sort(baseCompareAscending);
          while (
length--) {
            var 
index parseFloat(indexes[length]);
            if (
index != previous && isIndex(index)) {
              var 
previous index;
              
splice.call(array, index1);
            }
          }
          return 
result;
        }

        
/**
         * The base implementation of `_.random` without support for argument juggling
         * and returning floating-point numbers.
         *
         * @private
         * @param {number} min The minimum possible value.
         * @param {number} max The maximum possible value.
         * @returns {number} Returns the random number.
         */
        
function baseRandom(minmax) {
          return 
min floor(nativeRandom() * (max min 1));
        }

        
/**
         * The base implementation of `_.reduce` and `_.reduceRight` without support
         * for callback shorthands or `this` binding, which iterates over `collection`
         * using the provided `eachFunc`.
         *
         * @private
         * @param {Array|Object|string} collection The collection to iterate over.
         * @param {Function} iteratee The function invoked per iteration.
         * @param {*} accumulator The initial value.
         * @param {boolean} initFromCollection Specify using the first or last element
         *  of `collection` as the initial value.
         * @param {Function} eachFunc The function to iterate over `collection`.
         * @returns {*} Returns the accumulated value.
         */
        
function baseReduce(collectioniterateeaccumulatorinitFromCollectioneachFunc) {
          
eachFunc(collection, function(valueindexcollection) {
            
accumulator initFromCollection
              
? (initFromCollection falsevalue)
              : 
iteratee(accumulatorvalueindexcollection)
          });
          return 
accumulator;
        }

        
/**
         * The base implementation of `setData` without support for hot loop detection.
         *
         * @private
         * @param {Function} func The function to associate metadata with.
         * @param {*} data The metadata.
         * @returns {Function} Returns `func`.
         */
        
var baseSetData = !metaMap identity : function(funcdata) {
          
metaMap.set(funcdata);
          return 
func;
        };

        
/**
         * The base implementation of `_.slice` without an iteratee call guard.
         *
         * @private
         * @param {Array} array The array to slice.
         * @param {number} [start=0] The start position.
         * @param {number} [end=array.length] The end position.
         * @returns {Array} Returns the slice of `array`.
         */
        
function baseSlice(array, startend) {
          var 
index = -1,
              
length = array.length;

          
start start == null : (+start || 0);
          if (
start 0) {
            
start = -start length : (length start);
          }
          
end = (typeof end == 'undefined' || end length) ? length : (+end || 0);
          if (
end 0) {
            
end += length;
          }
          
length start end : (end start) >>> 0;
          
start >>>= 0;

          var 
result = Array(length);
          while (++
index length) {
            
result[index] = array[index start];
          }
          return 
result;
        }

        
/**
         * The base implementation of `_.some` without support for callback shorthands
         * or `this` binding.
         *
         * @private
         * @param {Array|Object|string} collection The collection to iterate over.
         * @param {Function} predicate The function invoked per iteration.
         * @returns {boolean} Returns `true` if any element passes the predicate check,
         *  else `false`.
         */
        
function baseSome(collectionpredicate) {
          var 
result;

          
baseEach(collection, function(valueindexcollection) {
            
result predicate(valueindexcollection);
            return !
result;
          });
          return !!
result;
        }

        
/**
         * The base implementation of `_.uniq` without support for callback shorthands
         * and `this` binding.
         *
         * @private
         * @param {Array} array The array to inspect.
         * @param {Function} [iteratee] The function invoked per iteration.
         * @returns {Array} Returns the new duplicate-value-free array.
         */
        
function baseUniq(array, iteratee) {
          var 
index = -1,
              
indexOf getIndexOf(),
              
length = array.length,
              
isCommon indexOf == baseIndexOf,
              
isLarge isCommon && length >= 200,
              
seen isLarge && createCache(),
              
result = [];

          if (
seen) {
            
indexOf cacheIndexOf;
            
isCommon false;
          } else {
            
isLarge false;
            
seen iteratee ? [] : result;
          }
          
outer:
          while (++
index length) {
            var 
value = array[index],
                
computed iteratee iteratee(valueindex, array) : value;

            if (
isCommon && value === value) {
              var 
seenIndex seen.length;
              while (
seenIndex--) {
                if (
seen[seenIndex] === computed) {
                  continue 
outer;
                }
              }
              if (
iteratee) {
                
seen.push(computed);
              }
              
result.push(value);
            }
            else if (
indexOf(seencomputed) < 0) {
              if (
iteratee || isLarge) {
                
seen.push(computed);
              }
              
result.push(value);
            }
          }
          return 
result;
        }

        
/**
         * The base implementation of `_.values` and `_.valuesIn` which creates an
         * array of `object` property values corresponding to the property names
         * returned by `keysFunc`.
         *
         * @private
         * @param {Object} object The object to query.
         * @param {Array} props The property names to get values for.
         * @returns {Object} Returns the array of property values.
         */
        
function baseValues(objectprops) {
          var 
index = -1,
              
length props.length,
              
result = Array(length);

          while (++
index length) {
            
result[index] = object[props[index]];
          }
          return 
result;
        }

        
/**
         * The base implementation of `wrapperValue` which returns the result of
         * performing a sequence of actions on the unwrapped `value`, where each
         * successive action is supplied the return value of the previous.
         *
         * @private
         * @param {*} value The unwrapped value.
         * @param {Array} actions Actions to peform to resolve the unwrapped value.
         * @returns {*} Returns the resolved unwrapped value.
         */
        
function baseWrapperValue(valueactions) {
          var 
result value;
          if (
result instanceof LazyWrapper) {
            
result result.value();
          }
          var 
index = -1,
              
length actions.length;

          while (++
index length) {
            var 
args = [result],
                
action actions[index];

            
push.apply(argsaction.args);
            
result action.func.apply(action.thisArgargs);
          }
          return 
result;
        }

        
/**
         * Performs a binary search of `array` to determine the index at which `value`
         * should be inserted into `array` in order to maintain its sort order.
         *
         * @private
         * @param {Array} array The sorted array to inspect.
         * @param {*} value The value to evaluate.
         * @param {boolean} [retHighest] Specify returning the highest, instead
         *  of the lowest, index at which a value should be inserted into `array`.
         * @returns {number} Returns the index at which `value` should be inserted
         *  into `array`.
         */
        
function binaryIndex(array, valueretHighest) {
          var 
low 0,
              
high = array ? array.length low;

          if (
typeof value == 'number' && value === value && high <= HALF_MAX_ARRAY_LENGTH) {
            while (
low high) {
              var 
mid = (low high) >>> 1,
                  
computed = array[mid];

              if (
retHighest ? (computed <= value) : (computed value)) {
                
low mid 1;
              } else {
                
high mid;
              }
            }
            return 
high;
          }
          return 
binaryIndexBy(array, valueidentityretHighest);
        }

        
/**
         * This function is like `binaryIndex` except that it invokes `iteratee` for
         * `value` and each element of `array` to compute their sort ranking. The
         * iteratee is invoked with one argument; (value).
         *
         * @private
         * @param {Array} array The sorted array to inspect.
         * @param {*} value The value to evaluate.
         * @param {Function} iteratee The function invoked per iteration.
         * @param {boolean} [retHighest] Specify returning the highest, instead
         *  of the lowest, index at which a value should be inserted into `array`.
         * @returns {number} Returns the index at which `value` should be inserted
         *  into `array`.
         */
        
function binaryIndexBy(array, valueiterateeretHighest) {
          
value iteratee(value);

          var 
low 0,
              
high = array ? array.length 0,
              
valIsNaN value !== value,
              
valIsUndef typeof value == 'undefined';

          while (
low high) {
            var 
mid floor((low high) / 2),
                
computed iteratee(array[mid]),
                
isReflexive computed === computed;

            if (
valIsNaN) {
              var 
setLow isReflexive || retHighest;
            } else if (
valIsUndef) {
              
setLow isReflexive && (retHighest || typeof computed != 'undefined');
            } else {
              
setLow retHighest ? (computed <= value) : (computed value);
            }
            if (
setLow) {
              
low mid 1;
            } else {
              
high mid;
            }
          }
          return 
nativeMin(highMAX_ARRAY_INDEX);
        }

        
/**
         * A specialized version of `baseCallback` which only supports `this` binding
         * and specifying the number of arguments to provide to `func`.
         *
         * @private
         * @param {Function} func The function to bind.
         * @param {*} thisArg The `this` binding of `func`.
         * @param {number} [argCount] The number of arguments to provide to `func`.
         * @returns {Function} Returns the callback.
         */
        
function bindCallback(functhisArgargCount) {
          if (
typeof func != 'function') {
            return 
identity;
          }
          if (
typeof thisArg == 'undefined') {
            return 
func;
          }
          switch (
argCount) {
            case 
1: return function(value) {
              return 
func.call(thisArgvalue);
            };
            case 
3: return function(valueindexcollection) {
              return 
func.call(thisArgvalueindexcollection);
            };
            case 
4: return function(accumulatorvalueindexcollection) {
              return 
func.call(thisArgaccumulatorvalueindexcollection);
            };
            case 
5: return function(valueotherkeyobjectsource) {
              return 
func.call(thisArgvalueotherkeyobjectsource);
            };
          }
          return function() {
            return 
func.apply(thisArgarguments);
          };
        }

        
/**
         * Creates a clone of the given array buffer.
         *
         * @private
         * @param {ArrayBuffer} buffer The array buffer to clone.
         * @returns {ArrayBuffer} Returns the cloned array buffer.
         */
        
function bufferClone(buffer) {
          return 
bufferSlice.call(buffer0);
        }
        if (!
bufferSlice) {
          
// PhantomJS has `ArrayBuffer` and `Uint8Array` but not `Float64Array`.
          
bufferClone = !(ArrayBuffer && Uint8Array) ? constant(null) : function(buffer) {
            var 
byteLength buffer.byteLength,
                
floatLength Float64Array floor(byteLength FLOAT64_BYTES_PER_ELEMENT) : 0,
                
offset floatLength FLOAT64_BYTES_PER_ELEMENT,
                
result = new ArrayBuffer(byteLength);

            if (
floatLength) {
              var 
view = new Float64Array(result0floatLength);
              
view.set(new Float64Array(buffer0floatLength));
            }
            if (
byteLength != offset) {
              
view = new Uint8Array(resultoffset);
              
view.set(new Uint8Array(bufferoffset));
            }
            return 
result;
          };
        }

        
/**
         * Creates an array that is the composition of partially applied arguments,
         * placeholders, and provided arguments into a single array of arguments.
         *
         * @private
         * @param {Array|Object} args The provided arguments.
         * @param {Array} partials The arguments to prepend to those provided.
         * @param {Array} holders The `partials` placeholder indexes.
         * @returns {Array} Returns the new array of composed arguments.
         */
        
function composeArgs(argspartialsholders) {
          var 
holdersLength holders.length,
              
argsIndex = -1,
              
argsLength nativeMax(args.length holdersLength0),
              
leftIndex = -1,
              
leftLength partials.length,
              
result = Array(argsLength leftLength);

          while (++
leftIndex leftLength) {
            
result[leftIndex] = partials[leftIndex];
          }
          while (++
argsIndex holdersLength) {
            
result[holders[argsIndex]] = args[argsIndex];
          }
          while (
argsLength--) {
            
result[leftIndex++] = args[argsIndex++];
          }
          return 
result;
        }

        
/**
         * This function is like `composeArgs` except that the arguments composition
         * is tailored for `_.partialRight`.
         *
         * @private
         * @param {Array|Object} args The provided arguments.
         * @param {Array} partials The arguments to append to those provided.
         * @param {Array} holders The `partials` placeholder indexes.
         * @returns {Array} Returns the new array of composed arguments.
         */
        
function composeArgsRight(argspartialsholders) {
          var 
holdersIndex = -1,
              
holdersLength holders.length,
              
argsIndex = -1,
              
argsLength nativeMax(args.length holdersLength0),
              
rightIndex = -1,
              
rightLength partials.length,
              
result = Array(argsLength rightLength);

          while (++
argsIndex argsLength) {
            
result[argsIndex] = args[argsIndex];
          }
          var 
pad argsIndex;
          while (++
rightIndex rightLength) {
            
result[pad rightIndex] = partials[rightIndex];
          }
          while (++
holdersIndex holdersLength) {
            
result[pad holders[holdersIndex]] = args[argsIndex++];
          }
          return 
result;
        }

        
/**
         * Creates a function that aggregates a collection, creating an accumulator
         * object composed from the results of running each element in the collection
         * through an iteratee. The `setter` sets the keys and values of the accumulator
         * object. If `initializer` is provided initializes the accumulator object.
         *
         * @private
         * @param {Function} setter The function to set keys and values of the accumulator object.
         * @param {Function} [initializer] The function to initialize the accumulator object.
         * @returns {Function} Returns the new aggregator function.
         */
        
function createAggregator(setterinitializer) {
          return function(
collectioniterateethisArg) {
            var 
result initializer initializer() : {};
            
iteratee getCallback(iterateethisArg3);

            if (
isArray(collection)) {
              var 
index = -1,
                  
length collection.length;

              while (++
index length) {
                var 
value collection[index];
                
setter(resultvalueiteratee(valueindexcollection), collection);
              }
            } else {
              
baseEach(collection, function(valuekeycollection) {
                
setter(resultvalueiteratee(valuekeycollection), collection);
              });
            }
            return 
result;
          };
        }

        
/**
         * Creates a function that assigns properties of source object(s) to a given
         * destination object.
         *
         * @private
         * @param {Function} assigner The function to assign values.
         * @returns {Function} Returns the new assigner function.
         */
        
function createAssigner(assigner) {
          return function() {
            var 
length arguments.length,
                
object arguments[0];

            if (
length || object == null) {
              return 
object;
            }
            if (
length && isIterateeCall(arguments[1], arguments[2], arguments[3])) {
              
length 2;
            }
            
// Juggle arguments.
            
if (length && typeof arguments[length 2] == 'function') {
              var 
customizer bindCallback(arguments[--length 1], arguments[length--], 5);
            } else if (
length && typeof arguments[length 1] == 'function') {
              
customizer arguments[--length];
            }
            var 
index 0;
            while (++
index length) {
              var 
source arguments[index];
              if (
source) {
                
assigner(objectsourcecustomizer);
              }
            }
            return 
object;
          };
        }

        
/**
         * Creates a function that wraps `func` and invokes it with the `this`
         * binding of `thisArg`.
         *
         * @private
         * @param {Function} func The function to bind.
         * @param {*} [thisArg] The `this` binding of `func`.
         * @returns {Function} Returns the new bound function.
         */
        
function createBindWrapper(functhisArg) {
          var 
Ctor createCtorWrapper(func);

          function 
wrapper() {
            return (
this instanceof wrapper Ctor func).apply(thisArgarguments);
          }
          return 
wrapper;
        }

        
/**
         * Creates a `Set` cache object to optimize linear searches of large arrays.
         *
         * @private
         * @param {Array} [values] The values to cache.
         * @returns {null|Object} Returns the new cache object if `Set` is supported, else `null`.
         */
        
var createCache = !(nativeCreate && Set) ? constant(null) : function(values) {
          return new 
SetCache(values);
        };

        
/**
         * Creates a function that produces compound words out of the words in a
         * given string.
         *
         * @private
         * @param {Function} callback The function to combine each word.
         * @returns {Function} Returns the new compounder function.
         */
        
function createCompounder(callback) {
          return function(string) {
            var 
index = -1,
                array = 
words(deburr(string)),
                
length = array.length,
                
result '';

            while (++
index length) {
              
result callback(result, array[index], index);
            }
            return 
result;
          };
        }

        
/**
         * Creates a function that produces an instance of `Ctor` regardless of
         * whether it was invoked as part of a `new` expression or by `call` or `apply`.
         *
         * @private
         * @param {Function} Ctor The constructor to wrap.
         * @returns {Function} Returns the new wrapped function.
         */
        
function createCtorWrapper(Ctor) {
          return function() {
            var 
thisBinding baseCreate(Ctor.prototype),
                
result Ctor.apply(thisBindingarguments);

            
// Mimic the constructor's `return` behavior.
            // See https://es5.github.io/#x13.2.2 for more details.
            
return isObject(result) ? result thisBinding;
          };
        }

        
/**
         * Creates a function that gets the extremum value of a collection.
         *
         * @private
         * @param {Function} arrayFunc The function to get the extremum value from an array.
         * @param {boolean} [isMin] Specify returning the minimum, instead of the maximum,
         *  extremum value.
         * @returns {Function} Returns the new extremum function.
         */
        
function createExtremum(arrayFuncisMin) {
          return function(
collectioniterateethisArg) {
            if (
thisArg && isIterateeCall(collectioniterateethisArg)) {
              
iteratee null;
            }
            var 
func getCallback(),
                
noIteratee iteratee == null;

            if (!(
func === baseCallback && noIteratee)) {
              
noIteratee false;
              
iteratee func(iterateethisArg3);
            }
            if (
noIteratee) {
              var 
isArr isArray(collection);
              if (!
isArr && isString(collection)) {
                
iteratee charAtCallback;
              } else {
                return 
arrayFunc(isArr collection toIterable(collection));
              }
            }
            return 
extremumBy(collectioniterateeisMin);
          };
        }

        
/**
         * Creates a function that wraps `func` and invokes it with optional `this`
         * binding of, partial application, and currying.
         *
         * @private
         * @param {Function|string} func The function or method name to reference.
         * @param {number} bitmask The bitmask of flags. See `createWrapper` for more details.
         * @param {*} [thisArg] The `this` binding of `func`.
         * @param {Array} [partials] The arguments to prepend to those provided to the new function.
         * @param {Array} [holders] The `partials` placeholder indexes.
         * @param {Array} [partialsRight] The arguments to append to those provided to the new function.
         * @param {Array} [holdersRight] The `partialsRight` placeholder indexes.
         * @param {Array} [argPos] The argument positions of the new function.
         * @param {number} [ary] The arity cap of `func`.
         * @param {number} [arity] The arity of `func`.
         * @returns {Function} Returns the new wrapped function.
         */
        
function createHybridWrapper(funcbitmaskthisArgpartialsholderspartialsRightholdersRightargPosaryarity) {
          var 
isAry bitmask ARY_FLAG,
              
isBind bitmask BIND_FLAG,
              
isBindKey bitmask BIND_KEY_FLAG,
              
isCurry bitmask CURRY_FLAG,
              
isCurryBound bitmask CURRY_BOUND_FLAG,
              
isCurryRight bitmask CURRY_RIGHT_FLAG;

          var 
Ctor = !isBindKey && createCtorWrapper(func),
              
key func;

          function 
wrapper() {
            
// Avoid `arguments` object use disqualifying optimizations by
            // converting it to an array before providing it to other functions.
            
var length arguments.length,
                
index length,
                
args = Array(length);

            while (
index--) {
              
args[index] = arguments[index];
            }
            if (
partials) {
              
args composeArgs(argspartialsholders);
            }
            if (
partialsRight) {
              
args composeArgsRight(argspartialsRightholdersRight);
            }
            if (
isCurry || isCurryRight) {
              var 
placeholder wrapper.placeholder,
                  
argsHolders replaceHolders(argsplaceholder);

              
length -= argsHolders.length;
              if (
length arity) {
                var 
newArgPos argPos arrayCopy(argPos) : null,
                    
newArity nativeMax(arity length0),
                    
newsHolders isCurry argsHolders null,
                    
newHoldersRight isCurry null argsHolders,
                    
newPartials isCurry args null,
                    
newPartialsRight isCurry null args;

                
bitmask |= (isCurry PARTIAL_FLAG PARTIAL_RIGHT_FLAG);
                
bitmask &= ~(isCurry PARTIAL_RIGHT_FLAG PARTIAL_FLAG);

                if (!
isCurryBound) {
                  
bitmask &= ~(BIND_FLAG BIND_KEY_FLAG);
                }
                var 
result createHybridWrapper(funcbitmaskthisArgnewPartialsnewsHoldersnewPartialsRightnewHoldersRightnewArgPosarynewArity);
                
result.placeholder placeholder;
                return 
result;
              }
            }
            var 
thisBinding isBind thisArg this;
            if (
isBindKey) {
              
func thisBinding[key];
            }
            if (
argPos) {
              
args reorder(argsargPos);
            }
            if (
isAry && ary args.length) {
              
args.length ary;
            }
            return (
this instanceof wrapper ? (Ctor || createCtorWrapper(func)) : func).apply(thisBindingargs);
          }
          return 
wrapper;
        }

        
/**
         * Creates the pad required for `string` based on the given padding length.
         * The `chars` string may be truncated if the number of padding characters
         * exceeds the padding length.
         *
         * @private
         * @param {string} string The string to create padding for.
         * @param {number} [length=0] The padding length.
         * @param {string} [chars=' '] The string used as padding.
         * @returns {string} Returns the pad for `string`.
         */
        
function createPad(stringlengthchars) {
          var 
strLength string.length;
          
length = +length;

          if (
strLength >= length || !nativeIsFinite(length)) {
            return 
'';
          }
          var 
padLength length strLength;
          
chars chars == null ' ' : (chars '');
          return 
repeat(charsceil(padLength chars.length)).slice(0padLength);
        }

        
/**
         * Creates a function that wraps `func` and invokes it with the optional `this`
         * binding of `thisArg` and the `partials` prepended to those provided to
         * the wrapper.
         *
         * @private
         * @param {Function} func The function to partially apply arguments to.
         * @param {number} bitmask The bitmask of flags. See `createWrapper` for more details.
         * @param {*} thisArg The `this` binding of `func`.
         * @param {Array} partials The arguments to prepend to those provided to the new function.
         * @returns {Function} Returns the new bound function.
         */
        
function createPartialWrapper(funcbitmaskthisArgpartials) {
          var 
isBind bitmask BIND_FLAG,
              
Ctor createCtorWrapper(func);

          function 
wrapper() {
            
// Avoid `arguments` object use disqualifying optimizations by
            // converting it to an array before providing it `func`.
            
var argsIndex = -1,
                
argsLength arguments.length,
                
leftIndex = -1,
                
leftLength partials.length,
                
args = Array(argsLength leftLength);

            while (++
leftIndex leftLength) {
              
args[leftIndex] = partials[leftIndex];
            }
            while (
argsLength--) {
              
args[leftIndex++] = arguments[++argsIndex];
            }
            return (
this instanceof wrapper Ctor func).apply(isBind thisArg thisargs);
          }
          return 
wrapper;
        }

        
/**
         * Creates a function that either curries or invokes `func` with optional
         * `this` binding and partially applied arguments.
         *
         * @private
         * @param {Function|string} func The function or method name to reference.
         * @param {number} bitmask The bitmask of flags.
         *  The bitmask may be composed of the following flags:
         *     1 - `_.bind`
         *     2 - `_.bindKey`
         *     4 - `_.curry` or `_.curryRight` of a bound function
         *     8 - `_.curry`
         *    16 - `_.curryRight`
         *    32 - `_.partial`
         *    64 - `_.partialRight`
         *   128 - `_.rearg`
         *   256 - `_.ary`
         * @param {*} [thisArg] The `this` binding of `func`.
         * @param {Array} [partials] The arguments to be partially applied.
         * @param {Array} [holders] The `partials` placeholder indexes.
         * @param {Array} [argPos] The argument positions of the new function.
         * @param {number} [ary] The arity cap of `func`.
         * @param {number} [arity] The arity of `func`.
         * @returns {Function} Returns the new wrapped function.
         */
        
function createWrapper(funcbitmaskthisArgpartialsholdersargPosaryarity) {
          var 
isBindKey bitmask BIND_KEY_FLAG;
          if (!
isBindKey && !isFunction(func)) {
            throw new 
TypeError(FUNC_ERROR_TEXT);
          }
          var 
length partials partials.length 0;
          if (!
length) {
            
bitmask &= ~(PARTIAL_FLAG PARTIAL_RIGHT_FLAG);
            
partials holders null;
          }
          
length -= (holders holders.length 0);
          if (
bitmask PARTIAL_RIGHT_FLAG) {
            var 
partialsRight partials,
                
holdersRight holders;

            
partials holders null;
          }
          var 
data = !isBindKey && getData(func),
              
newData = [funcbitmaskthisArgpartialsholderspartialsRightholdersRightargPosaryarity];

          if (
data && data !== true) {
            
mergeData(newDatadata);
            
bitmask newData[1];
            
arity newData[9];
          }
          
newData[9] = arity == null
            
? (isBindKey func.length)
            : (
nativeMax(arity length0) || 0);

          if (
bitmask == BIND_FLAG) {
            var 
result createBindWrapper(newData[0], newData[2]);
          } else if ((
bitmask == PARTIAL_FLAG || bitmask == (BIND_FLAG PARTIAL_FLAG)) && !newData[4].length) {
            
result createPartialWrapper.apply(nullnewData);
          } else {
            
result createHybridWrapper.apply(nullnewData);
          }
          var 
setter data baseSetData setData;
          return 
setter(resultnewData);
        }

        
/**
         * A specialized version of `baseIsEqualDeep` for arrays with support for
         * partial deep comparisons.
         *
         * @private
         * @param {Array} array The array to compare.
         * @param {Array} other The other array to compare.
         * @param {Function} equalFunc The function to determine equivalents of values.
         * @param {Function} [customizer] The function to customize comparing arrays.
         * @param {boolean} [isWhere] Specify performing partial comparisons.
         * @param {Array} [stackA] Tracks traversed `value` objects.
         * @param {Array} [stackB] Tracks traversed `other` objects.
         * @returns {boolean} Returns `true` if the arrays are equivalent, else `false`.
         */
        
function equalArrays(array, otherequalFunccustomizerisWherestackAstackB) {
          var 
index = -1,
              
arrLength = array.length,
              
othLength other.length,
              
result true;

          if (
arrLength != othLength && !(isWhere && othLength arrLength)) {
            return 
false;
          }
          
// Deep compare the contents, ignoring non-numeric properties.
          
while (result && ++index arrLength) {
            var 
arrValue = array[index],
                
othValue other[index];

            
result undefined;
            if (
customizer) {
              
result isWhere
                
customizer(othValuearrValueindex)
                : 
customizer(arrValueothValueindex);
            }
            if (
typeof result == 'undefined') {
              
// Recursively compare arrays (susceptible to call stack limits).
              
if (isWhere) {
                var 
othIndex othLength;
                while (
othIndex--) {
                  
othValue other[othIndex];
                  
result = (arrValue && arrValue === othValue) || equalFunc(arrValueothValuecustomizerisWherestackAstackB);
                  if (
result) {
                    break;
                  }
                }
              } else {
                
result = (arrValue && arrValue === othValue) || equalFunc(arrValueothValuecustomizerisWherestackAstackB);
              }
            }
          }
          return !!
result;
        }

        
/**
         * A specialized version of `baseIsEqualDeep` for comparing objects of
         * the same `toStringTag`.
         *
         * **Note:** This function only supports comparing values with tags of
         * `Boolean`, `Date`, `Error`, `Number`, `RegExp`, or `String`.
         *
         * @private
         * @param {Object} value The object to compare.
         * @param {Object} other The other object to compare.
         * @param {string} tag The `toStringTag` of the objects to compare.
         * @returns {boolean} Returns `true` if the objects are equivalent, else `false`.
         */
        
function equalByTag(objectothertag) {
          switch (
tag) {
            case 
boolTag:
            case 
dateTag:
              
// Coerce dates and booleans to numbers, dates to milliseconds and booleans
              // to `1` or `0` treating invalid dates coerced to `NaN` as not equal.
              
return +object == +other;

            case 
errorTag:
              return 
object.name == other.name && object.message == other.message;

            case 
numberTag:
              
// Treat `NaN` vs. `NaN` as equal.
              
return (object != +object)
                ? 
other != +other
                
// But, treat `-0` vs. `+0` as not equal.
                
: (object == ? ((object) == (other)) : object == +other);

            case 
regexpTag:
            case 
stringTag:
              
// Coerce regexes to strings and treat strings primitives and string
              // objects as equal. See https://es5.github.io/#x15.10.6.4 for more details.
              
return object == (other '');
          }
          return 
false;
        }

        
/**
         * A specialized version of `baseIsEqualDeep` for objects with support for
         * partial deep comparisons.
         *
         * @private
         * @param {Object} object The object to compare.
         * @param {Object} other The other object to compare.
         * @param {Function} equalFunc The function to determine equivalents of values.
         * @param {Function} [customizer] The function to customize comparing values.
         * @param {boolean} [isWhere] Specify performing partial comparisons.
         * @param {Array} [stackA] Tracks traversed `value` objects.
         * @param {Array} [stackB] Tracks traversed `other` objects.
         * @returns {boolean} Returns `true` if the objects are equivalent, else `false`.
         */
        
function equalObjects(objectotherequalFunccustomizerisWherestackAstackB) {
          var 
objProps keys(object),
              
objLength objProps.length,
              
othProps keys(other),
              
othLength othProps.length;

          if (
objLength != othLength && !isWhere) {
            return 
false;
          }
          var 
hasCtor,
              
index = -1;

          while (++
index objLength) {
            var 
key objProps[index],
                
result hasOwnProperty.call(otherkey);

            if (
result) {
              var 
objValue object[key],
                  
othValue other[key];

              
result undefined;
              if (
customizer) {
                
result isWhere
                  
customizer(othValueobjValuekey)
                  : 
customizer(objValueothValuekey);
              }
              if (
typeof result == 'undefined') {
                
// Recursively compare objects (susceptible to call stack limits).
                
result = (objValue && objValue === othValue) || equalFunc(objValueothValuecustomizerisWherestackAstackB);
              }
            }
            if (!
result) {
              return 
false;
            }
            
hasCtor || (hasCtor key == 'constructor');
          }
          if (!
hasCtor) {
            var 
objCtor object.constructor,
                
othCtor other.constructor;

            
// Non `Object` object instances with different constructors are not equal.
            
if (objCtor != othCtor && ('constructor' in object && 'constructor' in other) &&
                !(
typeof objCtor == 'function' && objCtor instanceof objCtor && typeof othCtor == 'function' && othCtor instanceof othCtor)) {
              return 
false;
            }
          }
          return 
true;
        }

        
/**
         * Gets the extremum value of `collection` invoking `iteratee` for each value
         * in `collection` to generate the criterion by which the value is ranked.
         * The `iteratee` is invoked with three arguments; (value, index, collection).
         *
         * @private
         * @param {Array|Object|string} collection The collection to iterate over.
         * @param {Function} iteratee The function invoked per iteration.
         * @param {boolean} [isMin] Specify returning the minimum, instead of the
         *  maximum, extremum value.
         * @returns {*} Returns the extremum value.
         */
        
function extremumBy(collectioniterateeisMin) {
          var 
exValue isMin POSITIVE_INFINITY NEGATIVE_INFINITY,
              
computed exValue,
              
result computed;

          
baseEach(collection, function(valueindexcollection) {
            var 
current iteratee(valueindexcollection);
            if ((
isMin current computed current computed) || (current === exValue && current === result)) {
              
computed current;
              
result value;
            }
          });
          return 
result;
        }

        
/**
         * Gets the appropriate "callback" function. If the `_.callback` method is
         * customized this function returns the custom method, otherwise it returns
         * the `baseCallback` function. If arguments are provided the chosen function
         * is invoked with them and its result is returned.
         *
         * @private
         * @returns {Function} Returns the chosen function or its result.
         */
        
function getCallback(functhisArgargCount) {
          var 
result lodash.callback || callback;
          
result result === callback baseCallback result;
          return 
argCount result(functhisArgargCount) : result;
        }

        
/**
         * Gets metadata for `func`.
         *
         * @private
         * @param {Function} func The function to query.
         * @returns {*} Returns the metadata for `func`.
         */
        
var getData = !metaMap noop : function(func) {
          return 
metaMap.get(func);
        };

        
/**
         * Gets the appropriate "indexOf" function. If the `_.indexOf` method is
         * customized this function returns the custom method, otherwise it returns
         * the `baseIndexOf` function. If arguments are provided the chosen function
         * is invoked with them and its result is returned.
         *
         * @private
         * @returns {Function|number} Returns the chosen function or its result.
         */
        
function getIndexOf(collectiontargetfromIndex) {
          var 
result lodash.indexOf || indexOf;
          
result result === indexOf baseIndexOf result;
          return 
collection result(collectiontargetfromIndex) : result;
        }

        
/**
         * Gets the view, applying any `transforms` to the `start` and `end` positions.
         *
         * @private
         * @param {number} start The start of the view.
         * @param {number} end The end of the view.
         * @param {Array} [transforms] The transformations to apply to the view.
         * @returns {Object} Returns an object containing the `start` and `end`
         *  positions of the view.
         */
        
function getView(startendtransforms) {
          var 
index = -1,
              
length transforms transforms.length 0;

          while (++
index length) {
            var 
data transforms[index],
                
size data.size;

            switch (
data.type) {
              case 
'drop':      start += size; break;
              case 
'dropRight'end -= size; break;
              case 
'take':      end nativeMin(endstart size); break;
              case 
'takeRight'start nativeMax(startend size); break;
            }
          }
          return { 
'start'start'end'end };
        }

        
/**
         * Initializes an array clone.
         *
         * @private
         * @param {Array} array The array to clone.
         * @returns {Array} Returns the initialized clone.
         */
        
function initCloneArray(array) {
          var 
length = array.length,
              
result = new array.constructor(length);

          
// Add array properties assigned by `RegExp#exec`.
          
if (length && typeof array[0] == 'string' && hasOwnProperty.call(array, 'index')) {
            
result.index = array.index;
            
result.input = array.input;
          }
          return 
result;
        }

        
/**
         * Initializes an object clone.
         *
         * @private
         * @param {Object} object The object to clone.
         * @returns {Object} Returns the initialized clone.
         */
        
function initCloneObject(object) {
          var 
Ctor object.constructor;
          if (!(
typeof Ctor == 'function' && Ctor instanceof Ctor)) {
            
Ctor Object;
          }
          return new 
Ctor;
        }

        
/**
         * Initializes an object clone based on its `toStringTag`.
         *
         * **Note:** This function only supports cloning values with tags of
         * `Boolean`, `Date`, `Error`, `Number`, `RegExp`, or `String`.
         *
         *
         * @private
         * @param {Object} object The object to clone.
         * @param {string} tag The `toStringTag` of the object to clone.
         * @param {boolean} [isDeep] Specify a deep clone.
         * @returns {Object} Returns the initialized clone.
         */
        
function initCloneByTag(objecttagisDeep) {
          var 
Ctor object.constructor;
          switch (
tag) {
            case 
arrayBufferTag:
              return 
bufferClone(object);

            case 
boolTag:
            case 
dateTag:
              return new 
Ctor(+object);

            case 
float32Tag: case float64Tag:
            case 
int8Tag: case int16Tag: case int32Tag:
            case 
uint8Tag: case uint8ClampedTag: case uint16Tag: case uint32Tag:
              var 
buffer object.buffer;
              return new 
Ctor(isDeep bufferClone(buffer) : bufferobject.byteOffsetobject.length);

            case 
numberTag:
            case 
stringTag:
              return new 
Ctor(object);

            case 
regexpTag:
              var 
result = new Ctor(object.sourcereFlags.exec(object));
              
result.lastIndex object.lastIndex;
          }
          return 
result;
        }

        
/**
         * Checks if `func` is eligible for `this` binding.
         *
         * @private
         * @param {Function} func The function to check.
         * @returns {boolean} Returns `true` if `func` is eligible, else `false`.
         */
        
function isBindable(func) {
          var 
support lodash.support,
              
result = !(support.funcNames func.name support.funcDecomp);

          if (!
result) {
            var 
source fnToString.call(func);
            if (!
support.funcNames) {
              
result = !reFuncName.test(source);
            }
            if (!
result) {
              
// Check if `func` references the `this` keyword and store the result.
              
result reThis.test(source) || isNative(func);
              
baseSetData(funcresult);
            }
          }
          return 
result;
        }

        
/**
         * Checks if `value` is a valid array-like index.
         *
         * @private
         * @param {*} value The value to check.
         * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index.
         * @returns {boolean} Returns `true` if `value` is a valid index, else `false`.
         */
        
function isIndex(valuelength) {
          
value = +value;
          
length length == null MAX_SAFE_INTEGER length;
          return 
value > -&& value == && value length;
        }

        
/**
         * Checks if the provided arguments are from an iteratee call.
         *
         * @private
         * @param {*} value The potential iteratee value argument.
         * @param {*} index The potential iteratee index or key argument.
         * @param {*} object The potential iteratee object argument.
         * @returns {boolean} Returns `true` if the arguments are from an iteratee call, else `false`.
         */
        
function isIterateeCall(valueindexobject) {
          if (!
isObject(object)) {
            return 
false;
          }
          var 
type typeof index;
          if (
type == 'number') {
            var 
length object.length,
                
prereq isLength(length) && isIndex(indexlength);
          } else {
            
prereq type == 'string' && index in object;
          }
          return 
prereq && object[index] === value;
        }

        
/**
         * Checks if `value` is a valid array-like length.
         *
         * **Note:** This function is based on ES `ToLength`. See the
         * [ES spec](https://people.mozilla.org/~jorendorff/es6-draft.html#sec-tolength)
         * for more details.
         *
         * @private
         * @param {*} value The value to check.
         * @returns {boolean} Returns `true` if `value` is a valid length, else `false`.
         */
        
function isLength(value) {
          return 
typeof value == 'number' && value > -&& value == && value <= MAX_SAFE_INTEGER;
        }

        
/**
         * Checks if `value` is suitable for strict equality comparisons, i.e. `===`.
         *
         * @private
         * @param {*} value The value to check.
         * @returns {boolean} Returns `true` if `value` if suitable for strict
         *  equality comparisons, else `false`.
         */
        
function isStrictComparable(value) {
          return 
value === value && (value === ? ((value) > 0) : !isObject(value));
        }

        
/**
         * Merges the function metadata of `source` into `data`.
         *
         * Merging metadata reduces the number of wrappers required to invoke a function.
         * This is possible because methods like `_.bind`, `_.curry`, and `_.partial`
         * may be applied regardless of execution order. Methods like `_.ary` and `_.rearg`
         * augment function arguments, making the order in which they are executed important,
         * preventing the merging of metadata. However, we make an exception for a safe
         * common case where curried functions have `_.ary` and or `_.rearg` applied.
         *
         * @private
         * @param {Array} data The destination metadata.
         * @param {Array} source The source metadata.
         * @returns {Array} Returns `data`.
         */
        
function mergeData(datasource) {
          var 
bitmask data[1],
              
srcBitmask source[1],
              
newBitmask bitmask srcBitmask;

          var 
arityFlags ARY_FLAG REARG_FLAG,
              
bindFlags BIND_FLAG BIND_KEY_FLAG,
              
comboFlags arityFlags bindFlags CURRY_BOUND_FLAG CURRY_RIGHT_FLAG;

          var 
isAry bitmask ARY_FLAG && !(srcBitmask ARY_FLAG),
              
isRearg bitmask REARG_FLAG && !(srcBitmask REARG_FLAG),
              
argPos = (isRearg data source)[7],
              
ary = (isAry data source)[8];

          var 
isCommon = !(bitmask >= REARG_FLAG && srcBitmask bindFlags) &&
            !(
bitmask bindFlags && srcBitmask >= REARG_FLAG);

          var 
isCombo = (newBitmask >= arityFlags && newBitmask <= comboFlags) &&
            (
bitmask REARG_FLAG || ((isRearg || isAry) && argPos.length <= ary));

          
// Exit early if metadata can't be merged.
          
if (!(isCommon || isCombo)) {
            return 
data;
          }
          
// Use source `thisArg` if available.
          
if (srcBitmask BIND_FLAG) {
            
data[2] = source[2];
            
// Set when currying a bound function.
            
newBitmask |= (bitmask BIND_FLAG) ? CURRY_BOUND_FLAG;
          }
          
// Compose partial arguments.
          
var value source[3];
          if (
value) {
            var 
partials data[3];
            
data[3] = partials composeArgs(partialsvaluesource[4]) : arrayCopy(value);
            
data[4] = partials replaceHolders(data[3], PLACEHOLDER) : arrayCopy(source[4]);
          }
          
// Compose partial right arguments.
          
value source[5];
          if (
value) {
            
partials data[5];
            
data[5] = partials composeArgsRight(partialsvaluesource[6]) : arrayCopy(value);
            
data[6] = partials replaceHolders(data[5], PLACEHOLDER) : arrayCopy(source[6]);
          }
          
// Use source `argPos` if available.
          
value source[7];
          if (
value) {
            
data[7] = arrayCopy(value);
          }
          
// Use source `ary` if it's smaller.
          
if (srcBitmask ARY_FLAG) {
            
data[8] = data[8] == null source[8] : nativeMin(data[8], source[8]);
          }
          
// Use source `arity` if one is not provided.
          
if (data[9] == null) {
            
data[9] = source[9];
          }
          
// Use source `func` and merge bitmasks.
          
data[0] = source[0];
          
data[1] = newBitmask;

          return 
data;
        }

        
/**
         * A specialized version of `_.pick` that picks `object` properties specified
         * by the `props` array.
         *
         * @private
         * @param {Object} object The source object.
         * @param {string[]} props The property names to pick.
         * @returns {Object} Returns the new object.
         */
        
function pickByArray(objectprops) {
          
object toObject(object);

          var 
index = -1,
              
length props.length,
              
result = {};

          while (++
index length) {
            var 
key props[index];
            if (
key in object) {
              
result[key] = object[key];
            }
          }
          return 
result;
        }

        
/**
         * A specialized version of `_.pick` that picks `object` properties `predicate`
         * returns truthy for.
         *
         * @private
         * @param {Object} object The source object.
         * @param {Function} predicate The function invoked per iteration.
         * @returns {Object} Returns the new object.
         */
        
function pickByCallback(objectpredicate) {
          var 
result = {};
          
baseForIn(object, function(valuekeyobject) {
            if (
predicate(valuekeyobject)) {
              
result[key] = value;
            }
          });
          return 
result;
        }

        
/**
         * Reorder `array` according to the specified indexes where the element at
         * the first index is assigned as the first element, the element at
         * the second index is assigned as the second element, and so on.
         *
         * @private
         * @param {Array} array The array to reorder.
         * @param {Array} indexes The arranged array indexes.
         * @returns {Array} Returns `array`.
         */
        
function reorder(array, indexes) {
          var 
arrLength = array.length,
              
length nativeMin(indexes.lengtharrLength),
              
oldArray arrayCopy(array);

          while (
length--) {
            var 
index indexes[length];
            array[
length] = isIndex(indexarrLength) ? oldArray[index] : undefined;
          }
          return array;
        }

        
/**
         * Sets metadata for `func`.
         *
         * **Note:** If this function becomes hot, i.e. is invoked a lot in a short
         * period of time, it will trip its breaker and transition to an identity function
         * to avoid garbage collection pauses in V8. See [V8 issue 2070](https://code.google.com/p/v8/issues/detail?id=2070)
         * for more details.
         *
         * @private
         * @param {Function} func The function to associate metadata with.
         * @param {*} data The metadata.
         * @returns {Function} Returns `func`.
         */
        
var setData = (function() {
          var 
count 0,
              
lastCalled 0;

          return function(
keyvalue) {
            var 
stamp now(),
                
remaining HOT_SPAN - (stamp lastCalled);

            
lastCalled stamp;
            if (
remaining 0) {
              if (++
count >= HOT_COUNT) {
                return 
key;
              }
            } else {
              
count 0;
            }
            return 
baseSetData(keyvalue);
          };
        }());

        
/**
         * A fallback implementation of `_.isPlainObject` which checks if `value`
         * is an object created by the `Object` constructor or has a `[[Prototype]]`
         * of `null`.
         *
         * @private
         * @param {*} value The value to check.
         * @returns {boolean} Returns `true` if `value` is a plain object, else `false`.
         */
        
function shimIsPlainObject(value) {
          var 
Ctor,
              
support lodash.support;

          
// Exit early for non `Object` objects.
          
if (!(isObjectLike(value) && objToString.call(value) == objectTag) ||
              (!
hasOwnProperty.call(value'constructor') &&
                (
Ctor value.constructortypeof Ctor == 'function' && !(Ctor instanceof Ctor)))) {
            return 
false;
          }
          
// IE < 9 iterates inherited properties before own properties. If the first
          // iterated property is an object's own property then there are no inherited
          // enumerable properties.
          
var result;
          
// In most environments an object's own properties are iterated before
          // its inherited properties. If the last iterated property is an object's
          // own property then there are no inherited enumerable properties.
          
baseForIn(value, function(subValuekey) {
            
result key;
          });
          return 
typeof result == 'undefined' || hasOwnProperty.call(valueresult);
        }

        
/**
         * A fallback implementation of `Object.keys` which creates an array of the
         * own enumerable property names of `object`.
         *
         * @private
         * @param {Object} object The object to inspect.
         * @returns {Array} Returns the array of property names.
         */
        
function shimKeys(object) {
          var 
props keysIn(object),
              
propsLength props.length,
              
length propsLength && object.length,
              
support lodash.support;

          var 
allowIndexes length && isLength(length) &&
            (
isArray(object) || (support.nonEnumArgs && isArguments(object)));

          var 
index = -1,
              
result = [];

          while (++
index propsLength) {
            var 
key props[index];
            if ((
allowIndexes && isIndex(keylength)) || hasOwnProperty.call(objectkey)) {
              
result.push(key);
            }
          }
          return 
result;
        }

        
/**
         * Converts `value` to an array-like object if it is not one.
         *
         * @private
         * @param {*} value The value to process.
         * @returns {Array|Object} Returns the array-like object.
         */
        
function toIterable(value) {
          if (
value == null) {
            return [];
          }
          if (!
isLength(value.length)) {
            return 
values(value);
          }
          return 
isObject(value) ? value Object(value);
        }

        
/**
         * Converts `value` to an object if it is not one.
         *
         * @private
         * @param {*} value The value to process.
         * @returns {Object} Returns the object.
         */
        
function toObject(value) {
          return 
isObject(value) ? value Object(value);
        }

        
/*------------------------------------------------------------------------*/

        /**
         * Creates an array of elements split into groups the length of `size`.
         * If `collection` can't be split evenly, the final chunk will be the remaining
         * elements.
         *
         * @static
         * @memberOf _
         * @category Array
         * @param {Array} array The array to process.
         * @param {numer} [size=1] The length of each chunk.
         * @param- {Object} [guard] Enables use as a callback for functions like `_.map`.
         * @returns {Array} Returns the new array containing chunks.
         * @example
         *
         * _.chunk(['a', 'b', 'c', 'd'], 2);
         * // => [['a', 'b'], ['c', 'd']]
         *
         * _.chunk(['a', 'b', 'c', 'd'], 3);
         * // => [['a', 'b', 'c'], ['d']]
         */
        
function chunk(array, sizeguard) {
          if (
guard isIterateeCall(array, sizeguard) : size == null) {
            
size 1;
          } else {
            
size nativeMax(+size || 11);
          }
          var 
index 0,
              
length = array ? array.length 0,
              
resIndex = -1,
              
result = Array(ceil(length size));

          while (
index length) {
            
result[++resIndex] = baseSlice(array, index, (index += size));
          }
          return 
result;
        }

        
/**
         * Creates an array with all falsey values removed. The values `false`, `null`,
         * `0`, `""`, `undefined`, and `NaN` are falsey.
         *
         * @static
         * @memberOf _
         * @category Array
         * @param {Array} array The array to compact.
         * @returns {Array} Returns the new array of filtered values.
         * @example
         *
         * _.compact([0, 1, false, 2, '', 3]);
         * // => [1, 2, 3]
         */
        
function compact(array) {
          var 
index = -1,
              
length = array ? array.length 0,
              
resIndex = -1,
              
result = [];

          while (++
index length) {
            var 
value = array[index];
            if (
value) {
              
result[++resIndex] = value;
            }
          }
          return 
result;
        }

        
/**
         * Creates an array excluding all values of the provided arrays using
         * `SameValueZero` for equality comparisons.
         *
         * **Note:** `SameValueZero` comparisons are like strict equality comparisons,
         * e.g. `===`, except that `NaN` matches `NaN`. See the
         * [ES spec](https://people.mozilla.org/~jorendorff/es6-draft.html#sec-samevaluezero)
         * for more details.
         *
         * @static
         * @memberOf _
         * @category Array
         * @param {Array} array The array to inspect.
         * @param {...Array} [values] The arrays of values to exclude.
         * @returns {Array} Returns the new array of filtered values.
         * @example
         *
         * _.difference([1, 2, 3], [5, 2, 10]);
         * // => [1, 3]
         */
        
function difference() {
          var 
index = -1,
              
length arguments.length;

          while (++
index length) {
            var 
value arguments[index];
            if (
isArray(value) || isArguments(value)) {
              break;
            }
          }
          return 
baseDifference(valuebaseFlatten(argumentsfalsetrue, ++index));
        }

        
/**
         * Creates a slice of `array` with `n` elements dropped from the beginning.
         *
         * @static
         * @memberOf _
         * @type Function
         * @category Array
         * @param {Array} array The array to query.
         * @param {number} [n=1] The number of elements to drop.
         * @param- {Object} [guard] Enables use as a callback for functions like `_.map`.
         * @returns {Array} Returns the slice of `array`.
         * @example
         *
         * _.drop([1, 2, 3]);
         * // => [2, 3]
         *
         * _.drop([1, 2, 3], 2);
         * // => [3]
         *
         * _.drop([1, 2, 3], 5);
         * // => []
         *
         * _.drop([1, 2, 3], 0);
         * // => [1, 2, 3]
         */
        
function drop(array, nguard) {
          var 
length = array ? array.length 0;
          if (!
length) {
            return [];
          }
          if (
guard isIterateeCall(array, nguard) : == null) {
            
1;
          }
          return 
baseSlice(array, n);
        }

        
/**
         * Creates a slice of `array` with `n` elements dropped from the end.
         *
         * @static
         * @memberOf _
         * @type Function
         * @category Array
         * @param {Array} array The array to query.
         * @param {number} [n=1] The number of elements to drop.
         * @param- {Object} [guard] Enables use as a callback for functions like `_.map`.
         * @returns {Array} Returns the slice of `array`.
         * @example
         *
         * _.dropRight([1, 2, 3]);
         * // => [1, 2]
         *
         * _.dropRight([1, 2, 3], 2);
         * // => [1]
         *
         * _.dropRight([1, 2, 3], 5);
         * // => []
         *
         * _.dropRight([1, 2, 3], 0);
         * // => [1, 2, 3]
         */
        
function dropRight(array, nguard) {
          var 
length = array ? array.length 0;
          if (!
length) {
            return [];
          }
          if (
guard isIterateeCall(array, nguard) : == null) {
            
1;
          }
          
length - (+|| 0);
          return 
baseSlice(array, 0n);
        }

        
/**
         * Creates a slice of `array` excluding elements dropped from the end.
         * Elements are dropped until `predicate` returns falsey. The predicate is
         * bound to `thisArg` and invoked with three arguments; (value, index, array).
         *
         * If a property name is provided for `predicate` the created "_.property"
         * style callback returns the property value of the given element.
         *
         * If an object is provided for `predicate` the created "_.matches" style
         * callback returns `true` for elements that have the properties of the given
         * object, else `false`.
         *
         * @static
         * @memberOf _
         * @type Function
         * @category Array
         * @param {Array} array The array to query.
         * @param {Function|Object|string} [predicate=_.identity] The function invoked
         *  per element.
         * @param {*} [thisArg] The `this` binding of `predicate`.
         * @returns {Array} Returns the slice of `array`.
         * @example
         *
         * _.dropRightWhile([1, 2, 3], function(n) { return n > 1; });
         * // => [1]
         *
         * var users = [
         *   { 'user': 'barney',  'status': 'busy', 'active': false },
         *   { 'user': 'fred',    'status': 'busy', 'active': true },
         *   { 'user': 'pebbles', 'status': 'away', 'active': true }
         * ];
         *
         * // using the "_.property" callback shorthand
         * _.pluck(_.dropRightWhile(users, 'active'), 'user');
         * // => ['barney']
         *
         * // using the "_.matches" callback shorthand
         * _.pluck(_.dropRightWhile(users, { 'status': 'away' }), 'user');
         * // => ['barney', 'fred']
         */
        
function dropRightWhile(array, predicatethisArg) {
          var 
length = array ? array.length 0;
          if (!
length) {
            return [];
          }
          
predicate getCallback(predicatethisArg3);
          while (
length-- && predicate(array[length], length, array)) {}
          return 
baseSlice(array, 0length 1);
        }

        
/**
         * Creates a slice of `array` excluding elements dropped from the beginning.
         * Elements are dropped until `predicate` returns falsey. The predicate is
         * bound to `thisArg` and invoked with three arguments; (value, index, array).
         *
         * If a property name is provided for `predicate` the created "_.property"
         * style callback returns the property value of the given element.
         *
         * If an object is provided for `predicate` the created "_.matches" style
         * callback returns `true` for elements that have the properties of the given
         * object, else `false`.
         *
         * @static
         * @memberOf _
         * @type Function
         * @category Array
         * @param {Array} array The array to query.
         * @param {Function|Object|string} [predicate=_.identity] The function invoked
         *  per element.
         * @param {*} [thisArg] The `this` binding of `predicate`.
         * @returns {Array} Returns the slice of `array`.
         * @example
         *
         * _.dropWhile([1, 2, 3], function(n) { return n < 3; });
         * // => [3]
         *
         * var users = [
         *   { 'user': 'barney',  'status': 'busy', 'active': true },
         *   { 'user': 'fred',    'status': 'busy', 'active': false },
         *   { 'user': 'pebbles', 'status': 'away', 'active': true }
         * ];
         *
         * // using the "_.property" callback shorthand
         * _.pluck(_.dropWhile(users, 'active'), 'user');
         * // => ['fred', 'pebbles']
         *
         * // using the "_.matches" callback shorthand
         * _.pluck(_.dropWhile(users, { 'status': 'busy' }), 'user');
         * // => ['pebbles']
         */
        
function dropWhile(array, predicatethisArg) {
          var 
length = array ? array.length 0;
          if (!
length) {
            return [];
          }
          var 
index = -1;
          
predicate getCallback(predicatethisArg3);
          while (++
index length && predicate(array[index], index, array)) {}
          return 
baseSlice(array, index);
        }

        
/**
         * This method is like `_.find` except that it returns the index of the first
         * element `predicate` returns truthy for, instead of the element itself.
         *
         * If a property name is provided for `predicate` the created "_.property"
         * style callback returns the property value of the given element.
         *
         * If an object is provided for `predicate` the created "_.matches" style
         * callback returns `true` for elements that have the properties of the given
         * object, else `false`.
         *
         * @static
         * @memberOf _
         * @category Array
         * @param {Array} array The array to search.
         * @param {Function|Object|string} [predicate=_.identity] The function invoked
         *  per iteration. If a property name or object is provided it is used to
         *  create a "_.property" or "_.matches" style callback respectively.
         * @param {*} [thisArg] The `this` binding of `predicate`.
         * @returns {number} Returns the index of the found element, else `-1`.
         * @example
         *
         * var users = [
         *   { 'user': 'barney',  'age': 36, 'active': false },
         *   { 'user': 'fred',    'age': 40, 'active': true },
         *   { 'user': 'pebbles', 'age': 1,  'active': false }
         * ];
         *
         * _.findIndex(users, function(chr) { return chr.age < 40; });
         * // => 0
         *
         * // using the "_.matches" callback shorthand
         * _.findIndex(users, { 'age': 1 });
         * // => 2
         *
         * // using the "_.property" callback shorthand
         * _.findIndex(users, 'active');
         * // => 1
         */
        
function findIndex(array, predicatethisArg) {
          var 
index = -1,
              
length = array ? array.length 0;

          
predicate getCallback(predicatethisArg3);
          while (++
index length) {
            if (
predicate(array[index], index, array)) {
              return 
index;
            }
          }
          return -
1;
        }

        
/**
         * This method is like `_.findIndex` except that it iterates over elements
         * of `collection` from right to left.
         *
         * If a property name is provided for `predicate` the created "_.property"
         * style callback returns the property value of the given element.
         *
         * If an object is provided for `predicate` the created "_.matches" style
         * callback returns `true` for elements that have the properties of the given
         * object, else `false`.
         *
         * @static
         * @memberOf _
         * @category Array
         * @param {Array} array The array to search.
         * @param {Function|Object|string} [predicate=_.identity] The function invoked
         *  per iteration. If a property name or object is provided it is used to
         *  create a "_.property" or "_.matches" style callback respectively.
         * @param {*} [thisArg] The `this` binding of `predicate`.
         * @returns {number} Returns the index of the found element, else `-1`.
         * @example
         *
         * var users = [
         *   { 'user': 'barney',  'age': 36, 'active': true },
         *   { 'user': 'fred',    'age': 40, 'active': false },
         *   { 'user': 'pebbles', 'age': 1,  'active': false }
         * ];
         *
         * _.findLastIndex(users, function(chr) { return chr.age < 40; });
         * // => 2
         *
         * // using the "_.matches" callback shorthand
         * _.findLastIndex(users, { 'age': 40 });
         * // => 1
         *
         * // using the "_.property" callback shorthand
         * _.findLastIndex(users, 'active');
         * // => 0
         */
        
function findLastIndex(array, predicatethisArg) {
          var 
length = array ? array.length 0;
          
predicate getCallback(predicatethisArg3);
          while (
length--) {
            if (
predicate(array[length], length, array)) {
              return 
length;
            }
          }
          return -
1;
        }

        
/**
         * Gets the first element of `array`.
         *
         * @static
         * @memberOf _
         * @alias head
         * @category Array
         * @param {Array} array The array to query.
         * @returns {*} Returns the first element of `array`.
         * @example
         *
         * _.first([1, 2, 3]);
         * // => 1
         *
         * _.first([]);
         * // => undefined
         */
        
function first(array) {
          return array ? array[
0] : undefined;
        }

        
/**
         * Flattens a nested array. If `isDeep` is `true` the array is recursively
         * flattened, otherwise it is only flattened a single level.
         *
         * @static
         * @memberOf _
         * @category Array
         * @param {Array} array The array to flatten.
         * @param {boolean} [isDeep] Specify a deep flatten.
         * @param- {Object} [guard] Enables use as a callback for functions like `_.map`.
         * @returns {Array} Returns the new flattened array.
         * @example
         *
         * _.flatten([1, [2], [3, [[4]]]]);
         * // => [1, 2, 3, [[4]]];
         *
         * // using `isDeep`
         * _.flatten([1, [2], [3, [[4]]]], true);
         * // => [1, 2, 3, 4];
         */
        
function flatten(array, isDeepguard) {
          var 
length = array ? array.length 0;
          if (
guard && isIterateeCall(array, isDeepguard)) {
            
isDeep false;
          }
          return 
length baseFlatten(array, isDeep) : [];
        }

        
/**
         * Recursively flattens a nested array.
         *
         * @static
         * @memberOf _
         * @category Array
         * @param {Array} array The array to recursively flatten.
         * @returns {Array} Returns the new flattened array.
         * @example
         *
         * _.flattenDeep([1, [2], [3, [[4]]]]);
         * // => [1, 2, 3, 4];
         */
        
function flattenDeep(array) {
          var 
length = array ? array.length 0;
          return 
length baseFlatten(array, true) : [];
        }

        
/**
         * Gets the index at which the first occurrence of `value` is found in `array`
         * using `SameValueZero` for equality comparisons. If `fromIndex` is negative,
         * it is used as the offset from the end of `array`. If `array` is sorted
         * providing `true` for `fromIndex` performs a faster binary search.
         *
         * **Note:** `SameValueZero` comparisons are like strict equality comparisons,
         * e.g. `===`, except that `NaN` matches `NaN`. See the
         * [ES spec](https://people.mozilla.org/~jorendorff/es6-draft.html#sec-samevaluezero)
         * for more details.
         *
         * @static
         * @memberOf _
         * @category Array
         * @param {Array} array The array to search.
         * @param {*} value The value to search for.
         * @param {boolean|number} [fromIndex=0] The index to search from or `true`
         *  to perform a binary search on a sorted array.
         * @returns {number} Returns the index of the matched value, else `-1`.
         * @example
         *
         * _.indexOf([1, 2, 3, 1, 2, 3], 2);
         * // => 1
         *
         * // using `fromIndex`
         * _.indexOf([1, 2, 3, 1, 2, 3], 2, 3);
         * // => 4
         *
         * // performing a binary search
         * _.indexOf([4, 4, 5, 5, 6, 6], 5, true);
         * // => 2
         */
        
function indexOf(array, valuefromIndex) {
          var 
length = array ? array.length 0;
          if (!
length) {
            return -
1;
          }
          if (
typeof fromIndex == 'number') {
            
fromIndex fromIndex nativeMax(length fromIndex0) : (fromIndex || 0);
          } else if (
fromIndex) {
            var 
index binaryIndex(array, value),
                
other = array[index];

            return (
value === value value === other other !== other) ? index : -1;
          }
          return 
baseIndexOf(array, valuefromIndex);
        }

        
/**
         * Gets all but the last element of `array`.
         *
         * @static
         * @memberOf _
         * @category Array
         * @param {Array} array The array to query.
         * @returns {Array} Returns the slice of `array`.
         * @example
         *
         * _.initial([1, 2, 3]);
         * // => [1, 2]
         */
        
function initial(array) {
          return 
dropRight(array, 1);
        }

        
/**
         * Creates an array of unique values in all provided arrays using `SameValueZero`
         * for equality comparisons.
         *
         * **Note:** `SameValueZero` comparisons are like strict equality comparisons,
         * e.g. `===`, except that `NaN` matches `NaN`. See the
         * [ES spec](https://people.mozilla.org/~jorendorff/es6-draft.html#sec-samevaluezero)
         * for more details.
         *
         * @static
         * @memberOf _
         * @category Array
         * @param {...Array} [arrays] The arrays to inspect.
         * @returns {Array} Returns the new array of shared values.
         * @example
         *
         * _.intersection([1, 2, 3], [5, 2, 1, 4], [2, 1]);
         * // => [1, 2]
         */
        
function intersection() {
          var 
args = [],
              
argsIndex = -1,
              
argsLength arguments.length,
              
caches = [],
              
indexOf getIndexOf(),
              
isCommon indexOf == baseIndexOf;

          while (++
argsIndex argsLength) {
            var 
value arguments[argsIndex];
            if (
isArray(value) || isArguments(value)) {
              
args.push(value);
              
caches.push(isCommon && value.length >= 120 && createCache(argsIndex && value));
            }
          }
          
argsLength args.length;
          var array = 
args[0],
              
index = -1,
              
length = array ? array.length 0,
              
result = [],
              
seen caches[0];

          
outer:
          while (++
index length) {
            
value = array[index];
            if ((
seen cacheIndexOf(seenvalue) : indexOf(resultvalue)) < 0) {
              
argsIndex argsLength;
              while (--
argsIndex) {
                var 
cache caches[argsIndex];
                if ((
cache cacheIndexOf(cachevalue) : indexOf(args[argsIndex], value)) < 0) {
                  continue 
outer;
                }
              }
              if (
seen) {
                
seen.push(value);
              }
              
result.push(value);
            }
          }
          return 
result;
        }

        
/**
         * Gets the last element of `array`.
         *
         * @static
         * @memberOf _
         * @category Array
         * @param {Array} array The array to query.
         * @returns {*} Returns the last element of `array`.
         * @example
         *
         * _.last([1, 2, 3]);
         * // => 3
         */
        
function last(array) {
          var 
length = array ? array.length 0;
          return 
length ? array[length 1] : undefined;
        }

        
/**
         * This method is like `_.indexOf` except that it iterates over elements of
         * `array` from right to left.
         *
         * @static
         * @memberOf _
         * @category Array
         * @param {Array} array The array to search.
         * @param {*} value The value to search for.
         * @param {boolean|number} [fromIndex=array.length-1] The index to search from
         *  or `true` to perform a binary search on a sorted array.
         * @returns {number} Returns the index of the matched value, else `-1`.
         * @example
         *
         * _.lastIndexOf([1, 2, 3, 1, 2, 3], 2);
         * // => 4
         *
         * // using `fromIndex`
         * _.lastIndexOf([1, 2, 3, 1, 2, 3], 2, 3);
         * // => 1
         *
         * // performing a binary search
         * _.lastIndexOf([4, 4, 5, 5, 6, 6], 5, true);
         * // => 3
         */
        
function lastIndexOf(array, valuefromIndex) {
          var 
length = array ? array.length 0;
          if (!
length) {
            return -
1;
          }
          var 
index length;
          if (
typeof fromIndex == 'number') {
            
index = (fromIndex nativeMax(length fromIndex0) : nativeMin(fromIndex || 0length 1)) + 1;
          } else if (
fromIndex) {
            
index binaryIndex(array, valuetrue) - 1;
            var 
other = array[index];
            return (
value === value value === other other !== other) ? index : -1;
          }
          if (
value !== value) {
            return 
indexOfNaN(array, indextrue);
          }
          while (
index--) {
            if (array[
index] === value) {
              return 
index;
            }
          }
          return -
1;
        }

        
/**
         * Removes all provided values from `array` using `SameValueZero` for equality
         * comparisons.
         *
         * **Notes:**
         *  - Unlike `_.without`, this method mutates `array`.
         *  - `SameValueZero` comparisons are like strict equality comparisons, e.g. `===`,
         *    except that `NaN` matches `NaN`. See the [ES spec](https://people.mozilla.org/~jorendorff/es6-draft.html#sec-samevaluezero)
         *    for more details.
         *
         * @static
         * @memberOf _
         * @category Array
         * @param {Array} array The array to modify.
         * @param {...*} [values] The values to remove.
         * @returns {Array} Returns `array`.
         * @example
         *
         * var array = [1, 2, 3, 1, 2, 3];
         * _.pull(array, 2, 3);
         * console.log(array);
         * // => [1, 1]
         */
        
function pull() {
          var array = 
arguments[0];
          if (!(array && array.
length)) {
            return array;
          }
          var 
index 0,
              
indexOf getIndexOf(),
              
length arguments.length;

          while (++
index length) {
            var 
fromIndex 0,
                
value arguments[index];

            while ((
fromIndex indexOf(array, valuefromIndex)) > -1) {
              
splice.call(array, fromIndex1);
            }
          }
          return array;
        }

        
/**
         * Removes elements from `array` corresponding to the given indexes and returns
         * an array of the removed elements. Indexes may be specified as an array of
         * indexes or as individual arguments.
         *
         * **Note:** Unlike `_.at`, this method mutates `array`.
         *
         * @static
         * @memberOf _
         * @category Array
         * @param {Array} array The array to modify.
         * @param {...(number|number[])} [indexes] The indexes of elements to remove,
         *  specified as individual indexes or arrays of indexes.
         * @returns {Array} Returns the new array of removed elements.
         * @example
         *
         * var array = [5, 10, 15, 20];
         * var evens = _.pullAt(array, [1, 3]);
         *
         * console.log(array);
         * // => [5, 15]
         *
         * console.log(evens);
         * // => [10, 20]
         */
        
function pullAt(array) {
          return 
basePullAt(array || [], baseFlatten(argumentsfalsefalse1));
        }

        
/**
         * Removes all elements from `array` that `predicate` returns truthy for
         * and returns an array of the removed elements. The predicate is bound to
         * `thisArg` and invoked with three arguments; (value, index, array).
         *
         * If a property name is provided for `predicate` the created "_.property"
         * style callback returns the property value of the given element.
         *
         * If an object is provided for `predicate` the created "_.matches" style
         * callback returns `true` for elements that have the properties of the given
         * object, else `false`.
         *
         * **Note:** Unlike `_.filter`, this method mutates `array`.
         *
         * @static
         * @memberOf _
         * @category Array
         * @param {Array} array The array to modify.
         * @param {Function|Object|string} [predicate=_.identity] The function invoked
         *  per iteration. If a property name or object is provided it is used to
         *  create a "_.property" or "_.matches" style callback respectively.
         * @param {*} [thisArg] The `this` binding of `predicate`.
         * @returns {Array} Returns the new array of removed elements.
         * @example
         *
         * var array = [1, 2, 3, 4];
         * var evens = _.remove(array, function(n) { return n % 2 == 0; });
         *
         * console.log(array);
         * // => [1, 3]
         *
         * console.log(evens);
         * // => [2, 4]
         */
        
function remove(array, predicatethisArg) {
          var 
index = -1,
              
length = array ? array.length 0,
              
result = [];

          
predicate getCallback(predicatethisArg3);
          while (++
index length) {
            var 
value = array[index];
            if (
predicate(valueindex, array)) {
              
result.push(value);
              
splice.call(array, index--, 1);
              
length--;
            }
          }
          return 
result;
        }

        
/**
         * Gets all but the first element of `array`.
         *
         * @static
         * @memberOf _
         * @alias tail
         * @category Array
         * @param {Array} array The array to query.
         * @returns {Array} Returns the slice of `array`.
         * @example
         *
         * _.rest([1, 2, 3]);
         * // => [2, 3]
         */
        
function rest(array) {
          return 
drop(array, 1);
        }

        
/**
         * Creates a slice of `array` from `start` up to, but not including, `end`.
         *
         * **Note:** This function is used instead of `Array#slice` to support node
         * lists in IE < 9 and to ensure dense arrays are returned.
         *
         * @static
         * @memberOf _
         * @category Array
         * @param {Array} array The array to slice.
         * @param {number} [start=0] The start position.
         * @param {number} [end=array.length] The end position.
         * @returns {Array} Returns the slice of `array`.
         */
        
function slice(array, startend) {
          var 
length = array ? array.length 0;
          if (!
length) {
            return [];
          }
          if (
end && typeof end != 'number' && isIterateeCall(array, startend)) {
            
start 0;
            
end length;
          }
          return 
baseSlice(array, startend);
        }

        
/**
         * Uses a binary search to determine the lowest index at which `value` should
         * be inserted into `array` in order to maintain its sort order. If an iteratee
         * function is provided it is invoked for `value` and each element of `array`
         * to compute their sort ranking. The iteratee is bound to `thisArg` and
         * invoked with one argument; (value).
         *
         * If a property name is provided for `predicate` the created "_.property"
         * style callback returns the property value of the given element.
         *
         * If an object is provided for `predicate` the created "_.matches" style
         * callback returns `true` for elements that have the properties of the given
         * object, else `false`.
         *
         * @static
         * @memberOf _
         * @category Array
         * @param {Array} array The sorted array to inspect.
         * @param {*} value The value to evaluate.
         * @param {Function|Object|string} [iteratee=_.identity] The function invoked
         *  per iteration. If a property name or object is provided it is used to
         *  create a "_.property" or "_.matches" style callback respectively.
         * @param {*} [thisArg] The `this` binding of `iteratee`.
         * @returns {number} Returns the index at which `value` should be inserted
         *  into `array`.
         * @example
         *
         * _.sortedIndex([30, 50], 40);
         * // => 1
         *
         * _.sortedIndex([4, 4, 5, 5, 6, 6], 5);
         * // => 2
         *
         * var dict = { 'data': { 'thirty': 30, 'forty': 40, 'fifty': 50 } };
         *
         * // using an iteratee function
         * _.sortedIndex(['thirty', 'fifty'], 'forty', function(word) {
         *   return this.data[word];
         * }, dict);
         * // => 1
         *
         * // using the "_.property" callback shorthand
         * _.sortedIndex([{ 'x': 30 }, { 'x': 50 }], { 'x': 40 }, 'x');
         * // => 1
         */
        
function sortedIndex(array, valueiterateethisArg) {
          var 
func getCallback(iteratee);
          return (
func === baseCallback && iteratee == null)
            ? 
binaryIndex(array, value)
            : 
binaryIndexBy(array, valuefunc(iterateethisArg1));
        }

        
/**
         * This method is like `_.sortedIndex` except that it returns the highest
         * index at which `value` should be inserted into `array` in order to
         * maintain its sort order.
         *
         * @static
         * @memberOf _
         * @category Array
         * @param {Array} array The sorted array to inspect.
         * @param {*} value The value to evaluate.
         * @param {Function|Object|string} [iteratee=_.identity] The function invoked
         *  per iteration. If a property name or object is provided it is used to
         *  create a "_.property" or "_.matches" style callback respectively.
         * @param {*} [thisArg] The `this` binding of `iteratee`.
         * @returns {number} Returns the index at which `value` should be inserted
         *  into `array`.
         * @example
         *
         * _.sortedLastIndex([4, 4, 5, 5, 6, 6], 5);
         * // => 4
         */
        
function sortedLastIndex(array, valueiterateethisArg) {
          var 
func getCallback(iteratee);
          return (
func === baseCallback && iteratee == null)
            ? 
binaryIndex(array, valuetrue)
            : 
binaryIndexBy(array, valuefunc(iterateethisArg1), true);
        }

        
/**
         * Creates a slice of `array` with `n` elements taken from the beginning.
         *
         * @static
         * @memberOf _
         * @type Function
         * @category Array
         * @param {Array} array The array to query.
         * @param {number} [n=1] The number of elements to take.
         * @param- {Object} [guard] Enables use as a callback for functions like `_.map`.
         * @returns {Array} Returns the slice of `array`.
         * @example
         *
         * _.take([1, 2, 3]);
         * // => [1]
         *
         * _.take([1, 2, 3], 2);
         * // => [1, 2]
         *
         * _.take([1, 2, 3], 5);
         * // => [1, 2, 3]
         *
         * _.take([1, 2, 3], 0);
         * // => []
         */
        
function take(array, nguard) {
          var 
length = array ? array.length 0;
          if (!
length) {
            return [];
          }
          if (
guard isIterateeCall(array, nguard) : == null) {
            
1;
          }
          return 
baseSlice(array, 0n);
        }

        
/**
         * Creates a slice of `array` with `n` elements taken from the end.
         *
         * @static
         * @memberOf _
         * @type Function
         * @category Array
         * @param {Array} array The array to query.
         * @param {number} [n=1] The number of elements to take.
         * @param- {Object} [guard] Enables use as a callback for functions like `_.map`.
         * @returns {Array} Returns the slice of `array`.
         * @example
         *
         * _.takeRight([1, 2, 3]);
         * // => [3]
         *
         * _.takeRight([1, 2, 3], 2);
         * // => [2, 3]
         *
         * _.takeRight([1, 2, 3], 5);
         * // => [1, 2, 3]
         *
         * _.takeRight([1, 2, 3], 0);
         * // => []
         */
        
function takeRight(array, nguard) {
          var 
length = array ? array.length 0;
          if (!
length) {
            return [];
          }
          if (
guard isIterateeCall(array, nguard) : == null) {
            
1;
          }
          
length - (+|| 0);
          return 
baseSlice(array, n);
        }

        
/**
         * Creates a slice of `array` with elements taken from the end. Elements are
         * taken until `predicate` returns falsey. The predicate is bound to `thisArg`
         * and invoked with three arguments; (value, index, array).
         *
         * If a property name is provided for `predicate` the created "_.property"
         * style callback returns the property value of the given element.
         *
         * If an object is provided for `predicate` the created "_.matches" style
         * callback returns `true` for elements that have the properties of the given
         * object, else `false`.
         *
         * @static
         * @memberOf _
         * @type Function
         * @category Array
         * @param {Array} array The array to query.
         * @param {Function|Object|string} [predicate=_.identity] The function invoked
         *  per element.
         * @param {*} [thisArg] The `this` binding of `predicate`.
         * @returns {Array} Returns the slice of `array`.
         * @example
         *
         * _.takeRightWhile([1, 2, 3], function(n) { return n > 1; });
         * // => [2, 3]
         *
         * var users = [
         *   { 'user': 'barney',  'status': 'busy', 'active': false },
         *   { 'user': 'fred',    'status': 'busy', 'active': true },
         *   { 'user': 'pebbles', 'status': 'away', 'active': true }
         * ];
         *
         * // using the "_.property" callback shorthand
         * _.pluck(_.takeRightWhile(users, 'active'), 'user');
         * // => ['fred', 'pebbles']
         *
         * // using the "_.matches" callback shorthand
         * _.pluck(_.takeRightWhile(users, { 'status': 'away' }), 'user');
         * // => ['pebbles']
         */
        
function takeRightWhile(array, predicatethisArg) {
          var 
length = array ? array.length 0;
          if (!
length) {
            return [];
          }
          
predicate getCallback(predicatethisArg3);
          while (
length-- && predicate(array[length], length, array)) {}
          return 
baseSlice(array, length 1);
        }

        
/**
         * Creates a slice of `array` with elements taken from the beginning. Elements
         * are taken until `predicate` returns falsey. The predicate is bound to
         * `thisArg` and invoked with three arguments; (value, index, array).
         *
         * If a property name is provided for `predicate` the created "_.property"
         * style callback returns the property value of the given element.
         *
         * If an object is provided for `predicate` the created "_.matches" style
         * callback returns `true` for elements that have the properties of the given
         * object, else `false`.
         *
         * @static
         * @memberOf _
         * @type Function
         * @category Array
         * @param {Array} array The array to query.
         * @param {Function|Object|string} [predicate=_.identity] The function invoked
         *  per element.
         * @param {*} [thisArg] The `this` binding of `predicate`.
         * @returns {Array} Returns the slice of `array`.
         * @example
         *
         * _.takeWhile([1, 2, 3], function(n) { return n < 3; });
         * // => [1, 2]
         *
         * var users = [
         *   { 'user': 'barney',  'status': 'busy', 'active': true },
         *   { 'user': 'fred',    'status': 'busy', 'active': false },
         *   { 'user': 'pebbles', 'status': 'away', 'active': true }
         * ];
         *
         * // using the "_.property" callback shorthand
         * _.pluck(_.takeWhile(users, 'active'), 'user');
         * // => ['barney']
         *
         * // using the "_.matches" callback shorthand
         * _.pluck(_.takeWhile(users, { 'status': 'busy' }), 'user');
         * // => ['barney', 'fred']
         */
        
function takeWhile(array, predicatethisArg) {
          var 
length = array ? array.length 0;
          if (!
length) {
            return [];
          }
          var 
index = -1;
          
predicate getCallback(predicatethisArg3);
          while (++
index length && predicate(array[index], index, array)) {}
          return 
baseSlice(array, 0index);
        }

        
/**
         * Creates an array of unique values, in order, of the provided arrays using
         * `SameValueZero` for equality comparisons.
         *
         * **Note:** `SameValueZero` comparisons are like strict equality comparisons,
         * e.g. `===`, except that `NaN` matches `NaN`. See the
         * [ES spec](https://people.mozilla.org/~jorendorff/es6-draft.html#sec-samevaluezero)
         * for more details.
         *
         * @static
         * @memberOf _
         * @category Array
         * @param {...Array} [arrays] The arrays to inspect.
         * @returns {Array} Returns the new array of combined values.
         * @example
         *
         * _.union([1, 2, 3], [5, 2, 1, 4], [2, 1]);
         * // => [1, 2, 3, 5, 4]
         */
        
function union() {
          return 
baseUniq(baseFlatten(argumentsfalsetrue));
        }

        
/**
         * Creates a duplicate-value-free version of an array using `SameValueZero`
         * for equality comparisons. Providing `true` for `isSorted` performs a faster
         * search algorithm for sorted arrays. If an iteratee function is provided it
         * is invoked for each value in the array to generate the criterion by which
         * uniqueness is computed. The `iteratee` is bound to `thisArg` and invoked
         * with three arguments; (value, index, array).
         *
         * If a property name is provided for `predicate` the created "_.property"
         * style callback returns the property value of the given element.
         *
         * If an object is provided for `predicate` the created "_.matches" style
         * callback returns `true` for elements that have the properties of the given
         * object, else `false`.
         *
         * **Note:** `SameValueZero` comparisons are like strict equality comparisons,
         * e.g. `===`, except that `NaN` matches `NaN`. See the
         * [ES spec](https://people.mozilla.org/~jorendorff/es6-draft.html#sec-samevaluezero)
         * for more details.
         *
         * @static
         * @memberOf _
         * @alias unique
         * @category Array
         * @param {Array} array The array to inspect.
         * @param {boolean} [isSorted] Specify the array is sorted.
         * @param {Function|Object|string} [iteratee] The function invoked per iteration.
         *  If a property name or object is provided it is used to create a "_.property"
         *  or "_.matches" style callback respectively.
         * @param {*} [thisArg] The `this` binding of `iteratee`.
         * @returns {Array} Returns the new duplicate-value-free array.
         * @example
         *
         * _.uniq([1, 2, 1]);
         * // => [1, 2]
         *
         * // using `isSorted`
         * _.uniq([1, 1, 2], true);
         * // => [1, 2]
         *
         * // using an iteratee function
         * _.uniq([1, 2.5, 1.5, 2], function(n) { return this.floor(n); }, Math);
         * // => [1, 2.5]
         *
         * // using the "_.property" callback shorthand
         * _.uniq([{ 'x': 1 }, { 'x': 2 }, { 'x': 1 }], 'x');
         * // => [{ 'x': 1 }, { 'x': 2 }]
         */
        
function uniq(array, isSortediterateethisArg) {
          var 
length = array ? array.length 0;
          if (!
length) {
            return [];
          }
          
// Juggle arguments.
          
if (typeof isSorted != 'boolean' && isSorted != null) {
            
thisArg iteratee;
            
iteratee isIterateeCall(array, isSortedthisArg) ? null isSorted;
            
isSorted false;
          }
          var 
func getCallback();
          if (!(
func === baseCallback && iteratee == null)) {
            
iteratee func(iterateethisArg3);
          }
          return (
isSorted && getIndexOf() == baseIndexOf)
            ? 
sortedUniq(array, iteratee)
            : 
baseUniq(array, iteratee);
        }

        
/**
         * This method is like `_.zip` except that it accepts an array of grouped
         * elements and creates an array regrouping the elements to their pre-`_.zip`
         * configuration.
         *
         * @static
         * @memberOf _
         * @category Array
         * @param {Array} array The array of grouped elements to process.
         * @returns {Array} Returns the new array of regrouped elements.
         * @example
         *
         * var zipped = _.zip(['fred', 'barney'], [30, 40], [true, false]);
         * // => [['fred', 30, true], ['barney', 40, false]]
         *
         * _.unzip(zipped);
         * // => [['fred', 'barney'], [30, 40], [true, false]]
         */
        
function unzip(array) {
          var 
index = -1,
              
length = (array && array.length && arrayMax(arrayMap(array, getLength))) >>> 0,
              
result = Array(length);

          while (++
index length) {
            
result[index] = arrayMap(array, baseProperty(index));
          }
          return 
result;
        }

        
/**
         * Creates an array excluding all provided values using `SameValueZero` for
         * equality comparisons.
         *
         * **Note:** `SameValueZero` comparisons are like strict equality comparisons,
         * e.g. `===`, except that `NaN` matches `NaN`. See the
         * [ES spec](https://people.mozilla.org/~jorendorff/es6-draft.html#sec-samevaluezero)
         * for more details.
         *
         * @static
         * @memberOf _
         * @category Array
         * @param {Array} array The array to filter.
         * @param {...*} [values] The values to exclude.
         * @returns {Array} Returns the new array of filtered values.
         * @example
         *
         * _.without([1, 2, 1, 0, 3, 1, 4], 0, 1);
         * // => [2, 3, 4]
         */
        
function without(array) {
          return 
baseDifference(array, baseSlice(arguments1));
        }

        
/**
         * Creates an array that is the symmetric difference of the provided arrays.
         * See [Wikipedia](https://en.wikipedia.org/wiki/Symmetric_difference) for
         * more details.
         *
         * @static
         * @memberOf _
         * @category Array
         * @param {...Array} [arrays] The arrays to inspect.
         * @returns {Array} Returns the new array of values.
         * @example
         *
         * _.xor([1, 2, 3], [5, 2, 1, 4]);
         * // => [3, 5, 4]
         *
         * _.xor([1, 2, 5], [2, 3, 5], [3, 4, 5]);
         * // => [1, 4, 5]
         */
        
function xor() {
          var 
index = -1,
              
length arguments.length;

          while (++
index length) {
            var array = 
arguments[index];
            if (
isArray(array) || isArguments(array)) {
              var 
result result
                
baseDifference(result, array).concat(baseDifference(array, result))
                : array;
            }
          }
          return 
result baseUniq(result) : [];
        }

        
/**
         * Creates an array of grouped elements, the first of which contains the first
         * elements of the given arrays, the second of which contains the second elements
         * of the given arrays, and so on.
         *
         * @static
         * @memberOf _
         * @category Array
         * @param {...Array} [arrays] The arrays to process.
         * @returns {Array} Returns the new array of grouped elements.
         * @example
         *
         * _.zip(['fred', 'barney'], [30, 40], [true, false]);
         * // => [['fred', 30, true], ['barney', 40, false]]
         */
        
function zip() {
          var 
length arguments.length,
              array = Array(
length);

          while (
length--) {
            array[
length] = arguments[length];
          }
          return 
unzip(array);
        }

        
/**
         * Creates an object composed from arrays of property names and values. Provide
         * either a single two dimensional array, e.g. `[[key1, value1], [key2, value2]]`
         * or two arrays, one of property names and one of corresponding values.
         *
         * @static
         * @memberOf _
         * @alias object
         * @category Array
         * @param {Array} props The property names.
         * @param {Array} [values=[]] The property values.
         * @returns {Object} Returns the new object.
         * @example
         *
         * _.zipObject(['fred', 'barney'], [30, 40]);
         * // => { 'fred': 30, 'barney': 40 }
         */
        
function zipObject(propsvalues) {
          var 
index = -1,
              
length props props.length 0,
              
result = {};

          if (
length && !values && !isArray(props[0])) {
            
values = [];
          }
          while (++
index length) {
            var 
key props[index];
            if (
values) {
              
result[key] = values[index];
            } else if (
key) {
              
result[key[0]] = key[1];
            }
          }
          return 
result;
        }

        
/*------------------------------------------------------------------------*/

        /**
         * Creates a `lodash` object that wraps `value` with explicit method
         * chaining enabled.
         *
         * @static
         * @memberOf _
         * @category Chain
         * @param {*} value The value to wrap.
         * @returns {Object} Returns the new `lodash` object.
         * @example
         *
         * var users = [
         *   { 'user': 'barney',  'age': 36 },
         *   { 'user': 'fred',    'age': 40 },
         *   { 'user': 'pebbles', 'age': 1 }
         * ];
         *
         * var youngest = _.chain(users)
         *   .sortBy('age')
         *   .map(function(chr) { return chr.user + ' is ' + chr.age; })
         *   .first()
         *   .value();
         * // => 'pebbles is 1'
         */
        
function chain(value) {
          var 
result lodash(value);
          
result.__chain__ true;
          return 
result;
        }

        
/**
         * This method invokes `interceptor` and returns `value`. The interceptor is
         * bound to `thisArg` and invoked with one argument; (value). The purpose of
         * this method is to "tap into" a method chain in order to perform operations
         * on intermediate results within the chain.
         *
         * @static
         * @memberOf _
         * @category Chain
         * @param {*} value The value to provide to `interceptor`.
         * @param {Function} interceptor The function to invoke.
         * @param {*} [thisArg] The `this` binding of `interceptor`.
         * @returns {*} Returns `value`.
         * @example
         *
         * _([1, 2, 3])
         *  .tap(function(array) { array.pop(); })
         *  .reverse()
         *  .value();
         * // => [2, 1]
         */
        
function tap(valueinterceptorthisArg) {
          
interceptor.call(thisArgvalue);
          return 
value;
        }

        
/**
         * This method is like `_.tap` except that it returns the result of `interceptor`.
         *
         * @static
         * @memberOf _
         * @category Chain
         * @param {*} value The value to provide to `interceptor`.
         * @param {Function} interceptor The function to invoke.
         * @param {*} [thisArg] The `this` binding of `interceptor`.
         * @returns {*} Returns the result of `interceptor`.
         * @example
         *
         * _([1, 2, 3])
         *  .last()
         *  .thru(function(value) { return [value]; })
         *  .value();
         * // => [3]
         */
        
function thru(valueinterceptorthisArg) {
          return 
interceptor.call(thisArgvalue);
        }

        
/**
         * Enables explicit method chaining on the wrapper object.
         *
         * @name chain
         * @memberOf _
         * @category Chain
         * @returns {*} Returns the `lodash` object.
         * @example
         *
         * var users = [
         *   { 'user': 'barney', 'age': 36 },
         *   { 'user': 'fred',   'age': 40 }
         * ];
         *
         * // without explicit chaining
         * _(users).first();
         * // => { 'user': 'barney', 'age': 36 }
         *
         * // with explicit chaining
         * _(users).chain()
         *   .first()
         *   .pick('user')
         *   .value();
         * // => { 'user': 'barney' }
         */
        
function wrapperChain() {
          return 
chain(this);
        }

        
/**
         * Reverses the wrapped array so the first element becomes the last, the
         * second element becomes the second to last, and so on.
         *
         * **Note:** This method mutates the wrapped array.
         *
         * @name reverse
         * @memberOf _
         * @category Chain
         * @returns {Object} Returns the new reversed `lodash` object.
         * @example
         *
         * var array = [1, 2, 3];
         *
         * _(array).reverse().value()
         * // => [3, 2, 1]
         *
         * console.log(array);
         * // => [3, 2, 1]
         */
        
function wrapperReverse() {
          var 
value this.__wrapped__;
          if (
value instanceof LazyWrapper) {
            if (
this.__actions__.length) {
              
value = new LazyWrapper(this);
            }
            return new 
LodashWrapper(value.reverse());
          }
          return 
this.thru(function(value) {
            return 
value.reverse();
          });
        }

        
/**
         * Produces the result of coercing the unwrapped value to a string.
         *
         * @name toString
         * @memberOf _
         * @category Chain
         * @returns {string} Returns the coerced string value.
         * @example
         *
         * _([1, 2, 3]).toString();
         * // => '1,2,3'
         */
        
function wrapperToString() {
          return (
this.value() + '');
        }

        
/**
         * Executes the chained sequence to extract the unwrapped value.
         *
         * @name value
         * @memberOf _
         * @alias toJSON, valueOf
         * @category Chain
         * @returns {*} Returns the resolved unwrapped value.
         * @example
         *
         * _([1, 2, 3]).value();
         * // => [1, 2, 3]
         */
        
function wrapperValue() {
          return 
baseWrapperValue(this.__wrapped__this.__actions__);
        }

        
/*------------------------------------------------------------------------*/

        /**
         * Creates an array of elements corresponding to the given keys, or indexes,
         * of `collection`. Keys may be specified as individual arguments or as arrays
         * of keys.
         *
         * @static
         * @memberOf _
         * @category Collection
         * @param {Array|Object|string} collection The collection to iterate over.
         * @param {...(number|number[]|string|string[])} [props] The property names
         *  or indexes of elements to pick, specified individually or in arrays.
         * @returns {Array} Returns the new array of picked elements.
         * @example
         *
         * _.at(['a', 'b', 'c', 'd', 'e'], [0, 2, 4]);
         * // => ['a', 'c', 'e']
         *
         * _.at(['fred', 'barney', 'pebbles'], 0, 2);
         * // => ['fred', 'pebbles']
         */
        
function at(collection) {
          var 
length collection collection.length 0;
          if (
isLength(length)) {
            
collection toIterable(collection);
          }
          return 
baseAt(collectionbaseFlatten(argumentsfalsefalse1));
        }

        
/**
         * Checks if `value` is in `collection` using `SameValueZero` for equality
         * comparisons. If `fromIndex` is negative, it is used as the offset from
         * the end of `collection`.
         *
         * **Note:** `SameValueZero` comparisons are like strict equality comparisons,
         * e.g. `===`, except that `NaN` matches `NaN`. See the
         * [ES spec](https://people.mozilla.org/~jorendorff/es6-draft.html#sec-samevaluezero)
         * for more details.
         *
         * @static
         * @memberOf _
         * @alias contains, include
         * @category Collection
         * @param {Array|Object|string} collection The collection to search.
         * @param {*} target The value to search for.
         * @param {number} [fromIndex=0] The index to search from.
         * @returns {boolean} Returns `true` if a matching element is found, else `false`.
         * @example
         *
         * _.includes([1, 2, 3], 1);
         * // => true
         *
         * _.includes([1, 2, 3], 1, 2);
         * // => false
         *
         * _.includes({ 'user': 'fred', 'age': 40 }, 'fred');
         * // => true
         *
         * _.includes('pebbles', 'eb');
         * // => true
         */
        
function includes(collectiontargetfromIndex) {
          var 
length collection collection.length 0;
          if (!
isLength(length)) {
            
collection values(collection);
            
length collection.length;
          }
          if (!
length) {
            return 
false;
          }
          if (
typeof fromIndex == 'number') {
            
fromIndex fromIndex nativeMax(length fromIndex0) : (fromIndex || 0);
          } else {
            
fromIndex 0;
          }
          return (
typeof collection == 'string' || !isArray(collection) && isString(collection))
            ? (
fromIndex length && collection.indexOf(targetfromIndex) > -1)
            : (
getIndexOf(collectiontargetfromIndex) > -1);
        }

        
/**
         * Creates an object composed of keys generated from the results of running
         * each element of `collection` through `iteratee`. The corresponding value
         * of each key is the number of times the key was returned by `iteratee`.
         * The `iteratee` is bound to `thisArg` and invoked with three arguments;
         * (value, index|key, collection).
         *
         * If a property name is provided for `predicate` the created "_.property"
         * style callback returns the property value of the given element.
         *
         * If an object is provided for `predicate` the created "_.matches" style
         * callback returns `true` for elements that have the properties of the given
         * object, else `false`.
         *
         * @static
         * @memberOf _
         * @category Collection
         * @param {Array|Object|string} collection The collection to iterate over.
         * @param {Function|Object|string} [iteratee=_.identity] The function invoked
         *  per iteration. If a property name or object is provided it is used to
         *  create a "_.property" or "_.matches" style callback respectively.
         * @param {*} [thisArg] The `this` binding of `iteratee`.
         * @returns {Object} Returns the composed aggregate object.
         * @example
         *
         * _.countBy([4.3, 6.1, 6.4], function(n) { return Math.floor(n); });
         * // => { '4': 1, '6': 2 }
         *
         * _.countBy([4.3, 6.1, 6.4], function(n) { return this.floor(n); }, Math);
         * // => { '4': 1, '6': 2 }
         *
         * _.countBy(['one', 'two', 'three'], 'length');
         * // => { '3': 2, '5': 1 }
         */
        
var countBy createAggregator(function(resultvaluekey) {
          
hasOwnProperty.call(resultkey) ? ++result[key] : (result[key] = 1);
        });

        
/**
         * Checks if `predicate` returns truthy for **all** elements of `collection`.
         * The predicate is bound to `thisArg` and invoked with three arguments;
         * (value, index|key, collection).
         *
         * If a property name is provided for `predicate` the created "_.property"
         * style callback returns the property value of the given element.
         *
         * If an object is provided for `predicate` the created "_.matches" style
         * callback returns `true` for elements that have the properties of the given
         * object, else `false`.
         *
         * @static
         * @memberOf _
         * @alias all
         * @category Collection
         * @param {Array|Object|string} collection The collection to iterate over.
         * @param {Function|Object|string} [predicate=_.identity] The function invoked
         *  per iteration. If a property name or object is provided it is used to
         *  create a "_.property" or "_.matches" style callback respectively.
         * @param {*} [thisArg] The `this` binding of `predicate`.
         * @returns {boolean} Returns `true` if all elements pass the predicate check,
         *  else `false`.
         * @example
         *
         * _.every([true, 1, null, 'yes']);
         * // => false
         *
         * var users = [
         *   { 'user': 'barney', 'age': 36 },
         *   { 'user': 'fred',   'age': 40 }
         * ];
         *
         * // using the "_.property" callback shorthand
         * _.every(users, 'age');
         * // => true
         *
         * // using the "_.matches" callback shorthand
         * _.every(users, { 'age': 36 });
         * // => false
         */
        
function every(collectionpredicatethisArg) {
          var 
func isArray(collection) ? arrayEvery baseEvery;
          if (
typeof predicate != 'function' || typeof thisArg != 'undefined') {
            
predicate getCallback(predicatethisArg3);
          }
          return 
func(collectionpredicate);
        }

        
/**
         * Iterates over elements of `collection`, returning an array of all elements
         * `predicate` returns truthy for. The predicate is bound to `thisArg` and
         * invoked with three arguments; (value, index|key, collection).
         *
         * If a property name is provided for `predicate` the created "_.property"
         * style callback returns the property value of the given element.
         *
         * If an object is provided for `predicate` the created "_.matches" style
         * callback returns `true` for elements that have the properties of the given
         * object, else `false`.
         *
         * @static
         * @memberOf _
         * @alias select
         * @category Collection
         * @param {Array|Object|string} collection The collection to iterate over.
         * @param {Function|Object|string} [predicate=_.identity] The function invoked
         *  per iteration. If a property name or object is provided it is used to
         *  create a "_.property" or "_.matches" style callback respectively.
         * @param {*} [thisArg] The `this` binding of `predicate`.
         * @returns {Array} Returns the new filtered array.
         * @example
         *
         * var evens = _.filter([1, 2, 3, 4], function(n) { return n % 2 == 0; });
         * // => [2, 4]
         *
         * var users = [
         *   { 'user': 'barney', 'age': 36, 'active': false },
         *   { 'user': 'fred',   'age': 40, 'active': true }
         * ];
         *
         * // using the "_.property" callback shorthand
         * _.pluck(_.filter(users, 'active'), 'user');
         * // => ['fred']
         *
         * // using the "_.matches" callback shorthand
         * _.pluck(_.filter(users, { 'age': 36 }), 'user');
         * // => ['barney']
         */
        
function filter(collectionpredicatethisArg) {
          var 
func isArray(collection) ? arrayFilter baseFilter;
          
predicate getCallback(predicatethisArg3);
          return 
func(collectionpredicate);
        }

        
/**
         * Iterates over elements of `collection`, returning the first element
         * `predicate` returns truthy for. The predicate is bound to `thisArg` and
         * invoked with three arguments; (value, index|key, collection).
         *
         * If a property name is provided for `predicate` the created "_.property"
         * style callback returns the property value of the given element.
         *
         * If an object is provided for `predicate` the created "_.matches" style
         * callback returns `true` for elements that have the properties of the given
         * object, else `false`.
         *
         * @static
         * @memberOf _
         * @alias detect
         * @category Collection
         * @param {Array|Object|string} collection The collection to search.
         * @param {Function|Object|string} [predicate=_.identity] The function invoked
         *  per iteration. If a property name or object is provided it is used to
         *  create a "_.property" or "_.matches" style callback respectively.
         * @param {*} [thisArg] The `this` binding of `predicate`.
         * @returns {*} Returns the matched element, else `undefined`.
         * @example
         *
         * var users = [
         *   { 'user': 'barney',  'age': 36, 'active': false },
         *   { 'user': 'fred',    'age': 40, 'active': true },
         *   { 'user': 'pebbles', 'age': 1,  'active': false }
         * ];
         *
         * _.result(_.find(users, function(chr) { return chr.age < 40; }), 'user');
         * // => 'barney'
         *
         * // using the "_.matches" callback shorthand
         * _.result(_.find(users, { 'age': 1 }), 'user');
         * // => 'pebbles'
         *
         * // using the "_.property" callback shorthand
         * _.result(_.find(users, 'active'), 'user');
         * // => 'fred'
         */
        
function find(collectionpredicatethisArg) {
          if (
isArray(collection)) {
            var 
index findIndex(collectionpredicatethisArg);
            return 
index > -collection[index] : undefined;
          }
          
predicate getCallback(predicatethisArg3);
          return 
baseFind(collectionpredicatebaseEach);
        }

        
/**
         * This method is like `_.find` except that it iterates over elements of
         * `collection` from right to left.
         *
         * @static
         * @memberOf _
         * @category Collection
         * @param {Array|Object|string} collection The collection to search.
         * @param {Function|Object|string} [predicate=_.identity] The function invoked
         *  per iteration. If a property name or object is provided it is used to
         *  create a "_.property" or "_.matches" style callback respectively.
         * @param {*} [thisArg] The `this` binding of `predicate`.
         * @returns {*} Returns the matched element, else `undefined`.
         * @example
         *
         * _.findLast([1, 2, 3, 4], function(n) { return n % 2 == 1; });
         * // => 3
         */
        
function findLast(collectionpredicatethisArg) {
          
predicate getCallback(predicatethisArg3);
          return 
baseFind(collectionpredicatebaseEachRight);
        }

        
/**
         * Performs a deep comparison between each element in `collection` and the
         * source object, returning the first element that has equivalent property
         * values.
         *
         * @static
         * @memberOf _
         * @category Collection
         * @param {Array|Object|string} collection The collection to search.
         * @param {Object} source The object of property values to match.
         * @returns {*} Returns the matched element, else `undefined`.
         * @example
         *
         * var users = [
         *   { 'user': 'barney', 'age': 36, 'status': 'busy' },
         *   { 'user': 'fred',   'age': 40, 'status': 'busy' }
         * ];
         *
         * _.result(_.findWhere(users, { 'status': 'busy' }), 'user');
         * // => 'barney'
         *
         * _.result(_.findWhere(users, { 'age': 40 }), 'user');
         * // => 'fred'
         */
        
function findWhere(collectionsource) {
          return 
find(collectionbaseMatches(source));
        }

        
/**
         * Iterates over elements of `collection` invoking `iteratee` for each element.
         * The `iteratee` is bound to `thisArg` and invoked with three arguments;
         * (value, index|key, collection). Iterator functions may exit iteration early
         * by explicitly returning `false`.
         *
         * **Note:** As with other "Collections" methods, objects with a `length` property
         * are iterated like arrays. To avoid this behavior `_.forIn` or `_.forOwn`
         * may be used for object iteration.
         *
         * @static
         * @memberOf _
         * @alias each
         * @category Collection
         * @param {Array|Object|string} collection The collection to iterate over.
         * @param {Function} [iteratee=_.identity] The function invoked per iteration.
         * @param {*} [thisArg] The `this` binding of `iteratee`.
         * @returns {Array|Object|string} Returns `collection`.
         * @example
         *
         * _([1, 2, 3]).forEach(function(n) { console.log(n); }).value();
         * // => logs each value from left to right and returns the array
         *
         * _.forEach({ 'one': 1, 'two': 2, 'three': 3 }, function(n, key) { console.log(n, key); });
         * // => logs each value-key pair and returns the object (iteration order is not guaranteed)
         */
        
function forEach(collectioniterateethisArg) {
          return (
typeof iteratee == 'function' && typeof thisArg == 'undefined' && isArray(collection))
            ? 
arrayEach(collectioniteratee)
            : 
baseEach(collectionbindCallback(iterateethisArg3));
        }

        
/**
         * This method is like `_.forEach` except that it iterates over elements of
         * `collection` from right to left.
         *
         * @static
         * @memberOf _
         * @alias eachRight
         * @category Collection
         * @param {Array|Object|string} collection The collection to iterate over.
         * @param {Function} [iteratee=_.identity] The function invoked per iteration.
         * @param {*} [thisArg] The `this` binding of `iteratee`.
         * @returns {Array|Object|string} Returns `collection`.
         * @example
         *
         * _([1, 2, 3]).forEachRight(function(n) { console.log(n); }).join(',');
         * // => logs each value from right to left and returns the array
         */
        
function forEachRight(collectioniterateethisArg) {
          return (
typeof iteratee == 'function' && typeof thisArg == 'undefined' && isArray(collection))
            ? 
arrayEachRight(collectioniteratee)
            : 
baseEachRight(collectionbindCallback(iterateethisArg3));
        }

        
/**
         * Creates an object composed of keys generated from the results of running
         * each element of `collection` through `iteratee`. The corresponding value
         * of each key is an array of the elements responsible for generating the key.
         * The `iteratee` is bound to `thisArg` and invoked with three arguments;
         * (value, index|key, collection).
         *
         * If a property name is provided for `predicate` the created "_.property"
         * style callback returns the property value of the given element.
         *
         * If an object is provided for `predicate` the created "_.matches" style
         * callback returns `true` for elements that have the properties of the given
         * object, else `false`.
         *
         * @static
         * @memberOf _
         * @category Collection
         * @param {Array|Object|string} collection The collection to iterate over.
         * @param {Function|Object|string} [iteratee=_.identity] The function invoked
         *  per iteration. If a property name or object is provided it is used to
         *  create a "_.property" or "_.matches" style callback respectively.
         * @param {*} [thisArg] The `this` binding of `iteratee`.
         * @returns {Object} Returns the composed aggregate object.
         * @example
         *
         * _.groupBy([4.2, 6.1, 6.4], function(n) { return Math.floor(n); });
         * // => { '4': [4.2], '6': [6.1, 6.4] }
         *
         * _.groupBy([4.2, 6.1, 6.4], function(n) { return this.floor(n); }, Math);
         * // => { '4': [4.2], '6': [6.1, 6.4] }
         *
         * // using the "_.property" callback shorthand
         * _.groupBy(['one', 'two', 'three'], 'length');
         * // => { '3': ['one', 'two'], '5': ['three'] }
         */
        
var groupBy createAggregator(function(resultvaluekey) {
          if (
hasOwnProperty.call(resultkey)) {
            
result[key].push(value);
          } else {
            
result[key] = [value];
          }
        });

        
/**
         * Creates an object composed of keys generated from the results of running
         * each element of `collection` through `iteratee`. The corresponding value
         * of each key is the last element responsible for generating the key. The
         * iteratee function is bound to `thisArg` and invoked with three arguments;
         * (value, index|key, collection).
         *
         * If a property name is provided for `predicate` the created "_.property"
         * style callback returns the property value of the given element.
         *
         * If an object is provided for `predicate` the created "_.matches" style
         * callback returns `true` for elements that have the properties of the given
         * object, else `false`.
         *
         * @static
         * @memberOf _
         * @category Collection
         * @param {Array|Object|string} collection The collection to iterate over.
         * @param {Function|Object|string} [iteratee=_.identity] The function invoked
         *  per iteration. If a property name or object is provided it is used to
         *  create a "_.property" or "_.matches" style callback respectively.
         * @param {*} [thisArg] The `this` binding of `iteratee`.
         * @returns {Object} Returns the composed aggregate object.
         * @example
         *
         * var keyData = [
         *   { 'dir': 'left', 'code': 97 },
         *   { 'dir': 'right', 'code': 100 }
         * ];
         *
         * _.indexBy(keyData, 'dir');
         * // => { 'left': { 'dir': 'left', 'code': 97 }, 'right': { 'dir': 'right', 'code': 100 } }
         *
         * _.indexBy(keyData, function(object) { return String.fromCharCode(object.code); });
         * // => { 'a': { 'dir': 'left', 'code': 97 }, 'd': { 'dir': 'right', 'code': 100 } }
         *
         * _.indexBy(keyData, function(object) { return this.fromCharCode(object.code); }, String);
         * // => { 'a': { 'dir': 'left', 'code': 97 }, 'd': { 'dir': 'right', 'code': 100 } }
         */
        
var indexBy createAggregator(function(resultvaluekey) {
          
result[key] = value;
        });

        
/**
         * Invokes the method named by `methodName` on each element in `collection`,
         * returning an array of the results of each invoked method. Any additional
         * arguments are provided to each invoked method. If `methodName` is a function
         * it is invoked for, and `this` bound to, each element in `collection`.
         *
         * @static
         * @memberOf _
         * @category Collection
         * @param {Array|Object|string} collection The collection to iterate over.
         * @param {Function|string} methodName The name of the method to invoke or
         *  the function invoked per iteration.
         * @param {...*} [args] The arguments to invoke the method with.
         * @returns {Array} Returns the array of results.
         * @example
         *
         * _.invoke([[5, 1, 7], [3, 2, 1]], 'sort');
         * // => [[1, 5, 7], [1, 2, 3]]
         *
         * _.invoke([123, 456], String.prototype.split, '');
         * // => [['1', '2', '3'], ['4', '5', '6']]
         */
        
function invoke(collectionmethodName) {
          return 
baseInvoke(collectionmethodNamebaseSlice(arguments2));
        }

        
/**
         * Creates an array of values by running each element in `collection` through
         * `iteratee`. The `iteratee` is bound to `thisArg` and invoked with three
         * arguments; (value, index|key, collection).
         *
         * If a property name is provided for `predicate` the created "_.property"
         * style callback returns the property value of the given element.
         *
         * If an object is provided for `predicate` the created "_.matches" style
         * callback returns `true` for elements that have the properties of the given
         * object, else `false`.
         *
         * @static
         * @memberOf _
         * @alias collect
         * @category Collection
         * @param {Array|Object|string} collection The collection to iterate over.
         * @param {Function|Object|string} [iteratee=_.identity] The function invoked
         *  per iteration. If a property name or object is provided it is used to
         *  create a "_.property" or "_.matches" style callback respectively.
         * @param {*} [thisArg] The `this` binding of `iteratee`.
         * @returns {Array} Returns the new mapped array.
         * @example
         *
         * _.map([1, 2, 3], function(n) { return n * 3; });
         * // => [3, 6, 9]
         *
         * _.map({ 'one': 1, 'two': 2, 'three': 3 }, function(n) { return n * 3; });
         * // => [3, 6, 9] (iteration order is not guaranteed)
         *
         * var users = [
         *   { 'user': 'barney' },
         *   { 'user': 'fred' }
         * ];
         *
         * // using the "_.property" callback shorthand
         * _.map(users, 'user');
         * // => ['barney', 'fred']
         */
        
function map(collectioniterateethisArg) {
          var 
func isArray(collection) ? arrayMap baseMap;
          
iteratee getCallback(iterateethisArg3);
          return 
func(collectioniteratee);
        }

        
/**
         * Gets the maximum value of `collection`. If `collection` is empty or falsey
         * `-Infinity` is returned. If an iteratee function is provided it is invoked
         * for each value in `collection` to generate the criterion by which the value
         * is ranked. The `iteratee` is bound to `thisArg` and invoked with three
         * arguments; (value, index, collection).
         *
         * If a property name is provided for `predicate` the created "_.property"
         * style callback returns the property value of the given element.
         *
         * If an object is provided for `predicate` the created "_.matches" style
         * callback returns `true` for elements that have the properties of the given
         * object, else `false`.
         *
         * @static
         * @memberOf _
         * @category Collection
         * @param {Array|Object|string} collection The collection to iterate over.
         * @param {Function|Object|string} [iteratee] The function invoked per iteration.
         *  If a property name or object is provided it is used to create a "_.property"
         *  or "_.matches" style callback respectively.
         * @param {*} [thisArg] The `this` binding of `iteratee`.
         * @returns {*} Returns the maximum value.
         * @example
         *
         * _.max([4, 2, 8, 6]);
         * // => 8
         *
         * _.max([]);
         * // => -Infinity
         *
         * var users = [
         *   { 'user': 'barney', 'age': 36 },
         *   { 'user': 'fred',   'age': 40 }
         * ];
         *
         * _.max(users, function(chr) { return chr.age; });
         * // => { 'user': 'fred', 'age': 40 };
         *
         * // using the "_.property" callback shorthand
         * _.max(users, 'age');
         * // => { 'user': 'fred', 'age': 40 };
         */
        
var max createExtremum(arrayMax);

        
/**
         * Gets the minimum value of `collection`. If `collection` is empty or falsey
         * `Infinity` is returned. If an iteratee function is provided it is invoked
         * for each value in `collection` to generate the criterion by which the value
         * is ranked. The `iteratee` is bound to `thisArg` and invoked with three
         * arguments; (value, index, collection).
         *
         * If a property name is provided for `predicate` the created "_.property"
         * style callback returns the property value of the given element.
         *
         * If an object is provided for `predicate` the created "_.matches" style
         * callback returns `true` for elements that have the properties of the given
         * object, else `false`.
         *
         * @static
         * @memberOf _
         * @category Collection
         * @param {Array|Object|string} collection The collection to iterate over.
         * @param {Function|Object|string} [iteratee] The function invoked per iteration.
         *  If a property name or object is provided it is used to create a "_.property"
         *  or "_.matches" style callback respectively.
         * @param {*} [thisArg] The `this` binding of `iteratee`.
         * @returns {*} Returns the minimum value.
         * @example
         *
         * _.min([4, 2, 8, 6]);
         * // => 2
         *
         * _.min([]);
         * // => Infinity
         *
         * var users = [
         *   { 'user': 'barney', 'age': 36 },
         *   { 'user': 'fred',   'age': 40 }
         * ];
         *
         * _.min(users, function(chr) { return chr.age; });
         * // => { 'user': 'barney', 'age': 36 };
         *
         * // using the "_.property" callback shorthand
         * _.min(users, 'age');
         * // => { 'user': 'barney', 'age': 36 };
         */
        
var min createExtremum(arrayMintrue);

        
/**
         * Creates an array of elements split into two groups, the first of which
         * contains elements `predicate` returns truthy for, while the second of which
         * contains elements `predicate` returns falsey for. The predicate is bound
         * to `thisArg` and invoked with three arguments; (value, index|key, collection).
         *
         * If a property name is provided for `predicate` the created "_.property"
         * style callback returns the property value of the given element.
         *
         * If an object is provided for `predicate` the created "_.matches" style
         * callback returns `true` for elements that have the properties of the given
         * object, else `false`.
         *
         * @static
         * @memberOf _
         * @category Collection
         * @param {Array|Object|string} collection The collection to iterate over.
         * @param {Function|Object|string} [predicate=_.identity] The function invoked
         *  per iteration. If a property name or object is provided it is used to
         *  create a "_.property" or "_.matches" style callback respectively.
         * @param {*} [thisArg] The `this` binding of `predicate`.
         * @returns {Array} Returns the array of grouped elements.
         * @example
         *
         * _.partition([1, 2, 3], function(n) { return n % 2; });
         * // => [[1, 3], [2]]
         *
         * _.partition([1.2, 2.3, 3.4], function(n) { return this.floor(n) % 2; }, Math);
         * // => [[1, 3], [2]]
         *
         * var users = [
         *   { 'user': 'barney',  'age': 36, 'active': false },
         *   { 'user': 'fred',    'age': 40, 'active': true },
         *   { 'user': 'pebbles', 'age': 1,  'active': false }
         * ];
         *
         * // using the "_.matches" callback shorthand
         * _.map(_.partition(users, { 'age': 1 }), function(array) { return _.pluck(array, 'user'); });
         * // => [['pebbles'], ['barney', 'fred']]
         *
         * // using the "_.property" callback shorthand
         * _.map(_.partition(users, 'active'), function(array) { return _.pluck(array, 'user'); });
         * // => [['fred'], ['barney', 'pebbles']]
         */
        
var partition createAggregator(function(resultvaluekey) {
          
result[key 1].push(value);
        }, function() { return [[], []]; });

        
/**
         * Gets the value of `key` from all elements in `collection`.
         *
         * @static
         * @memberOf _
         * @category Collection
         * @param {Array|Object|string} collection The collection to iterate over.
         * @param {string} key The key of the property to pluck.
         * @returns {Array} Returns the property values.
         * @example
         *
         * var users = [
         *   { 'user': 'barney', 'age': 36 },
         *   { 'user': 'fred',   'age': 40 }
         * ];
         *
         * _.pluck(users, 'user');
         * // => ['barney', 'fred']
         *
         * var userIndex = _.indexBy(users, 'user');
         * _.pluck(userIndex, 'age');
         * // => [36, 40] (iteration order is not guaranteed)
         */
        
function pluck(collectionkey) {
          return 
map(collectionbaseProperty(key ''));
        }

        
/**
         * Reduces `collection` to a value which is the accumulated result of running
         * each element in `collection` through `iteratee`, where each successive
         * invocation is supplied the return value of the previous. If `accumulator`
         * is not provided the first element of `collection` is used as the initial
         * value. The `iteratee` is bound to `thisArg`and invoked with four arguments;
         * (accumulator, value, index|key, collection).
         *
         * @static
         * @memberOf _
         * @alias foldl, inject
         * @category Collection
         * @param {Array|Object|string} collection The collection to iterate over.
         * @param {Function} [iteratee=_.identity] The function invoked per iteration.
         * @param {*} [accumulator] The initial value.
         * @param {*} [thisArg] The `this` binding of `iteratee`.
         * @returns {*} Returns the accumulated value.
         * @example
         *
         * var sum = _.reduce([1, 2, 3], function(sum, n) { return sum + n; });
         * // => 6
         *
         * var mapped = _.reduce({ 'a': 1, 'b': 2, 'c': 3 }, function(result, n, key) {
         *   result[key] = n * 3;
         *   return result;
         * }, {});
         * // => { 'a': 3, 'b': 6, 'c': 9 } (iteration order is not guaranteed)
         */
        
function reduce(collectioniterateeaccumulatorthisArg) {
          var 
func isArray(collection) ? arrayReduce baseReduce;
          return 
func(collectiongetCallback(iterateethisArg4), accumulatorarguments.length 3baseEach);
        }

        
/**
         * This method is like `_.reduce` except that it iterates over elements of
         * `collection` from right to left.
         *
         * @static
         * @memberOf _
         * @alias foldr
         * @category Collection
         * @param {Array|Object|string} collection The collection to iterate over.
         * @param {Function} [iteratee=_.identity] The function invoked per iteration.
         * @param {*} [accumulator] The initial value.
         * @param {*} [thisArg] The `this` binding of `iteratee`.
         * @returns {*} Returns the accumulated value.
         * @example
         *
         * var array = [[0, 1], [2, 3], [4, 5]];
         * _.reduceRight(array, function(flattened, other) { return flattened.concat(other); }, []);
         * // => [4, 5, 2, 3, 0, 1]
         */
        
function reduceRight(collectioniterateeaccumulatorthisArg) {
          var 
func isArray(collection) ? arrayReduceRight baseReduce;
          return 
func(collectiongetCallback(iterateethisArg4), accumulatorarguments.length 3baseEachRight);
        }

        
/**
         * The opposite of `_.filter`; this method returns the elements of `collection`
         * that `predicate` does **not** return truthy for.
         *
         * If a property name is provided for `predicate` the created "_.property"
         * style callback returns the property value of the given element.
         *
         * If an object is provided for `predicate` the created "_.matches" style
         * callback returns `true` for elements that have the properties of the given
         * object, else `false`.
         *
         * @static
         * @memberOf _
         * @category Collection
         * @param {Array|Object|string} collection The collection to iterate over.
         * @param {Function|Object|string} [predicate=_.identity] The function invoked
         *  per iteration. If a property name or object is provided it is used to
         *  create a "_.property" or "_.matches" style callback respectively.
         * @param {*} [thisArg] The `this` binding of `predicate`.
         * @returns {Array} Returns the new filtered array.
         * @example
         *
         * var odds = _.reject([1, 2, 3, 4], function(n) { return n % 2 == 0; });
         * // => [1, 3]
         *
         * var users = [
         *   { 'user': 'barney', 'age': 36, 'active': false },
         *   { 'user': 'fred',   'age': 40, 'active': true }
         * ];
         *
         * // using the "_.property" callback shorthand
         * _.pluck(_.reject(users, 'active'), 'user');
         * // => ['barney']
         *
         * // using the "_.matches" callback shorthand
         * _.pluck(_.reject(users, { 'age': 36 }), 'user');
         * // => ['fred']
         */
        
function reject(collectionpredicatethisArg) {
          var 
func isArray(collection) ? arrayFilter baseFilter;
          
predicate getCallback(predicatethisArg3);
          return 
func(collection, function(valueindexcollection) {
            return !
predicate(valueindexcollection);
          });
        }

        
/**
         * Gets a random element or `n` random elements from a collection.
         *
         * @static
         * @memberOf _
         * @category Collection
         * @param {Array|Object|string} collection The collection to sample.
         * @param {number} [n] The number of elements to sample.
         * @param- {Object} [guard] Enables use as a callback for functions like `_.map`.
         * @returns {*} Returns the random sample(s).
         * @example
         *
         * _.sample([1, 2, 3, 4]);
         * // => 2
         *
         * _.sample([1, 2, 3, 4], 2);
         * // => [3, 1]
         */
        
function sample(collectionnguard) {
          if (
guard isIterateeCall(collectionnguard) : == null) {
            
collection toIterable(collection);
            var 
length collection.length;
            return 
length collection[baseRandom(0length 1)] : undefined;
          }
          var 
result shuffle(collection);
          
result.length nativeMin(: (+|| 0), result.length);
          return 
result;
        }

        
/**
         * Creates an array of shuffled values, using a version of the Fisher-Yates
         * shuffle. See [Wikipedia](https://en.wikipedia.org/wiki/Fisher-Yates_shuffle)
         * for more details.
         *
         * @static
         * @memberOf _
         * @category Collection
         * @param {Array|Object|string} collection The collection to shuffle.
         * @returns {Array} Returns the new shuffled array.
         * @example
         *
         * _.shuffle([1, 2, 3, 4]);
         * // => [4, 1, 3, 2]
         */
        
function shuffle(collection) {
          
collection toIterable(collection);

          var 
index = -1,
              
length collection.length,
              
result = Array(length);

          while (++
index length) {
            var 
rand baseRandom(0index);
            if (
index != rand) {
              
result[index] = result[rand];
            }
            
result[rand] = collection[index];
          }
          return 
result;
        }

        
/**
         * Gets the size of `collection` by returning `collection.length` for
         * array-like values or the number of own enumerable properties for objects.
         *
         * @static
         * @memberOf _
         * @category Collection
         * @param {Array|Object|string} collection The collection to inspect.
         * @returns {number} Returns the size of `collection`.
         * @example
         *
         * _.size([1, 2]);
         * // => 2
         *
         * _.size({ 'one': 1, 'two': 2, 'three': 3 });
         * // => 3
         *
         * _.size('pebbles');
         * // => 7
         */
        
function size(collection) {
          var 
length collection collection.length 0;
          return 
isLength(length) ? length keys(collection).length;
        }

        
/**
         * Checks if `predicate` returns truthy for **any** element of `collection`.
         * The function returns as soon as it finds a passing value and does not iterate
         * over the entire collection. The predicate is bound to `thisArg` and invoked
         * with three arguments; (value, index|key, collection).
         *
         * If a property name is provided for `predicate` the created "_.property"
         * style callback returns the property value of the given element.
         *
         * If an object is provided for `predicate` the created "_.matches" style
         * callback returns `true` for elements that have the properties of the given
         * object, else `false`.
         *
         * @static
         * @memberOf _
         * @alias any
         * @category Collection
         * @param {Array|Object|string} collection The collection to iterate over.
         * @param {Function|Object|string} [predicate=_.identity] The function invoked
         *  per iteration. If a property name or object is provided it is used to
         *  create a "_.property" or "_.matches" style callback respectively.
         * @param {*} [thisArg] The `this` binding of `predicate`.
         * @returns {boolean} Returns `true` if any element passes the predicate check,
         *  else `false`.
         * @example
         *
         * _.some([null, 0, 'yes', false], Boolean);
         * // => true
         *
         * var users = [
         *   { 'user': 'barney', 'age': 36, 'active': false },
         *   { 'user': 'fred',   'age': 40, 'active': true }
         * ];
         *
         * // using the "_.property" callback shorthand
         * _.some(users, 'active');
         * // => true
         *
         * // using the "_.matches" callback shorthand
         * _.some(users, { 'age': 1 });
         * // => false
         */
        
function some(collectionpredicatethisArg) {
          var 
func isArray(collection) ? arraySome baseSome;
          if (
typeof predicate != 'function' || typeof thisArg != 'undefined') {
            
predicate getCallback(predicatethisArg3);
          }
          return 
func(collectionpredicate);
        }

        
/**
         * Creates an array of elements, sorted in ascending order by the results of
         * running each element in a collection through `iteratee`. This method performs
         * a stable sort, that is, it preserves the original sort order of equal elements.
         * The `iteratee` is bound to `thisArg` and invoked with three arguments;
         * (value, index|key, collection).
         *
         * If a property name is provided for `predicate` the created "_.property"
         * style callback returns the property value of the given element.
         *
         * If an object is provided for `predicate` the created "_.matches" style
         * callback returns `true` for elements that have the properties of the given
         * object, else `false`.
         *
         * @static
         * @memberOf _
         * @category Collection
         * @param {Array|Object|string} collection The collection to iterate over.
         * @param {Array|Function|Object|string} [iteratee=_.identity] The function
         *  invoked per iteration. If a property name or an object is provided it is
         *  used to create a "_.property" or "_.matches" style callback respectively.
         * @param {*} [thisArg] The `this` binding of `iteratee`.
         * @returns {Array} Returns the new sorted array.
         * @example
         *
         * _.sortBy([1, 2, 3], function(n) { return Math.sin(n); });
         * // => [3, 1, 2]
         *
         * _.sortBy([1, 2, 3], function(n) { return this.sin(n); }, Math);
         * // => [3, 1, 2]
         *
         * var users = [
         *   { 'user': 'fred' },
         *   { 'user': 'pebbles' },
         *   { 'user': 'barney' }
         * ];
         *
         * // using the "_.property" callback shorthand
         * _.pluck(_.sortBy(users, 'user'), 'user');
         * // => ['barney', 'fred', 'pebbles']
         */
        
function sortBy(collectioniterateethisArg) {
          var 
index = -1,
              
length collection collection.length 0,
              
result isLength(length) ? Array(length) : [];

          if (
thisArg && isIterateeCall(collectioniterateethisArg)) {
            
iteratee null;
          }
          
iteratee getCallback(iterateethisArg3);
          
baseEach(collection, function(valuekeycollection) {
            
result[++index] = { 'criteria'iteratee(valuekeycollection), 'index'index'value'value };
          });
          return 
baseSortBy(resultcompareAscending);
        }

        
/**
         * This method is like `_.sortBy` except that it sorts by property names
         * instead of an iteratee function.
         *
         * @static
         * @memberOf _
         * @category Collection
         * @param {Array|Object|string} collection The collection to iterate over.
         * @param {...(string|string[])} props The property names to sort by,
         *  specified as individual property names or arrays of property names.
         * @returns {Array} Returns the new sorted array.
         * @example
         *
         * var users = [
         *   { 'user': 'barney', 'age': 36 },
         *   { 'user': 'fred',   'age': 40 },
         *   { 'user': 'barney', 'age': 26 },
         *   { 'user': 'fred',   'age': 30 }
         * ];
         *
         * _.map(_.sortByAll(users, ['user', 'age']), _.values);
         * // => [['barney', 26], ['barney', 36], ['fred', 30], ['fred', 40]]
         */
        
function sortByAll(collection) {
          var 
args arguments;
          if (
args.length && isIterateeCall(args[1], args[2], args[3])) {
            
args = [collectionargs[1]];
          }
          var 
index = -1,
              
length collection collection.length 0,
              
props baseFlatten(argsfalsefalse1),
              
result isLength(length) ? Array(length) : [];

          
baseEach(collection, function(valuekeycollection) {
            var 
length props.length,
                
criteria = Array(length);

            while (
length--) {
              
criteria[length] = value == null undefined value[props[length]];
            }
            
result[++index] = { 'criteria'criteria'index'index'value'value };
          });
          return 
baseSortBy(resultcompareMultipleAscending);
        }

        
/**
         * Performs a deep comparison between each element in `collection` and the
         * source object, returning an array of all elements that have equivalent
         * property values.
         *
         * @static
         * @memberOf _
         * @category Collection
         * @param {Array|Object|string} collection The collection to search.
         * @param {Object} source The object of property values to match.
         * @returns {Array} Returns the new filtered array.
         * @example
         *
         * var users = [
         *   { 'user': 'barney', 'age': 36, 'status': 'busy', 'pets': ['hoppy'] },
         *   { 'user': 'fred',   'age': 40, 'status': 'busy', 'pets': ['baby puss', 'dino'] }
         * ];
         *
         * _.pluck(_.where(users, { 'age': 36 }), 'user');
         * // => ['barney']
         *
         * _.pluck(_.where(users, { 'pets': ['dino'] }), 'user');
         * // => ['fred']
         *
         * _.pluck(_.where(users, { 'status': 'busy' }), 'user');
         * // => ['barney', 'fred']
         */
        
function where(collectionsource) {
          return 
filter(collectionbaseMatches(source));
        }

        
/*------------------------------------------------------------------------*/

        /**
         * Gets the number of milliseconds that have elapsed since the Unix epoch
         * (1 January 1970 00:00:00 UTC).
         *
         * @static
         * @memberOf _
         * @category Date
         * @example
         *
         * _.defer(function(stamp) { console.log(_.now() - stamp); }, _.now());
         * // => logs the number of milliseconds it took for the deferred function to be invoked
         */
        
var now nativeNow || function() {
          return new 
Date().getTime();
        };

        
/*------------------------------------------------------------------------*/

        /**
         * The opposite of `_.before`; this method creates a function that invokes
         * `func` once it is called `n` or more times.
         *
         * @static
         * @memberOf _
         * @category Function
         * @param {number} n The number of calls before `func` is invoked.
         * @param {Function} func The function to restrict.
         * @returns {Function} Returns the new restricted function.
         * @example
         *
         * var saves = ['profile', 'settings'];
         *
         * var done = _.after(saves.length, function() {
         *   console.log('done saving!');
         * });
         *
         * _.forEach(saves, function(type) {
         *   asyncSave({ 'type': type, 'complete': done });
         * });
         * // => logs 'done saving!' after the two async saves have completed
         */
        
function after(nfunc) {
          if (!
isFunction(func)) {
            if (
isFunction(n)) {
              var 
temp n;
              
func;
              
func temp;
            } else {
              throw new 
TypeError(FUNC_ERROR_TEXT);
            }
          }
          
nativeIsFinite(= +n) ? 0;
          return function() {
            if (--
1) {
              return 
func.apply(thisarguments);
            }
          };
        }

        
/**
         * Creates a function that accepts up to `n` arguments ignoring any
         * additional arguments.
         *
         * @static
         * @memberOf _
         * @category Function
         * @param {Function} func The function to cap arguments for.
         * @param {number} [n=func.length] The arity cap.
         * @param- {Object} [guard] Enables use as a callback for functions like `_.map`.
         * @returns {Function} Returns the new function.
         * @example
         *
         * _.map(['6', '8', '10'], _.ary(parseInt, 1));
         * // => [6, 8, 10]
         */
        
function ary(funcnguard) {
          if (
guard && isIterateeCall(funcnguard)) {
            
null;
          }
          
= (func && == null) ? func.length nativeMax(+|| 00);
          return 
createWrapper(funcARY_FLAGnullnullnullnulln);
        }

        
/**
         * Creates a function that invokes `func`, with the `this` binding and arguments
         * of the created function, while it is called less than `n` times. Subsequent
         * calls to the created function return the result of the last `func` invocation.
         *
         * @static
         * @memberOf _
         * @category Function
         * @param {number} n The number of calls at which `func` is no longer invoked.
         * @param {Function} func The function to restrict.
         * @returns {Function} Returns the new restricted function.
         * @example
         *
         * jQuery('#add').on('click', _.before(5, addContactToList));
         * // => allows adding up to 4 contacts to the list
         */
        
function before(nfunc) {
          var 
result;
          if (!
isFunction(func)) {
            if (
isFunction(n)) {
              var 
temp n;
              
func;
              
func temp;
            } else {
              throw new 
TypeError(FUNC_ERROR_TEXT);
            }
          }
          return function() {
            if (--
0) {
              
result func.apply(thisarguments);
            } else {
              
func null;
            }
            return 
result;
          };
        }

        
/**
         * Creates a function that invokes `func` with the `this` binding of `thisArg`
         * and prepends any additional `_.bind` arguments to those provided to the
         * bound function.
         *
         * The `_.bind.placeholder` value, which defaults to `_` in monolithic builds,
         * may be used as a placeholder for partially applied arguments.
         *
         * **Note:** Unlike native `Function#bind` this method does not set the `length`
         * property of bound functions.
         *
         * @static
         * @memberOf _
         * @category Function
         * @param {Function} func The function to bind.
         * @param {*} thisArg The `this` binding of `func`.
         * @param {...*} [args] The arguments to be partially applied.
         * @returns {Function} Returns the new bound function.
         * @example
         *
         * var greet = function(greeting, punctuation) {
         *   return greeting + ' ' + this.user + punctuation;
         * };
         *
         * var object = { 'user': 'fred' };
         *
         * var bound = _.bind(greet, object, 'hi');
         * bound('!');
         * // => 'hi fred!'
         *
         * // using placeholders
         * var bound = _.bind(greet, object, _, '!');
         * bound('hi');
         * // => 'hi fred!'
         */
        
function bind(functhisArg) {
          var 
bitmask BIND_FLAG;
          if (
arguments.length 2) {
            var 
partials baseSlice(arguments2),
                
holders replaceHolders(partialsbind.placeholder);

            
bitmask |= PARTIAL_FLAG;
          }
          return 
createWrapper(funcbitmaskthisArgpartialsholders);
        }

        
/**
         * Binds methods of an object to the object itself, overwriting the existing
         * method. Method names may be specified as individual arguments or as arrays
         * of method names. If no method names are provided all enumerable function
         * properties, own and inherited, of `object` are bound.
         *
         * **Note:** This method does not set the `length` property of bound functions.
         *
         * @static
         * @memberOf _
         * @category Function
         * @param {Object} object The object to bind and assign the bound methods to.
         * @param {...(string|string[])} [methodNames] The object method names to bind,
         *  specified as individual method names or arrays of method names.
         * @returns {Object} Returns `object`.
         * @example
         *
         * var view = {
         *   'label': 'docs',
         *   'onClick': function() { console.log('clicked ' + this.label); }
         * };
         *
         * _.bindAll(view);
         * jQuery('#docs').on('click', view.onClick);
         * // => logs 'clicked docs' when the element is clicked
         */
        
function bindAll(object) {
          return 
baseBindAll(object,
            
arguments.length 1
              
baseFlatten(argumentsfalsefalse1)
              : 
functions(object)
          );
        }

        
/**
         * Creates a function that invokes the method at `object[key]` and prepends
         * any additional `_.bindKey` arguments to those provided to the bound function.
         *
         * This method differs from `_.bind` by allowing bound functions to reference
         * methods that may be redefined or don't yet exist.
         * See [Peter Michaux's article](http://michaux.ca/articles/lazy-function-definition-pattern)
         * for more details.
         *
         * The `_.bindKey.placeholder` value, which defaults to `_` in monolithic
         * builds, may be used as a placeholder for partially applied arguments.
         *
         * @static
         * @memberOf _
         * @category Function
         * @param {Object} object The object the method belongs to.
         * @param {string} key The key of the method.
         * @param {...*} [args] The arguments to be partially applied.
         * @returns {Function} Returns the new bound function.
         * @example
         *
         * var object = {
         *   'user': 'fred',
         *   'greet': function(greeting, punctuation) {
         *     return greeting + ' ' + this.user + punctuation;
         *   }
         * };
         *
         * var bound = _.bindKey(object, 'greet', 'hi');
         * bound('!');
         * // => 'hi fred!'
         *
         * object.greet = function(greeting, punctuation) {
         *   return greeting + 'ya ' + this.user + punctuation;
         * };
         *
         * bound('!');
         * // => 'hiya fred!'
         *
         * // using placeholders
         * var bound = _.bindKey(object, 'greet', _, '!');
         * bound('hi');
         * // => 'hiya fred!'
         */
        
function bindKey(objectkey) {
          var 
bitmask BIND_FLAG BIND_KEY_FLAG;
          if (
arguments.length 2) {
            var 
partials baseSlice(arguments2),
                
holders replaceHolders(partialsbindKey.placeholder);

            
bitmask |= PARTIAL_FLAG;
          }
          return 
createWrapper(keybitmaskobjectpartialsholders);
        }

        
/**
         * Creates a function that accepts one or more arguments of `func` that when
         * called either invokes `func` returning its result, if all `func` arguments
         * have been provided, or returns a function that accepts one or more of the
         * remaining `func` arguments, and so on. The arity of `func` may be specified
         * if `func.length` is not sufficient.
         *
         * The `_.curry.placeholder` value, which defaults to `_` in monolithic builds,
         * may be used as a placeholder for provided arguments.
         *
         * **Note:** This method does not set the `length` property of curried functions.
         *
         * @static
         * @memberOf _
         * @category Function
         * @param {Function} func The function to curry.
         * @param {number} [arity=func.length] The arity of `func`.
         * @param- {Object} [guard] Enables use as a callback for functions like `_.map`.
         * @returns {Function} Returns the new curried function.
         * @example
         *
         * var abc = function(a, b, c) {
         *   return [a, b, c];
         * };
         *
         * var curried = _.curry(abc);
         *
         * curried(1)(2)(3);
         * // => [1, 2, 3]
         *
         * curried(1, 2)(3);
         * // => [1, 2, 3]
         *
         * curried(1, 2, 3);
         * // => [1, 2, 3]
         *
         * // using placeholders
         * curried(1)(_, 3)(2);
         * // => [1, 2, 3]
         */
        
function curry(funcarityguard) {
          if (
guard && isIterateeCall(funcarityguard)) {
            
arity null;
          }
          var 
result createWrapper(funcCURRY_FLAGnullnullnullnullnullarity);
          
result.placeholder curry.placeholder;
          return 
result;
        }

        
/**
         * This method is like `_.curry` except that arguments are applied to `func`
         * in the manner of `_.partialRight` instead of `_.partial`.
         *
         * The `_.curryRight.placeholder` value, which defaults to `_` in monolithic
         * builds, may be used as a placeholder for provided arguments.
         *
         * **Note:** This method does not set the `length` property of curried functions.
         *
         * @static
         * @memberOf _
         * @category Function
         * @param {Function} func The function to curry.
         * @param {number} [arity=func.length] The arity of `func`.
         * @param- {Object} [guard] Enables use as a callback for functions like `_.map`.
         * @returns {Function} Returns the new curried function.
         * @example
         *
         * var abc = function(a, b, c) {
         *   return [a, b, c];
         * };
         *
         * var curried = _.curryRight(abc);
         *
         * curried(3)(2)(1);
         * // => [1, 2, 3]
         *
         * curried(2, 3)(1);
         * // => [1, 2, 3]
         *
         * curried(1, 2, 3);
         * // => [1, 2, 3]
         *
         * // using placeholders
         * curried(3)(1, _)(2);
         * // => [1, 2, 3]
         */
        
function curryRight(funcarityguard) {
          if (
guard && isIterateeCall(funcarityguard)) {
            
arity null;
          }
          var 
result createWrapper(funcCURRY_RIGHT_FLAGnullnullnullnullnullarity);
          
result.placeholder curryRight.placeholder;
          return 
result;
        }

        
/**
         * Creates a function that delays invoking `func` until after `wait` milliseconds
         * have elapsed since the last time it was invoked. The created function comes
         * with a `cancel` method to cancel delayed invocations. Provide an options
         * object to indicate that `func` should be invoked on the leading and/or
         * trailing edge of the `wait` timeout. Subsequent calls to the debounced
         * function return the result of the last `func` invocation.
         *
         * **Note:** If `leading` and `trailing` options are `true`, `func` is invoked
         * on the trailing edge of the timeout only if the the debounced function is
         * invoked more than once during the `wait` timeout.
         *
         * See [David Corbacho's article](http://drupalmotion.com/article/debounce-and-throttle-visual-explanation)
         * for details over the differences between `_.debounce` and `_.throttle`.
         *
         * @static
         * @memberOf _
         * @category Function
         * @param {Function} func The function to debounce.
         * @param {number} wait The number of milliseconds to delay.
         * @param {Object} [options] The options object.
         * @param {boolean} [options.leading=false] Specify invoking on the leading
         *  edge of the timeout.
         * @param {number} [options.maxWait] The maximum time `func` is allowed to be
         *  delayed before it is invoked.
         * @param {boolean} [options.trailing=true] Specify invoking on the trailing
         *  edge of the timeout.
         * @returns {Function} Returns the new debounced function.
         * @example
         *
         * // avoid costly calculations while the window size is in flux
         * jQuery(window).on('resize', _.debounce(calculateLayout, 150));
         *
         * // invoke `sendMail` when the click event is fired, debouncing subsequent calls
         * jQuery('#postbox').on('click', _.debounce(sendMail, 300, {
         *   'leading': true,
         *   'trailing': false
         * }));
         *
         * // ensure `batchLog` is invoked once after 1 second of debounced calls
         * var source = new EventSource('/stream');
         * jQuery(source).on('message', _.debounce(batchLog, 250, {
         *   'maxWait': 1000
         * }));
         *
         * // cancel a debounced call
         * var todoChanges = _.debounce(batchLog, 1000);
         * Object.observe(models.todo, todoChanges);
         *
         * Object.observe(models, function(changes) {
         *   if (_.find(changes, { 'user': 'todo', 'type': 'delete'})) {
         *     todoChanges.cancel();
         *   }
         * }, ['delete']);
         *
         * // ...at some point `models.todo` is changed
         * models.todo.completed = true;
         *
         * // ...before 1 second has passed `models.todo` is deleted
         * // which cancels the debounced `todoChanges` call
         * delete models.todo;
         */
        
function debounce(funcwaitoptions) {
          var 
args,
              
maxTimeoutId,
              
result,
              
stamp,
              
thisArg,
              
timeoutId,
              
trailingCall,
              
lastCalled 0,
              
maxWait false,
              
trailing true;

          if (!
isFunction(func)) {
            throw new 
TypeError(FUNC_ERROR_TEXT);
          }
          
wait wait wait;
          if (
options === true) {
            var 
leading true;
            
trailing false;
          } else if (
isObject(options)) {
            
leading options.leading;
            
maxWait 'maxWait' in options && nativeMax(+options.maxWait || 0wait);
            
trailing 'trailing' in options options.trailing trailing;
          }

          function 
cancel() {
            if (
timeoutId) {
              
clearTimeout(timeoutId);
            }
            if (
maxTimeoutId) {
              
clearTimeout(maxTimeoutId);
            }
            
maxTimeoutId timeoutId trailingCall undefined;
          }

          function 
delayed() {
            var 
remaining wait - (now() - stamp);
            if (
remaining <= || remaining wait) {
              if (
maxTimeoutId) {
                
clearTimeout(maxTimeoutId);
              }
              var 
isCalled trailingCall;
              
maxTimeoutId timeoutId trailingCall undefined;
              if (
isCalled) {
                
lastCalled now();
                
result func.apply(thisArgargs);
                if (!
timeoutId && !maxTimeoutId) {
                  
args thisArg null;
                }
              }
            } else {
              
timeoutId setTimeout(delayedremaining);
            }
          }

          function 
maxDelayed() {
            if (
timeoutId) {
              
clearTimeout(timeoutId);
            }
            
maxTimeoutId timeoutId trailingCall undefined;
            if (
trailing || (maxWait !== wait)) {
              
lastCalled now();
              
result func.apply(thisArgargs);
              if (!
timeoutId && !maxTimeoutId) {
                
args thisArg null;
              }
            }
          }

          function 
debounced() {
            
args arguments;
            
stamp now();
            
thisArg this;
            
trailingCall trailing && (timeoutId || !leading);

            if (
maxWait === false) {
              var 
leadingCall leading && !timeoutId;
            } else {
              if (!
maxTimeoutId && !leading) {
                
lastCalled stamp;
              }
              var 
remaining maxWait - (stamp lastCalled),
                  
isCalled remaining <= || remaining maxWait;

              if (
isCalled) {
                if (
maxTimeoutId) {
                  
maxTimeoutId clearTimeout(maxTimeoutId);
                }
                
lastCalled stamp;
                
result func.apply(thisArgargs);
              }
              else if (!
maxTimeoutId) {
                
maxTimeoutId setTimeout(maxDelayedremaining);
              }
            }
            if (
isCalled && timeoutId) {
              
timeoutId clearTimeout(timeoutId);
            }
            else if (!
timeoutId && wait !== maxWait) {
              
timeoutId setTimeout(delayedwait);
            }
            if (
leadingCall) {
              
isCalled true;
              
result func.apply(thisArgargs);
            }
            if (
isCalled && !timeoutId && !maxTimeoutId) {
              
args thisArg null;
            }
            return 
result;
          }
          
debounced.cancel cancel;
          return 
debounced;
        }

        
/**
         * Defers invoking the `func` until the current call stack has cleared. Any
         * additional arguments are provided to `func` when it is invoked.
         *
         * @static
         * @memberOf _
         * @category Function
         * @param {Function} func The function to defer.
         * @param {...*} [args] The arguments to invoke the function with.
         * @returns {number} Returns the timer id.
         * @example
         *
         * _.defer(function(text) { console.log(text); }, 'deferred');
         * // logs 'deferred' after one or more milliseconds
         */
        
function defer(func) {
          return 
baseDelay(func1arguments1);
        }

        
/**
         * Invokes `func` after `wait` milliseconds. Any additional arguments are
         * provided to `func` when it is invoked.
         *
         * @static
         * @memberOf _
         * @category Function
         * @param {Function} func The function to delay.
         * @param {number} wait The number of milliseconds to delay invocation.
         * @param {...*} [args] The arguments to invoke the function with.
         * @returns {number} Returns the timer id.
         * @example
         *
         * _.delay(function(text) { console.log(text); }, 1000, 'later');
         * // => logs 'later' after one second
         */
        
function delay(funcwait) {
          return 
baseDelay(funcwaitarguments2);
        }

        
/**
         * Creates a function that returns the result of invoking the provided
         * functions with the `this` binding of the created function, where each
         * successive invocation is supplied the return value of the previous.
         *
         * @static
         * @memberOf _
         * @category Function
         * @param {...Function} [funcs] Functions to invoke.
         * @returns {Function} Returns the new function.
         * @example
         *
         * function add(x, y) {
         *   return x + y;
         * }
         *
         * function square(n) {
         *   return n * n;
         * }
         *
         * var addSquare = _.flow(add, square);
         * addSquare(1, 2);
         * // => 9
         */
        
function flow() {
          var 
funcs arguments,
              
length funcs.length;

          if (!
length) {
            return function() {};
          }
          if (!
arrayEvery(funcsisFunction)) {
            throw new 
TypeError(FUNC_ERROR_TEXT);
          }
          return function() {
            var 
index 0,
                
result funcs[index].apply(thisarguments);

            while (++
index length) {
              
result funcs[index].call(thisresult);
            }
            return 
result;
          };
        }

        
/**
         * This method is like `_.flow` except that it creates a function that
         * invokes the provided functions from right to left.
         *
         * @static
         * @memberOf _
         * @alias backflow, compose
         * @category Function
         * @param {...Function} [funcs] Functions to invoke.
         * @returns {Function} Returns the new function.
         * @example
         *
         * function add(x, y) {
         *   return x + y;
         * }
         *
         * function square(n) {
         *   return n * n;
         * }
         *
         * var addSquare = _.flowRight(square, add);
         * addSquare(1, 2);
         * // => 9
         */
        
function flowRight() {
          var 
funcs arguments,
              
fromIndex funcs.length 1;

          if (
fromIndex 0) {
            return function() {};
          }
          if (!
arrayEvery(funcsisFunction)) {
            throw new 
TypeError(FUNC_ERROR_TEXT);
          }
          return function() {
            var 
index fromIndex,
                
result funcs[index].apply(thisarguments);

            while (
index--) {
              
result funcs[index].call(thisresult);
            }
            return 
result;
          };
        }

        
/**
         * Creates a function that memoizes the result of `func`. If `resolver` is
         * provided it determines the cache key for storing the result based on the
         * arguments provided to the memoized function. By default, the first argument
         * provided to the memoized function is coerced to a string and used as the
         * cache key. The `func` is invoked with the `this` binding of the memoized
         * function.
         *
         * **Note:** The cache is exposed as the `cache` property on the memoized
         * function. Its creation may be customized by replacing the `_.memoize.Cache`
         * constructor with one whose instances implement the ES `Map` method interface
         * of `get`, `has`, and `set`. See the
         * [ES spec](https://people.mozilla.org/~jorendorff/es6-draft.html#sec-properties-of-the-map-prototype-object)
         * for more details.
         *
         * @static
         * @memberOf _
         * @category Function
         * @param {Function} func The function to have its output memoized.
         * @param {Function} [resolver] The function to resolve the cache key.
         * @returns {Function} Returns the new memoizing function.
         * @example
         *
         * var upperCase = _.memoize(function(string) {
         *   return string.toUpperCase();
         * });
         *
         * upperCase('fred');
         * // => 'FRED'
         *
         * // modifying the result cache
         * upperCase.cache.set('fred', 'BARNEY');
         * upperCase('fred');
         * // => 'BARNEY'
         *
         * // replacing `_.memoize.Cache`
         * var object = { 'user': 'fred' };
         * var other = { 'user': 'barney' };
         * var identity = _.memoize(_.identity);
         *
         * identity(object);
         * // => { 'user': 'fred' }
         * identity(other);
         * // => { 'user': 'fred' }
         *
         * _.memoize.Cache = WeakMap;
         * var identity = _.memoize(_.identity);
         *
         * identity(object);
         * // => { 'user': 'fred' }
         * identity(other);
         * // => { 'user': 'barney' }
         */
        
function memoize(funcresolver) {
          if (!
isFunction(func) || (resolver && !isFunction(resolver))) {
            throw new 
TypeError(FUNC_ERROR_TEXT);
          }
          var 
memoized = function() {
            var 
cache memoized.cache,
                
key resolver resolver.apply(thisarguments) : arguments[0];

            if (
cache.has(key)) {
              return 
cache.get(key);
            }
            var 
result func.apply(thisarguments);
            
cache.set(keyresult);
            return 
result;
          };
          
memoized.cache = new memoize.Cache;
          return 
memoized;
        }

        
/**
         * Creates a function that negates the result of the predicate `func`. The
         * `func` predicate is invoked with the `this` binding and arguments of the
         * created function.
         *
         * @static
         * @memberOf _
         * @category Function
         * @param {Function} predicate The predicate to negate.
         * @returns {Function} Returns the new function.
         * @example
         *
         * function isEven(n) {
         *   return n % 2 == 0;
         * }
         *
         * _.filter([1, 2, 3, 4, 5, 6], _.negate(isEven));
         * // => [1, 3, 5]
         */
        
function negate(predicate) {
          if (!
isFunction(predicate)) {
            throw new 
TypeError(FUNC_ERROR_TEXT);
          }
          return function() {
            return !
predicate.apply(thisarguments);
          };
        }

        
/**
         * Creates a function that is restricted to invoking `func` once. Repeat calls
         * to the function return the value of the first call. The `func` is invoked
         * with the `this` binding of the created function.
         *
         * @static
         * @memberOf _
         * @type Function
         * @category Function
         * @param {Function} func The function to restrict.
         * @returns {Function} Returns the new restricted function.
         * @example
         *
         * var initialize = _.once(createApplication);
         * initialize();
         * initialize();
         * // `initialize` invokes `createApplication` once
         */
        
function once(func) {
          return 
before(func2);
        }

        
/**
         * Creates a function that invokes `func` with `partial` arguments prepended
         * to those provided to the new function. This method is like `_.bind` except
         * it does **not** alter the `this` binding.
         *
         * The `_.partial.placeholder` value, which defaults to `_` in monolithic
         * builds, may be used as a placeholder for partially applied arguments.
         *
         * **Note:** This method does not set the `length` property of partially
         * applied functions.
         *
         * @static
         * @memberOf _
         * @category Function
         * @param {Function} func The function to partially apply arguments to.
         * @param {...*} [args] The arguments to be partially applied.
         * @returns {Function} Returns the new partially applied function.
         * @example
         *
         * var greet = function(greeting, name) {
         *   return greeting + ' ' + name;
         * };
         *
         * var sayHelloTo = _.partial(greet, 'hello');
         * sayHelloTo('fred');
         * // => 'hello fred'
         *
         * // using placeholders
         * var greetFred = _.partial(greet, _, 'fred');
         * greetFred('hi');
         * // => 'hi fred'
         */
        
function partial(func) {
          var 
partials baseSlice(arguments1),
              
holders replaceHolders(partialspartial.placeholder);

          return 
createWrapper(funcPARTIAL_FLAGnullpartialsholders);
        }

        
/**
         * This method is like `_.partial` except that partially applied arguments
         * are appended to those provided to the new function.
         *
         * The `_.partialRight.placeholder` value, which defaults to `_` in monolithic
         * builds, may be used as a placeholder for partially applied arguments.
         *
         * **Note:** This method does not set the `length` property of partially
         * applied functions.
         *
         * @static
         * @memberOf _
         * @category Function
         * @param {Function} func The function to partially apply arguments to.
         * @param {...*} [args] The arguments to be partially applied.
         * @returns {Function} Returns the new partially applied function.
         * @example
         *
         * var greet = function(greeting, name) {
         *   return greeting + ' ' + name;
         * };
         *
         * var greetFred = _.partialRight(greet, 'fred');
         * greetFred('hi');
         * // => 'hi fred'
         *
         * // using placeholders
         * var sayHelloTo = _.partialRight(greet, 'hello', _);
         * sayHelloTo('fred');
         * // => 'hello fred'
         */
        
function partialRight(func) {
          var 
partials baseSlice(arguments1),
              
holders replaceHolders(partialspartialRight.placeholder);

          return 
createWrapper(funcPARTIAL_RIGHT_FLAGnullpartialsholders);
        }

        
/**
         * Creates a function that invokes `func` with arguments arranged according
         * to the specified indexes where the argument value at the first index is
         * provided as the first argument, the argument value at the second index is
         * provided as the second argument, and so on.
         *
         * @static
         * @memberOf _
         * @category Function
         * @param {Function} func The function to rearrange arguments for.
         * @param {...(number|number[])} indexes The arranged argument indexes,
         *  specified as individual indexes or arrays of indexes.
         * @returns {Function} Returns the new function.
         * @example
         *
         * var rearged = _.rearg(function(a, b, c) {
         *   return [a, b, c];
         * }, 2, 0, 1);
         *
         * rearged('b', 'c', 'a')
         * // => ['a', 'b', 'c']
         *
         * var map = _.rearg(_.map, [1, 0]);
         * map(function(n) { return n * 3; }, [1, 2, 3]);
         * // => [3, 6, 9]
         */
        
function rearg(func) {
          var 
indexes baseFlatten(argumentsfalsefalse1);
          return 
createWrapper(funcREARG_FLAGnullnullnullindexes);
        }

        
/**
         * Creates a function that only invokes `func` at most once per every `wait`
         * milliseconds. The created function comes with a `cancel` method to cancel
         * delayed invocations. Provide an options object to indicate that `func`
         * should be invoked on the leading and/or trailing edge of the `wait` timeout.
         * Subsequent calls to the throttled function return the result of the last
         * `func` call.
         *
         * **Note:** If `leading` and `trailing` options are `true`, `func` is invoked
         * on the trailing edge of the timeout only if the the throttled function is
         * invoked more than once during the `wait` timeout.
         *
         * See [David Corbacho's article](http://drupalmotion.com/article/debounce-and-throttle-visual-explanation)
         * for details over the differences between `_.throttle` and `_.debounce`.
         *
         * @static
         * @memberOf _
         * @category Function
         * @param {Function} func The function to throttle.
         * @param {number} wait The number of milliseconds to throttle invocations to.
         * @param {Object} [options] The options object.
         * @param {boolean} [options.leading=true] Specify invoking on the leading
         *  edge of the timeout.
         * @param {boolean} [options.trailing=true] Specify invoking on the trailing
         *  edge of the timeout.
         * @returns {Function} Returns the new throttled function.
         * @example
         *
         * // avoid excessively updating the position while scrolling
         * jQuery(window).on('scroll', _.throttle(updatePosition, 100));
         *
         * // invoke `renewToken` when the click event is fired, but not more than once every 5 minutes
         * var throttled =  _.throttle(renewToken, 300000, { 'trailing': false })
         * jQuery('.interactive').on('click', throttled);
         *
         * // cancel a trailing throttled call
         * jQuery(window).on('popstate', throttled.cancel);
         */
        
function throttle(funcwaitoptions) {
          var 
leading true,
              
trailing true;

          if (!
isFunction(func)) {
            throw new 
TypeError(FUNC_ERROR_TEXT);
          }
          if (
options === false) {
            
leading false;
          } else if (
isObject(options)) {
            
leading 'leading' in options ? !!options.leading leading;
            
trailing 'trailing' in options ? !!options.trailing trailing;
          }
          
debounceOptions.leading leading;
          
debounceOptions.maxWait = +wait;
          
debounceOptions.trailing trailing;
          return 
debounce(funcwaitdebounceOptions);
        }

        
/**
         * Creates a function that provides `value` to the wrapper function as its
         * first argument. Any additional arguments provided to the function are
         * appended to those provided to the wrapper function. The wrapper is invoked
         * with the `this` binding of the created function.
         *
         * @static
         * @memberOf _
         * @category Function
         * @param {*} value The value to wrap.
         * @param {Function} wrapper The wrapper function.
         * @returns {Function} Returns the new function.
         * @example
         *
         * var p = _.wrap(_.escape, function(func, text) {
         *   return '<p>' + func(text) + '</p>';
         * });
         *
         * p('fred, barney, & pebbles');
         * // => '<p>fred, barney, &amp; pebbles</p>'
         */
        
function wrap(valuewrapper) {
          
wrapper wrapper == null identity wrapper;
          return 
createWrapper(wrapperPARTIAL_FLAGnull, [value], []);
        }

        
/*------------------------------------------------------------------------*/

        /**
         * Creates a clone of `value`. If `isDeep` is `true` nested objects are cloned,
         * otherwise they are assigned by reference. If `customizer` is provided it is
         * invoked to produce the cloned values. If `customizer` returns `undefined`
         * cloning is handled by the method instead. The `customizer` is bound to
         * `thisArg` and invoked with two argument; (value [, index|key, object]).
         *
         * **Note:** This method is loosely based on the structured clone algorithm.
         * The enumerable properties of `arguments` objects and objects created by
         * constructors other than `Object` are cloned to plain `Object` objects. An
         * empty object is returned for uncloneable values such as functions, DOM nodes,
         * Maps, Sets, and WeakMaps. See the [HTML5 specification](http://www.w3.org/TR/html5/infrastructure.html#internal-structured-cloning-algorithm)
         * for more details.
         *
         * @static
         * @memberOf _
         * @category Lang
         * @param {*} value The value to clone.
         * @param {boolean} [isDeep] Specify a deep clone.
         * @param {Function} [customizer] The function to customize cloning values.
         * @param {*} [thisArg] The `this` binding of `customizer`.
         * @returns {*} Returns the cloned value.
         * @example
         *
         * var users = [
         *   { 'user': 'barney' },
         *   { 'user': 'fred' }
         * ];
         *
         * var shallow = _.clone(users);
         * shallow[0] === users[0];
         * // => true
         *
         * var deep = _.clone(users, true);
         * deep[0] === users[0];
         * // => false
         *
         * // using a customizer callback
         * var body = _.clone(document.body, function(value) {
         *   return _.isElement(value) ? value.cloneNode(false) : undefined;
         * });
         *
         * body === document.body
         * // => false
         * body.nodeName
         * // => BODY
         * body.childNodes.length;
         * // => 0
         */
        
function clone(valueisDeepcustomizerthisArg) {
          
// Juggle arguments.
          
if (typeof isDeep != 'boolean' && isDeep != null) {
            
thisArg customizer;
            
customizer isIterateeCall(valueisDeepthisArg) ? null isDeep;
            
isDeep false;
          }
          
customizer typeof customizer == 'function' && bindCallback(customizerthisArg1);
          return 
baseClone(valueisDeepcustomizer);
        }

        
/**
         * Creates a deep clone of `value`. If `customizer` is provided it is invoked
         * to produce the cloned values. If `customizer` returns `undefined` cloning
         * is handled by the method instead. The `customizer` is bound to `thisArg`
         * and invoked with two argument; (value [, index|key, object]).
         *
         * **Note:** This method is loosely based on the structured clone algorithm.
         * The enumerable properties of `arguments` objects and objects created by
         * constructors other than `Object` are cloned to plain `Object` objects. An
         * empty object is returned for uncloneable values such as functions, DOM nodes,
         * Maps, Sets, and WeakMaps. See the [HTML5 specification](http://www.w3.org/TR/html5/infrastructure.html#internal-structured-cloning-algorithm)
         * for more details.
         *
         * @static
         * @memberOf _
         * @category Lang
         * @param {*} value The value to deep clone.
         * @param {Function} [customizer] The function to customize cloning values.
         * @param {*} [thisArg] The `this` binding of `customizer`.
         * @returns {*} Returns the deep cloned value.
         * @example
         *
         * var users = [
         *   { 'user': 'barney' },
         *   { 'user': 'fred' }
         * ];
         *
         * var deep = _.cloneDeep(users);
         * deep[0] === users[0];
         * // => false
         *
         * // using a customizer callback
         * var el = _.cloneDeep(document.body, function(value) {
         *   return _.isElement(value) ? value.cloneNode(true) : undefined;
         * });
         *
         * body === document.body
         * // => false
         * body.nodeName
         * // => BODY
         * body.childNodes.length;
         * // => 20
         */
        
function cloneDeep(valuecustomizerthisArg) {
          
customizer typeof customizer == 'function' && bindCallback(customizerthisArg1);
          return 
baseClone(valuetruecustomizer);
        }

        
/**
         * Checks if `value` is classified as an `arguments` object.
         *
         * @static
         * @memberOf _
         * @category Lang
         * @param {*} value The value to check.
         * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`.
         * @example
         *
         * (function() { return _.isArguments(arguments); })();
         * // => true
         *
         * _.isArguments([1, 2, 3]);
         * // => false
         */
        
function isArguments(value) {
          var 
length isObjectLike(value) ? value.length undefined;
          return (
isLength(length) && objToString.call(value) == argsTag) || false;
        }

        
/**
         * Checks if `value` is classified as an `Array` object.
         *
         * @static
         * @memberOf _
         * @category Lang
         * @param {*} value The value to check.
         * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`.
         * @example
         *
         * _.isArray([1, 2, 3]);
         * // => true
         *
         * (function() { return _.isArray(arguments); })();
         * // => false
         */
        
var isArray nativeIsArray || function(value) {
          return (
isObjectLike(value) && isLength(value.length) && objToString.call(value) == arrayTag) || false;
        };

        
/**
         * Checks if `value` is classified as a boolean primitive or object.
         *
         * @static
         * @memberOf _
         * @category Lang
         * @param {*} value The value to check.
         * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`.
         * @example
         *
         * _.isBoolean(false);
         * // => true
         *
         * _.isBoolean(null);
         * // => false
         */
        
function isBoolean(value) {
          return (
value === true || value === false || isObjectLike(value) && objToString.call(value) == boolTag) || false;
        }

        
/**
         * Checks if `value` is classified as a `Date` object.
         *
         * @static
         * @memberOf _
         * @category Lang
         * @param {*} value The value to check.
         * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`.
         * @example
         *
         * _.isDate(new Date);
         * // => true
         *
         * _.isDate('Mon April 23 2012');
         * // => false
         */
        
function isDate(value) {
          return (
isObjectLike(value) && objToString.call(value) == dateTag) || false;
        }

        
/**
         * Checks if `value` is a DOM element.
         *
         * @static
         * @memberOf _
         * @category Lang
         * @param {*} value The value to check.
         * @returns {boolean} Returns `true` if `value` is a DOM element, else `false`.
         * @example
         *
         * _.isElement(document.body);
         * // => true
         *
         * _.isElement('<body>');
         * // => false
         */
        
function isElement(value) {
          return (
value && value.nodeType === && isObjectLike(value) &&
            
objToString.call(value).indexOf('Element') > -1) || false;
        }
        
// Fallback for environments without DOM support.
        
if (!support.dom) {
          
isElement = function(value) {
            return (
value && value.nodeType === && isObjectLike(value) && !isPlainObject(value)) || false;
          };
        }

        
/**
         * Checks if a value is empty. A value is considered empty unless it is an
         * `arguments` object, array, string, or jQuery-like collection with a length
         * greater than `0` or an object with own enumerable properties.
         *
         * @static
         * @memberOf _
         * @category Lang
         * @param {Array|Object|string} value The value to inspect.
         * @returns {boolean} Returns `true` if `value` is empty, else `false`.
         * @example
         *
         * _.isEmpty(null);
         * // => true
         *
         * _.isEmpty(true);
         * // => true
         *
         * _.isEmpty(1);
         * // => true
         *
         * _.isEmpty([1, 2, 3]);
         * // => false
         *
         * _.isEmpty({ 'a': 1 });
         * // => false
         */
        
function isEmpty(value) {
          if (
value == null) {
            return 
true;
          }
          var 
length value.length;
          if (
isLength(length) && (isArray(value) || isString(value) || isArguments(value) ||
              (
isObjectLike(value) && isFunction(value.splice)))) {
            return !
length;
          }
          return !
keys(value).length;
        }

        
/**
         * Performs a deep comparison between two values to determine if they are
         * equivalent. If `customizer` is provided it is invoked to compare values.
         * If `customizer` returns `undefined` comparisons are handled by the method
         * instead. The `customizer` is bound to `thisArg` and invoked with three
         * arguments; (value, other [, index|key]).
         *
         * **Note:** This method supports comparing arrays, booleans, `Date` objects,
         * numbers, `Object` objects, regexes, and strings. Functions and DOM nodes
         * are **not** supported. Provide a customizer function to extend support
         * for comparing other values.
         *
         * @static
         * @memberOf _
         * @category Lang
         * @param {*} value The value to compare.
         * @param {*} other The other value to compare.
         * @param {Function} [customizer] The function to customize comparing values.
         * @param {*} [thisArg] The `this` binding of `customizer`.
         * @returns {boolean} Returns `true` if the values are equivalent, else `false`.
         * @example
         *
         * var object = { 'user': 'fred' };
         * var other = { 'user': 'fred' };
         *
         * object == other;
         * // => false
         *
         * _.isEqual(object, other);
         * // => true
         *
         * // using a customizer callback
         * var array = ['hello', 'goodbye'];
         * var other = ['hi', 'goodbye'];
         *
         * _.isEqual(array, other, function(value, other) {
         *   return _.every([value, other], RegExp.prototype.test, /^h(?:i|ello)$/) || undefined;
         * });
         * // => true
         */
        
function isEqual(valueothercustomizerthisArg) {
          
customizer typeof customizer == 'function' && bindCallback(customizerthisArg3);
          if (!
customizer && isStrictComparable(value) && isStrictComparable(other)) {
            return 
value === other;
          }
          var 
result customizer customizer(valueother) : undefined;
          return 
typeof result == 'undefined' baseIsEqual(valueothercustomizer) : !!result;
        }

        
/**
         * Checks if `value` is an `Error`, `EvalError`, `RangeError`, `ReferenceError`,
         * `SyntaxError`, `TypeError`, or `URIError` object.
         *
         * @static
         * @memberOf _
         * @category Lang
         * @param {*} value The value to check.
         * @returns {boolean} Returns `true` if `value` is an error object, else `false`.
         * @example
         *
         * _.isError(new Error);
         * // => true
         *
         * _.isError(Error);
         * // => false
         */
        
function isError(value) {
          return (
isObjectLike(value) && typeof value.message == 'string' && objToString.call(value) == errorTag) || false;
        }

        
/**
         * Checks if `value` is a finite primitive number.
         *
         * **Note:** This method is based on ES `Number.isFinite`. See the
         * [ES spec](https://people.mozilla.org/~jorendorff/es6-draft.html#sec-number.isfinite)
         * for more details.
         *
         * @static
         * @memberOf _
         * @category Lang
         * @param {*} value The value to check.
         * @returns {boolean} Returns `true` if `value` is a finite number, else `false`.
         * @example
         *
         * _.isFinite(10);
         * // => true
         *
         * _.isFinite('10');
         * // => false
         *
         * _.isFinite(true);
         * // => false
         *
         * _.isFinite(Object(10));
         * // => false
         *
         * _.isFinite(Infinity);
         * // => false
         */
        
var isFinite nativeNumIsFinite || function(value) {
          return 
typeof value == 'number' && nativeIsFinite(value);
        };

        
/**
         * Checks if `value` is classified as a `Function` object.
         *
         * @static
         * @memberOf _
         * @category Lang
         * @param {*} value The value to check.
         * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`.
         * @example
         *
         * _.isFunction(_);
         * // => true
         *
         * _.isFunction(/abc/);
         * // => false
         */
        
function isFunction(value) {
          
// Avoid a Chakra JIT bug in compatibility modes of IE 11.
          // See https://github.com/jashkenas/underscore/issues/1621 for more details.
          
return typeof value == 'function' || false;
        }
        
// Fallback for environments that return incorrect `typeof` operator results.
        
if (isFunction(/x/) || (Uint8Array && !isFunction(Uint8Array))) {
          
isFunction = function(value) {
            
// The use of `Object#toString` avoids issues with the `typeof` operator
            // in older versions of Chrome and Safari which return 'function' for regexes
            // and Safari 8 equivalents which return 'object' for typed array constructors.
            
return objToString.call(value) == funcTag;
          };
        }

        
/**
         * Checks if `value` is the language type of `Object`.
         * (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`)
         *
         * **Note:** See the [ES5 spec](https://es5.github.io/#x8) for more details.
         *
         * @static
         * @memberOf _
         * @category Lang
         * @param {*} value The value to check.
         * @returns {boolean} Returns `true` if `value` is an object, else `false`.
         * @example
         *
         * _.isObject({});
         * // => true
         *
         * _.isObject([1, 2, 3]);
         * // => true
         *
         * _.isObject(1);
         * // => false
         */
        
function isObject(value) {
          
// Avoid a V8 JIT bug in Chrome 19-20.
          // See https://code.google.com/p/v8/issues/detail?id=2291 for more details.
          
var type typeof value;
          return 
type == 'function' || (value && type == 'object') || false;
        }

        
/**
         * Performs a deep comparison between `object` and `source` to determine if
         * `object` contains equivalent property values. If `customizer` is provided
         * it is invoked to compare values. If `customizer` returns `undefined`
         * comparisons are handled by the method instead. The `customizer` is bound
         * to `thisArg` and invoked with three arguments; (value, other, index|key).
         *
         * **Note:** This method supports comparing properties of arrays, booleans,
         * `Date` objects, numbers, `Object` objects, regexes, and strings. Functions
         * and DOM nodes are **not** supported. Provide a customizer function to extend
         * support for comparing other values.
         *
         * @static
         * @memberOf _
         * @category Lang
         * @param {Object} source The object to inspect.
         * @param {Object} source The object of property values to match.
         * @param {Function} [customizer] The function to customize comparing values.
         * @param {*} [thisArg] The `this` binding of `customizer`.
         * @returns {boolean} Returns `true` if `object` is a match, else `false`.
         * @example
         *
         * var object = { 'user': 'fred', 'age': 40 };
         *
         * _.isMatch(object, { 'age': 40 });
         * // => true
         *
         * _.isMatch(object, { 'age': 36 });
         * // => false
         *
         * // using a customizer callback
         * var object = { 'greeting': 'hello' };
         * var source = { 'greeting': 'hi' };
         *
         * _.isMatch(object, source, function(value, other) {
         *   return _.every([value, other], RegExp.prototype.test, /^h(?:i|ello)$/) || undefined;
         * });
         * // => true
         */
        
function isMatch(objectsourcecustomizerthisArg) {
          var 
props keys(source),
              
length props.length;

          
customizer typeof customizer == 'function' && bindCallback(customizerthisArg3);
          if (!
customizer && length == 1) {
            var 
key props[0],
                
value source[key];

            if (
isStrictComparable(value)) {
              return 
object != null && value === object[key] && hasOwnProperty.call(objectkey);
            }
          }
          var 
values = Array(length),
              
strictCompareFlags = Array(length);

          while (
length--) {
            
value values[length] = source[props[length]];
            
strictCompareFlags[length] = isStrictComparable(value);
          }
          return 
baseIsMatch(objectpropsvaluesstrictCompareFlagscustomizer);
        }

        
/**
         * Checks if `value` is `NaN`.
         *
         * **Note:** This method is not the same as native `isNaN` which returns `true`
         * for `undefined` and other non-numeric values. See the [ES5 spec](https://es5.github.io/#x15.1.2.4)
         * for more details.
         *
         * @static
         * @memberOf _
         * @category Lang
         * @param {*} value The value to check.
         * @returns {boolean} Returns `true` if `value` is `NaN`, else `false`.
         * @example
         *
         * _.isNaN(NaN);
         * // => true
         *
         * _.isNaN(new Number(NaN));
         * // => true
         *
         * isNaN(undefined);
         * // => true
         *
         * _.isNaN(undefined);
         * // => false
         */
        
function isNaN(value) {
          
// An `NaN` primitive is the only value that is not equal to itself.
          // Perform the `toStringTag` check first to avoid errors with some host objects in IE.
          
return isNumber(value) && value != +value;
        }

        
/**
         * Checks if `value` is a native function.
         *
         * @static
         * @memberOf _
         * @category Lang
         * @param {*} value The value to check.
         * @returns {boolean} Returns `true` if `value` is a native function, else `false`.
         * @example
         *
         * _.isNative(Array.prototype.push);
         * // => true
         *
         * _.isNative(_);
         * // => false
         */
        
function isNative(value) {
          if (
value == null) {
            return 
false;
          }
          if (
objToString.call(value) == funcTag) {
            return 
reNative.test(fnToString.call(value));
          }
          return (
isObjectLike(value) && reHostCtor.test(value)) || false;
        }

        
/**
         * Checks if `value` is `null`.
         *
         * @static
         * @memberOf _
         * @category Lang
         * @param {*} value The value to check.
         * @returns {boolean} Returns `true` if `value` is `null`, else `false`.
         * @example
         *
         * _.isNull(null);
         * // => true
         *
         * _.isNull(void 0);
         * // => false
         */
        
function isNull(value) {
          return 
value === null;
        }

        
/**
         * Checks if `value` is classified as a `Number` primitive or object.
         *
         * **Note:** To exclude `Infinity`, `-Infinity`, and `NaN`, which are classified
         * as numbers, use the `_.isFinite` method.
         *
         * @static
         * @memberOf _
         * @category Lang
         * @param {*} value The value to check.
         * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`.
         * @example
         *
         * _.isNumber(8.4);
         * // => true
         *
         * _.isNumber(NaN);
         * // => true
         *
         * _.isNumber('8.4');
         * // => false
         */
        
function isNumber(value) {
          return 
typeof value == 'number' || (isObjectLike(value) && objToString.call(value) == numberTag) || false;
        }

        
/**
         * Checks if `value` is a plain object, that is, an object created by the
         * `Object` constructor or one with a `[[Prototype]]` of `null`.
         *
         * **Note:** This method assumes objects created by the `Object` constructor
         * have no inherited enumerable properties.
         *
         * @static
         * @memberOf _
         * @category Lang
         * @param {*} value The value to check.
         * @returns {boolean} Returns `true` if `value` is a plain object, else `false`.
         * @example
         *
         * function Foo() {
         *   this.a = 1;
         * }
         *
         * _.isPlainObject(new Foo);
         * // => false
         *
         * _.isPlainObject([1, 2, 3]);
         * // => false
         *
         * _.isPlainObject({ 'x': 0, 'y': 0 });
         * // => true
         *
         * _.isPlainObject(Object.create(null));
         * // => true
         */
        
var isPlainObject = !getPrototypeOf shimIsPlainObject : function(value) {
          if (!(
value && objToString.call(value) == objectTag)) {
            return 
false;
          }
          var 
valueOf value.valueOf,
              
objProto isNative(valueOf) && (objProto getPrototypeOf(valueOf)) && getPrototypeOf(objProto);

          return 
objProto
            
? (value == objProto || getPrototypeOf(value) == objProto)
            : 
shimIsPlainObject(value);
        };

        
/**
         * Checks if `value` is classified as a `RegExp` object.
         *
         * @static
         * @memberOf _
         * @category Lang
         * @param {*} value The value to check.
         * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`.
         * @example
         *
         * _.isRegExp(/abc/);
         * // => true
         *
         * _.isRegExp('/abc/');
         * // => false
         */
        
function isRegExp(value) {
          return (
isObjectLike(value) && objToString.call(value) == regexpTag) || false;
        }

        
/**
         * Checks if `value` is classified as a `String` primitive or object.
         *
         * @static
         * @memberOf _
         * @category Lang
         * @param {*} value The value to check.
         * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`.
         * @example
         *
         * _.isString('abc');
         * // => true
         *
         * _.isString(1);
         * // => false
         */
        
function isString(value) {
          return 
typeof value == 'string' || (isObjectLike(value) && objToString.call(value) == stringTag) || false;
        }

        
/**
         * Checks if `value` is classified as a typed array.
         *
         * @static
         * @memberOf _
         * @category Lang
         * @param {*} value The value to check.
         * @returns {boolean} Returns `true` if `value` is correctly classified, else `false`.
         * @example
         *
         * _.isTypedArray(new Uint8Array);
         * // => true
         *
         * _.isTypedArray([]);
         * // => false
         */
        
function isTypedArray(value) {
          return (
isObjectLike(value) && isLength(value.length) && typedArrayTags[objToString.call(value)]) || false;
        }

        
/**
         * Checks if `value` is `undefined`.
         *
         * @static
         * @memberOf _
         * @category Lang
         * @param {*} value The value to check.
         * @returns {boolean} Returns `true` if `value` is `undefined`, else `false`.
         * @example
         *
         * _.isUndefined(void 0);
         * // => true
         *
         * _.isUndefined(null);
         * // => false
         */
        
function isUndefined(value) {
          return 
typeof value == 'undefined';
        }

        
/**
         * Converts `value` to an array.
         *
         * @static
         * @memberOf _
         * @category Lang
         * @param {*} value The value to convert.
         * @returns {Array} Returns the converted array.
         * @example
         *
         * (function() { return _.toArray(arguments).slice(1); })(1, 2, 3);
         * // => [2, 3]
         */
        
function toArray(value) {
          var 
length value value.length 0;
          if (!
isLength(length)) {
            return 
values(value);
          }
          if (!
length) {
            return [];
          }
          return 
arrayCopy(value);
        }

        
/**
         * Converts `value` to a plain object flattening inherited enumerable
         * properties of `value` to own properties of the plain object.
         *
         * @static
         * @memberOf _
         * @category Lang
         * @param {*} value The value to convert.
         * @returns {Object} Returns the converted plain object.
         * @example
         *
         * function Foo() {
         *   this.b = 2;
         * }
         *
         * Foo.prototype.c = 3;
         *
         * _.assign({ 'a': 1 }, new Foo);
         * // => { 'a': 1, 'b': 2 }
         *
         * _.assign({ 'a': 1 }, _.toPlainObject(new Foo));
         * // => { 'a': 1, 'b': 2, 'c': 3 }
         */
        
function toPlainObject(value) {
          return 
baseCopy(valuekeysIn(value));
        }

        
/*------------------------------------------------------------------------*/

        /**
         * Assigns own enumerable properties of source object(s) to the destination
         * object. Subsequent sources overwrite property assignments of previous sources.
         * If `customizer` is provided it is invoked to produce the assigned values.
         * The `customizer` is bound to `thisArg` and invoked with five arguments;
         * (objectValue, sourceValue, key, object, source).
         *
         * @static
         * @memberOf _
         * @alias extend
         * @category Object
         * @param {Object} object The destination object.
         * @param {...Object} [sources] The source objects.
         * @param {Function} [customizer] The function to customize assigning values.
         * @param {*} [thisArg] The `this` binding of `customizer`.
         * @returns {Object} Returns `object`.
         * @example
         *
         * _.assign({ 'user': 'barney' }, { 'age': 40 }, { 'user': 'fred' });
         * // => { 'user': 'fred', 'age': 40 }
         *
         * // using a customizer callback
         * var defaults = _.partialRight(_.assign, function(value, other) {
         *   return typeof value == 'undefined' ? other : value;
         * });
         *
         * defaults({ 'user': 'barney' }, { 'age': 36 }, { 'user': 'fred' });
         * // => { 'user': 'barney', 'age': 36 }
         */
        
var assign createAssigner(baseAssign);

        
/**
         * Creates an object that inherits from the given `prototype` object. If a
         * `properties` object is provided its own enumerable properties are assigned
         * to the created object.
         *
         * @static
         * @memberOf _
         * @category Object
         * @param {Object} prototype The object to inherit from.
         * @param {Object} [properties] The properties to assign to the object.
         * @param- {Object} [guard] Enables use as a callback for functions like `_.map`.
         * @returns {Object} Returns the new object.
         * @example
         *
         * function Shape() {
         *   this.x = 0;
         *   this.y = 0;
         * }
         *
         * function Circle() {
         *   Shape.call(this);
         * }
         *
         * Circle.prototype = _.create(Shape.prototype, { 'constructor': Circle });
         *
         * var circle = new Circle;
         * circle instanceof Circle;
         * // => true
         *
         * circle instanceof Shape;
         * // => true
         */
        
function create(prototypepropertiesguard) {
          var 
result baseCreate(prototype);
          if (
guard && isIterateeCall(prototypepropertiesguard)) {
            
properties null;
          }
          return 
properties baseCopy(propertiesresultkeys(properties)) : result;
        }

        
/**
         * Assigns own enumerable properties of source object(s) to the destination
         * object for all destination properties that resolve to `undefined`. Once a
         * property is set, additional defaults of the same property are ignored.
         *
         * @static
         * @memberOf _
         * @category Object
         * @param {Object} object The destination object.
         * @param {...Object} [sources] The source objects.
         * @returns {Object} Returns `object`.
         * @example
         *
         * _.defaults({ 'user': 'barney' }, { 'age': 36 }, { 'user': 'fred' });
         * // => { 'user': 'barney', 'age': 36 }
         */
        
function defaults(object) {
          if (
object == null) {
            return 
object;
          }
          var 
args arrayCopy(arguments);
          
args.push(assignDefaults);
          return 
assign.apply(undefinedargs);
        }

        
/**
         * This method is like `_.findIndex` except that it returns the key of the
         * first element `predicate` returns truthy for, instead of the element itself.
         *
         * If a property name is provided for `predicate` the created "_.property"
         * style callback returns the property value of the given element.
         *
         * If an object is provided for `predicate` the created "_.matches" style
         * callback returns `true` for elements that have the properties of the given
         * object, else `false`.
         *
         * @static
         * @memberOf _
         * @category Object
         * @param {Object} object The object to search.
         * @param {Function|Object|string} [predicate=_.identity] The function invoked
         *  per iteration. If a property name or object is provided it is used to
         *  create a "_.property" or "_.matches" style callback respectively.
         * @param {*} [thisArg] The `this` binding of `predicate`.
         * @returns {string|undefined} Returns the key of the matched element, else `undefined`.
         * @example
         *
         * var users = {
         *   'barney':  { 'age': 36, 'active': true },
         *   'fred':    { 'age': 40, 'active': false },
         *   'pebbles': { 'age': 1,  'active': true }
         * };
         *
         * _.findKey(users, function(chr) { return chr.age < 40; });
         * // => 'barney' (iteration order is not guaranteed)
         *
         * // using the "_.matches" callback shorthand
         * _.findKey(users, { 'age': 1 });
         * // => 'pebbles'
         *
         * // using the "_.property" callback shorthand
         * _.findKey(users, 'active');
         * // => 'barney'
         */
        
function findKey(objectpredicatethisArg) {
          
predicate getCallback(predicatethisArg3);
          return 
baseFind(objectpredicatebaseForOwntrue);
        }

        
/**
         * This method is like `_.findKey` except that it iterates over elements of
         * a collection in the opposite order.
         *
         * If a property name is provided for `predicate` the created "_.property"
         * style callback returns the property value of the given element.
         *
         * If an object is provided for `predicate` the created "_.matches" style
         * callback returns `true` for elements that have the properties of the given
         * object, else `false`.
         *
         * @static
         * @memberOf _
         * @category Object
         * @param {Object} object The object to search.
         * @param {Function|Object|string} [predicate=_.identity] The function invoked
         *  per iteration. If a property name or object is provided it is used to
         *  create a "_.property" or "_.matches" style callback respectively.
         * @param {*} [thisArg] The `this` binding of `predicate`.
         * @returns {string|undefined} Returns the key of the matched element, else `undefined`.
         * @example
         *
         * var users = {
         *   'barney':  { 'age': 36, 'active': true },
         *   'fred':    { 'age': 40, 'active': false },
         *   'pebbles': { 'age': 1,  'active': true }
         * };
         *
         * _.findLastKey(users, function(chr) { return chr.age < 40; });
         * // => returns `pebbles` assuming `_.findKey` returns `barney`
         *
         * // using the "_.matches" callback shorthand
         * _.findLastKey(users, { 'age': 36 });
         * // => 'barney'
         *
         * // using the "_.property" callback shorthand
         * _.findLastKey(users, 'active');
         * // => 'pebbles'
         */
        
function findLastKey(objectpredicatethisArg) {
          
predicate getCallback(predicatethisArg3);
          return 
baseFind(objectpredicatebaseForOwnRighttrue);
        }

        
/**
         * Iterates over own and inherited enumerable properties of an object invoking
         * `iteratee` for each property. The `iteratee` is bound to `thisArg` and invoked
         * with three arguments; (value, key, object). Iterator functions may exit
         * iteration early by explicitly returning `false`.
         *
         * @static
         * @memberOf _
         * @category Object
         * @param {Object} object The object to iterate over.
         * @param {Function} [iteratee=_.identity] The function invoked per iteration.
         * @param {*} [thisArg] The `this` binding of `iteratee`.
         * @returns {Object} Returns `object`.
         * @example
         *
         * function Foo() {
         *   this.a = 1;
         *   this.b = 2;
         * }
         *
         * Foo.prototype.c = 3;
         *
         * _.forIn(new Foo, function(value, key) {
         *   console.log(key);
         * });
         * // => logs 'a', 'b', and 'c' (iteration order is not guaranteed)
         */
        
function forIn(objectiterateethisArg) {
          if (
typeof iteratee != 'function' || typeof thisArg != 'undefined') {
            
iteratee bindCallback(iterateethisArg3);
          }
          return 
baseFor(objectiterateekeysIn);
        }

        
/**
         * This method is like `_.forIn` except that it iterates over properties of
         * `object` in the opposite order.
         *
         * @static
         * @memberOf _
         * @category Object
         * @param {Object} object The object to iterate over.
         * @param {Function} [iteratee=_.identity] The function invoked per iteration.
         * @param {*} [thisArg] The `this` binding of `iteratee`.
         * @returns {Object} Returns `object`.
         * @example
         *
         * function Foo() {
         *   this.a = 1;
         *   this.b = 2;
         * }
         *
         * Foo.prototype.c = 3;
         *
         * _.forInRight(new Foo, function(value, key) {
         *   console.log(key);
         * });
         * // => logs 'c', 'b', and 'a' assuming `_.forIn ` logs 'a', 'b', and 'c'
         */
        
function forInRight(objectiterateethisArg) {
          
iteratee bindCallback(iterateethisArg3);
          return 
baseForRight(objectiterateekeysIn);
        }

        
/**
         * Iterates over own enumerable properties of an object invoking `iteratee`
         * for each property. The `iteratee` is bound to `thisArg` and invoked with
         * three arguments; (value, key, object). Iterator functions may exit iteration
         * early by explicitly returning `false`.
         *
         * @static
         * @memberOf _
         * @category Object
         * @param {Object} object The object to iterate over.
         * @param {Function} [iteratee=_.identity] The function invoked per iteration.
         * @param {*} [thisArg] The `this` binding of `iteratee`.
         * @returns {Object} Returns `object`.
         * @example
         *
         * _.forOwn({ '0': 'zero', '1': 'one', 'length': 2 }, function(n, key) {
         *   console.log(key);
         * });
         * // => logs '0', '1', and 'length' (iteration order is not guaranteed)
         */
        
function forOwn(objectiterateethisArg) {
          if (
typeof iteratee != 'function' || typeof thisArg != 'undefined') {
            
iteratee bindCallback(iterateethisArg3);
          }
          return 
baseForOwn(objectiteratee);
        }

        
/**
         * This method is like `_.forOwn` except that it iterates over properties of
         * `object` in the opposite order.
         *
         * @static
         * @memberOf _
         * @category Object
         * @param {Object} object The object to iterate over.
         * @param {Function} [iteratee=_.identity] The function invoked per iteration.
         * @param {*} [thisArg] The `this` binding of `iteratee`.
         * @returns {Object} Returns `object`.
         * @example
         *
         * _.forOwnRight({ '0': 'zero', '1': 'one', 'length': 2 }, function(n, key) {
         *   console.log(key);
         * });
         * // => logs 'length', '1', and '0' assuming `_.forOwn` logs '0', '1', and 'length'
         */
        
function forOwnRight(objectiterateethisArg) {
          
iteratee bindCallback(iterateethisArg3);
          return 
baseForRight(objectiterateekeys);
        }

        
/**
         * Creates an array of function property names from all enumerable properties,
         * own and inherited, of `object`.
         *
         * @static
         * @memberOf _
         * @alias methods
         * @category Object
         * @param {Object} object The object to inspect.
         * @returns {Array} Returns the new array of property names.
         * @example
         *
         * _.functions(_);
         * // => ['all', 'any', 'bind', ...]
         */
        
function functions(object) {
          return 
baseFunctions(objectkeysIn(object));
        }

        
/**
         * Checks if `key` exists as a direct property of `object` instead of an
         * inherited property.
         *
         * @static
         * @memberOf _
         * @category Object
         * @param {Object} object The object to inspect.
         * @param {string} key The key to check.
         * @returns {boolean} Returns `true` if `key` is a direct property, else `false`.
         * @example
         *
         * _.has({ 'a': 1, 'b': 2, 'c': 3 }, 'b');
         * // => true
         */
        
function has(objectkey) {
          return 
object hasOwnProperty.call(objectkey) : false;
        }

        
/**
         * Creates an object composed of the inverted keys and values of `object`.
         * If `object` contains duplicate values, subsequent values overwrite property
         * assignments of previous values unless `multiValue` is `true`.
         *
         * @static
         * @memberOf _
         * @category Object
         * @param {Object} object The object to invert.
         * @param {boolean} [multiValue] Allow multiple values per key.
         * @param- {Object} [guard] Enables use as a callback for functions like `_.map`.
         * @returns {Object} Returns the new inverted object.
         * @example
         *
         * _.invert({ 'first': 'fred', 'second': 'barney' });
         * // => { 'fred': 'first', 'barney': 'second' }
         *
         * // without `multiValue`
         * _.invert({ 'first': 'fred', 'second': 'barney', 'third': 'fred' });
         * // => { 'fred': 'third', 'barney': 'second' }
         *
         * // with `multiValue`
         * _.invert({ 'first': 'fred', 'second': 'barney', 'third': 'fred' }, true);
         * // => { 'fred': ['first', 'third'], 'barney': ['second'] }
         */
        
function invert(objectmultiValueguard) {
          if (
guard && isIterateeCall(objectmultiValueguard)) {
            
multiValue null;
          }
          var 
index = -1,
              
props keys(object),
              
length props.length,
              
result = {};

          while (++
index length) {
            var 
key props[index],
                
value object[key];

            if (
multiValue) {
              if (
hasOwnProperty.call(resultvalue)) {
                
result[value].push(key);
              } else {
                
result[value] = [key];
              }
            }
            else {
              
result[value] = key;
            }
          }
          return 
result;
        }

        
/**
         * Creates an array of the own enumerable property names of `object`.
         *
         * **Note:** Non-object values are coerced to objects. See the
         * [ES spec](https://people.mozilla.org/~jorendorff/es6-draft.html#sec-object.keys)
         * for more details.
         *
         * @static
         * @memberOf _
         * @category Object
         * @param {Object} object The object to inspect.
         * @returns {Array} Returns the array of property names.
         * @example
         *
         * function Foo() {
         *   this.a = 1;
         *   this.b = 2;
         * }
         *
         * Foo.prototype.c = 3;
         *
         * _.keys(new Foo);
         * // => ['a', 'b'] (iteration order is not guaranteed)
         *
         * _.keys('hi');
         * // => ['0', '1']
         */
        
var keys = !nativeKeys shimKeys : function(object) {
          if (object) {
            var 
Ctor object.constructor,
                
length object.length;
          }
          if ((
typeof Ctor == 'function' && Ctor.prototype === object) ||
             (
typeof object != 'function' && (length && isLength(length)))) {
            return 
shimKeys(object);
          }
          return 
isObject(object) ? nativeKeys(object) : [];
        };

        
/**
         * Creates an array of the own and inherited enumerable property names of `object`.
         *
         * **Note:** Non-object values are coerced to objects.
         *
         * @static
         * @memberOf _
         * @category Object
         * @param {Object} object The object to inspect.
         * @returns {Array} Returns the array of property names.
         * @example
         *
         * function Foo() {
         *   this.a = 1;
         *   this.b = 2;
         * }
         *
         * Foo.prototype.c = 3;
         *
         * _.keysIn(new Foo);
         * // => ['a', 'b', 'c'] (iteration order is not guaranteed)
         */
        
function keysIn(object) {
          if (
object == null) {
            return [];
          }
          if (!
isObject(object)) {
            
object Object(object);
          }
          var 
length object.length;
          
length = (length && isLength(length) &&
            (
isArray(object) || (support.nonEnumArgs && isArguments(object))) && length) || 0;

          var 
Ctor object.constructor,
              
index = -1,
              
isProto typeof Ctor == 'function' && Ctor.prototype == object,
              
result = Array(length),
              
skipIndexes length 0;

          while (++
index length) {
            
result[index] = (index '');
          }
          for (var 
key in object) {
            if (!(
skipIndexes && isIndex(keylength)) &&
                !(
key == 'constructor' && (isProto || !hasOwnProperty.call(objectkey)))) {
              
result.push(key);
            }
          }
          return 
result;
        }

        
/**
         * Creates an object with the same keys as `object` and values generated by
         * running each own enumerable property of `object` through `iteratee`. The
         * iteratee function is bound to `thisArg` and invoked with three arguments;
         * (value, key, object).
         *
         * If a property name is provided for `iteratee` the created "_.property"
         * style callback returns the property value of the given element.
         *
         * If an object is provided for `iteratee` the created "_.matches" style
         * callback returns `true` for elements that have the properties of the given
         * object, else `false`.
         *
         * @static
         * @memberOf _
         * @category Object
         * @param {Object} object The object to iterate over.
         * @param {Function|Object|string} [iteratee=_.identity] The function invoked
         *  per iteration. If a property name or object is provided it is used to
         *  create a "_.property" or "_.matches" style callback respectively.
         * @param {*} [thisArg] The `this` binding of `iteratee`.
         * @returns {Object} Returns the new mapped object.
         * @example
         *
         * _.mapValues({ 'a': 1, 'b': 2, 'c': 3} , function(n) { return n * 3; });
         * // => { 'a': 3, 'b': 6, 'c': 9 }
         *
         * var users = {
         *   'fred':    { 'user': 'fred',    'age': 40 },
         *   'pebbles': { 'user': 'pebbles', 'age': 1 }
         * };
         *
         * // using the "_.property" callback shorthand
         * _.mapValues(users, 'age');
         * // => { 'fred': 40, 'pebbles': 1 } (iteration order is not guaranteed)
         */
        
function mapValues(objectiterateethisArg) {
          var 
result = {};
          
iteratee getCallback(iterateethisArg3);

          
baseForOwn(object, function(valuekeyobject) {
            
result[key] = iteratee(valuekeyobject);
          });
          return 
result;
        }

        
/**
         * Recursively merges own enumerable properties of the source object(s), that
         * don't resolve to `undefined` into the destination object. Subsequent sources
         * overwrite property assignments of previous sources. If `customizer` is
         * provided it is invoked to produce the merged values of the destination and
         * source properties. If `customizer` returns `undefined` merging is handled
         * by the method instead. The `customizer` is bound to `thisArg` and invoked
         * with five arguments; (objectValue, sourceValue, key, object, source).
         *
         * @static
         * @memberOf _
         * @category Object
         * @param {Object} object The destination object.
         * @param {...Object} [sources] The source objects.
         * @param {Function} [customizer] The function to customize merging properties.
         * @param {*} [thisArg] The `this` binding of `customizer`.
         * @returns {Object} Returns `object`.
         * @example
         *
         * var users = {
         *   'data': [{ 'user': 'barney' }, { 'user': 'fred' }]
         * };
         *
         * var ages = {
         *   'data': [{ 'age': 36 }, { 'age': 40 }]
         * };
         *
         * _.merge(users, ages);
         * // => { 'data': [{ 'user': 'barney', 'age': 36 }, { 'user': 'fred', 'age': 40 }] }
         *
         * // using a customizer callback
         * var object = {
         *   'fruits': ['apple'],
         *   'vegetables': ['beet']
         * };
         *
         * var other = {
         *   'fruits': ['banana'],
         *   'vegetables': ['carrot']
         * };
         *
         * _.merge(object, other, function(a, b) {
         *   return _.isArray(a) ? a.concat(b) : undefined;
         * });
         * // => { 'fruits': ['apple', 'banana'], 'vegetables': ['beet', 'carrot'] }
         */
        
var merge createAssigner(baseMerge);

        
/**
         * The opposite of `_.pick`; this method creates an object composed of the
         * own and inherited enumerable properties of `object` that are not omitted.
         * Property names may be specified as individual arguments or as arrays of
         * property names. If `predicate` is provided it is invoked for each property
         * of `object` omitting the properties `predicate` returns truthy for. The
         * predicate is bound to `thisArg` and invoked with three arguments;
         * (value, key, object).
         *
         * @static
         * @memberOf _
         * @category Object
         * @param {Object} object The source object.
         * @param {Function|...(string|string[])} [predicate] The function invoked per
         *  iteration or property names to omit, specified as individual property
         *  names or arrays of property names.
         * @param {*} [thisArg] The `this` binding of `predicate`.
         * @returns {Object} Returns the new object.
         * @example
         *
         * var object = { 'user': 'fred', 'age': 40 };
         *
         * _.omit(object, 'age');
         * // => { 'user': 'fred' }
         *
         * _.omit(object, _.isNumber);
         * // => { 'user': 'fred' }
         */
        
function omit(objectpredicatethisArg) {
          if (
object == null) {
            return {};
          }
          if (
typeof predicate != 'function') {
            var 
props arrayMap(baseFlatten(argumentsfalsefalse1), String);
            return 
pickByArray(objectbaseDifference(keysIn(object), props));
          }
          
predicate bindCallback(predicatethisArg3);
          return 
pickByCallback(object, function(valuekeyobject) {
            return !
predicate(valuekeyobject);
          });
        }

        
/**
         * Creates a two dimensional array of the key-value pairs for `object`,
         * e.g. `[[key1, value1], [key2, value2]]`.
         *
         * @static
         * @memberOf _
         * @category Object
         * @param {Object} object The object to inspect.
         * @returns {Array} Returns the new array of key-value pairs.
         * @example
         *
         * _.pairs({ 'barney': 36, 'fred': 40 });
         * // => [['barney', 36], ['fred', 40]] (iteration order is not guaranteed)
         */
        
function pairs(object) {
          var 
index = -1,
              
props keys(object),
              
length props.length,
              
result = Array(length);

          while (++
index length) {
            var 
key props[index];
            
result[index] = [keyobject[key]];
          }
          return 
result;
        }

        
/**
         * Creates an object composed of the picked `object` properties. Property
         * names may be specified as individual arguments or as arrays of property
         * names. If `predicate` is provided it is invoked for each property of `object`
         * picking the properties `predicate` returns truthy for. The predicate is
         * bound to `thisArg` and invoked with three arguments; (value, key, object).
         *
         * @static
         * @memberOf _
         * @category Object
         * @param {Object} object The source object.
         * @param {Function|...(string|string[])} [predicate] The function invoked per
         *  iteration or property names to pick, specified as individual property
         *  names or arrays of property names.
         * @param {*} [thisArg] The `this` binding of `predicate`.
         * @returns {Object} Returns the new object.
         * @example
         *
         * var object = { 'user': 'fred', 'age': 40 };
         *
         * _.pick(object, 'user');
         * // => { 'user': 'fred' }
         *
         * _.pick(object, _.isString);
         * // => { 'user': 'fred' }
         */
        
function pick(objectpredicatethisArg) {
          if (
object == null) {
            return {};
          }
          return 
typeof predicate == 'function'
            
pickByCallback(objectbindCallback(predicatethisArg3))
            : 
pickByArray(objectbaseFlatten(argumentsfalsefalse1));
        }

        
/**
         * Resolves the value of property `key` on `object`. If the value of `key` is
         * a function it is invoked with the `this` binding of `object` and its result
         * is returned, else the property value is returned. If the property value is
         * `undefined` the `defaultValue` is used in its place.
         *
         * @static
         * @memberOf _
         * @category Object
         * @param {Object} object The object to query.
         * @param {string} key The key of the property to resolve.
         * @param {*} [defaultValue] The value returned if the property value
         *  resolves to `undefined`.
         * @returns {*} Returns the resolved value.
         * @example
         *
         * var object = { 'user': 'fred', 'age': _.constant(40) };
         *
         * _.result(object, 'user');
         * // => 'fred'
         *
         * _.result(object, 'age');
         * // => 40
         *
         * _.result(object, 'status', 'busy');
         * // => 'busy'
         *
         * _.result(object, 'status', _.constant('busy'));
         * // => 'busy'
         */
        
function result(objectkeydefaultValue) {
          var 
value object == null undefined object[key];
          if (
typeof value == 'undefined') {
            
value defaultValue;
          }
          return 
isFunction(value) ? value.call(object) : value;
        }

        
/**
         * An alternative to `_.reduce`; this method transforms `object` to a new
         * `accumulator` object which is the result of running each of its own enumerable
         * properties through `iteratee`, with each invocation potentially mutating
         * the `accumulator` object. The `iteratee` is bound to `thisArg` and invoked
         * with four arguments; (accumulator, value, key, object). Iterator functions
         * may exit iteration early by explicitly returning `false`.
         *
         * @static
         * @memberOf _
         * @category Object
         * @param {Array|Object} object The object to iterate over.
         * @param {Function} [iteratee=_.identity] The function invoked per iteration.
         * @param {*} [accumulator] The custom accumulator value.
         * @param {*} [thisArg] The `this` binding of `iteratee`.
         * @returns {*} Returns the accumulated value.
         * @example
         *
         * var squares = _.transform([1, 2, 3, 4, 5, 6], function(result, n) {
         *   n *= n;
         *   if (n % 2) {
         *     return result.push(n) < 3;
         *   }
         * });
         * // => [1, 9, 25]
         *
         * var mapped = _.transform({ 'a': 1, 'b': 2, 'c': 3 }, function(result, n, key) {
         *   result[key] = n * 3;
         * });
         * // => { 'a': 3, 'b': 6, 'c': 9 }
         */
        
function transform(objectiterateeaccumulatorthisArg) {
          var 
isArr isArray(object) || isTypedArray(object);
          
iteratee getCallback(iterateethisArg4);

          if (
accumulator == null) {
            if (
isArr || isObject(object)) {
              var 
Ctor object.constructor;
              if (
isArr) {
                
accumulator isArray(object) ? new Ctor : [];
              } else {
                
accumulator baseCreate(typeof Ctor == 'function' && Ctor.prototype);
              }
            } else {
              
accumulator = {};
            }
          }
          (
isArr arrayEach baseForOwn)(object, function(valueindexobject) {
            return 
iteratee(accumulatorvalueindexobject);
          });
          return 
accumulator;
        }

        
/**
         * Creates an array of the own enumerable property values of `object`.
         *
         * **Note:** Non-object values are coerced to objects.
         *
         * @static
         * @memberOf _
         * @category Object
         * @param {Object} object The object to query.
         * @returns {Array} Returns the array of property values.
         * @example
         *
         * function Foo() {
         *   this.a = 1;
         *   this.b = 2;
         * }
         *
         * Foo.prototype.c = 3;
         *
         * _.values(new Foo);
         * // => [1, 2] (iteration order is not guaranteed)
         *
         * _.values('hi');
         * // => ['h', 'i']
         */
        
function values(object) {
          return 
baseValues(objectkeys(object));
        }

        
/**
         * Creates an array of the own and inherited enumerable property values
         * of `object`.
         *
         * **Note:** Non-object values are coerced to objects.
         *
         * @static
         * @memberOf _
         * @category Object
         * @param {Object} object The object to query.
         * @returns {Array} Returns the array of property values.
         * @example
         *
         * function Foo() {
         *   this.a = 1;
         *   this.b = 2;
         * }
         *
         * Foo.prototype.c = 3;
         *
         * _.valuesIn(new Foo);
         * // => [1, 2, 3] (iteration order is not guaranteed)
         */
        
function valuesIn(object) {
          return 
baseValues(objectkeysIn(object));
        }

        
/*------------------------------------------------------------------------*/

        /**
         * Produces a random number between `min` and `max` (inclusive). If only one
         * argument is provided a number between `0` and the given number is returned.
         * If `floating` is `true`, or either `min` or `max` are floats, a floating-point
         * number is returned instead of an integer.
         *
         * @static
         * @memberOf _
         * @category Number
         * @param {number} [min=0] The minimum possible value.
         * @param {number} [max=1] The maximum possible value.
         * @param {boolean} [floating] Specify returning a floating-point number.
         * @returns {number} Returns the random number.
         * @example
         *
         * _.random(0, 5);
         * // => an integer between 0 and 5
         *
         * _.random(5);
         * // => also an integer between 0 and 5
         *
         * _.random(5, true);
         * // => a floating-point number between 0 and 5
         *
         * _.random(1.2, 5.2);
         * // => a floating-point number between 1.2 and 5.2
         */
        
function random(minmaxfloating) {
          if (
floating && isIterateeCall(minmaxfloating)) {
            
max floating null;
          }
          var 
noMin min == null,
              
noMax max == null;

          if (
floating == null) {
            if (
noMax && typeof min == 'boolean') {
              
floating min;
              
min 1;
            }
            else if (
typeof max == 'boolean') {
              
floating max;
              
noMax true;
            }
          }
          if (
noMin && noMax) {
            
max 1;
            
noMax false;
          }
          
min = +min || 0;
          if (
noMax) {
            
max min;
            
min 0;
          } else {
            
max = +max || 0;
          }
          if (
floating || min || max 1) {
            var 
rand nativeRandom();
            return 
nativeMin(min + (rand * (max min parseFloat('1e-' + ((rand '').length 1)))), max);
          }
          return 
baseRandom(minmax);
        }

        
/*------------------------------------------------------------------------*/

        /**
         * Converts `string` to camel case.
         * See [Wikipedia](https://en.wikipedia.org/wiki/CamelCase) for more details.
         *
         * @static
         * @memberOf _
         * @category String
         * @param {string} [string=''] The string to convert.
         * @returns {string} Returns the camel cased string.
         * @example
         *
         * _.camelCase('Foo Bar');
         * // => 'fooBar'
         *
         * _.camelCase('--foo-bar');
         * // => 'fooBar'
         *
         * _.camelCase('__foo_bar__');
         * // => 'fooBar'
         */
        
var camelCase createCompounder(function(resultwordindex) {
          
word word.toLowerCase();
          return 
result + (index ? (word.charAt(0).toUpperCase() + word.slice(1)) : word);
        });

        
/**
         * Capitalizes the first character of `string`.
         *
         * @static
         * @memberOf _
         * @category String
         * @param {string} [string=''] The string to capitalize.
         * @returns {string} Returns the capitalized string.
         * @example
         *
         * _.capitalize('fred');
         * // => 'Fred'
         */
        
function capitalize(string) {
          
string baseToString(string);
          return 
string && (string.charAt(0).toUpperCase() + string.slice(1));
        }

        
/**
         * Deburrs `string` by converting latin-1 supplementary letters to basic latin letters.
         * See [Wikipedia](https://en.wikipedia.org/wiki/Latin-1_Supplement_(Unicode_block)#Character_table)
         * for more details.
         *
         * @static
         * @memberOf _
         * @category String
         * @param {string} [string=''] The string to deburr.
         * @returns {string} Returns the deburred string.
         * @example
         *
         * _.deburr('déjà vu');
         * // => 'deja vu'
         */
        
function deburr(string) {
          
string baseToString(string);
          return 
string && string.replace(reLatin1deburrLetter);
        }

        
/**
         * Checks if `string` ends with the given target string.
         *
         * @static
         * @memberOf _
         * @category String
         * @param {string} [string=''] The string to search.
         * @param {string} [target] The string to search for.
         * @param {number} [position=string.length] The position to search from.
         * @returns {boolean} Returns `true` if `string` ends with `target`, else `false`.
         * @example
         *
         * _.endsWith('abc', 'c');
         * // => true
         *
         * _.endsWith('abc', 'b');
         * // => false
         *
         * _.endsWith('abc', 'b', 2);
         * // => true
         */
        
function endsWith(stringtargetposition) {
          
string baseToString(string);
          
target = (target '');

          var 
length string.length;
          
position = (typeof position == 'undefined' length nativeMin(position : (+position || 0), length)) - target.length;
          return 
position >= && string.indexOf(targetposition) == position;
        }

        
/**
         * Converts the characters "&", "<", ">", '"', "'", and '`', in `string` to
         * their corresponding HTML entities.
         *
         * **Note:** No other characters are escaped. To escape additional characters
         * use a third-party library like [_he_](https://mths.be/he).
         *
         * Though the ">" character is escaped for symmetry, characters like
         * ">" and "/" don't require escaping in HTML and have no special meaning
         * unless they're part of a tag or unquoted attribute value.
         * See [Mathias Bynens's article](https://mathiasbynens.be/notes/ambiguous-ampersands)
         * (under "semi-related fun fact") for more details.
         *
         * Backticks are escaped because in Internet Explorer < 9, they can break out
         * of attribute values or HTML comments. See [#102](https://html5sec.org/#102),
         * [#108](https://html5sec.org/#108), and [#133](https://html5sec.org/#133) of
         * the [HTML5 Security Cheatsheet](https://html5sec.org/) for more details.
         *
         * When working with HTML you should always quote attribute values to reduce
         * XSS vectors. See [Ryan Grove's article](http://wonko.com/post/html-escaping)
         * for more details.
         *
         * @static
         * @memberOf _
         * @category String
         * @param {string} [string=''] The string to escape.
         * @returns {string} Returns the escaped string.
         * @example
         *
         * _.escape('fred, barney, & pebbles');
         * // => 'fred, barney, &amp; pebbles'
         */
        
function escape(string) {
          
// Reset `lastIndex` because in IE < 9 `String#replace` does not.
          
string baseToString(string);
          return (
string && reHasUnescapedHtml.test(string))
            ? 
string.replace(reUnescapedHtmlescapeHtmlChar)
            : 
string;
        }

        
/**
         * Escapes the `RegExp` special characters "", "^", "$", ".", "|", "?", "*",
         * "+", "(", ")", "[", "]", "{" and "}" in `string`.
         *
         * @static
         * @memberOf _
         * @category String
         * @param {string} [string=''] The string to escape.
         * @returns {string} Returns the escaped string.
         * @example
         *
         * _.escapeRegExp('[lodash](https://lodash.com/)');
         * // => '[lodash](https://lodash.com/)'
         */
        
function escapeRegExp(string) {
          
string baseToString(string);
          return (
string && reHasRegExpChars.test(string))
            ? 
string.replace(reRegExpChars'\$&')
            : 
string;
        }

        
/**
         * Converts `string` to kebab case (a.k.a. spinal case).
         * See [Wikipedia](https://en.wikipedia.org/wiki/Letter_case#Special_case_styles) for
         * more details.
         *
         * @static
         * @memberOf _
         * @category String
         * @param {string} [string=''] The string to convert.
         * @returns {string} Returns the kebab cased string.
         * @example
         *
         * _.kebabCase('Foo Bar');
         * // => 'foo-bar'
         *
         * _.kebabCase('fooBar');
         * // => 'foo-bar'
         *
         * _.kebabCase('__foo_bar__');
         * // => 'foo-bar'
         */
        
var kebabCase createCompounder(function(resultwordindex) {
          return 
result + (index '-' '') + word.toLowerCase();
        });

        
/**
         * Pads `string` on the left and right sides if it is shorter then the given
         * padding length. The `chars` string may be truncated if the number of padding
         * characters can't be evenly divided by the padding length.
         *
         * @static
         * @memberOf _
         * @category String
         * @param {string} [string=''] The string to pad.
         * @param {number} [length=0] The padding length.
         * @param {string} [chars=' '] The string used as padding.
         * @returns {string} Returns the padded string.
         * @example
         *
         * _.pad('abc', 8);
         * // => '  abc   '
         *
         * _.pad('abc', 8, '_-');
         * // => '_-abc_-_'
         *
         * _.pad('abc', 3);
         * // => 'abc'
         */
        
function pad(stringlengthchars) {
          
string baseToString(string);
          
length = +length;

          var 
strLength string.length;
          if (
strLength >= length || !nativeIsFinite(length)) {
            return 
string;
          }
          var 
mid = (length strLength) / 2,
              
leftLength floor(mid),
              
rightLength ceil(mid);

          
chars createPad(''rightLengthchars);
          return 
chars.slice(0leftLength) + string chars;
        }

        
/**
         * Pads `string` on the left side if it is shorter then the given padding
         * length. The `chars` string may be truncated if the number of padding
         * characters exceeds the padding length.
         *
         * @static
         * @memberOf _
         * @category String
         * @param {string} [string=''] The string to pad.
         * @param {number} [length=0] The padding length.
         * @param {string} [chars=' '] The string used as padding.
         * @returns {string} Returns the padded string.
         * @example
         *
         * _.padLeft('abc', 6);
         * // => '   abc'
         *
         * _.padLeft('abc', 6, '_-');
         * // => '_-_abc'
         *
         * _.padLeft('abc', 3);
         * // => 'abc'
         */
        
function padLeft(stringlengthchars) {
          
string baseToString(string);
          return 
string && (createPad(stringlengthchars) + string);
        }

        
/**
         * Pads `string` on the right side if it is shorter then the given padding
         * length. The `chars` string may be truncated if the number of padding
         * characters exceeds the padding length.
         *
         * @static
         * @memberOf _
         * @category String
         * @param {string} [string=''] The string to pad.
         * @param {number} [length=0] The padding length.
         * @param {string} [chars=' '] The string used as padding.
         * @returns {string} Returns the padded string.
         * @example
         *
         * _.padRight('abc', 6);
         * // => 'abc   '
         *
         * _.padRight('abc', 6, '_-');
         * // => 'abc_-_'
         *
         * _.padRight('abc', 3);
         * // => 'abc'
         */
        
function padRight(stringlengthchars) {
          
string baseToString(string);
          return 
string && (string createPad(stringlengthchars));
        }

        
/**
         * Converts `string` to an integer of the specified radix. If `radix` is
         * `undefined` or `0`, a `radix` of `10` is used unless `value` is a hexadecimal,
         * in which case a `radix` of `16` is used.
         *
         * **Note:** This method aligns with the ES5 implementation of `parseInt`.
         * See the [ES5 spec](https://es5.github.io/#E) for more details.
         *
         * @static
         * @memberOf _
         * @category String
         * @param {string} string The string to convert.
         * @param {number} [radix] The radix to interpret `value` by.
         * @param- {Object} [guard] Enables use as a callback for functions like `_.map`.
         * @returns {number} Returns the converted integer.
         * @example
         *
         * _.parseInt('08');
         * // => 8
         *
         * _.map(['6', '08', '10'], _.parseInt);
         * // => [6, 8, 10]
         */
        
function parseInt(stringradixguard) {
          if (
guard && isIterateeCall(stringradixguard)) {
            
radix 0;
          }
          return 
nativeParseInt(stringradix);
        }
        
// Fallback for environments with pre-ES5 implementations.
        
if (nativeParseInt(whitespace '08') != 8) {
          
parseInt = function(stringradixguard) {
            
// Firefox < 21 and Opera < 15 follow ES3 for `parseInt`.
            // Chrome fails to trim leading <BOM> whitespace characters.
            // See https://code.google.com/p/v8/issues/detail?id=3109 for more details.
            
if (guard isIterateeCall(stringradixguard) : radix == null) {
              
radix 0;
            } else if (
radix) {
              
radix = +radix;
            }
            
string trim(string);
            return 
nativeParseInt(stringradix || (reHexPrefix.test(string) ? 16 10));
          };
        }

        
/**
         * Repeats the given string `n` times.
         *
         * @static
         * @memberOf _
         * @category String
         * @param {string} [string=''] The string to repeat.
         * @param {number} [n=0] The number of times to repeat the string.
         * @returns {string} Returns the repeated string.
         * @example
         *
         * _.repeat('*', 3);
         * // => '***'
         *
         * _.repeat('abc', 2);
         * // => 'abcabc'
         *
         * _.repeat('abc', 0);
         * // => ''
         */
        
function repeat(stringn) {
          var 
result '';
          
string baseToString(string);
          
= +n;
          if (
|| !string || !nativeIsFinite(n)) {
            return 
result;
          }
          
// Leverage the exponentiation by squaring algorithm for a faster repeat.
          // See https://en.wikipedia.org/wiki/Exponentiation_by_squaring for more details.
          
do {
            if (
2) {
              
result += string;
            }
            
floor(2);
            
string += string;
          } while (
n);

          return 
result;
        }

        
/**
         * Converts `string` to snake case.
         * See [Wikipedia](https://en.wikipedia.org/wiki/Snake_case) for more details.
         *
         * @static
         * @memberOf _
         * @category String
         * @param {string} [string=''] The string to convert.
         * @returns {string} Returns the snake cased string.
         * @example
         *
         * _.snakeCase('Foo Bar');
         * // => 'foo_bar'
         *
         * _.snakeCase('fooBar');
         * // => 'foo_bar'
         *
         * _.snakeCase('--foo-bar');
         * // => 'foo_bar'
         */
        
var snakeCase createCompounder(function(resultwordindex) {
          return 
result + (index '_' '') + word.toLowerCase();
        });

        
/**
         * Converts `string` to start case.
         * See [Wikipedia](https://en.wikipedia.org/wiki/Letter_case#Stylistic_or_specialised_usage)
         * for more details.
         *
         * @static
         * @memberOf _
         * @category String
         * @param {string} [string=''] The string to convert.
         * @returns {string} Returns the start cased string.
         * @example
         *
         * _.startCase('--foo-bar');
         * // => 'Foo Bar'
         *
         * _.startCase('fooBar');
         * // => 'Foo Bar'
         *
         * _.startCase('__foo_bar__');
         * // => 'Foo Bar'
         */
        
var startCase createCompounder(function(resultwordindex) {
          return 
result + (index ' ' '') + (word.charAt(0).toUpperCase() + word.slice(1));
        });

        
/**
         * Checks if `string` starts with the given target string.
         *
         * @static
         * @memberOf _
         * @category String
         * @param {string} [string=''] The string to search.
         * @param {string} [target] The string to search for.
         * @param {number} [position=0] The position to search from.
         * @returns {boolean} Returns `true` if `string` starts with `target`, else `false`.
         * @example
         *
         * _.startsWith('abc', 'a');
         * // => true
         *
         * _.startsWith('abc', 'b');
         * // => false
         *
         * _.startsWith('abc', 'b', 1);
         * // => true
         */
        
function startsWith(stringtargetposition) {
          
string baseToString(string);
          
position position == null nativeMin(position : (+position || 0), string.length);
          return 
string.lastIndexOf(targetposition) == position;
        }

        
/**
         * Creates a compiled template function that can interpolate data properties
         * in "interpolate" delimiters, HTML-escape interpolated data properties in
         * "escape" delimiters, and execute JavaScript in "evaluate" delimiters. Data
         * properties may be accessed as free variables in the template. If a setting
         * object is provided it takes precedence over `_.templateSettings` values.
         *
         * **Note:** In the development build `_.template` utilizes sourceURLs for easier debugging.
         * See the [HTML5 Rocks article on sourcemaps](http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/#toc-sourceurl)
         * for more details.
         *
         * For more information on precompiling templates see
         * [lodash's custom builds documentation](https://lodash.com/custom-builds).
         *
         * For more information on Chrome extension sandboxes see
         * [Chrome's extensions documentation](https://developer.chrome.com/extensions/sandboxingEval).
         *
         * @static
         * @memberOf _
         * @category String
         * @param {string} [string=''] The template string.
         * @param {Object} [options] The options object.
         * @param {RegExp} [options.escape] The HTML "escape" delimiter.
         * @param {RegExp} [options.evaluate] The "evaluate" delimiter.
         * @param {Object} [options.imports] An object to import into the template as free variables.
         * @param {RegExp} [options.interpolate] The "interpolate" delimiter.
         * @param {string} [options.sourceURL] The sourceURL of the template's compiled source.
         * @param {string} [options.variable] The data object variable name.
         * @param- {Object} [otherOptions] Enables the legacy `options` param signature.
         * @returns {Function} Returns the compiled template function.
         * @example
         *
         * // using the "interpolate" delimiter to create a compiled template
         * var compiled = _.template('hello <%= user %>!');
         * compiled({ 'user': 'fred' });
         * // => 'hello fred!'
         *
         * // using the HTML "escape" delimiter to escape data property values
         * var compiled = _.template('<b><%- value %></b>');
         * compiled({ 'value': '<script>' });
         * // => '<b>&lt;script&gt;</b>'
         *
         * // using the "evaluate" delimiter to execute JavaScript and generate HTML
         * var compiled = _.template('<% _.forEach(users, function(user) { %><li><%- user %></li><% }); %>');
         * compiled({ 'users': ['fred', 'barney'] });
         * // => '<li>fred</li><li>barney</li>'
         *
         * // using the internal `print` function in "evaluate" delimiters
         * var compiled = _.template('<% print("hello " + user); %>!');
         * compiled({ 'user': 'barney' });
         * // => 'hello barney!'
         *
         * // using the ES delimiter as an alternative to the default "interpolate" delimiter
         * var compiled = _.template('hello ${ user }!');
         * compiled({ 'user': 'pebbles' });
         * // => 'hello pebbles!'
         *
         * // using custom template delimiters
         * _.templateSettings.interpolate = /{{([sS]+?)}}/g;
         * var compiled = _.template('hello {{ user }}!');
         * compiled({ 'user': 'mustache' });
         * // => 'hello mustache!'
         *
         * // using backslashes to treat delimiters as plain text
         * var compiled = _.template('<%= "\<%- value %\>" %>');
         * compiled({ 'value': 'ignored' });
         * // => '<%- value %>'
         *
         * // using the `imports` option to import `jQuery` as `jq`
         * var text = '<% jq.each(users, function(user) { %><li><%- user %></li><% }); %>';
         * var compiled = _.template(text, { 'imports': { 'jq': jQuery } });
         * compiled({ 'users': ['fred', 'barney'] });
         * // => '<li>fred</li><li>barney</li>'
         *
         * // using the `sourceURL` option to specify a custom sourceURL for the template
         * var compiled = _.template('hello <%= user %>!', { 'sourceURL': '/basic/greeting.jst' });
         * compiled(data);
         * // => find the source of "greeting.jst" under the Sources tab or Resources panel of the web inspector
         *
         * // using the `variable` option to ensure a with-statement isn't used in the compiled template
         * var compiled = _.template('hi <%= data.user %>!', { 'variable': 'data' });
         * compiled.source;
         * // => function(data) {
         *   var __t, __p = '';
         *   __p += 'hi ' + ((__t = ( data.user )) == null ? '' : __t) + '!';
         *   return __p;
         * }
         *
         * // using the `source` property to inline compiled templates for meaningful
         * // line numbers in error messages and a stack trace
         * fs.writeFileSync(path.join(cwd, 'jst.js'), '
         *   var JST = {
         *     "main": ' + _.template(mainText).source + '
         *   };
         * ');
         */
        
function template(stringoptionsotherOptions) {
          
// Based on John Resig's `tmpl` implementation (http://ejohn.org/blog/javascript-micro-templating/)
          // and Laura Doktorova's doT.js (https://github.com/olado/doT).
          
var settings lodash.templateSettings;

          if (
otherOptions && isIterateeCall(stringoptionsotherOptions)) {
            
options otherOptions null;
          }
          
string baseToString(string);
          
options baseAssign(baseAssign({}, otherOptions || options), settingsassignOwnDefaults);

          var 
imports baseAssign(baseAssign({}, options.imports), settings.importsassignOwnDefaults),
              
importsKeys keys(imports),
              
importsValues baseValues(importsimportsKeys);

          var 
isEscaping,
              
isEvaluating,
              
index 0,
              
interpolate options.interpolate || reNoMatch,
              
source "__p += '";

          
// Compile the regexp to match each delimiter.
          
var reDelimiters RegExp(
            (
options.escape || reNoMatch).source '|' +
            
interpolate.source '|' +
            (
interpolate === reInterpolate reEsTemplate reNoMatch).source '|' +
            (
options.evaluate || reNoMatch).source '|$'
          
'g');

          
// Use a sourceURL for easier debugging.
          
var sourceURL '//# sourceURL=' +
            (
'sourceURL' in options
              
options.sourceURL
              
: ('lodash.templateSources[' + (++templateCounter) + ']')
            ) + 
'n';

          
string.replace(reDelimiters, function(matchescapeValueinterpolateValueesTemplateValueevaluateValueoffset) {
            
interpolateValue || (interpolateValue esTemplateValue);

            
// Escape characters that can't be included in string literals.
            
source += string.slice(indexoffset).replace(reUnescapedStringescapeStringChar);

            
// Replace delimiters with snippets.
            
if (escapeValue) {
              
isEscaping true;
              
source += "' +n__e(" escapeValue ") +n'";
            }
            if (
evaluateValue) {
              
isEvaluating true;
              
source += "';n" evaluateValue ";n__p += '";
            }
            if (
interpolateValue) {
              
source += "' +n((__t = (" interpolateValue ")) == null ? '' : __t) +n'";
            }
            
index offset match.length;

            
// The JS engine embedded in Adobe products requires returning the `match`
            // string in order to produce the correct `offset` value.
            
return match;
          });

          
source += "';n";

          
// If `variable` is not specified wrap a with-statement around the generated
          // code to add the data object to the top of the scope chain.
          
var variable options.variable;
          if (!
variable) {
            
source 'with (obj) {n' source 'n}n';
          }
          
// Cleanup code by stripping empty strings.
          
source = (isEvaluating source.replace(reEmptyStringLeading'') : source)
            .
replace(reEmptyStringMiddle'$1')
            .
replace(reEmptyStringTrailing'$1;');

          
// Frame code as the function body.
          
source 'function(' + (variable || 'obj') + ') {n' +
            (
variable
              
''
              
'obj || (obj = {});n'
            
) +
            
"var __t, __p = ''" +
            (
isEscaping
               
', __e = _.escape'
               
''
            
) +
            (
isEvaluating
              
', __j = Array.prototype.join;n' +
                
"function print() { __p += __j.call(arguments, '') }n"
              
';n'
            
) +
            
source +
            
'return __pn}';

          var 
result attempt(function() {
            return Function(
importsKeyssourceURL 'return ' source).apply(undefinedimportsValues);
          });

          
// Provide the compiled function's source by its `toString` method or
          // the `source` property as a convenience for inlining compiled templates.
          
result.source source;
          if (
isError(result)) {
            throw 
result;
          }
          return 
result;
        }

        
/**
         * Removes leading and trailing whitespace or specified characters from `string`.
         *
         * @static
         * @memberOf _
         * @category String
         * @param {string} [string=''] The string to trim.
         * @param {string} [chars=whitespace] The characters to trim.
         * @param- {Object} [guard] Enables use as a callback for functions like `_.map`.
         * @returns {string} Returns the trimmed string.
         * @example
         *
         * _.trim('  abc  ');
         * // => 'abc'
         *
         * _.trim('-_-abc-_-', '_-');
         * // => 'abc'
         *
         * _.map(['  foo  ', '  bar  '], _.trim);
         * // => ['foo', 'bar]
         */
        
function trim(stringcharsguard) {
          var 
value string;
          
string baseToString(string);
          if (!
string) {
            return 
string;
          }
          if (
guard isIterateeCall(valuecharsguard) : chars == null) {
            return 
string.slice(trimmedLeftIndex(string), trimmedRightIndex(string) + 1);
          }
          
chars = (chars '');
          return 
string.slice(charsLeftIndex(stringchars), charsRightIndex(stringchars) + 1);
        }

        
/**
         * Removes leading whitespace or specified characters from `string`.
         *
         * @static
         * @memberOf _
         * @category String
         * @param {string} [string=''] The string to trim.
         * @param {string} [chars=whitespace] The characters to trim.
         * @param- {Object} [guard] Enables use as a callback for functions like `_.map`.
         * @returns {string} Returns the trimmed string.
         * @example
         *
         * _.trimLeft('  abc  ');
         * // => 'abc  '
         *
         * _.trimLeft('-_-abc-_-', '_-');
         * // => 'abc-_-'
         */
        
function trimLeft(stringcharsguard) {
          var 
value string;
          
string baseToString(string);
          if (!
string) {
            return 
string;
          }
          if (
guard isIterateeCall(valuecharsguard) : chars == null) {
            return 
string.slice(trimmedLeftIndex(string))
          }
          return 
string.slice(charsLeftIndex(string, (chars '')));
        }

        
/**
         * Removes trailing whitespace or specified characters from `string`.
         *
         * @static
         * @memberOf _
         * @category String
         * @param {string} [string=''] The string to trim.
         * @param {string} [chars=whitespace] The characters to trim.
         * @param- {Object} [guard] Enables use as a callback for functions like `_.map`.
         * @returns {string} Returns the trimmed string.
         * @example
         *
         * _.trimRight('  abc  ');
         * // => '  abc'
         *
         * _.trimRight('-_-abc-_-', '_-');
         * // => '-_-abc'
         */
        
function trimRight(stringcharsguard) {
          var 
value string;
          
string baseToString(string);
          if (!
string) {
            return 
string;
          }
          if (
guard isIterateeCall(valuecharsguard) : chars == null) {
            return 
string.slice(0trimmedRightIndex(string) + 1)
          }
          return 
string.slice(0charsRightIndex(string, (chars '')) + 1);
        }

        
/**
         * Truncates `string` if it is longer than the given maximum string length.
         * The last characters of the truncated string are replaced with the omission
         * string which defaults to "...".
         *
         * @static
         * @memberOf _
         * @category String
         * @param {string} [string=''] The string to truncate.
         * @param {Object|number} [options] The options object or maximum string length.
         * @param {number} [options.length=30] The maximum string length.
         * @param {string} [options.omission='...'] The string to indicate text is omitted.
         * @param {RegExp|string} [options.separator] The separator pattern to truncate to.
         * @param- {Object} [guard] Enables use as a callback for functions like `_.map`.
         * @returns {string} Returns the truncated string.
         * @example
         *
         * _.trunc('hi-diddly-ho there, neighborino');
         * // => 'hi-diddly-ho there, neighbo...'
         *
         * _.trunc('hi-diddly-ho there, neighborino', 24);
         * // => 'hi-diddly-ho there, n...'
         *
         * _.trunc('hi-diddly-ho there, neighborino', { 'length': 24, 'separator': ' ' });
         * // => 'hi-diddly-ho there,...'
         *
         * _.trunc('hi-diddly-ho there, neighborino', { 'length': 24, 'separator': /,? +/ });
         * //=> 'hi-diddly-ho there...'
         *
         * _.trunc('hi-diddly-ho there, neighborino', { 'omission': ' [...]' });
         * // => 'hi-diddly-ho there, neig [...]'
         */
        
function trunc(stringoptionsguard) {
          if (
guard && isIterateeCall(stringoptionsguard)) {
            
options null;
          }
          var 
length DEFAULT_TRUNC_LENGTH,
              
omission DEFAULT_TRUNC_OMISSION;

          if (
options != null) {
            if (
isObject(options)) {
              var 
separator 'separator' in options options.separator separator;
              
length 'length' in options ? +options.length || length;
              
omission 'omission' in options baseToString(options.omission) : omission;
            } else {
              
length = +options || 0;
            }
          }
          
string baseToString(string);
          if (
length >= string.length) {
            return 
string;
          }
          var 
end length omission.length;
          if (
end 1) {
            return 
omission;
          }
          var 
result string.slice(0end);
          if (
separator == null) {
            return 
result omission;
          }
          if (
isRegExp(separator)) {
            if (
string.slice(end).search(separator)) {
              var 
match,
                  
newEnd,
                  
substring string.slice(0end);

              if (!
separator.global) {
                
separator RegExp(separator.source, (reFlags.exec(separator) || '') + 'g');
              }
              
separator.lastIndex 0;
              while ((
match separator.exec(substring))) {
                
newEnd match.index;
              }
              
result result.slice(0newEnd == null end newEnd);
            }
          } else if (
string.indexOf(separatorend) != end) {
            var 
index result.lastIndexOf(separator);
            if (
index > -1) {
              
result result.slice(0index);
            }
          }
          return 
result omission;
        }

        
/**
         * The inverse of `_.escape`; this method converts the HTML entities
         * `&amp;`, `&lt;`, `&gt;`, `&quot;`, `&#39;`, and `&#96;` in `string` to their
         * corresponding characters.
         *
         * **Note:** No other HTML entities are unescaped. To unescape additional HTML
         * entities use a third-party library like [_he_](https://mths.be/he).
         *
         * @static
         * @memberOf _
         * @category String
         * @param {string} [string=''] The string to unescape.
         * @returns {string} Returns the unescaped string.
         * @example
         *
         * _.unescape('fred, barney, &amp; pebbles');
         * // => 'fred, barney, & pebbles'
         */
        
function unescape(string) {
          
string baseToString(string);
          return (
string && reHasEscapedHtml.test(string))
            ? 
string.replace(reEscapedHtmlunescapeHtmlChar)
            : 
string;
        }

        
/**
         * Splits `string` into an array of its words.
         *
         * @static
         * @memberOf _
         * @category String
         * @param {string} [string=''] The string to inspect.
         * @param {RegExp|string} [pattern] The pattern to match words.
         * @param- {Object} [guard] Enables use as a callback for functions like `_.map`.
         * @returns {Array} Returns the words of `string`.
         * @example
         *
         * _.words('fred, barney, & pebbles');
         * // => ['fred', 'barney', 'pebbles']
         *
         * _.words('fred, barney, & pebbles', /[^, ]+/g);
         * // => ['fred', 'barney', '&', 'pebbles']
         */
        
function words(stringpatternguard) {
          if (
guard && isIterateeCall(stringpatternguard)) {
            
pattern null;
          }
          
string baseToString(string);
          return 
string.match(pattern || reWords) || [];
        }

        
/*------------------------------------------------------------------------*/

        /**
         * Attempts to invoke `func`, returning either the result or the caught
         * error object.
         *
         * @static
         * @memberOf _
         * @category Utility
         * @param {*} func The function to attempt.
         * @returns {*} Returns the `func` result or error object.
         * @example
         *
         * // avoid throwing errors for invalid selectors
         * var elements = _.attempt(function() {
         *   return document.querySelectorAll(selector);
         * });
         *
         * if (_.isError(elements)) {
         *   elements = [];
         * }
         */
        
function attempt(func) {
          try {
            return 
func();
          } catch(
e) {
            return 
isError(e) ? Error(e);
          }
        }

        
/**
         * Creates a function bound to an optional `thisArg`. If `func` is a property
         * name the created callback returns the property value for a given element.
         * If `func` is an object the created callback returns `true` for elements
         * that contain the equivalent object properties, otherwise it returns `false`.
         *
         * @static
         * @memberOf _
         * @alias iteratee
         * @category Utility
         * @param {*} [func=_.identity] The value to convert to a callback.
         * @param {*} [thisArg] The `this` binding of `func`.
         * @param- {Object} [guard] Enables use as a callback for functions like `_.map`.
         * @returns {Function} Returns the callback.
         * @example
         *
         * var users = [
         *   { 'user': 'barney', 'age': 36 },
         *   { 'user': 'fred',   'age': 40 }
         * ];
         *
         * // wrap to create custom callback shorthands
         * _.callback = _.wrap(_.callback, function(callback, func, thisArg) {
         *   var match = /^(.+?)__([gl]t)(.+)$/.exec(func);
         *   if (!match) {
         *     return callback(func, thisArg);
         *   }
         *   return function(object) {
         *     return match[2] == 'gt' ? object[match[1]] > match[3] : object[match[1]] < match[3];
         *   };
         * });
         *
         * _.filter(users, 'age__gt36');
         * // => [{ 'user': 'fred', 'age': 40 }]
         */
        
function callback(functhisArgguard) {
          if (
guard && isIterateeCall(functhisArgguard)) {
            
thisArg null;
          }
          return 
isObjectLike(func)
            ? 
matches(func)
            : 
baseCallback(functhisArg);
        }

        
/**
         * Creates a function that returns `value`.
         *
         * @static
         * @memberOf _
         * @category Utility
         * @param {*} value The value to return from the new function.
         * @returns {Function} Returns the new function.
         * @example
         *
         * var object = { 'user': 'fred' };
         * var getter = _.constant(object);
         * getter() === object;
         * // => true
         */
        
function constant(value) {
          return function() {
            return 
value;
          };
        }

        
/**
         * This method returns the first argument provided to it.
         *
         * @static
         * @memberOf _
         * @category Utility
         * @param {*} value Any value.
         * @returns {*} Returns `value`.
         * @example
         *
         * var object = { 'user': 'fred' };
         * _.identity(object) === object;
         * // => true
         */
        
function identity(value) {
          return 
value;
        }

        
/**
         * Creates a function which performs a deep comparison between a given object
         * and `source`, returning `true` if the given object has equivalent property
         * values, else `false`.
         *
         * @static
         * @memberOf _
         * @category Utility
         * @param {Object} source The object of property values to match.
         * @returns {Function} Returns the new function.
         * @example
         *
         * var users = [
         *   { 'user': 'fred',   'age': 40 },
         *   { 'user': 'barney', 'age': 36 }
         * ];
         *
         * var matchesAge = _.matches({ 'age': 36 });
         *
         * _.filter(users, matchesAge);
         * // => [{ 'user': 'barney', 'age': 36 }]
         *
         * _.find(users, matchesAge);
         * // => { 'user': 'barney', 'age': 36 }
         */
        
function matches(source) {
          return 
baseMatches(baseClone(sourcetrue));
        }

        
/**
         * Adds all own enumerable function properties of a source object to the
         * destination object. If `object` is a function then methods are added to
         * its prototype as well.
         *
         * @static
         * @memberOf _
         * @category Utility
         * @param {Function|Object} [object=this] object The destination object.
         * @param {Object} source The object of functions to add.
         * @param {Object} [options] The options object.
         * @param {boolean} [options.chain=true] Specify whether the functions added
         *  are chainable.
         * @returns {Function|Object} Returns `object`.
         * @example
         *
         * function vowels(string) {
         *   return _.filter(string, function(v) {
         *     return /[aeiou]/i.test(v);
         *   });
         * }
         *
         * _.mixin({ 'vowels': vowels });
         * _.vowels('fred');
         * // => ['e']
         *
         * _('fred').vowels().value();
         * // => ['e']
         *
         * _.mixin({ 'vowels': vowels }, { 'chain': false });
         * _('fred').vowels();
         * // => ['e']
         */
        
function mixin(objectsourceoptions) {
          if (
options == null) {
            var 
isObj isObject(source),
                
props isObj && keys(source),
                
methodNames props && props.length && baseFunctions(sourceprops);

            if (!(
methodNames methodNames.length isObj)) {
              
methodNames false;
              
options source;
              
source object;
              
object this;
            }
          }
          if (!
methodNames) {
            
methodNames baseFunctions(sourcekeys(source));
          }
          var 
chain true,
              
index = -1,
              
isFunc isFunction(object),
              
length methodNames.length;

          if (
options === false) {
            
chain false;
          } else if (
isObject(options) && 'chain' in options) {
            
chain options.chain;
          }
          while (++
index length) {
            var 
methodName methodNames[index],
                
func source[methodName];

            
object[methodName] = func;
            if (
isFunc) {
              
object.prototype[methodName] = (function(func) {
                return function() {
                  var 
chainAll this.__chain__;
                  if (
chain || chainAll) {
                    var 
result object(this.__wrapped__);
                    (
result.__actions__ arrayCopy(this.__actions__)).push({ 'func'func'args'arguments'thisArg'object });
                    
result.__chain__ chainAll;
                    return 
result;
                  }
                  var 
args = [this.value()];
                  
push.apply(argsarguments);
                  return 
func.apply(objectargs);
                };
              }(
func));
            }
          }
          return 
object;
        }

        
/**
         * Reverts the `_` variable to its previous value and returns a reference to
         * the `lodash` function.
         *
         * @static
         * @memberOf _
         * @category Utility
         * @returns {Function} Returns the `lodash` function.
         * @example
         *
         * var lodash = _.noConflict();
         */
        
function noConflict() {
          
context.oldDash;
          return 
this;
        }

        
/**
         * A no-operation function.
         *
         * @static
         * @memberOf _
         * @category Utility
         * @example
         *
         * var object = { 'user': 'fred' };
         * _.noop(object) === undefined;
         * // => true
         */
        
function noop() {
          
// No operation performed.
        
}

        
/**
         * Creates a function which returns the property value of `key` on a given object.
         *
         * @static
         * @memberOf _
         * @category Utility
         * @param {string} key The key of the property to get.
         * @returns {Function} Returns the new function.
         * @example
         *
         * var users = [
         *   { 'user': 'fred' },
         *   { 'user': 'barney' }
         * ];
         *
         * var getName = _.property('user');
         *
         * _.map(users, getName);
         * // => ['fred', barney']
         *
         * _.pluck(_.sortBy(users, getName), 'user');
         * // => ['barney', 'fred']
         */
        
function property(key) {
          return 
baseProperty(key '');
        }

        
/**
         * The inverse of `_.property`; this method creates a function which returns
         * the property value of a given key on `object`.
         *
         * @static
         * @memberOf _
         * @category Utility
         * @param {Object} object The object to inspect.
         * @returns {Function} Returns the new function.
         * @example
         *
         * var object = { 'user': 'fred', 'age': 40, 'active': true };
         * _.map(['active', 'user'], _.propertyOf(object));
         * // => [true, 'fred']
         *
         * var object = { 'a': 3, 'b': 1, 'c': 2 };
         * _.sortBy(['a', 'b', 'c'], _.propertyOf(object));
         * // => ['b', 'c', 'a']
         */
        
function propertyOf(object) {
          return function(
key) {
            return 
object == null undefined object[key];
          };
        }

        
/**
         * Creates an array of numbers (positive and/or negative) progressing from
         * `start` up to, but not including, `end`. If `start` is less than `end` a
         * zero-length range is created unless a negative `step` is specified.
         *
         * @static
         * @memberOf _
         * @category Utility
         * @param {number} [start=0] The start of the range.
         * @param {number} end The end of the range.
         * @param {number} [step=1] The value to increment or decrement by.
         * @returns {Array} Returns the new array of numbers.
         * @example
         *
         * _.range(4);
         * // => [0, 1, 2, 3]
         *
         * _.range(1, 5);
         * // => [1, 2, 3, 4]
         *
         * _.range(0, 20, 5);
         * // => [0, 5, 10, 15]
         *
         * _.range(0, -4, -1);
         * // => [0, -1, -2, -3]
         *
         * _.range(1, 4, 0);
         * // => [1, 1, 1]
         *
         * _.range(0);
         * // => []
         */
        
function range(startendstep) {
          if (
step && isIterateeCall(startendstep)) {
            
end step null;
          }
          
start = +start || 0;
          
step step == null : (+step || 0);

          if (
end == null) {
            
end start;
            
start 0;
          } else {
            
end = +end || 0;
          }
          
// Use `Array(length)` so engines like Chakra and V8 avoid slower modes.
          // See https://youtu.be/XAqIpGU8ZZk#t=17m25s for more details.
          
var index = -1,
              
length nativeMax(ceil((end start) / (step || 1)), 0),
              
result = Array(length);

          while (++
index length) {
            
result[index] = start;
            
start += step;
          }
          return 
result;
        }

        
/**
         * Invokes the iteratee function `n` times, returning an array of the results
         * of each invocation. The `iteratee` is bound to `thisArg` and invoked with
         * one argument; (index).
         *
         * @static
         * @memberOf _
         * @category Utility
         * @param {number} n The number of times to invoke `iteratee`.
         * @param {Function} [iteratee=_.identity] The function invoked per iteration.
         * @param {*} [thisArg] The `this` binding of `iteratee`.
         * @returns {Array} Returns the array of results.
         * @example
         *
         * var diceRolls = _.times(3, _.partial(_.random, 1, 6, false));
         * // => [3, 6, 4]
         *
         * _.times(3, function(n) { mage.castSpell(n); });
         * // => invokes `mage.castSpell(n)` three times with `n` of `0`, `1`, and `2` respectively
         *
         * _.times(3, function(n) { this.cast(n); }, mage);
         * // => also invokes `mage.castSpell(n)` three times
         */
        
function times(niterateethisArg) {
          
= +n;

          
// Exit early to avoid a JSC JIT bug in Safari 8
          // where `Array(0)` is treated as `Array(1)`.
          
if (|| !nativeIsFinite(n)) {
            return [];
          }
          var 
index = -1,
              
result = Array(nativeMin(nMAX_ARRAY_LENGTH));

          
iteratee bindCallback(iterateethisArg1);
          while (++
index n) {
            if (
index MAX_ARRAY_LENGTH) {
              
result[index] = iteratee(index);
            } else {
              
iteratee(index);
            }
          }
          return 
result;
        }

        
/**
         * Generates a unique ID. If `prefix` is provided the ID is appended to it.
         *
         * @static
         * @memberOf _
         * @category Utility
         * @param {string} [prefix] The value to prefix the ID with.
         * @returns {string} Returns the unique ID.
         * @example
         *
         * _.uniqueId('contact_');
         * // => 'contact_104'
         *
         * _.uniqueId();
         * // => '105'
         */
        
function uniqueId(prefix) {
          var 
id = ++idCounter;
          return 
baseToString(prefix) + id;
        }

        
/*------------------------------------------------------------------------*/

        // Ensure `new LodashWrapper` is an instance of `lodash`.
        
LodashWrapper.prototype lodash.prototype;

        
// Add functions to the `Map` cache.
        
MapCache.prototype['delete'] = mapDelete;
        
MapCache.prototype.get mapGet;
        
MapCache.prototype.has mapHas;
        
MapCache.prototype.set mapSet;

        
// Add functions to the `Set` cache.
        
SetCache.prototype.push cachePush;

        
// Assign cache to `_.memoize`.
        
memoize.Cache MapCache;

        
// Add functions that return wrapped values when chaining.
        
lodash.after after;
        
lodash.ary ary;
        
lodash.assign assign;
        
lodash.at at;
        
lodash.before before;
        
lodash.bind bind;
        
lodash.bindAll bindAll;
        
lodash.bindKey bindKey;
        
lodash.callback callback;
        
lodash.chain chain;
        
lodash.chunk chunk;
        
lodash.compact compact;
        
lodash.constant constant;
        
lodash.countBy countBy;
        
lodash.create create;
        
lodash.curry curry;
        
lodash.curryRight curryRight;
        
lodash.debounce debounce;
        
lodash.defaults defaults;
        
lodash.defer defer;
        
lodash.delay delay;
        
lodash.difference difference;
        
lodash.drop drop;
        
lodash.dropRight dropRight;
        
lodash.dropRightWhile dropRightWhile;
        
lodash.dropWhile dropWhile;
        
lodash.filter filter;
        
lodash.flatten flatten;
        
lodash.flattenDeep flattenDeep;
        
lodash.flow flow;
        
lodash.flowRight flowRight;
        
lodash.forEach = forEach;
        
lodash.forEachRight forEachRight;
        
lodash.forIn forIn;
        
lodash.forInRight forInRight;
        
lodash.forOwn forOwn;
        
lodash.forOwnRight forOwnRight;
        
lodash.functions functions;
        
lodash.groupBy groupBy;
        
lodash.indexBy indexBy;
        
lodash.initial initial;
        
lodash.intersection intersection;
        
lodash.invert invert;
        
lodash.invoke invoke;
        
lodash.keys keys;
        
lodash.keysIn keysIn;
        
lodash.map map;
        
lodash.mapValues mapValues;
        
lodash.matches matches;
        
lodash.memoize memoize;
        
lodash.merge merge;
        
lodash.mixin mixin;
        
lodash.negate negate;
        
lodash.omit omit;
        
lodash.once once;
        
lodash.pairs pairs;
        
lodash.partial partial;
        
lodash.partialRight partialRight;
        
lodash.partition partition;
        
lodash.pick pick;
        
lodash.pluck pluck;
        
lodash.property property;
        
lodash.propertyOf propertyOf;
        
lodash.pull pull;
        
lodash.pullAt pullAt;
        
lodash.range range;
        
lodash.rearg rearg;
        
lodash.reject reject;
        
lodash.remove remove;
        
lodash.rest rest;
        
lodash.shuffle shuffle;
        
lodash.slice slice;
        
lodash.sortBy sortBy;
        
lodash.sortByAll sortByAll;
        
lodash.take take;
        
lodash.takeRight takeRight;
        
lodash.takeRightWhile takeRightWhile;
        
lodash.takeWhile takeWhile;
        
lodash.tap tap;
        
lodash.throttle throttle;
        
lodash.thru thru;
        
lodash.times times;
        
lodash.toArray toArray;
        
lodash.toPlainObject toPlainObject;
        
lodash.transform transform;
        
lodash.union union;
        
lodash.uniq uniq;
        
lodash.unzip unzip;
        
lodash.values values;
        
lodash.valuesIn valuesIn;
        
lodash.where where;
        
lodash.without without;
        
lodash.wrap wrap;
        
lodash.xor = xor;
        
lodash.zip zip;
        
lodash.zipObject zipObject;

        
// Add aliases.
        
lodash.backflow flowRight;
        
lodash.collect map;
        
lodash.compose flowRight;
        
lodash.each = forEach;
        
lodash.eachRight forEachRight;
        
lodash.extend assign;
        
lodash.iteratee callback;
        
lodash.methods functions;
        
lodash.object zipObject;
        
lodash.select filter;
        
lodash.tail rest;
        
lodash.unique uniq;

        
// Add functions to `lodash.prototype`.
        
mixin(lodashlodash);

        
/*------------------------------------------------------------------------*/

        // Add functions that return unwrapped values when chaining.
        
lodash.attempt attempt;
        
lodash.camelCase camelCase;
        
lodash.capitalize capitalize;
        
lodash.clone = clone;
        
lodash.cloneDeep cloneDeep;
        
lodash.deburr deburr;
        
lodash.endsWith endsWith;
        
lodash.escape escape;
        
lodash.escapeRegExp escapeRegExp;
        
lodash.every every;
        
lodash.find find;
        
lodash.findIndex findIndex;
        
lodash.findKey findKey;
        
lodash.findLast findLast;
        
lodash.findLastIndex findLastIndex;
        
lodash.findLastKey findLastKey;
        
lodash.findWhere findWhere;
        
lodash.first first;
        
lodash.has has;
        
lodash.identity identity;
        
lodash.includes includes;
        
lodash.indexOf indexOf;
        
lodash.isArguments isArguments;
        
lodash.isArray isArray;
        
lodash.isBoolean isBoolean;
        
lodash.isDate isDate;
        
lodash.isElement isElement;
        
lodash.isEmpty isEmpty;
        
lodash.isEqual isEqual;
        
lodash.isError isError;
        
lodash.isFinite isFinite;
        
lodash.isFunction isFunction;
        
lodash.isMatch isMatch;
        
lodash.isNaN isNaN;
        
lodash.isNative isNative;
        
lodash.isNull isNull;
        
lodash.isNumber isNumber;
        
lodash.isObject isObject;
        
lodash.isPlainObject isPlainObject;
        
lodash.isRegExp isRegExp;
        
lodash.isString isString;
        
lodash.isTypedArray isTypedArray;
        
lodash.isUndefined isUndefined;
        
lodash.kebabCase kebabCase;
        
lodash.last last;
        
lodash.lastIndexOf lastIndexOf;
        
lodash.max max;
        
lodash.min min;
        
lodash.noConflict noConflict;
        
lodash.noop noop;
        
lodash.now now;
        
lodash.pad pad;
        
lodash.padLeft padLeft;
        
lodash.padRight padRight;
        
lodash.parseInt parseInt;
        
lodash.random random;
        
lodash.reduce reduce;
        
lodash.reduceRight reduceRight;
        
lodash.repeat repeat;
        
lodash.result result;
        
lodash.runInContext runInContext;
        
lodash.size size;
        
lodash.snakeCase snakeCase;
        
lodash.some some;
        
lodash.sortedIndex sortedIndex;
        
lodash.sortedLastIndex sortedLastIndex;
        
lodash.startCase startCase;
        
lodash.startsWith startsWith;
        
lodash.template template;
        
lodash.trim trim;
        
lodash.trimLeft trimLeft;
        
lodash.trimRight trimRight;
        
lodash.trunc trunc;
        
lodash.unescape unescape;
        
lodash.uniqueId uniqueId;
        
lodash.words words;

        
// Add aliases.
        
lodash.all every;
        
lodash.any some;
        
lodash.contains includes;
        
lodash.detect find;
        
lodash.foldl reduce;
        
lodash.foldr reduceRight;
        
lodash.head first;
        
lodash.include = includes;
        
lodash.inject reduce;

        
mixin(lodash, (function() {
          var 
source = {};
          
baseForOwn(lodash, function(funcmethodName) {
            if (!
lodash.prototype[methodName]) {
              
source[methodName] = func;
            }
          });
          return 
source;
        }()), 
false);

        
/*------------------------------------------------------------------------*/

        // Add functions capable of returning wrapped and unwrapped values when chaining.
        
lodash.sample sample;

        
lodash.prototype.sample = function(n) {
          if (!
this.__chain__ && == null) {
            return 
sample(this.value());
          }
          return 
this.thru(function(value) {
            return 
sample(valuen);
          });
        };

        
/*------------------------------------------------------------------------*/

        /**
         * The semantic version number.
         *
         * @static
         * @memberOf _
         * @type string
         */
        
lodash.VERSION VERSION;

        
// Assign default placeholders.
        
arrayEach(['bind''bindKey''curry''curryRight''partial''partialRight'], function(methodName) {
          
lodash[methodName].placeholder lodash;
        });

        
// Add `LazyWrapper` methods that accept an `iteratee` value.
        
arrayEach(['filter''map''takeWhile'], function(methodNameindex) {
          var 
isFilter index == LAZY_FILTER_FLAG;

          
LazyWrapper.prototype[methodName] = function(iterateethisArg) {
            var 
result this.clone(),
                
filtered result.filtered,
                
iteratees result.iteratees || (result.iteratees = []);

            
result.filtered filtered || isFilter || (index == LAZY_WHILE_FLAG && result.dir 0);
            
iteratees.push({ 'iteratee'getCallback(iterateethisArg3), 'type'index });
            return 
result;
          };
        });

        
// Add `LazyWrapper` methods for `_.drop` and `_.take` variants.
        
arrayEach(['drop''take'], function(methodNameindex) {
          var 
countName methodName 'Count',
              
whileName methodName 'While';

          
LazyWrapper.prototype[methodName] = function(n) {
            
== null nativeMax(+|| 00);

            var 
result this.clone();
            if (
result.filtered) {
              var 
value result[countName];
              
result[countName] = index nativeMin(valuen) : (value n);
            } else {
              var 
views result.views || (result.views = []);
              
views.push({ 'size'n'type'methodName + (result.dir 'Right' '') });
            }
            return 
result;
          };

          
LazyWrapper.prototype[methodName 'Right'] = function(n) {
            return 
this.reverse()[methodName](n).reverse();
          };

          
LazyWrapper.prototype[methodName 'RightWhile'] = function(predicatethisArg) {
            return 
this.reverse()[whileName](predicatethisArg).reverse();
          };
        });

        
// Add `LazyWrapper` methods for `_.first` and `_.last`.
        
arrayEach(['first''last'], function(methodNameindex) {
          var 
takeName 'take' + (index 'Right''');

          
LazyWrapper.prototype[methodName] = function() {
            return 
this[takeName](1).value()[0];
          };
        });

        
// Add `LazyWrapper` methods for `_.initial` and `_.rest`.
        
arrayEach(['initial''rest'], function(methodNameindex) {
          var 
dropName 'drop' + (index '' 'Right');

          
LazyWrapper.prototype[methodName] = function() {
            return 
this[dropName](1);
          };
        });

        
// Add `LazyWrapper` methods for `_.pluck` and `_.where`.
        
arrayEach(['pluck''where'], function(methodNameindex) {
          var 
operationName index 'filter' 'map',
              
createCallback index baseMatches baseProperty;

          
LazyWrapper.prototype[methodName] = function(value) {
            return 
this[operationName](createCallback(index value : (value '')));
          };
        });

        
LazyWrapper.prototype.dropWhile = function(iterateethisArg) {
          var 
done,
              
lastIndex,
              
isRight this.dir 0;

          
iteratee getCallback(iterateethisArg3);
          return 
this.filter(function(valueindex, array) {
            
done done && (isRight index lastIndex index lastIndex);
            
lastIndex index;
            return 
done || (done = !iteratee(valueindex, array));
          });
        };

        
LazyWrapper.prototype.reject = function(iterateethisArg) {
          
iteratee getCallback(iterateethisArg3);
          return 
this.filter(function(valueindex, array) {
            return !
iteratee(valueindex, array);
          });
        };

        
LazyWrapper.prototype.slice = function(startend) {
          
start start == null : (+start || 0);
          var 
result start this.takeRight(-start) : this.drop(start);

          if (
typeof end != 'undefined') {
            
end = (+end || 0);
            
result end result.dropRight(-end) : result.take(end start);
          }
          return 
result;
        };

        
// Add `LazyWrapper` methods to `lodash.prototype`.
        
baseForOwn(LazyWrapper.prototype, function(funcmethodName) {
          var 
lodashFunc lodash[methodName],
              
retUnwrapped = /^(?:first|last)$/.test(methodName);

          
lodash.prototype[methodName] = function() {
            var 
value this.__wrapped__,
                
args arguments,
                
chainAll this.__chain__,
                
isHybrid = !!this.__actions__.length,
                
isLazy value instanceof LazyWrapper,
                
onlyLazy isLazy && !isHybrid;

            if (
retUnwrapped && !chainAll) {
              return 
onlyLazy
                
func.call(value)
                : 
lodashFunc.call(lodashthis.value());
            }
            var 
interceptor = function(value) {
              var 
otherArgs = [value];
              
push.apply(otherArgsargs);
              return 
lodashFunc.apply(lodashotherArgs);
            };
            if (
isLazy || isArray(value)) {
              var 
wrapper onlyLazy value : new LazyWrapper(this),
                  
result func.apply(wrapperargs);

              if (!
retUnwrapped && (isHybrid || result.actions)) {
                var 
actions result.actions || (result.actions = []);
                
actions.push({ 'func'thru'args': [interceptor], 'thisArg'lodash });
              }
              return new 
LodashWrapper(resultchainAll);
            }
            return 
this.thru(interceptor);
          };
        });

        
// Add `Array.prototype` functions to `lodash.prototype`.
        
arrayEach(['concat''join''pop''push''shift''sort''splice''unshift'], function(methodName) {
          var 
func arrayProto[methodName],
              
chainName = /^(?:push|sort|unshift)$/.test(methodName) ? 'tap' 'thru',
              
retUnwrapped = /^(?:join|pop|shift)$/.test(methodName);

          
lodash.prototype[methodName] = function() {
            var 
args arguments;
            if (
retUnwrapped && !this.__chain__) {
              return 
func.apply(this.value(), args);
            }
            return 
this[chainName](function(value) {
              return 
func.apply(valueargs);
            });
          };
        });

        
// Add functions to the lazy wrapper.
        
LazyWrapper.prototype.clone = lazyClone;
        
LazyWrapper.prototype.reverse lazyReverse;
        
LazyWrapper.prototype.value lazyValue;

        
// Add chaining functions to the lodash wrapper.
        
lodash.prototype.chain wrapperChain;
        
lodash.prototype.reverse wrapperReverse;
        
lodash.prototype.toString wrapperToString;
        
lodash.prototype.toJSON lodash.prototype.valueOf lodash.prototype.value wrapperValue;

        
// Add function aliases to the lodash wrapper.
        
lodash.prototype.collect lodash.prototype.map;
        
lodash.prototype.head lodash.prototype.first;
        
lodash.prototype.select lodash.prototype.filter;
        
lodash.prototype.tail lodash.prototype.rest;

        return 
lodash;
      }

      
/*--------------------------------------------------------------------------*/

      // Export lodash.
      
var runInContext();

      
// Some AMD build optimizers like r.js check for condition patterns like the following:
      
if (true) {
        
// Expose lodash to the global object when an AMD loader is present to avoid
        // errors in cases where lodash is loaded by a script tag and not intended
        // as an AMD module. See http://requirejs.org/docs/errors.html#mismatch for
        // more details.
        
root._;

        
// Define as an anonymous module so, through path mapping, it can be
        // referenced as the "underscore" module.
        
!(__WEBPACK_AMD_DEFINE_RESULT__ = function() {
          return 
_;
        }.
call(exports__webpack_require__exportsmodule), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports __WEBPACK_AMD_DEFINE_RESULT__));
      }
      
// Check for `exports` after `define` in case a build optimizer adds an `exports` object.
      
else if (freeExports && freeModule) {
        
// Export for Node.js or RingoJS.
        
if (moduleExports) {
          (
freeModule.exports _)._;
        }
        
// Export for Narwhal or Rhino -require.
        
else {
          
freeExports._;
        }
      }
      else {
        
// Export for a browser or Rhino.
        
root._;
      }
    }.
call(this));

    
/* WEBPACK VAR INJECTION */}.call(exports__webpack_require__(8)(module), (function() { return this; }())))

/***/ },
/* 8 */
/***/ 
function(moduleexports) {

    
module.exports = function(module) {
        if(!
module.webpackPolyfill) {
            
module.deprecate = function() {};
            
module.paths = [];
            
// module.parent = undefined by default
            
module.children = [];
            
module.webpackPolyfill 1;
        }
        return 
module;
    }


/***/ },
/* 9 */
/***/ 
function(moduleexports__webpack_require__) {

    
/* jslint node: true */
    
'use strict';

    var 
__webpack_require__(7);
    var 
FontWrapper __webpack_require__(10);

    function 
typeName(bolditalics){
        var 
type 'normal';
        if (
bold && italicstype 'bolditalics';
        else if (
boldtype 'bold';
        else if (
italicstype 'italics';
        return 
type;
    }

    function 
FontProvider(fontDescriptorspdfDoc) {
        
this.fonts = {};
        
this.pdfDoc pdfDoc;
        
this.fontWrappers = {};

        for(var 
font in fontDescriptors) {
            if (
fontDescriptors.hasOwnProperty(font)) {
                var 
fontDef fontDescriptors[font];

                
this.fonts[font] = {
                    
normalfontDef.normal,
                    
boldfontDef.bold,
                    
italicsfontDef.italics,
                    
bolditalicsfontDef.bolditalics
                
};
            }
        }
    }

    
FontProvider.prototype.provideFont = function(familyNamebolditalics) {
        var 
type typeName(bolditalics);
      if (!
this.fonts[familyName] || !this.fonts[familyName][type]) {
            throw new 
Error('Font ''+ familyName + '' in style ''+type+ '' is not defined in the font section of the document definition.');
        }

      
this.fontWrappers[familyName] = this.fontWrappers[familyName] || {};

      if (!
this.fontWrappers[familyName][type]) {
            
this.fontWrappers[familyName][type] = new FontWrapper(this.pdfDocthis.fonts[familyName][type], familyName '(' type ')');
        }

      return 
this.fontWrappers[familyName][type];
    };

    
FontProvider.prototype.setFontRefsToPdfDoc = function(){
      var 
self this;

      
_.each(self.fontWrappers, function(fontFamily) {
        
_.each(fontFamily, function(fontWrapper){
          
_.each(fontWrapper.pdfFonts, function(font){
            if (!
self.pdfDoc.page.fonts[font.id]) {
              
self.pdfDoc.page.fonts[font.id] = font.ref();
            }
          });
        });
      });
    };

    
module.exports FontProvider;


/***/ },
/* 10 */
/***/ 
function(moduleexports__webpack_require__) {

    
/* jslint node: true */
    
'use strict';

    var 
__webpack_require__(7);

    function 
FontWrapper(pdfkitDocpathfontName){
        
this.MAX_CHAR_TYPES 92;

        
this.pdfkitDoc pdfkitDoc;
        
this.path path;
        
this.pdfFonts = [];
        
this.charCatalogue = [];
        
this.name fontName;

      
Object.defineProperty(this'ascender', {
        
get: function () {
          var 
font this.getFont(0);
          return 
font.ascender;
        }
      });
      
Object.defineProperty(this'decender', {
        
get: function () {
          var 
font this.getFont(0);
          return 
font.decender;
        }
      });

    }
    
// private

    
FontWrapper.prototype.getFont = function(index){
        if(!
this.pdfFonts[index]){

            var 
pseudoName this.name index;

            if(
this.postscriptName){
                
delete this.pdfkitDoc._fontFamilies[this.postscriptName];
            }

            
this.pdfFonts[index] = this.pdfkitDoc.font(this.pathpseudoName)._font;
            if(!
this.postscriptName){
                
this.postscriptName this.pdfFonts[index].name;
            }
        }

        return 
this.pdfFonts[index];
    };

    
// public
    
FontWrapper.prototype.widthOfString = function(){
        var 
font this.getFont(0);
        return 
font.widthOfString.apply(fontarguments);
    };

    
FontWrapper.prototype.lineHeight = function(){
        var 
font this.getFont(0);
        return 
font.lineHeight.apply(fontarguments);
    };

    
FontWrapper.prototype.ref = function(){
        var 
font this.getFont(0);
        return 
font.ref.apply(fontarguments);
    };

    var 
toCharCode = function(char){
      return 
char.charCodeAt(0);
    };

    
FontWrapper.prototype.encode = function(text){
      var 
self this;

      var 
charTypesInInline _.chain(text.split('')).map(toCharCode).uniq().value();
        if (
charTypesInInline.length self.MAX_CHAR_TYPES) {
            throw new 
Error('Inline has more than 'self.MAX_CHAR_TYPES ': ' text ' different character types and therefore cannot be properly embedded into pdf.');
        }


      var 
characterFitInFontWithIndex = function (charCatalogue) {
        return 
_.uniq(charCatalogue.concat(charTypesInInline)).length <= self.MAX_CHAR_TYPES;
      };

      var 
index _.findIndex(self.charCataloguecharacterFitInFontWithIndex);

      if(
index 0){
        
index self.charCatalogue.length;
        
self.charCatalogue[index] = [];
      }

        var 
font self.getFont(index);
        
font.use(text);

      
_.each(charTypesInInline, function(charCode){
        if(!
_.includes(self.charCatalogue[index], charCode)){
          
self.charCatalogue[index].push(charCode);
        }
      });

      var 
encodedText _.map(font.encode(text), function (char) {
        return 
char.charCodeAt(0).toString(16);
      }).
join('');

      return {
        
encodedTextencodedText,
        
fontIdfont.id
      
};
    };


    
module.exports FontWrapper;


/***/ },
/* 11 */
/***/ 
function(moduleexports__webpack_require__) {

    
/* jslint node: true */
    
'use strict';

    var 
__webpack_require__(7);
    var 
TraversalTracker __webpack_require__(12);
    var 
DocMeasure __webpack_require__(13);
    var 
DocumentContext __webpack_require__(19);
    var 
PageElementWriter __webpack_require__(20);
    var 
ColumnCalculator __webpack_require__(16);
    var 
TableProcessor __webpack_require__(23);
    var 
Line __webpack_require__(22);
    var 
pack __webpack_require__(17).pack;
    var 
offsetVector __webpack_require__(17).offsetVector;
    var 
fontStringify __webpack_require__(17).fontStringify;
    var 
isFunction __webpack_require__(17).isFunction;
    var 
TextTools __webpack_require__(14);
    var 
StyleContextStack __webpack_require__(15);

    function 
addAll(targetotherArray){
      
_.each(otherArray, function(item){
        
target.push(item);
      });
    }

    
/**
     * Creates an instance of LayoutBuilder - layout engine which turns document-definition-object
     * into a set of pages, lines, inlines and vectors ready to be rendered into a PDF
     *
     * @param {Object} pageSize - an object defining page width and height
     * @param {Object} pageMargins - an object defining top, left, right and bottom margins
     */
    
function LayoutBuilder(pageSizepageMarginsimageMeasure) {
        
this.pageSize pageSize;
        
this.pageMargins pageMargins;
        
this.tracker = new TraversalTracker();
        
this.imageMeasure imageMeasure;
        
this.tableLayouts = {};
    }

    
LayoutBuilder.prototype.registerTableLayouts = function (tableLayouts) {
      
this.tableLayouts pack(this.tableLayoutstableLayouts);
    };

    
/**
     * Executes layout engine on document-definition-object and creates an array of pages
     * containing positioned Blocks, Lines and inlines
     *
     * @param {Object} docStructure document-definition-object
     * @param {Object} fontProvider font provider
     * @param {Object} styleDictionary dictionary with style definitions
     * @param {Object} defaultStyle default style definition
     * @return {Array} an array of pages
     */
    
LayoutBuilder.prototype.layoutDocument = function (docStructurefontProviderstyleDictionarydefaultStylebackgroundheaderfooterimageswatermarkpageBreakBeforeFct) {

      function 
addPageBreaksIfNecessary(linearNodeListpages) {

            if(!
isFunction(pageBreakBeforeFct)){
                return 
false;
            }

        
linearNodeList _.reject(linearNodeList, function(node){
          return 
_.isEmpty(node.positions);
        });

        
_.each(linearNodeList, function(node) {
          var 
nodeInfo _.pick(node, [
            
'id''text''ul''ol''table''image''qr''canvas''columns',
            
'headlineLevel''style''pageBreak''pageOrientation',
            
'width''height'
          
]);
          
nodeInfo.startPosition _.first(node.positions);
          
nodeInfo.pageNumbers _.chain(node.positions).map('pageNumber').uniq().value();
          
nodeInfo.pages pages.length;
          
nodeInfo.stack _.isArray(node.stack);

          
node.nodeInfo nodeInfo;
        });

        return 
_.any(linearNodeList, function (nodeindexfollowingNodeList) {
          if (
node.pageBreak !== 'before' && !node.pageBreakCalculated) {
            
node.pageBreakCalculated true;
            var 
pageNumber _.first(node.nodeInfo.pageNumbers);

                    var 
followingNodesOnPage _.chain(followingNodeList).drop(index 1).filter(function (node0) {
              return 
_.contains(node0.nodeInfo.pageNumberspageNumber);
            }).
value();

            var 
nodesOnNextPage _.chain(followingNodeList).drop(index 1).filter(function (node0) {
              return 
_.contains(node0.nodeInfo.pageNumberspageNumber 1);
            }).
value();

            var 
previousNodesOnPage _.chain(followingNodeList).take(index).filter(function (node0) {
              return 
_.contains(node0.nodeInfo.pageNumberspageNumber);
            }).
value();

            if (
pageBreakBeforeFct(node.nodeInfo,
              
_.map(followingNodesOnPage'nodeInfo'),
              
_.map(nodesOnNextPage'nodeInfo'),
              
_.map(previousNodesOnPage'nodeInfo'))) {
              
node.pageBreak 'before';
              return 
true;
            }
          }
        });
      }

      
this.docMeasure = new DocMeasure(fontProviderstyleDictionarydefaultStylethis.imageMeasurethis.tableLayoutsimages);


      function 
resetXYs(result) {
        
_.each(result.linearNodeList, function (node) {
          
node.resetXY();
        });
      }

      var 
result this.tryLayoutDocument(docStructurefontProviderstyleDictionarydefaultStylebackgroundheaderfooterimageswatermark);
      while(
addPageBreaksIfNecessary(result.linearNodeListresult.pages)){
        
resetXYs(result);
        
result this.tryLayoutDocument(docStructurefontProviderstyleDictionarydefaultStylebackgroundheaderfooterimageswatermark);
      }

        return 
result.pages;
    };

    
LayoutBuilder.prototype.tryLayoutDocument = function (docStructurefontProviderstyleDictionarydefaultStylebackgroundheaderfooterimageswatermarkpageBreakBeforeFct) {

      
this.linearNodeList = [];
      
docStructure this.docMeasure.measureDocument(docStructure);

      
this.writer = new PageElementWriter(
        new 
DocumentContext(this.pageSizethis.pageMargins), this.tracker);

      var 
_this this;
      
this.writer.context().tracker.startTracking('pageAdded', function() {
        
_this.addBackground(background);
      });

      
this.addBackground(background);
      
this.processNode(docStructure);
      
this.addHeadersAndFooters(headerfooter);
      
/* jshint eqnull:true */
      
if(watermark != null)
        
this.addWatermark(watermarkfontProvider);

      return {
pagesthis.writer.context().pageslinearNodeListthis.linearNodeList};
    };


    
LayoutBuilder.prototype.addBackground = function(background) {
        var 
backgroundGetter isFunction(background) ? background : function() { return background; };

        var 
pageBackground backgroundGetter(this.writer.context().page 1);

        if (
pageBackground) {
          var 
pageSize this.writer.context().getCurrentPage().pageSize;
          
this.writer.beginUnbreakableBlock(pageSize.widthpageSize.height);
          
this.processNode(this.docMeasure.measureDocument(pageBackground));
          
this.writer.commitUnbreakableBlock(00);
        }
    };

    
LayoutBuilder.prototype.addStaticRepeatable = function(headerOrFootersizeFunction) {
      
this.addDynamicRepeatable(function() { return headerOrFooter; }, sizeFunction);
    };

    
LayoutBuilder.prototype.addDynamicRepeatable = function(nodeGettersizeFunction) {
      var 
pages this.writer.context().pages;

      for(var 
pageIndex 0pages.lengthpageIndex lpageIndex++) {
        
this.writer.context().page pageIndex;

        var 
node nodeGetter(pageIndex 1l);

        if (
node) {
          var 
sizes sizeFunction(this.writer.context().getCurrentPage().pageSizethis.pageMargins);
          
this.writer.beginUnbreakableBlock(sizes.widthsizes.height);
          
this.processNode(this.docMeasure.measureDocument(node));
          
this.writer.commitUnbreakableBlock(sizes.xsizes.y);
        }
      }
    };

    
LayoutBuilder.prototype.addHeadersAndFooters = function(headerfooter) {
      var 
headerSizeFct = function(pageSizepageMargins){
        return {
          
x0,
          
y0,
          
widthpageSize.width,
          
heightpageMargins.top
        
};
      };

      var 
footerSizeFct = function (pageSizepageMargins) {
        return {
          
x0,
          
ypageSize.height pageMargins.bottom,
          
widthpageSize.width,
          
heightpageMargins.bottom
        
};
      };

      if(
isFunction(header)) {
        
this.addDynamicRepeatable(headerheaderSizeFct);
      } else if(
header) {
        
this.addStaticRepeatable(headerheaderSizeFct);
      }

      if(
isFunction(footer)) {
        
this.addDynamicRepeatable(footerfooterSizeFct);
      } else if(
footer) {
        
this.addStaticRepeatable(footerfooterSizeFct);
      }
    };

    
LayoutBuilder.prototype.addWatermark = function(watermarkfontProvider){
      var 
defaultFont Object.getOwnPropertyNames(fontProvider.fonts)[0]; // TODO allow selection of other font
      
var watermarkObject = {
        
textwatermark,
        
fontfontProvider.provideFont(fontProvider[defaultFont], falsefalse),
        
sizegetSize(this.pageSizewatermarkfontProvider)
      };

      var 
pages this.writer.context().pages;
      for(var 
0pages.lengthli++) {
        
pages[i].watermark watermarkObject;
      }

      function 
getSize(pageSizewatermarkfontProvider){
        var 
width pageSize.width;
        var 
height pageSize.height;
        var 
targetWidth Math.sqrt(width*width height*height)*0.8/* page diagnoal * sample factor */
        
var textTools = new TextTools(fontProvider);
        var 
styleContextStack = new StyleContextStack();
        var 
size;

        
/**
         * Binary search the best font size.
         * Initial bounds [0, 1000]
         * Break when range < 1
         */
        
var 0;
        var 
1000;
        var 
= (a+b)/2;
        while(
Math.abs(b) > 1){
          
styleContextStack.push({
            
fontSizec
          
});
          
size textTools.sizeOfString(watermarkstyleContextStack);
          if(
size.width targetWidth){
            
c;
            
= (a+b)/2;
          }
          else if(
size.width targetWidth){
            
c;
            
= (a+b)/2;
          }
          
styleContextStack.pop();
        }
        
/*
          End binary search
         */
        
return {sizesizefontSizec};
      }
    };

    function 
decorateNode(node){
      var 
node.xnode.y;
      
node.positions = [];

      
_.each(node.canvas, function(vector){
        var 
vector.xvector.yx1 vector.x1y1 vector.y1x2 vector.x2y2 vector.y2;
        
vector.resetXY = function(){
          
vector.x;
          
vector.y;
                
vector.x1 x1;
                
vector.y1 y1;
                
vector.x2 x2;
                
vector.y2 y2;
        };
      });

      
node.resetXY = function(){
        
node.x;
        
node.y;
        
_.each(node.canvas, function(vector){
          
vector.resetXY();
        });
      };
    }

    
LayoutBuilder.prototype.processNode = function(node) {
      var 
self this;

      
this.linearNodeList.push(node);
      
decorateNode(node);

      
applyMargins(function() {
        var 
absPosition node.absolutePosition;
        if(
absPosition){
          
self.writer.context().beginDetachedBlock();
          
self.writer.context().moveTo(absPosition.|| 0absPosition.|| 0);
        }

        if (
node.stack) {
          
self.processVerticalContainer(node);
        } else if (
node.columns) {
          
self.processColumns(node);
        } else if (
node.ul) {
          
self.processList(falsenode);
        } else if (
node.ol) {
          
self.processList(truenode);
        } else if (
node.table) {
          
self.processTable(node);
        } else if (
node.text !== undefined) {
          
self.processLeaf(node);
        } else if (
node.image) {
          
self.processImage(node);
        } else if (
node.canvas) {
          
self.processCanvas(node);
        } else if (
node.qr) {
          
self.processQr(node);
        }else if (!
node._span) {
            throw 
'Unrecognized document structure: ' JSON.stringify(nodefontStringify);
            }

        if(
absPosition){
          
self.writer.context().endDetachedBlock();
        }
        });

        function 
applyMargins(callback) {
            var 
margin node._margin;

        if (
node.pageBreak === 'before') {
            
self.writer.moveToNextPage(node.pageOrientation);
        }

            if (
margin) {
                
self.writer.context().moveDown(margin[1]);
                
self.writer.context().addMargin(margin[0], margin[2]);
            }

            
callback();

            if(
margin) {
                
self.writer.context().addMargin(-margin[0], -margin[2]);
                
self.writer.context().moveDown(margin[3]);
            }

        if (
node.pageBreak === 'after') {
            
self.writer.moveToNextPage(node.pageOrientation);
        }
        }
    };

    
// vertical container
    
LayoutBuilder.prototype.processVerticalContainer = function(node) {
        var 
self this;
        
node.stack.forEach(function(item) {
            
self.processNode(item);
            
addAll(node.positionsitem.positions);

            
//TODO: paragraph gap
        
});
    };

    
// columns
    
LayoutBuilder.prototype.processColumns = function(columnNode) {
        var 
columns columnNode.columns;
        var 
availableWidth this.writer.context().availableWidth;
        var 
gaps gapArray(columnNode._gap);

        if (
gapsavailableWidth -= (gaps.length 1) * columnNode._gap;

        
ColumnCalculator.buildColumnWidths(columnsavailableWidth);
        var 
result this.processRow(columnscolumnsgaps);
        
addAll(columnNode.positionsresult.positions);


        function 
gapArray(gap) {
            if (!
gap) return null;

            var 
gaps = [];
            
gaps.push(0);

            for(var 
columns.length 10i--) {
                
gaps.push(gap);
            }

            return 
gaps;
        }
    };

    
LayoutBuilder.prototype.processRow = function(columnswidthsgapstableBodytableRow) {
      var 
self this;
      var 
pageBreaks = [], positions = [];

      
this.tracker.auto('pageChanged'storePageBreakData, function() {
        
widths widths || columns;

        
self.writer.context().beginColumnGroup();

        for(var 
0columns.lengthli++) {
          var 
column columns[i];
          var 
width widths[i]._calcWidth;
          var 
leftOffset colLeftOffset(i);

          if (
column.colSpan && column.colSpan 1) {
              for(var 
1column.colSpanj++) {
                  
width += widths[++i]._calcWidth gaps[i];
              }
          }

          
self.writer.context().beginColumn(widthleftOffsetgetEndingCell(columni));
          if (!
column._span) {
            
self.processNode(column);
            
addAll(positionscolumn.positions);
          } else if (
column._columnEndingContext) {
            
// row-span ending
            
self.writer.context().markEnding(column);
          }
        }

        
self.writer.context().completeColumnGroup();
      });

      return {
pageBreakspageBreakspositionspositions};

      function 
storePageBreakData(data) {
        var 
pageDesc;

        for(var 
0pageBreaks.lengthli++) {
          var 
desc pageBreaks[i];
          if (
desc.prevPage === data.prevPage) {
            
pageDesc desc;
            break;
          }
        }

        if (!
pageDesc) {
          
pageDesc data;
          
pageBreaks.push(pageDesc);
        }
        
pageDesc.prevY Math.max(pageDesc.prevYdata.prevY);
        
pageDesc.Math.min(pageDesc.ydata.y);
      }

        function 
colLeftOffset(i) {
            if (
gaps && gaps.length i) return gaps[i];
            return 
0;
        }

      function 
getEndingCell(columncolumnIndex) {
        if (
column.rowSpan && column.rowSpan 1) {
          var 
endingRow tableRow column.rowSpan 1;
          if (
endingRow >= tableBody.length) throw 'Row span for column ' columnIndex ' (with indexes starting from 0) exceeded row count';
          return 
tableBody[endingRow][columnIndex];
        }

        return 
null;
      }
    };

    
// lists
    
LayoutBuilder.prototype.processList = function(orderedListnode) {
        var 
self this,
          
items orderedList node.ol node.ul,
          
gapSize node._gapSize;

        
this.writer.context().addMargin(gapSize.width);

        var 
nextMarker;
        
this.tracker.auto('lineAdded'addMarkerToFirstLeaf, function() {
            
items.forEach(function(item) {
                
nextMarker item.listMarker;
                
self.processNode(item);
                
addAll(node.positionsitem.positions);
            });
        });

        
this.writer.context().addMargin(-gapSize.width);

        function 
addMarkerToFirstLeaf(line) {
            
// I'm not very happy with the way list processing is implemented
            // (both code and algorithm should be rethinked)
            
if (nextMarker) {
                var 
marker nextMarker;
                
nextMarker null;

                if (
marker.canvas) {
                    var 
vector marker.canvas[0];

                    
offsetVector(vector, -marker._minWidth0);
                    
self.writer.addVector(vector);
                } else {
                    var 
markerLine = new Line(self.pageSize.width);
                    
markerLine.addInline(marker._inlines[0]);
                    
markerLine.= -marker._minWidth;
                    
markerLine.line.getAscenderHeight() - markerLine.getAscenderHeight();
                    
self.writer.addLine(markerLinetrue);
                }
            }
        }
    };

    
// tables
    
LayoutBuilder.prototype.processTable = function(tableNode) {
      var 
processor = new TableProcessor(tableNode);

      
processor.beginTable(this.writer);

      for(var 
0tableNode.table.body.lengthli++) {
        
processor.beginRow(ithis.writer);

        var 
result this.processRow(tableNode.table.body[i], tableNode.table.widthstableNode._offsets.offsetstableNode.table.bodyi);
        
addAll(tableNode.positionsresult.positions);

        
processor.endRow(ithis.writerresult.pageBreaks);
      }

      
processor.endTable(this.writer);
    };

    
// leafs (texts)
    
LayoutBuilder.prototype.processLeaf = function(node) {
        var 
line this.buildNextLine(node);
      var 
currentHeight = (line) ? line.getHeight() : 0;
      var 
maxHeight node.maxHeight || -1;

      while (
line && (maxHeight === -|| currentHeight maxHeight)) {
        var 
positions this.writer.addLine(line);
        
node.positions.push(positions);
        
line this.buildNextLine(node);
        if (
line) {
          
currentHeight += line.getHeight();
        }
        }
    };

    
LayoutBuilder.prototype.buildNextLine = function(textNode) {
        if (!
textNode._inlines || textNode._inlines.length === 0) return null;

        var 
line = new Line(this.writer.context().availableWidth);

        while(
textNode._inlines && textNode._inlines.length && line.hasEnoughSpaceForInline(textNode._inlines[0])) {
            
line.addInline(textNode._inlines.shift());
        }

        
line.lastLineInParagraph textNode._inlines.length === 0;

        return 
line;
    };

    
// images
    
LayoutBuilder.prototype.processImage = function(node) {
        var 
position this.writer.addImage(node);
        
node.positions.push(position);
    };

    
LayoutBuilder.prototype.processCanvas = function(node) {
        var 
height node._minHeight;

        if (
this.writer.context().availableHeight height) {
            
// TODO: support for canvas larger than a page
            // TODO: support for other overflow methods

            
this.writer.moveToNextPage();
        }

        
node.canvas.forEach(function(vector) {
            var 
position this.writer.addVector(vector);
            
node.positions.push(position);
        }, 
this);

        
this.writer.context().moveDown(height);
    };

    
LayoutBuilder.prototype.processQr = function(node) {
        var 
position this.writer.addQr(node);
        
node.positions.push(position);
    };

    
module.exports LayoutBuilder;


/***/ },
/* 12 */
/***/ 
function(moduleexports) {

    
/* jslint node: true */
    
'use strict';

    
/**
    * Creates an instance of TraversalTracker
    *
    * @constructor
    */
    
function TraversalTracker() {
        
this.events = {};
    }

    
TraversalTracker.prototype.startTracking = function(eventcb) {
        var 
callbacks = (this.events[event] || (this.events[event] = []));

        if (
callbacks.indexOf(cb) < 0) {
            
callbacks.push(cb);
        }
    };

    
TraversalTracker.prototype.stopTracking = function(eventcb) {
        var 
callbacks this.events[event];

        if (
callbacks) {
            var 
index callbacks.indexOf(cb);
            if (
index >= 0) {
                
callbacks.splice(index1);
            }
        }
    };

    
TraversalTracker.prototype.emit = function(event) {
        var 
args = Array.prototype.slice.call(arguments1);

        var 
callbacks this.events[event];

        if (
callbacks) {
            
callbacks.forEach(function(cb) {
                
cb.apply(thisargs);
            });
        }
    };

    
TraversalTracker.prototype.auto = function(eventcbinnerBlock) {
        
this.startTracking(eventcb);
        
innerBlock();
        
this.stopTracking(eventcb);
    };

    
module.exports TraversalTracker;


/***/ },
/* 13 */
/***/ 
function(moduleexports__webpack_require__) {

    
/* jslint node: true */
    
'use strict';

    var 
TextTools __webpack_require__(14);
    var 
StyleContextStack __webpack_require__(15);
    var 
ColumnCalculator __webpack_require__(16);
    var 
fontStringify __webpack_require__(17).fontStringify;
    var 
pack __webpack_require__(17).pack;
    var 
qrEncoder __webpack_require__(18);

    
/**
    * @private
    */
    
function DocMeasure(fontProviderstyleDictionarydefaultStyleimageMeasuretableLayoutsimages) {
        
this.textTools = new TextTools(fontProvider);
        
this.styleStack = new StyleContextStack(styleDictionarydefaultStyle);
        
this.imageMeasure imageMeasure;
        
this.tableLayouts tableLayouts;
        
this.images images;
        
this.autoImageIndex 1;
    }

    
/**
    * Measures all nodes and sets min/max-width properties required for the second
    * layout-pass.
    * @param  {Object} docStructure document-definition-object
    * @return {Object}              document-measurement-object
    */
    
DocMeasure.prototype.measureDocument = function(docStructure) {
        return 
this.measureNode(docStructure);
    };

    
DocMeasure.prototype.measureNode = function(node) {
        
// expand shortcuts
        
if (node instanceof Array) {
            
node = { stacknode };
        } else if (
typeof node == 'string' || node instanceof String) {
            
node = { textnode };
        }

        var 
self this;

        return 
this.styleStack.auto(node, function() {
            
// TODO: refactor + rethink whether this is the proper way to handle margins
            
node._margin getNodeMargin(node);

            if (
node.columns) {
                return 
extendMargins(self.measureColumns(node));
            } else if (
node.stack) {
                return 
extendMargins(self.measureVerticalContainer(node));
            } else if (
node.ul) {
                return 
extendMargins(self.measureList(falsenode));
            } else if (
node.ol) {
                return 
extendMargins(self.measureList(truenode));
            } else if (
node.table) {
                return 
extendMargins(self.measureTable(node));
            } else if (
node.text !== undefined) {
                return 
extendMargins(self.measureLeaf(node));
            } else if (
node.image) {
                return 
extendMargins(self.measureImage(node));
            } else if (
node.canvas) {
                return 
extendMargins(self.measureCanvas(node));
            } else if (
node.qr) {
                return 
extendMargins(self.measureQr(node));
            } else {
                throw 
'Unrecognized document structure: ' JSON.stringify(nodefontStringify);
            }
        });

        function 
extendMargins(node) {
            var 
margin node._margin;

            if (
margin) {
                
node._minWidth += margin[0] + margin[2];
                
node._maxWidth += margin[0] + margin[2];
            }

            return 
node;
        }

        function 
getNodeMargin() {

            function 
processSingleMargins(nodecurrentMargin){
                if (
node.marginLeft || node.marginTop || node.marginRight || node.marginBottom) {
                    return [
                        
node.marginLeft || currentMargin[0] || 0,
                        
node.marginTop || currentMargin[1] || 0,
                        
node.marginRight || currentMargin[2]  || 0,
                        
node.marginBottom || currentMargin[3]  || 0
                    
];
                }
                return 
currentMargin;
            }

            function 
flattenStyleArray(styleArray){
                var 
flattenedStyles = {};
                for (var 
styleArray.length 1>= 0i--) {
                    var 
styleName styleArray[i];
                    var 
style self.styleStack.styleDictionary[styleName];
                    for(var 
key in style){
                        if(
style.hasOwnProperty(key)){
                            
flattenedStyles[key] = style[key];
                        }
                    }
                }
                return 
flattenedStyles;
            }

            function 
convertMargin(margin) {
                if (
typeof margin === 'number' || margin instanceof Number) {
                    
margin = [ marginmarginmarginmargin ];
                } else if (
margin instanceof Array) {
                    if (
margin.length === 2) {
                        
margin = [ margin[0], margin[1], margin[0], margin[1] ];
                    }
                }
                return 
margin;
            }

            var 
margin = [undefinedundefinedundefinedundefined];

            if(
node.style) {
                var 
styleArray = (node.style instanceof Array) ? node.style : [node.style];
                var 
flattenedStyleArray flattenStyleArray(styleArray);

                if(
flattenedStyleArray) {
                    
margin processSingleMargins(flattenedStyleArraymargin);
                }

                if(
flattenedStyleArray.margin){
                    
margin convertMargin(flattenedStyleArray.margin);
                }
            }
            
            
margin processSingleMargins(nodemargin);

            if(
node.margin){
                
margin convertMargin(node.margin);
            }

            if(
margin[0] === undefined && margin[1] === undefined && margin[2] === undefined && margin[3] === undefined) {
                return 
null;
            } else {
                return 
margin;
            }
        }
    };

    
DocMeasure.prototype.convertIfBase64Image = function(node) {
        if (/^
data:image/(jpeg|jpg|png);base64,/.test(node.image)) {
            var 
label '$$pdfmake$$' this.autoImageIndex++;
            
this.images[label] = node.image;
            
node.image label;
    }
    };

    
DocMeasure.prototype.measureImage = function(node) {
        if (
this.images) {
            
this.convertIfBase64Image(node);
        }

        var 
imageSize this.imageMeasure.measureImage(node.image);

        if (
node.fit) {
            var 
factor = (imageSize.width imageSize.height node.fit[0] / node.fit[1]) ? node.fit[0] / imageSize.width node.fit[1] / imageSize.height;
            
node._width node._minWidth node._maxWidth imageSize.width factor;
            
node._height imageSize.height factor;
        } else {
            
node._width node._minWidth node._maxWidth node.width || imageSize.width;
            
node._height node.height || (imageSize.height node._width imageSize.width);
        }

        
node._alignment this.styleStack.getProperty('alignment');
        return 
node;
    };

    
DocMeasure.prototype.measureLeaf = function(node) {
        var 
data this.textTools.buildInlines(node.textthis.styleStack);

        
node._inlines data.items;
        
node._minWidth data.minWidth;
        
node._maxWidth data.maxWidth;

        return 
node;
    };

    
DocMeasure.prototype.measureVerticalContainer = function(node) {
        var 
items node.stack;

        
node._minWidth 0;
        
node._maxWidth 0;

        for(var 
0items.lengthli++) {
            
items[i] = this.measureNode(items[i]);

            
node._minWidth Math.max(node._minWidthitems[i]._minWidth);
            
node._maxWidth Math.max(node._maxWidthitems[i]._maxWidth);
        }

        return 
node;
    };

    
DocMeasure.prototype.gapSizeForList = function(isOrderedListlistItems) {
        if (
isOrderedList) {
            var 
longestNo = (listItems.length).toString().replace(/./g'9');
            return 
this.textTools.sizeOfString(longestNo '. 'this.styleStack);
        } else {
            return 
this.textTools.sizeOfString('9. 'this.styleStack);
        }
    };

    
DocMeasure.prototype.buildMarker = function(isOrderedListcounterstyleStackgapSize) {
        var 
marker;

        if (
isOrderedList) {
            
marker = { _inlinesthis.textTools.buildInlines(counterstyleStack).items };
        }
        else {
            
// TODO: ascender-based calculations
            
var radius gapSize.fontSize 6;
            
marker = {
                
canvas: [ {
                    
xradius,
                    
y: (gapSize.height gapSize.lineHeight) + gapSize.decender gapSize.fontSize 3,//0,// gapSize.fontSize * 2 / 3,
                    
r1radius,
                    
r2radius,
                    
type'ellipse',
                    
color'black'
                
} ]
            };
        }

        
marker._minWidth marker._maxWidth gapSize.width;
        
marker._minHeight marker._maxHeight gapSize.height;

        return 
marker;
    };

    
DocMeasure.prototype.measureList = function(isOrderednode) {
        var 
style this.styleStack.clone();

        var 
items isOrdered node.ol node.ul;
        
node._gapSize this.gapSizeForList(isOrdereditems);
        
node._minWidth 0;
        
node._maxWidth 0;

        var 
counter 1;

        for(var 
0items.lengthli++) {
            var 
nextItem items[i] = this.measureNode(items[i]);

            var 
marker counter++ + '. ';

            if (!
nextItem.ol && !nextItem.ul) {
                
nextItem.listMarker this.buildMarker(isOrderednextItem.counter || markerstylenode._gapSize);
            }  
// TODO: else - nested lists numbering

            
node._minWidth Math.max(node._minWidthitems[i]._minWidth node._gapSize.width);
            
node._maxWidth Math.max(node._maxWidthitems[i]._maxWidth node._gapSize.width);
        }

        return 
node;
    };

    
DocMeasure.prototype.measureColumns = function(node) {
        var 
columns node.columns;
        
node._gap this.styleStack.getProperty('columnGap') || 0;

        for(var 
0columns.lengthli++) {
            
columns[i] = this.measureNode(columns[i]);
        }

        var 
measures ColumnCalculator.measureMinMax(columns);

        
node._minWidth measures.min node._gap * (columns.length 1);
        
node._maxWidth measures.max node._gap * (columns.length 1);

        return 
node;
    };

    
DocMeasure.prototype.measureTable = function(node) {
        
extendTableWidths(node);
        
node._layout getLayout(this.tableLayouts);
        
node._offsets getOffsets(node._layout);

        var 
colSpans = [];
        var 
colrowcolsrows;

        for(
col 0cols node.table.body[0].lengthcol colscol++) {
            var 
node.table.widths[col];
            
c._minWidth 0;
            
c._maxWidth 0;

            for(
row 0rows node.table.body.lengthrow rowsrow++) {
                var 
rowData node.table.body[row];
                var 
data rowData[col];
                if (!
data._span) {
                    var 
_this this;
                    
data rowData[col] = this.styleStack.auto(datameasureCb(thisdata));

                    if (
data.colSpan && data.colSpan 1) {
                        
markSpans(rowDatacoldata.colSpan);
                        
colSpans.push({ colcolspandata.colSpanminWidthdata._minWidthmaxWidthdata._maxWidth });
                    } else {
                        
c._minWidth Math.max(c._minWidthdata._minWidth);
                        
c._maxWidth Math.max(c._maxWidthdata._maxWidth);
                    }
                }

                if (
data.rowSpan && data.rowSpan 1) {
                    
markVSpans(node.tablerowcoldata.rowSpan);
                }
            }
        }

        
extendWidthsForColSpans();

        var 
measures ColumnCalculator.measureMinMax(node.table.widths);

        
node._minWidth measures.min node._offsets.total;
        
node._maxWidth measures.max node._offsets.total;

        return 
node;

        function 
measureCb(_thisdata) {
            return function() {
                if (
data !== null && typeof data === 'object') {
                    
data.fillColor _this.styleStack.getProperty('fillColor');
                }
                return 
_this.measureNode(data);
            };
        }

        function 
getLayout(tableLayouts) {
            var 
layout node.layout;

            if (
typeof node.layout === 'string' || node instanceof String) {
                
layout tableLayouts[layout];
            }

            var 
defaultLayout = {
                
hLineWidth: function(inode) { return 1; }, //return node.table.headerRows && i === node.table.headerRows && 3 || 0; },
                
vLineWidth: function(inode) { return 1; },
                
hLineColor: function(inode) { return 'black'; },
                
vLineColor: function(inode) { return 'black'; },
                
paddingLeft: function(inode) { return 4; }, //i && 4 || 0; },
                
paddingRight: function(inode) { return 4; }, //(i < node.table.widths.length - 1) ? 4 : 0; },
                
paddingTop: function(inode) { return 2; },
                
paddingBottom: function(inode) { return 2; }
            };

            return 
pack(defaultLayoutlayout);
        }

        function 
getOffsets(layout) {
            var 
offsets = [];
            var 
totalOffset 0;
            var 
prevRightPadding 0;

            for(var 
0node.table.widths.lengthli++) {
                var 
lOffset prevRightPadding layout.vLineWidth(inode) + layout.paddingLeft(inode);
                
offsets.push(lOffset);
                
totalOffset += lOffset;
                
prevRightPadding layout.paddingRight(inode);
            }

            
totalOffset += prevRightPadding layout.vLineWidth(node.table.widths.lengthnode);

            return {
                
totaltotalOffset,
                
offsetsoffsets
            
};
        }

        function 
extendWidthsForColSpans() {
            var 
qj;

            for (var 
0colSpans.lengthli++) {
                var 
span colSpans[i];

                var 
currentMinMax getMinMax(span.colspan.spannode._offsets);
                var 
minDifference span.minWidth currentMinMax.minWidth;
                var 
maxDifference span.maxWidth currentMinMax.maxWidth;

                if (
minDifference 0) {
                    
minDifference span.span;

                    for(
0span.spanj++) {
                        
node.table.widths[span.col j]._minWidth += q;
                    }
                }

                if (
maxDifference 0) {
                    
maxDifference span.span;

                    for(
0span.spanj++) {
                        
node.table.widths[span.col j]._maxWidth += q;
                    }
                }
            }
        }

        function 
getMinMax(colspanoffsets) {
            var 
result = { minWidth0maxWidth};

            for(var 
0spani++) {
                
result.minWidth += node.table.widths[col i]._minWidth + (ioffsets.offsets[col i] : 0);
                
result.maxWidth += node.table.widths[col i]._maxWidth + (ioffsets.offsets[col i] : 0);
            }

            return 
result;
        }

        function 
markSpans(rowDatacolspan) {
            for (var 
1spani++) {
                
rowData[col i] = {
                    
_spantrue,
                    
_minWidth0,
                    
_maxWidth0,
                    
rowSpanrowData[col].rowSpan
                
};
            }
        }

        function 
markVSpans(tablerowcolspan) {
            for (var 
1spani++) {
                
table.body[row i][col] = {
                    
_spantrue,
                    
_minWidth0,
                    
_maxWidth0,
                    
fillColortable.body[row][col].fillColor
                
};
            }
        }

        function 
extendTableWidths(node) {
            if (!
node.table.widths) {
                
node.table.widths 'auto';
            }

            if (
typeof node.table.widths === 'string' || node.table.widths instanceof String) {
                
node.table.widths = [ node.table.widths ];

                while(
node.table.widths.length node.table.body[0].length) {
                    
node.table.widths.push(node.table.widths[node.table.widths.length 1]);
                }
            }

            for(var 
0node.table.widths.lengthli++) {
                var 
node.table.widths[i];
                if (
typeof w === 'number' || instanceof Number || typeof w === 'string' || instanceof String) {
                    
node.table.widths[i] = { width};
                }
            }
        }
    };

    
DocMeasure.prototype.measureCanvas = function(node) {
        var 
00;

        for(var 
0node.canvas.lengthli++) {
            var 
vector node.canvas[i];

            switch(
vector.type) {
            case 
'ellipse':
                
Math.max(wvector.vector.r1);
                
Math.max(hvector.vector.r2);
                break;
            case 
'rect':
                
Math.max(wvector.vector.w);
                
Math.max(hvector.vector.h);
                break;
            case 
'line':
                
Math.max(wvector.x1vector.x2);
                
Math.max(hvector.y1vector.y2);
                break;
            case 
'polyline':
                for(var 
i2 0l2 vector.points.lengthi2 l2i2++) {
                    
Math.max(wvector.points[i2].x);
                    
Math.max(hvector.points[i2].y);
                }
                break;
            }
        }

        
node._minWidth node._maxWidth w;
        
node._minHeight node._maxHeight h;

        return 
node;
    };

    
DocMeasure.prototype.measureQr = function(node) {
        
node qrEncoder.measure(node);
        
node._alignment this.styleStack.getProperty('alignment');
        return 
node;
    };

    
module.exports DocMeasure;


/***/ },
/* 14 */
/***/ 
function(moduleexports) {

    
/* jslint node: true */
    
'use strict';

    var 
WORD_RE = /([^ ,/!.?:;-n]*[ ,/!.?:;-]*)|n/g;
    
// /S*s*/g to be considered (I'm not sure however - we shouldn't split 'aaa !!!!')

    
var LEADING = /^(s)+/g;
    var 
TRAILING = /(s)+$/g;

    
/**
    * Creates an instance of TextTools - text measurement utility
    *
    * @constructor
    * @param {FontProvider} fontProvider
    */
    
function TextTools(fontProvider) {
        
this.fontProvider fontProvider;
    }

    
/**
     * Converts an array of strings (or inline-definition-objects) into a collection
     * of inlines and calculated minWidth/maxWidth.
    * and their min/max widths
    * @param  {Object} textArray - an array of inline-definition-objects (or strings)
    * @param  {Object} styleContextStack current style stack
    * @return {Object}                   collection of inlines, minWidth, maxWidth
    */
    
TextTools.prototype.buildInlines = function(textArraystyleContextStack) {
        var 
measured measure(this.fontProvidertextArraystyleContextStack);

        var 
minWidth 0,
            
maxWidth 0,
            
currentLineWidth;

        
measured.forEach(function (inline) {
            
minWidth Math.max(minWidthinline.width inline.leadingCut inline.trailingCut);

            if (!
currentLineWidth) {
                
currentLineWidth = { width0leadingCutinline.leadingCuttrailingCut};
            }

            
currentLineWidth.width += inline.width;
            
currentLineWidth.trailingCut inline.trailingCut;

            
maxWidth Math.max(maxWidthgetTrimmedWidth(currentLineWidth));

            if (
inline.lineEnd) {
                
currentLineWidth null;
            }
        });

        return {
            
itemsmeasured,
            
minWidthminWidth,
            
maxWidthmaxWidth
        
};

        function 
getTrimmedWidth(item) {
            return 
Math.max(0item.width item.leadingCut item.trailingCut);
        }
    };

    
/**
    * Returns size of the specified string (without breaking it) using the current style
    * @param  {String} text              text to be measured
    * @param  {Object} styleContextStack current style stack
    * @return {Object}                   size of the specified string
    */
    
TextTools.prototype.sizeOfString = function(textstyleContextStack) {
        
text text.replace('t''    ');

        
//TODO: refactor - extract from measure
        
var fontName getStyleProperty({}, styleContextStack'font''Roboto');
        var 
fontSize getStyleProperty({}, styleContextStack'fontSize'12);
        var 
bold getStyleProperty({}, styleContextStack'bold'false);
        var 
italics getStyleProperty({}, styleContextStack'italics'false);
        var 
lineHeight getStyleProperty({}, styleContextStack'lineHeight'1);

        var 
font this.fontProvider.provideFont(fontNamebolditalics);

        return {
            
widthfont.widthOfString(removeDiacritics(text), fontSize),
            
heightfont.lineHeight(fontSize) * lineHeight,
            
fontSizefontSize,
            
lineHeightlineHeight,
            
ascenderfont.ascender 1000 fontSize,
            
decenderfont.decender 1000 fontSize
        
};
    };

    function 
splitWords(text) {
        var 
results = [];
        
text text.replace('t''    ');

        var array = 
text.match(WORD_RE);

        
// i < l - 1, because the last match is always an empty string
        // other empty strings however are treated as new-lines
        
for(var 0= array.length1i++) {
            var 
item = array[i];

            var 
isNewLine item.length === 0;

            if (!
isNewLine) {
                
results.push({textitem});
            }
            else {
                var 
shouldAddLine = (results.length === || results[results.length 1].lineEnd);

                if (
shouldAddLine) {
                    
results.push({ text''lineEndtrue });
                }
                else {
                    
results[results.length 1].lineEnd true;
                }
            }
        }

        return 
results;
    }

    function 
copyStyle(sourcedestination) {
        
destination destination || {};
        
source source || {}; //TODO: default style

        
for(var key in source) {
            if (
key != 'text' && source.hasOwnProperty(key)) {
                
destination[key] = source[key];
            }
        }

        return 
destination;
    }

    function 
normalizeTextArray(array) {
        var 
results = [];

        if (
typeof array == 'string' || array instanceof String) {
            array = [ array ];
        }

        for(var 
0= array.lengthli++) {
            var 
item = array[i];
            var 
style null;
            var 
words;

            if (
typeof item == 'string' || item instanceof String) {
                
words splitWords(item);
            } else {
                
words splitWords(item.text);
                
style copyStyle(item);
            }

            for(var 
i2 0l2 words.lengthi2 l2i2++) {
                var 
result = {
                    
textwords[i2].text
                
};

                if (
words[i2].lineEnd) {
                    
result.lineEnd true;
                }

                
copyStyle(styleresult);

                
results.push(result);
            }
        }

        return 
results;
    }

    
//TODO: support for other languages (currently only polish is supported)
    
var diacriticsMap = { 'Ą''A''Ć''C''Ę''E''Ł''L''Ń''N''Ó''O''Ś''S''Ź''Z''Ż''Z''ą''a''ć''c''ę''e''ł''l''ń''n''ó''o''ś''s''ź''z''ż''z' };
    
// '  << atom.io workaround

    
function removeDiacritics(text) {
        return 
text.replace(/[^A-Za-z0-9[] ]/g, function(a) {
            return 
diacriticsMap[a] || a;
        });
    }

    function 
getStyleProperty(itemstyleContextStackpropertydefaultValue) {
        var 
value;

        if (
item[property] !== undefined && item[property] !== null) {
            
// item defines this property
            
return item[property];
        }

        if (!
styleContextStack) return defaultValue;

        
styleContextStack.auto(item, function() {
            
value styleContextStack.getProperty(property);
        });

        if (
value !== null && value !== undefined) {
            return 
value;
        } else {
            return 
defaultValue;
        }
    }

    function 
measure(fontProvidertextArraystyleContextStack) {
        var 
normalized normalizeTextArray(textArray);

        
normalized.forEach(function(item) {
            var 
fontName getStyleProperty(itemstyleContextStack'font''Roboto');
            var 
fontSize getStyleProperty(itemstyleContextStack'fontSize'12);
            var 
bold getStyleProperty(itemstyleContextStack'bold'false);
            var 
italics getStyleProperty(itemstyleContextStack'italics'false);
            var 
color getStyleProperty(itemstyleContextStack'color''black');
            var 
decoration getStyleProperty(itemstyleContextStack'decoration'null);
            var 
decorationColor getStyleProperty(itemstyleContextStack'decorationColor'null);
            var 
decorationStyle getStyleProperty(itemstyleContextStack'decorationStyle'null);
            var 
background getStyleProperty(itemstyleContextStack'background'null);
            var 
lineHeight getStyleProperty(itemstyleContextStack'lineHeight'1);

            var 
font fontProvider.provideFont(fontNamebolditalics);

            
// TODO: character spacing
            
item.width font.widthOfString(removeDiacritics(item.text), fontSize);
            
item.height font.lineHeight(fontSize) * lineHeight;

            var 
leadingSpaces item.text.match(LEADING);
            var 
trailingSpaces item.text.match(TRAILING);
            if (
leadingSpaces) {
                
item.leadingCut font.widthOfString(leadingSpaces[0], fontSize);
            }
            else {
                
item.leadingCut 0;
            }

            if (
trailingSpaces) {
                
item.trailingCut font.widthOfString(trailingSpaces[0], fontSize);
            }
            else {
                
item.trailingCut 0;
            }

            
item.alignment getStyleProperty(itemstyleContextStack'alignment''left');
            
item.font font;
            
item.fontSize fontSize;
            
item.color color;
            
item.decoration decoration;
            
item.decorationColor decorationColor;
            
item.decorationStyle decorationStyle;
            
item.background background;
        });

        return 
normalized;
    }

    
/****TESTS**** (add a leading '/' to uncomment)
    TextTools.prototype.splitWords = splitWords;
    TextTools.prototype.normalizeTextArray = normalizeTextArray;
    TextTools.prototype.measure = measure;
    // */


    
module.exports TextTools;


/***/ },
/* 15 */
/***/ 
function(moduleexports) {

    
/* jslint node: true */
    
'use strict';

    
/**
    * Creates an instance of StyleContextStack used for style inheritance and style overrides
    *
    * @constructor
    * @this {StyleContextStack}
    * @param {Object} named styles dictionary
    * @param {Object} optional default style definition
    */
    
function StyleContextStack (styleDictionarydefaultStyle) {
        
this.defaultStyle defaultStyle || {};
        
this.styleDictionary styleDictionary;
        
this.styleOverrides = [];
    }

    
/**
    * Creates cloned version of current stack
    * @return {StyleContextStack} current stack snapshot
    */
    
StyleContextStack.prototype.clone = function() {
        var 
stack = new StyleContextStack(this.styleDictionarythis.defaultStyle);

        
this.styleOverrides.forEach(function(item) {
            
stack.styleOverrides.push(item);
        });

        return 
stack;
    };

    
/**
    * Pushes style-name or style-overrides-object onto the stack for future evaluation
    *
    * @param {String|Object} styleNameOrOverride style-name (referring to styleDictionary) or
    *                                            a new dictionary defining overriding properties
    */
    
StyleContextStack.prototype.push = function(styleNameOrOverride) {
        
this.styleOverrides.push(styleNameOrOverride);
    };

    
/**
    * Removes last style-name or style-overrides-object from the stack
    *
    * @param {Number} howMany - optional number of elements to be popped (if not specified,
    *                           one element will be removed from the stack)
    */
    
StyleContextStack.prototype.pop = function(howMany) {
        
howMany howMany || 1;

        while(
howMany-- > 0) {
            
this.styleOverrides.pop();
        }
    };

    
/**
    * Creates a set of named styles or/and a style-overrides-object based on the item,
    * pushes those elements onto the stack for future evaluation and returns the number
    * of elements pushed, so they can be easily poped then.
    *
    * @param {Object} item - an object with optional style property and/or style overrides
    * @return the number of items pushed onto the stack
    */
    
StyleContextStack.prototype.autopush = function(item) {
        if (
typeof item === 'string' || item instanceof String) return 0;

        var 
styleNames = [];

        if (
item.style) {
            if (
item.style instanceof Array) {
                
styleNames item.style;
            } else {
                
styleNames = [ item.style ];
            }
        }

        for(var 
0styleNames.lengthli++) {
            
this.push(styleNames[i]);
        }

        var 
styleOverrideObject = {};
        var 
pushSOO false;

        [
            
'font',
            
'fontSize',
            
'bold',
            
'italics',
            
'alignment',
            
'color',
            
'columnGap',
            
'fillColor',
            
'decoration',
            
'decorationStyle',
            
'decorationColor',
            
'background',
            
'lineHeight'
            
//'tableCellPadding'
            // 'cellBorder',
            // 'headerCellBorder',
            // 'oddRowCellBorder',
            // 'evenRowCellBorder',
            // 'tableBorder'
        
].forEach(function(key) {
            if (
item[key] !== undefined && item[key] !== null) {
                
styleOverrideObject[key] = item[key];
                
pushSOO true;
            }
        });

        if (
pushSOO) {
            
this.push(styleOverrideObject);
        }

        return 
styleNames.length + (pushSOO 0);
    };

    
/**
    * Automatically pushes elements onto the stack, using autopush based on item,
    * executes callback and then pops elements back. Returns value returned by callback
    *
    * @param  {Object}   item - an object with optional style property and/or style overrides
    * @param  {Function} function to be called between autopush and pop
    * @return {Object} value returned by callback
    */
    
StyleContextStack.prototype.auto = function(itemcallback) {
        var 
pushedItems this.autopush(item);
        var 
result callback();

        if (
pushedItems 0) {
            
this.pop(pushedItems);
        }

        return 
result;
    };

    
/**
    * Evaluates stack and returns value of a named property
    *
    * @param {String} property - property name
    * @return property value or null if not found
    */
    
StyleContextStack.prototype.getProperty = function(property) {
        if (
this.styleOverrides) {
            for(var 
this.styleOverrides.length 1>= 0i--) {
                var 
item this.styleOverrides[i];

                if (
typeof item == 'string' || item instanceof String) {
                    
// named-style-override

                    
var style this.styleDictionary[item];
                    if (
style && style[property] !== null && style[property] !== undefined) {
                        return 
style[property];
                    }
                } else {
                    
// style-overrides-object
                    
if (item[property] !== undefined && item[property] !== null) {
                        return 
item[property];
                    }
                }
            }
        }

        return 
this.defaultStyle && this.defaultStyle[property];
    };

    
module.exports StyleContextStack;


/***/ },
/* 16 */
/***/ 
function(moduleexports) {

    
/* jslint node: true */
    
'use strict';

    function 
buildColumnWidths(columnsavailableWidth) {
        var 
autoColumns = [],
            
autoMin 0autoMax 0,
            
starColumns = [],
            
starMaxMin 0,
            
starMaxMax 0,
            
fixedColumns = [],
            
initial_availableWidth availableWidth;

        
columns.forEach(function(column) {
            if (
isAutoColumn(column)) {
                
autoColumns.push(column);
                
autoMin += column._minWidth;
                
autoMax += column._maxWidth;
            } else if (
isStarColumn(column)) {
                
starColumns.push(column);
                
starMaxMin Math.max(starMaxMincolumn._minWidth);
                
starMaxMax Math.max(starMaxMaxcolumn._maxWidth);
            } else {
                
fixedColumns.push(column);
            }
        });

        
fixedColumns.forEach(function(col) {
            
// width specified as %
            
if (typeof col.width === 'string' && /d+%/.test(col.width) ) {
                
col.width parseFloat(col.width)*initial_availableWidth/100;
            }
            if (
col.width < (col._minWidth) && col.elasticWidth) {
                
col._calcWidth col._minWidth;
            } else {
                
col._calcWidth col.width;
            }

            
availableWidth -= col._calcWidth;
        });

        
// http://www.freesoft.org/CIE/RFC/1942/18.htm
        // http://www.w3.org/TR/CSS2/tables.html#width-layout
        // http://dev.w3.org/csswg/css3-tables-algorithms/Overview.src.htm
        
var minW autoMin starMaxMin starColumns.length;
        var 
maxW autoMax starMaxMax starColumns.length;
        if (
minW >= availableWidth) {
            
// case 1 - there's no way to fit all columns within available width
            // that's actually pretty bad situation with PDF as we have no horizontal scroll
            // no easy workaround (unless we decide, in the future, to split single words)
            // currently we simply use minWidths for all columns
            
autoColumns.forEach(function(col) {
                
col._calcWidth col._minWidth;
            });

            
starColumns.forEach(function(col) {
                
col._calcWidth starMaxMin// starMaxMin already contains padding
            
});
        } else {
            if (
maxW availableWidth) {
                
// case 2 - we can fit rest of the table within available space
                
autoColumns.forEach(function(col) {
                    
col._calcWidth col._maxWidth;
                    
availableWidth -= col._calcWidth;
                });
            } else {
                
// maxW is too large, but minW fits within available width
                
var availableWidth minW;
                var 
maxW minW;

                
autoColumns.forEach(function(col) {
                    var 
col._maxWidth col._minWidth;
                    
col._calcWidth col._minWidth D;
                    
availableWidth -= col._calcWidth;
                });
            }

            if (
starColumns.length 0) {
                var 
starSize availableWidth starColumns.length;

                
starColumns.forEach(function(col) {
                    
col._calcWidth starSize;
                });
            }
        }
    }

    function 
isAutoColumn(column) {
        return 
column.width === 'auto';
    }

    function 
isStarColumn(column) {
        return 
column.width === null || column.width === undefined || column.width === '*' || column.width === 'star';
    }

    
//TODO: refactor and reuse in measureTable
    
function measureMinMax(columns) {
        var 
result = { min0max};

        var 
maxStar = { min0max};
        var 
starCount 0;

        for(var 
0columns.lengthli++) {
            var 
columns[i];

            if (
isStarColumn(c)) {
                
maxStar.min Math.max(maxStar.minc._minWidth);
                
maxStar.max Math.max(maxStar.maxc._maxWidth);
                
starCount++;
            } else if (
isAutoColumn(c)) {
                
result.min += c._minWidth;
                
result.max += c._maxWidth;
            } else {
                
result.min += ((c.width !== undefined && c.width) || c._minWidth);
                
result.max += ((c.width  !== undefined && c.width) || c._maxWidth);
            }
        }

        if (
starCount) {
            
result.min += starCount maxStar.min;
            
result.max += starCount maxStar.max;
        }

        return 
result;
    }

    
/**
    * Calculates column widths
    * @private
    */
    
module.exports = {
        
buildColumnWidthsbuildColumnWidths,
        
measureMinMaxmeasureMinMax,
        
isAutoColumnisAutoColumn,
        
isStarColumnisStarColumn
    
};


/***/ },
/* 17 */
/***/ 
function(moduleexports) {

    
/* jslint node: true */
    
'use strict';

    function 
pack() {
        var 
result = {};

        for(var 
0arguments.lengthli++) {
            var 
obj arguments[i];

            if (
obj) {
                for(var 
key in obj) {
                    if (
obj.hasOwnProperty(key)) {
                        
result[key] = obj[key];
                    }
                }
            }
        }

        return 
result;
    }

    function 
offsetVector(vectorxy) {
        switch(
vector.type) {
        case 
'ellipse':
        case 
'rect':
            
vector.+= x;
            
vector.+= y;
            break;
        case 
'line':
            
vector.x1 += x;
            
vector.x2 += x;
            
vector.y1 += y;
            
vector.y2 += y;
            break;
        case 
'polyline':
            for(var 
0vector.points.lengthli++) {
                
vector.points[i].+= x;
                
vector.points[i].+= y;
            }
            break;
        }
    }

    function 
fontStringify(keyval) {
        if (
key === 'font') {
            return 
'font';
        }
        return 
val;
    }

    function 
isFunction(functionToCheck) {
        var 
getType = {};
        return 
functionToCheck && getType.toString.call(functionToCheck) === '[object Function]';
    }


    
module.exports = {
        
packpack,
        
fontStringifyfontStringify,
        
offsetVectoroffsetVector,
        
isFunctionisFunction
    
};


/***/ },
/* 18 */
/***/ 
function(moduleexports) {

    
/* jslint node: true */
    
'use strict';
    
/*jshint -W004 */
    /* qr.js -- QR code generator in Javascript (revision 2011-01-19)
     * Written by Kang Seonghoon <public+qrjs@mearie.org>.
     *
     * This source code is in the public domain; if your jurisdiction does not
     * recognize the public domain the terms of Creative Commons CC0 license
     * apply. In the other words, you can always do what you want.
     */


    // per-version information (cf. JIS X 0510:2004 pp. 30--36, 71)
    //
    // [0]: the degree of generator polynomial by ECC levels
    // [1]: # of code blocks by ECC levels
    // [2]: left-top positions of alignment patterns
    //
    // the number in this table (in particular, [0]) does not exactly match with
    // the numbers in the specficiation. see augumenteccs below for the reason.
    
var VERSIONS = [
        
null,
        [[
107,17,13], [ 1111], []],
        [[
16,10,28,22], [ 1111], [4,16]],
        [[
26,15,22,18], [ 1122], [4,20]],
        [[
18,20,16,26], [ 2142], [4,24]],
        [[
24,26,22,18], [ 2144], [4,28]],
        [[
16,18,28,24], [ 4244], [4,32]],
        [[
18,20,26,18], [ 4256], [4,20,36]],
        [[
22,24,26,22], [ 4266], [4,22,40]],
        [[
22,30,24,20], [ 5288], [4,24,44]],
        [[
26,18,28,24], [ 5488], [4,26,48]],
        [[
30,20,24,28], [ 54,118], [4,28,52]],
        [[
22,24,28,26], [ 84,11,10], [4,30,56]],
        [[
22,26,22,24], [ 94,16,12], [4,32,60]],
        [[
24,30,24,20], [ 94,16,16], [4,24,44,64]],
        [[
24,22,24,30], [106,18,12], [4,24,46,68]],
        [[
28,24,30,24], [106,16,17], [4,24,48,72]],
        [[
28,28,28,28], [116,19,16], [4,28,52,76]],
        [[
26,30,28,28], [136,21,18], [4,28,54,80]],
        [[
26,28,26,26], [147,25,21], [4,28,56,84]],
        [[
26,28,28,30], [168,25,20], [4,32,60,88]],
        [[
26,28,30,28], [178,25,23], [4,26,48,70,92]],
        [[
28,28,24,30], [179,34,23], [4,24,48,72,96]],
        [[
28,30,30,30], [189,30,25], [4,28,52,76,100]],
        [[
28,30,30,30], [20,10,32,27], [4,26,52,78,104]],
        [[
28,26,30,30], [21,12,35,29], [4,30,56,82,108]],
        [[
28,28,30,28], [23,12,37,34], [4,28,56,84,112]],
        [[
28,30,30,30], [25,12,40,34], [4,32,60,88,116]],
        [[
28,30,30,30], [26,13,42,35], [4,24,48,72,96,120]],
        [[
28,30,30,30], [28,14,45,38], [4,28,52,76,100,124]],
        [[
28,30,30,30], [29,15,48,40], [4,24,50,76,102,128]],
        [[
28,30,30,30], [31,16,51,43], [4,28,54,80,106,132]],
        [[
28,30,30,30], [33,17,54,45], [4,32,58,84,110,136]],
        [[
28,30,30,30], [35,18,57,48], [4,28,56,84,112,140]],
        [[
28,30,30,30], [37,19,60,51], [4,32,60,88,116,144]],
        [[
28,30,30,30], [38,19,63,53], [4,28,52,76,100,124,148]],
        [[
28,30,30,30], [40,20,66,56], [4,22,48,74,100,126,152]],
        [[
28,30,30,30], [43,21,70,59], [4,26,52,78,104,130,156]],
        [[
28,30,30,30], [45,22,74,62], [4,30,56,82,108,134,160]],
        [[
28,30,30,30], [47,24,77,65], [4,24,52,80,108,136,164]],
        [[
28,30,30,30], [49,25,81,68], [4,28,56,84,112,140,168]]];

    
// mode constants (cf. Table 2 in JIS X 0510:2004 p. 16)
    
var MODE_TERMINATOR 0;
    var 
MODE_NUMERIC 1MODE_ALPHANUMERIC 2MODE_OCTET 4MODE_KANJI 8;

    
// validation regexps
    
var NUMERIC_REGEXP = /^d*$/;
    var 
ALPHANUMERIC_REGEXP = /^[A-Za-z0-$%*+-./:]*$/;
    var 
ALPHANUMERIC_OUT_REGEXP = /^[A-Z0-$%*+-./:]*$/;

    
// ECC levels (cf. Table 22 in JIS X 0510:2004 p. 45)
    
var ECCLEVEL_L 1ECCLEVEL_M 0ECCLEVEL_Q 3ECCLEVEL_H 2;

    
// GF(2^8)-to-integer mapping with a reducing polynomial x^8+x^4+x^3+x^2+1
    // invariant: GF256_MAP[GF256_INVMAP[i]] == i for all i in [1,256)
    
var GF256_MAP = [], GF256_INVMAP = [-1];
    for (var 
01255; ++i) {
        
GF256_MAP.push(v);
        
GF256_INVMAP[v] = i;
        
= (2) ^ (>= 128 0x11d 0);
    }

    
// generator polynomials up to degree 30
    // (should match with polynomials in JIS X 0510:2004 Appendix A)
    //
    // generator polynomial of degree K is product of (x-alpha^0), (x-alpha^1),
    // ..., (x-alpha^(K-1)). by convention, we omit the K-th coefficient (always 1)
    // from the result; also other coefficients are written in terms of the exponent
    // to alpha to avoid the redundant calculation. (see also calculateecc below.)
    
var GF256_GENPOLY = [[]];
    for (var 
030; ++i) {
        var 
prevpoly GF256_GENPOLY[i], poly = [];
        for (var 
0<= i; ++j) {
            var 
= (GF256_MAP[prevpoly[j]] : 0);
            var 
GF256_MAP[(+ (prevpoly[j-1] || 0)) % 255];
            
poly.push(GF256_INVMAP[b]);
        }
        
GF256_GENPOLY.push(poly);
    }

    
// alphanumeric character mapping (cf. Table 5 in JIS X 0510:2004 p. 19)
    
var ALPHANUMERIC_MAP = {};
    for (var 
045; ++i) {
        
ALPHANUMERIC_MAP['0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ $%*+-./:'.charAt(i)] = i;
    }

    
// mask functions in terms of row # and column #
    // (cf. Table 20 in JIS X 0510:2004 p. 42)
    
var MASKFUNCS = [
        function(
i,j) { return (i+j) % === 0; },
        function(
i,j) { return === 0; },
        function(
i,j) { return === 0; },
        function(
i,j) { return (i+j) % === 0; },
        function(
i,j) { return (((i/2)|0) + ((j/3)|0)) % === 0; },
        function(
i,j) { return (i*j) % + (i*j) % === 0; },
        function(
i,j) { return ((i*j) % + (i*j) % 3) % === 0; },
        function(
i,j) { return ((i+j) % + (i*j) % 3) % === 0; }];

    
// returns true when the version information has to be embeded.
    
var needsverinfo = function(ver) { return ver 6; };

    
// returns the size of entire QR code for given version.
    
var getsizebyver = function(ver) { return ver 17; };

    
// returns the number of bits available for code words in this version.
    
var nfullbits = function(ver) {
        
/*
         * |<--------------- n --------------->|
         * |        |<----- n-17 ---->|        |
         * +-------+                ///+-------+ ----
         * |       |                ///|       |    ^
         * |  9x9  |       @@@@@    ///|  9x8  |    |
         * |       | # # # @5x5@ # # # |       |    |
         * +-------+       @@@@@       +-------+    |
         *       #                               ---|
         *                                        ^ |
         *       #                                |
         *     @@@@@       @@@@@       @@@@@      | n
         *     @5x5@       @5x5@       @5x5@   n-17
         *     @@@@@       @@@@@       @@@@@      | |
         *       #                                | |
         * //////                                 v |
         * //////#                               ---|
         * +-------+       @@@@@       @@@@@        |
         * |       |       @5x5@       @5x5@        |
         * |  8x9  |       @@@@@       @@@@@        |
         * |       |                                v
         * +-------+                             ----
         *
         * when the entire code has n^2 modules and there are m^2-3 alignment
         * patterns, we have:
         * - 225 (= 9x9 + 9x8 + 8x9) modules for finder patterns and
         *   format information;
         * - 2n-34 (= 2(n-17)) modules for timing patterns;
         * - 36 (= 3x6 + 6x3) modules for version information, if any;
         * - 25m^2-75 (= (m^2-3)(5x5)) modules for alignment patterns
         *   if any, but 10m-20 (= 2(m-2)x5) of them overlaps with
         *   timing patterns.
         */
        
var VERSIONS[ver];
        var 
nbits 16*ver*ver 128*ver 64// finder, timing and format info.
        
if (needsverinfo(ver)) nbits -= 36// version information
        
if (v[2].length) { // alignment patterns
            
nbits -= 25 v[2].length v[2].length 10 v[2].length 55;
        }
        return 
nbits;
    };

    
// returns the number of bits available for data portions (i.e. excludes ECC
    // bits but includes mode and length bits) in this version and ECC level.
    
var ndatabits = function(verecclevel) {
        var 
nbits nfullbits(ver) & ~7// no sub-octet code words
        
var VERSIONS[ver];
        
nbits -= v[0][ecclevel] * v[1][ecclevel]; // ecc bits
        
return nbits;
    };

    
// returns the number of bits required for the length of data.
    // (cf. Table 3 in JIS X 0510:2004 p. 16)
    
var ndatalenbits = function(vermode) {
        switch (
mode) {
        case 
MODE_NUMERIC: return (ver 10 10 ver 27 12 14);
        case 
MODE_ALPHANUMERIC: return (ver 10 ver 27 11 13);
        case 
MODE_OCTET: return (ver 10 16);
        case 
MODE_KANJI: return (ver 10 ver 27 10 12);
        }
    };

    
// returns the maximum length of data possible in given configuration.
    
var getmaxdatalen = function(vermodeecclevel) {
        var 
nbits ndatabits(verecclevel) - ndatalenbits(vermode); // 4 for mode bits
        
switch (mode) {
        case 
MODE_NUMERIC:
            return ((
nbits/10) | 0) * + (nbits%10 nbits%10 2);
        case 
MODE_ALPHANUMERIC:
            return ((
nbits/11) | 0) * + (nbits%11 1);
        case 
MODE_OCTET:
            return (
nbits/8) | 0;
        case 
MODE_KANJI:
            return (
nbits/13) | 0;
        }
    };

    
// checks if the given data can be encoded in given mode, and returns
    // the converted data for the further processing if possible. otherwise
    // returns null.
    //
    // this function does not check the length of data; it is a duty of
    // encode function below (as it depends on the version and ECC level too).
    
var validatedata = function(modedata) {
        switch (
mode) {
        case 
MODE_NUMERIC:
            if (!
data.match(NUMERIC_REGEXP)) return null;
            return 
data;

        case 
MODE_ALPHANUMERIC:
            if (!
data.match(ALPHANUMERIC_REGEXP)) return null;
            return 
data.toUpperCase();

        case 
MODE_OCTET:
            if (
typeof data === 'string') { // encode as utf-8 string
                
var newdata = [];
                for (var 
0data.length; ++i) {
                    var 
ch data.charCodeAt(i);
                    if (
ch 0x80) {
                        
newdata.push(ch);
                    } else if (
ch 0x800) {
                        
newdata.push(0xc0 | (ch >> 6),
                            
0x80 | (ch 0x3f));
                    } else if (
ch 0x10000) {
                        
newdata.push(0xe0 | (ch >> 12),
                            
0x80 | ((ch >> 6) & 0x3f),
                            
0x80 | (ch 0x3f));
                    } else {
                        
newdata.push(0xf0 | (ch >> 18),
                            
0x80 | ((ch >> 12) & 0x3f),
                            
0x80 | ((ch >> 6) & 0x3f),
                            
0x80 | (ch 0x3f));
                    }
                }
                return 
newdata;
            } else {
                return 
data;
            }
        }
    };

    
// returns the code words (sans ECC bits) for given data and configurations.
    // requires data to be preprocessed by validatedata. no length check is
    // performed, and everything has to be checked before calling this function.
    
var encode = function(vermodedatamaxbuflen) {
        var 
buf = [];
        var 
bits 0remaining 8;
        var 
datalen data.length;

        
// this function is intentionally no-op when n=0.
        
var pack = function(xn) {
            if (
>= remaining) {
                
buf.push(bits | (>> (-= remaining)));
                while (
>= 8buf.push((>> (-= 8)) & 255);
                
bits 0;
                
remaining 8;
            }
            if (
0bits |= (& ((<< n) - 1)) << (remaining -= n);
        };

        var 
nlenbits ndatalenbits(vermode);
        
pack(mode4);
        
pack(datalennlenbits);

        switch (
mode) {
        case 
MODE_NUMERIC:
            for (var 
2datalen+= 3) {
                
pack(parseInt(data.substring(i-2,i+1), 10), 10);
            }
            
pack(parseInt(data.substring(i-2), 10), [0,4,7][datalen%3]);
            break;

        case 
MODE_ALPHANUMERIC:
            for (var 
1datalen+= 2) {
                
pack(ALPHANUMERIC_MAP[data.charAt(i-1)] * 45 +
                    
ALPHANUMERIC_MAP[data.charAt(i)], 11);
            }
            if (
datalen == 1) {
                
pack(ALPHANUMERIC_MAP[data.charAt(i-1)], 6);
            }
            break;

        case 
MODE_OCTET:
            for (var 
0datalen; ++i) {
                
pack(data[i], 8);
            }
            break;
        }

        
// final bits. it is possible that adding terminator causes the buffer
        // to overflow, but then the buffer truncated to the maximum size will
        // be valid as the truncated terminator mode bits and padding is
        // identical in appearance (cf. JIS X 0510:2004 sec 8.4.8).
        
pack(MODE_TERMINATOR4);
        if (
remaining 8buf.push(bits);

        
// the padding to fill up the remaining space. we should not add any
        // words when the overflow already occurred.
        
while (buf.length maxbuflenbuf.push(0xec0x11);
        if (
buf.length maxbuflenbuf.push(0xec);
        return 
buf;
    };

    
// calculates ECC code words for given code words and generator polynomial.
    //
    // this is quite similar to CRC calculation as both Reed-Solomon and CRC use
    // the certain kind of cyclic codes, which is effectively the division of
    // zero-augumented polynomial by the generator polynomial. the only difference
    // is that Reed-Solomon uses GF(2^8), instead of CRC's GF(2), and Reed-Solomon
    // uses the different generator polynomial than CRC's.
    
var calculateecc = function(polygenpoly) {
        var 
modulus poly.slice(0);
        var 
polylen poly.lengthgenpolylen genpoly.length;
        for (var 
0genpolylen; ++imodulus.push(0);
        for (var 
0polylen; ) {
            var 
quotient GF256_INVMAP[modulus[i++]];
            if (
quotient >= 0) {
                for (var 
0genpolylen; ++j) {
                    
modulus[i+j] ^= GF256_MAP[(quotient genpoly[j]) % 255];
                }
            }
        }
        return 
modulus.slice(polylen);
    };

    
// auguments ECC code words to given code words. the resulting words are
    // ready to be encoded in the matrix.
    //
    // the much of actual augumenting procedure follows JIS X 0510:2004 sec 8.7.
    // the code is simplified using the fact that the size of each code & ECC
    // blocks is almost same; for example, when we have 4 blocks and 46 data words
    // the number of code words in those blocks are 11, 11, 12, 12 respectively.
    
var augumenteccs = function(polynblocksgenpoly) {
        var 
subsizes = [];
        var 
subsize = (poly.length nblocks) | 0subsize0 0;
        var 
pivot nblocks poly.length nblocks;
        for (var 
0pivot; ++i) {
            
subsizes.push(subsize0);
            
subsize0 += subsize;
        }
        for (var 
pivotnblocks; ++i) {
            
subsizes.push(subsize0);
            
subsize0 += subsize+1;
        }
        
subsizes.push(subsize0);

        var 
eccs = [];
        for (var 
0nblocks; ++i) {
            
eccs.push(calculateecc(poly.slice(subsizes[i], subsizes[i+1]), genpoly));
        }

        var 
result = [];
        var 
nitemsperblock = (poly.length nblocks) | 0;
        for (var 
0nitemsperblock; ++i) {
            for (var 
0nblocks; ++j) {
                
result.push(poly[subsizes[j] + i]);
            }
        }
        for (var 
pivotnblocks; ++j) {
            
result.push(poly[subsizes[j+1] - 1]);
        }
        for (var 
0genpoly.length; ++i) {
            for (var 
0nblocks; ++j) {
                
result.push(eccs[j][i]);
            }
        }
        return 
result;
    };

    
// auguments BCH(p+q,q) code to the polynomial over GF(2), given the proper
    // genpoly. the both input and output are in binary numbers, and unlike
    // calculateecc genpoly should include the 1 bit for the highest degree.
    //
    // actual polynomials used for this procedure are as follows:
    // - p=10, q=5, genpoly=x^10+x^8+x^5+x^4+x^2+x+1 (JIS X 0510:2004 Appendix C)
    // - p=18, q=6, genpoly=x^12+x^11+x^10+x^9+x^8+x^5+x^2+1 (ibid. Appendix D)
    
var augumentbch = function(polypgenpolyq) {
        var 
modulus poly << q;
        for (var 
1>= 0; --i) {
            if ((
modulus >> (q+i)) & 1modulus ^= genpoly << i;
        }
        return (
poly << q) | modulus;
    };

    
// creates the base matrix for given version. it returns two matrices, one of
    // them is the actual one and the another represents the "reserved" portion
    // (e.g. finder and timing patterns) of the matrix.
    //
    // some entries in the matrix may be undefined, rather than 0 or 1. this is
    // intentional (no initialization needed!), and putdata below will fill
    // the remaining ones.
    
var makebasematrix = function(ver) {
        var 
VERSIONS[ver], getsizebyver(ver);
        var 
matrix = [], reserved = [];
        for (var 
0n; ++i) {
            
matrix.push([]);
            
reserved.push([]);
        }

        var 
blit = function(yxhwbits) {
            for (var 
0h; ++i) {
                for (var 
0w; ++j) {
                    
matrix[y+i][x+j] = (bits[i] >> j) & 1;
                    
reserved[y+i][x+j] = 1;
                }
            }
        };

        
// finder patterns and a part of timing patterns
        // will also mark the format information area (not yet written) as reserved.
        
blit(0099, [0x7f0x410x5d0x5d0x5d0x410x17f0x000x40]);
        
blit(n-8089, [0x1000x7f0x410x5d0x5d0x5d0x410x7f]);
        
blit(0n-898, [0xfe0x820xba0xba0xba0x820xfe0x000x00]);

        
// the rest of timing patterns
        
for (var 9n-8; ++i) {
            
matrix[6][i] = matrix[i][6] = ~1;
            
reserved[6][i] = reserved[i][6] = 1;
        }

        
// alignment patterns
        
var aligns v[2], aligns.length;
        for (var 
0m; ++i) {
            var 
minj = (i===|| i===m-0), maxj = (i===m-m);
            for (var 
minjmaxj; ++j) {
                
blit(aligns[i], aligns[j], 55, [0x1f0x110x150x110x1f]);
            }
        }

        
// version information
        
if (needsverinfo(ver)) {
            var 
code augumentbch(ver60x1f2512);
            var 
0;
            for (var 
06; ++i) {
                for (var 
03; ++j) {
                    
matrix[i][(n-11)+j] = matrix[(n-11)+j][i] = (code >> k++) & 1;
                    
reserved[i][(n-11)+j] = reserved[(n-11)+j][i] = 1;
                }
            }
        }

        return {
matrixmatrixreservedreserved};
    };

    
// fills the data portion (i.e. unmarked in reserved) of the matrix with given
    // code words. the size of code words should be no more than available bits,
    // and remaining bits are padded to 0 (cf. JIS X 0510:2004 sec 8.7.3).
    
var putdata = function(matrixreservedbuf) {
        var 
matrix.length;
        var 
0dir = -1;
        for (var 
n-1>= 0-= 2) {
            if (
== 6) --i// skip the entire timing pattern column
            
var jj = (dir n-0);
            for (var 
0n; ++j) {
                for (var 
ii iii i-2; --ii) {
                    if (!
reserved[jj][ii]) {
                        
// may overflow, but (undefined >> x)
                        // is 0 so it will auto-pad to zero.
                        
matrix[jj][ii] = (buf[>> 3] >> (~k&7)) & 1;
                        ++
k;
                    }
                }
                
jj += dir;
            }
            
dir = -dir;
        }
        return 
matrix;
    };

    
// XOR-masks the data portion of the matrix. repeating the call with the same
    // arguments will revert the prior call (convenient in the matrix evaluation).
    
var maskdata = function(matrixreservedmask) {
        var 
maskf MASKFUNCS[mask];
        var 
matrix.length;
        for (var 
0n; ++i) {
            for (var 
0n; ++j) {
                if (!
reserved[i][j]) matrix[i][j] ^= maskf(i,j);
            }
        }
        return 
matrix;
    };

    
// puts the format information.
    
var putformatinfo = function(matrixreservedecclevelmask) {
        var 
matrix.length;
        var 
code augumentbch((ecclevel << 3) | mask50x53710) ^ 0x5412;
        for (var 
015; ++i) {
            var 
= [0,1,2,3,4,5,7,8,n-7,n-6,n-5,n-4,n-3,n-2,n-1][i];
            var 
= [n-1,n-2,n-3,n-4,n-5,n-6,n-7,n-8,7,5,4,3,2,1,0][i];
            
matrix[r][8] = matrix[8][c] = (code >> i) & 1;
            
// we don't have to mark those bits reserved; always done
            // in makebasematrix above.
        
}
        return 
matrix;
    };

    
// evaluates the resulting matrix and returns the score (lower is better).
    // (cf. JIS X 0510:2004 sec 8.8.2)
    //
    // the evaluation procedure tries to avoid the problematic patterns naturally
    // occuring from the original matrix. for example, it penaltizes the patterns
    // which just look like the finder pattern which will confuse the decoder.
    // we choose the mask which results in the lowest score among 8 possible ones.
    //
    // note: zxing seems to use the same procedure and in many cases its choice
    // agrees to ours, but sometimes it does not. practically it doesn't matter.
    
var evaluatematrix = function(matrix) {
        
// N1+(k-5) points for each consecutive row of k same-colored modules,
        // where k >= 5. no overlapping row counts.
        
var PENALTY_CONSECUTIVE 3;
        
// N2 points for each 2x2 block of same-colored modules.
        // overlapping block does count.
        
var PENALTY_TWOBYTWO 3;
        
// N3 points for each pattern with >4W:1B:1W:3B:1W:1B or
        // 1B:1W:3B:1W:1B:>4W, or their multiples (e.g. highly unlikely,
        // but 13W:3B:3W:9B:3W:3B counts).
        
var PENALTY_FINDERLIKE 40;
        
// N4*k points for every (5*k)% deviation from 50% black density.
        // i.e. k=1 for 55~60% and 40~45%, k=2 for 60~65% and 35~40%, etc.
        
var PENALTY_DENSITY 10;

        var 
evaluategroup = function(groups) { // assumes [W,B,W,B,W,...,B,W]
            
var score 0;
            for (var 
0groups.length; ++i) {
                if (
groups[i] >= 5score += PENALTY_CONSECUTIVE + (groups[i]-5);
            }
            for (var 
5groups.length+= 2) {
                var 
groups[i];
                if (
groups[i-1] == && groups[i-2] == 3*&& groups[i-3] == &&
                        
groups[i-4] == && (groups[i-5] >= 4*|| groups[i+1] >= 4*p)) {
                    
// this part differs from zxing...
                    
score += PENALTY_FINDERLIKE;
                }
            }
            return 
score;
        };

        var 
matrix.length;
        var 
score 0nblacks 0;
        for (var 
0n; ++i) {
            var 
row matrix[i];
            var 
groups;

            
// evaluate the current row
            
groups = [0]; // the first empty group of white
            
for (var 0n; ) {
                var 
k;
                for (
0&& row[j]; ++k) ++j;
                
groups.push(k);
                for (
0&& !row[j]; ++k) ++j;
                
groups.push(k);
            }
            
score += evaluategroup(groups);

            
// evaluate the current column
            
groups = [0];
            for (var 
0n; ) {
                var 
k;
                for (
0&& matrix[j][i]; ++k) ++j;
                
groups.push(k);
                for (
0&& !matrix[j][i]; ++k) ++j;
                
groups.push(k);
            }
            
score += evaluategroup(groups);

            
// check the 2x2 box and calculate the density
            
var nextrow matrix[i+1] || [];
            
nblacks += row[0];
            for (var 
1n; ++j) {
                var 
row[j];
                
nblacks += p;
                
// at least comparison with next row should be strict...
                
if (row[j-1] == && nextrow[j] === && nextrow[j-1] === p) {
                    
score += PENALTY_TWOBYTWO;
                }
            }
        }

        
score += PENALTY_DENSITY * ((Math.abs(nblacks 0.5) / 0.05) | 0);
        return 
score;
    };

    
// returns the fully encoded QR code matrix which contains given data.
    // it also chooses the best mask automatically when mask is -1.
    
var generate = function(datavermodeecclevelmask) {
        var 
VERSIONS[ver];
        var 
buf encode(vermodedatandatabits(verecclevel) >> 3);
        
buf augumenteccs(bufv[1][ecclevel], GF256_GENPOLY[v[0][ecclevel]]);

        var 
result makebasematrix(ver);
        var 
matrix result.matrixreserved result.reserved;
        
putdata(matrixreservedbuf);

        if (
mask 0) {
            
// find the best mask
            
maskdata(matrixreserved0);
            
putformatinfo(matrixreservedecclevel0);
            var 
bestmask 0bestscore evaluatematrix(matrix);
            
maskdata(matrixreserved0);
            for (
mask 1mask 8; ++mask) {
                
maskdata(matrixreservedmask);
                
putformatinfo(matrixreservedecclevelmask);
                var 
score evaluatematrix(matrix);
                if (
bestscore score) {
                    
bestscore score;
                    
bestmask mask;
                }
                
maskdata(matrixreservedmask);
            }
            
mask bestmask;
        }

        
maskdata(matrixreservedmask);
        
putformatinfo(matrixreservedecclevelmask);
        return 
matrix;
    };

    
// the public interface is trivial; the options available are as follows:
    //
    // - version: an integer in [1,40]. when omitted (or -1) the smallest possible
    //   version is chosen.
    // - mode: one of 'numeric', 'alphanumeric', 'octet'. when omitted the smallest
    //   possible mode is chosen.
    // - eccLevel: one of 'L', 'M', 'Q', 'H'. defaults to 'L'.
    // - mask: an integer in [0,7]. when omitted (or -1) the best mask is chosen.
    //

    
function generateFrame(dataoptions) {
            var 
MODES = {'numeric'MODE_NUMERIC'alphanumeric'MODE_ALPHANUMERIC,
                
'octet'MODE_OCTET};
            var 
ECCLEVELS = {'L'ECCLEVEL_L'M'ECCLEVEL_M'Q'ECCLEVEL_Q,
                
'H'ECCLEVEL_H};

            
options options || {};
            var 
ver options.version || -1;
            var 
ecclevel ECCLEVELS[(options.eccLevel || 'L').toUpperCase()];
            var 
mode options.mode MODES[options.mode.toLowerCase()] : -1;
            var 
mask 'mask' in options options.mask : -1;

            if (
mode 0) {
                if (
typeof data === 'string') {
                    if (
data.match(NUMERIC_REGEXP)) {
                        
mode MODE_NUMERIC;
                    } else if (
data.match(ALPHANUMERIC_OUT_REGEXP)) {
                        
// while encode supports case-insensitive encoding, we restrict the data to be uppercased when auto-selecting the mode.
                        
mode MODE_ALPHANUMERIC;
                    } else {
                        
mode MODE_OCTET;
                    }
                } else {
                    
mode MODE_OCTET;
                }
            } else if (!(
mode == MODE_NUMERIC || mode == MODE_ALPHANUMERIC ||
                    
mode == MODE_OCTET)) {
                throw 
'invalid or unsupported mode';
            }

            
data validatedata(modedata);
            if (
data === null) throw 'invalid data format';

            if (
ecclevel || ecclevel 3) throw 'invalid ECC level';

            if (
ver 0) {
                for (
ver 1ver <= 40; ++ver) {
                    if (
data.length <= getmaxdatalen(vermodeecclevel)) break;
                }
                if (
ver 40) throw 'too large data for the Qr format';
            } else if (
ver || ver 40) {
                throw 
'invalid Qr version! should be between 1 and 40';
            }

            if (
mask != -&& (mask || mask 8)) throw 'invalid mask';
            
//console.log('version:', ver, 'mode:', mode, 'ECC:', ecclevel, 'mask:', mask )
            
return generate(datavermodeecclevelmask);
        }


    
// options
    // - modulesize: a number. this is a size of each modules in pixels, and
    //   defaults to 5px.
    // - margin: a number. this is a size of margin in *modules*, and defaults to
    //   4 (white modules). the specficiation mandates the margin no less than 4
    //   modules, so it is better not to alter this value unless you know what
    //   you're doing.
    
function buildCanvas(dataoptions) {
       
        var 
canvas = [];
        var 
background data.background || '#fff';
        var 
foreground data.foreground || '#000';
        
//var margin = options.margin || 4;
        
var matrix generateFrame(dataoptions);
        var 
matrix.length;
        var 
modSize Math.flooroptions.fit options.fit/);
        var 
size modSize;
        
        
canvas.push({
          
type'rect',
          
x0y0wsizehsizelineWidth0colorbackground
        
});
        
        for (var 
0n; ++i) {
            for (var 
0n; ++j) {
                if(
matrix[i][j]) {
                  
canvas.push({
                    
type'rect',
                    
xmodSize i,
                    
ymodSize j,
                    
wmodSize,
                    
hmodSize,
                    
lineWidth0,
                    
colorforeground
                  
});
                }
            }
        }
        
        return {
            
canvascanvas,
            
sizesize
        
};
            
    }

    function 
measure(node) {
        var 
cd buildCanvas(node.qrnode);
        
node._canvas cd.canvas;
        
node._width node._height node._minWidth node._maxWidth node._minHeight node._maxHeight cd.size;
        return 
node;
    }

    
module.exports = {
      
measuremeasure
    
};

/***/ },
/* 19 */
/***/ 
function(moduleexports__webpack_require__) {

    
/* jslint node: true */
    
'use strict';

    var 
TraversalTracker __webpack_require__(12);

    
/**
    * Creates an instance of DocumentContext - a store for current x, y positions and available width/height.
    * It facilitates column divisions and vertical sync
    */
    
function DocumentContext(pageSizepageMargins) {
        
this.pages = [];

        
this.pageMargins pageMargins;

        
this.pageMargins.left;
        
this.availableWidth pageSize.width pageMargins.left pageMargins.right;
        
this.availableHeight 0;
        
this.page = -1;

        
this.snapshots = [];

        
this.endingCell null;

      
this.tracker = new TraversalTracker();

        
this.addPage(pageSize);
    }

    
DocumentContext.prototype.beginColumnGroup = function() {
        
this.snapshots.push({
            
xthis.x,
            
ythis.y,
            
availableHeightthis.availableHeight,
            
availableWidththis.availableWidth,
            
pagethis.page,
            
bottomMost: { ythis.ypagethis.page },
            
endingCellthis.endingCell,
            
lastColumnWidththis.lastColumnWidth
        
});

        
this.lastColumnWidth 0;
    };

    
DocumentContext.prototype.beginColumn = function(widthoffsetendingCell) {
        var 
saved this.snapshots[this.snapshots.length 1];

        
this.calculateBottomMost(saved);

      
this.endingCell endingCell;
        
this.page saved.page;
        
this.this.this.lastColumnWidth + (offset || 0);
        
this.saved.y;
        
this.availableWidth width;    //saved.availableWidth - offset;
        
this.availableHeight saved.availableHeight;

        
this.lastColumnWidth width;
    };

    
DocumentContext.prototype.calculateBottomMost = function(destContext) {
        if (
this.endingCell) {
            
this.saveContextInEndingCell(this.endingCell);
            
this.endingCell null;
        } else {
            
destContext.bottomMost bottomMostContext(thisdestContext.bottomMost);
        }
    };

    
DocumentContext.prototype.markEnding = function(endingCell) {
        
this.page endingCell._columnEndingContext.page;
        
this.endingCell._columnEndingContext.x;
        
this.endingCell._columnEndingContext.y;
        
this.availableWidth endingCell._columnEndingContext.availableWidth;
        
this.availableHeight endingCell._columnEndingContext.availableHeight;
        
this.lastColumnWidth endingCell._columnEndingContext.lastColumnWidth;
    };

    
DocumentContext.prototype.saveContextInEndingCell = function(endingCell) {
        
endingCell._columnEndingContext = {
            
pagethis.page,
            
xthis.x,
            
ythis.y,
            
availableHeightthis.availableHeight,
            
availableWidththis.availableWidth,
            
lastColumnWidththis.lastColumnWidth
        
};
    };

    
DocumentContext.prototype.completeColumnGroup = function() {
        var 
saved this.snapshots.pop();

        
this.calculateBottomMost(saved);

        
this.endingCell null;
        
this.saved.x;
        
this.saved.bottomMost.y;
        
this.page saved.bottomMost.page;
        
this.availableWidth saved.availableWidth;
        
this.availableHeight saved.bottomMost.availableHeight;
        
this.lastColumnWidth saved.lastColumnWidth;
    };

    
DocumentContext.prototype.addMargin = function(leftright) {
        
this.+= left;
        
this.availableWidth -= left + (right || 0);
    };

    
DocumentContext.prototype.moveDown = function(offset) {
        
this.+= offset;
        
this.availableHeight -= offset;

        return 
this.availableHeight 0;
    };

    
DocumentContext.prototype.initializePage = function() {
        
this.this.pageMargins.top;
        
this.availableHeight this.getCurrentPage().pageSize.height this.pageMargins.top this.pageMargins.bottom;
        
this.pageSnapshot().availableWidth this.getCurrentPage().pageSize.width this.pageMargins.left this.pageMargins.right;
    };

    
DocumentContext.prototype.pageSnapshot = function(){
      if(
this.snapshots[0]){
        return 
this.snapshots[0];
      } else {
        return 
this;
      }
    };

    
DocumentContext.prototype.moveTo = function(x,y) {
        if(
!== undefined && !== null) {
            
this.x;
            
this.availableWidth this.getCurrentPage().pageSize.width this.this.pageMargins.right;
        }
        if(
!== undefined && !== null){
            
this.y;
            
this.availableHeight this.getCurrentPage().pageSize.height this.this.pageMargins.bottom;
        }
    };

    
DocumentContext.prototype.beginDetachedBlock = function() {
        
this.snapshots.push({
            
xthis.x,
            
ythis.y,
            
availableHeightthis.availableHeight,
            
availableWidththis.availableWidth,
            
pagethis.page,
            
endingCellthis.endingCell,
            
lastColumnWidththis.lastColumnWidth
        
});
    };

    
DocumentContext.prototype.endDetachedBlock = function() {
        var 
saved this.snapshots.pop();

        
this.saved.x;
        
this.saved.y;
        
this.availableWidth saved.availableWidth;
        
this.availableHeight saved.availableHeight;
        
this.page saved.page;
        
this.endingCell saved.endingCell;
        
this.lastColumnWidth saved.lastColumnWidth;
    };

    function 
pageOrientation(pageOrientationStringcurrentPageOrientation){
        if(
pageOrientationString === undefined) {
            return 
currentPageOrientation;
        } else if(
pageOrientationString === 'landscape'){
            return 
'landscape';
        } else {
            return 
'portrait';
        }
    }

    var 
getPageSize = function (currentPagenewPageOrientation) {

        
newPageOrientation pageOrientation(newPageOrientationcurrentPage.pageSize.orientation);

        if(
newPageOrientation !== currentPage.pageSize.orientation) {
            return {
                
orientationnewPageOrientation,
                
widthcurrentPage.pageSize.height,
                
heightcurrentPage.pageSize.width
            
};
        } else {
            return {
                
orientationcurrentPage.pageSize.orientation,
                
widthcurrentPage.pageSize.width,
                
heightcurrentPage.pageSize.height
            
};
        }

    };


    
DocumentContext.prototype.moveToNextPage = function(pageOrientation) {
        var 
nextPageIndex this.page 1;

        var 
prevPage this.page;
        var 
prevY this.y;

        var 
createNewPage nextPageIndex >= this.pages.length;
        if (
createNewPage) {
            
this.addPage(getPageSize(this.getCurrentPage(), pageOrientation));
        } else {
            
this.page nextPageIndex;
            
this.initializePage();
        }

      return {
            
newPageCreatedcreateNewPage,
            
prevPageprevPage,
            
prevYprevY,
            
ythis.y
        
};
    };


    
DocumentContext.prototype.addPage = function(pageSize) {
        var 
page = { items: [], pageSizepageSize };
        
this.pages.push(page);
        
this.page this.pages.length 1;
        
this.initializePage();

        
this.tracker.emit('pageAdded');

        return 
page;
    };

    
DocumentContext.prototype.getCurrentPage = function() {
        if (
this.page || this.page >= this.pages.length) return null;

        return 
this.pages[this.page];
    };

    
DocumentContext.prototype.getCurrentPosition = function() {
      var 
pageSize this.getCurrentPage().pageSize;
      var 
innerHeight pageSize.height this.pageMargins.top this.pageMargins.bottom;
      var 
innerWidth pageSize.width this.pageMargins.left this.pageMargins.right;

      return {
        
pageNumberthis.page 1,
        
pageOrientationpageSize.orientation,
        
pageInnerHeightinnerHeight,
        
pageInnerWidthinnerWidth,
        
leftthis.x,
        
topthis.y,
        
verticalRatio: ((this.this.pageMargins.top) / innerHeight),
        
horizontalRatio: ((this.this.pageMargins.left) / innerWidth)
      };
    };

    function 
bottomMostContext(c1c2) {
        var 
r;

        if (
c1.page c2.pagec1;
        else if (
c2.page c1.pagec2;
        else 
= (c1.c2.y) ? c1 c2;

        return {
            
pager.page,
            
xr.x,
            
yr.y,
            
availableHeightr.availableHeight,
            
availableWidthr.availableWidth
        
};
    }

    
/****TESTS**** (add a leading '/' to uncomment)
    DocumentContext.bottomMostContext = bottomMostContext;
    // */

    
module.exports DocumentContext;


/***/ },
/* 20 */
/***/ 
function(moduleexports__webpack_require__) {

    
/* jslint node: true */
    
'use strict';

    var 
ElementWriter __webpack_require__(21);

    
/**
    * Creates an instance of PageElementWriter - an extended ElementWriter
    * which can handle:
    * - page-breaks (it adds new pages when there's not enough space left),
    * - repeatable fragments (like table-headers, which are repeated everytime
    *                         a page-break occurs)
    * - transactions (used for unbreakable-blocks when we want to make sure
    *                 whole block will be rendered on the same page)
    */
    
function PageElementWriter(contexttracker) {
        
this.transactionLevel 0;
        
this.repeatables = [];
        
this.tracker tracker;
        
this.writer = new ElementWriter(contexttracker);
    }

    function 
fitOnPage(selfaddFct){
      var 
position addFct(self);
      if (!
position) {
        
self.moveToNextPage();
        
position addFct(self);
      }
      return 
position;
    }

    
PageElementWriter.prototype.addLine = function(linedontUpdateContextPositionindex) {
      return 
fitOnPage(this, function(self){
        return 
self.writer.addLine(linedontUpdateContextPositionindex);
      });
    };

    
PageElementWriter.prototype.addImage = function(imageindex) {
      return 
fitOnPage(this, function(self){
        return 
self.writer.addImage(imageindex);
      });
    };

    
PageElementWriter.prototype.addQr = function(qrindex) {
      return 
fitOnPage(this, function(self){
            return 
self.writer.addQr(qrindex);
        });
    };

    
PageElementWriter.prototype.addVector = function(vectorignoreContextXignoreContextYindex) {
        return 
this.writer.addVector(vectorignoreContextXignoreContextYindex);
    };

    
PageElementWriter.prototype.addFragment = function(fragmentuseBlockXOffsetuseBlockYOffsetdontUpdateContextPosition) {
        if (!
this.writer.addFragment(fragmentuseBlockXOffsetuseBlockYOffsetdontUpdateContextPosition)) {
            
this.moveToNextPage();
            
this.writer.addFragment(fragmentuseBlockXOffsetuseBlockYOffsetdontUpdateContextPosition);
        }
    };

    
PageElementWriter.prototype.moveToNextPage = function(pageOrientation) {
        
        var 
nextPage this.writer.context.moveToNextPage(pageOrientation);
        
      if (
nextPage.newPageCreated) {
            
this.repeatables.forEach(function(rep) {
                
this.writer.addFragment(reptrue);
            }, 
this);
        } else {
            
this.repeatables.forEach(function(rep) {
                
this.writer.context.moveDown(rep.height);
            }, 
this);
        }

        
this.writer.tracker.emit('pageChanged', {
            
prevPagenextPage.prevPage,
            
prevYnextPage.prevY,
            
ynextPage.y
        
});
    };

    
PageElementWriter.prototype.beginUnbreakableBlock = function(widthheight) {
        if (
this.transactionLevel++ === 0) {
            
this.originalX this.writer.context.x;
            
this.writer.pushContext(widthheight);
        }
    };

    
PageElementWriter.prototype.commitUnbreakableBlock = function(forcedXforcedY) {
        if (--
this.transactionLevel === 0) {
            var 
unbreakableContext this.writer.context;
            
this.writer.popContext();

            var 
nbPages unbreakableContext.pages.length;
            if(
nbPages 0) {
                
// no support for multi-page unbreakableBlocks
                
var fragment unbreakableContext.pages[0];
                
fragment.xOffset forcedX;
                
fragment.yOffset forcedY;

                
//TODO: vectors can influence height in some situations
                
if(nbPages 1) {
                    
// on out-of-context blocs (headers, footers, background) height should be the whole DocumentContext height
                    
if (forcedX !== undefined || forcedY !== undefined) {
                        
fragment.height unbreakableContext.getCurrentPage().pageSize.height unbreakableContext.pageMargins.top unbreakableContext.pageMargins.bottom;
                    } else {
                        
fragment.height this.writer.context.getCurrentPage().pageSize.height this.writer.context.pageMargins.top this.writer.context.pageMargins.bottom;
                        for (var 
0this.repeatables.lengthli++) {
                            
fragment.height -= this.repeatables[i].height;
                        }
                    }
                } else {
                    
fragment.height unbreakableContext.y;
                }

                if (
forcedX !== undefined || forcedY !== undefined) {
                    
this.writer.addFragment(fragmenttruetruetrue);
                } else {
                    
this.addFragment(fragment);
                }
            }
        }
    };

    
PageElementWriter.prototype.currentBlockToRepeatable = function() {
        var 
unbreakableContext this.writer.context;
        var 
rep = { items: [] };

        
unbreakableContext.pages[0].items.forEach(function(item) {
            
rep.items.push(item);
        });

        
rep.xOffset this.originalX;

        
//TODO: vectors can influence height in some situations
        
rep.height unbreakableContext.y;

        return 
rep;
    };

    
PageElementWriter.prototype.pushToRepeatables = function(rep) {
        
this.repeatables.push(rep);
    };

    
PageElementWriter.prototype.popFromRepeatables = function() {
        
this.repeatables.pop();
    };

    
PageElementWriter.prototype.context = function() {
        return 
this.writer.context;
    };

    
module.exports PageElementWriter;


/***/ },
/* 21 */
/***/ 
function(moduleexports__webpack_require__) {

    
/* jslint node: true */
    
'use strict';

    var 
Line __webpack_require__(22);
    var 
pack __webpack_require__(17).pack;
    var 
offsetVector __webpack_require__(17).offsetVector;
    var 
DocumentContext __webpack_require__(19);

    
/**
    * Creates an instance of ElementWriter - a line/vector writer, which adds
    * elements to current page and sets their positions based on the context
    */
    
function ElementWriter(contexttracker) {
        
this.context context;
        
this.contextStack = [];
        
this.tracker tracker;
    }

    function 
addPageItem(pageitemindex) {
        if(
index === null || index === undefined || index || index page.items.length) {
            
page.items.push(item);
        } else {
            
page.items.splice(index0item);
        }
    }

    
ElementWriter.prototype.addLine = function(linedontUpdateContextPositionindex) {
        var 
height line.getHeight();
        var 
context this.context;
        var 
page context.getCurrentPage(),
          
position this.getCurrentPositionOnPage();

        if (
context.availableHeight height || !page) {
            return 
false;
        }

        
line.context.+ (line.|| 0);
        
line.context.+ (line.|| 0);

        
this.alignLine(line);

        
addPageItem(page, {
            
type'line',
            
itemline
        
}, index);
        
this.tracker.emit('lineAdded'line);

        if (!
dontUpdateContextPositioncontext.moveDown(height);

        return 
position;
    };

    
ElementWriter.prototype.alignLine = function(line) {
        var 
width this.context.availableWidth;
        var 
lineWidth line.getWidth();

        var 
alignment line.inlines && line.inlines.length && line.inlines[0].alignment;

        var 
offset 0;
        switch(
alignment) {
            case 
'right':
                
offset width lineWidth;
                break;
            case 
'center':
                
offset = (width lineWidth) / 2;
                break;
        }

        if (
offset) {
            
line.= (line.|| 0) + offset;
        }

        if (
alignment === 'justify' &&
            !
line.newLineForced &&
            !
line.lastLineInParagraph &&
            
line.inlines.length 1) {
            var 
additionalSpacing = (width lineWidth) / (line.inlines.length 1);

            for(var 
1line.inlines.lengthli++) {
                
offset additionalSpacing;

                
line.inlines[i].+= offset;
            }
        }
    };

    
ElementWriter.prototype.addImage = function(imageindex) {
        var 
context this.context;
        var 
page context.getCurrentPage(),
          
position this.getCurrentPositionOnPage();

        if (
context.availableHeight image._height || !page) {
            return 
false;
        }

        
image.context.+ (image.|| 0);
        
image.context.y;

        
this.alignImage(image);

        
addPageItem(page, {
            
type'image',
            
itemimage
        
}, index);

        
context.moveDown(image._height);

        return 
position;
    };

    
ElementWriter.prototype.addQr = function(qrindex) {
        var 
context this.context;
        var 
page context.getCurrentPage(),
          
position this.getCurrentPositionOnPage();

        if (
context.availableHeight qr._height || !page) {
            return 
false;
        }

        
qr.context.+ (qr.|| 0);
        
qr.context.y;

        
this.alignImage(qr);

        for (var 
i=0l=qr._canvas.lengthli++) {
            var 
vector qr._canvas[i];
            
vector.+= qr.x;
            
vector.+= qr.y;
            
this.addVector(vectortruetrueindex);
        }

        
context.moveDown(qr._height);

        return 
position;
    };

    
ElementWriter.prototype.alignImage = function(image) {
        var 
width this.context.availableWidth;
        var 
imageWidth image._minWidth;
        var 
offset 0;
        switch(
image._alignment) {
            case 
'right':
                
offset width imageWidth;
                break;
            case 
'center':
                
offset = (width imageWidth) / 2;
                break;
        }

        if (
offset) {
            
image.= (image.|| 0) + offset;
        }
    };

    
ElementWriter.prototype.addVector = function(vectorignoreContextXignoreContextYindex) {
        var 
context this.context;
        var 
page context.getCurrentPage(),
          
position this.getCurrentPositionOnPage();

        if (
page) {
            
offsetVector(vectorignoreContextX context.xignoreContextY context.y);
            
addPageItem(page, {
                
type'vector',
                
itemvector
            
}, index);
            return 
position;
        }
    };

    function 
cloneLine(line) {
        var 
result = new Line(line.maxWidth);

        for(var 
key in line) {
            if (
line.hasOwnProperty(key)) {
                
result[key] = line[key];
            }
        }

        return 
result;
    }

    
ElementWriter.prototype.addFragment = function(blockuseBlockXOffsetuseBlockYOffsetdontUpdateContextPosition) {
        var 
ctx this.context;
        var 
page ctx.getCurrentPage();

        if (!
useBlockXOffset && block.height ctx.availableHeight) return false;

        
block.items.forEach(function(item) {
            switch(
item.type) {
                case 
'line':
                    var 
cloneLine(item.item);

                    
l.= (l.|| 0) + (useBlockXOffset ? (block.xOffset || 0) : ctx.x);
                    
l.= (l.|| 0) + (useBlockYOffset ? (block.yOffset || 0) : ctx.y);

                    
page.items.push({
                        
type'line',
                        
iteml
                    
});
                    break;

                case 
'vector':
                    var 
pack(item.item);

                    
offsetVector(vuseBlockXOffset ? (block.xOffset || 0) : ctx.xuseBlockYOffset ? (block.yOffset || 0) : ctx.y);
                    
page.items.push({
                        
type'vector',
                        
itemv
                    
});
                    break;

                case 
'image':
                    var 
img pack(item.item);

                    
img.= (img.|| 0) + (useBlockXOffset ? (block.xOffset || 0) : ctx.x);
                    
img.= (img.|| 0) + (useBlockYOffset ? (block.yOffset || 0) : ctx.y);

                    
page.items.push({
                        
type'image',
                        
itemimg
                    
});
                    break;
            }
        });

        if (!
dontUpdateContextPositionctx.moveDown(block.height);

        return 
true;
    };

    
/**
    * Pushes the provided context onto the stack or creates a new one
    *
    * pushContext(context) - pushes the provided context and makes it current
    * pushContext(width, height) - creates and pushes a new context with the specified width and height
    * pushContext() - creates a new context for unbreakable blocks (with current availableWidth and full-page-height)
    */
    
ElementWriter.prototype.pushContext = function(contextOrWidthheight) {
        if (
contextOrWidth === undefined) {
            
height this.context.getCurrentPage().height this.context.pageMargins.top this.context.pageMargins.bottom;
            
contextOrWidth this.context.availableWidth;
        }

        if (
typeof contextOrWidth === 'number' || contextOrWidth instanceof Number) {
            
contextOrWidth = new DocumentContext({ widthcontextOrWidthheightheight }, { left0right0top0bottom});
        }

        
this.contextStack.push(this.context);
        
this.context contextOrWidth;
    };

    
ElementWriter.prototype.popContext = function() {
        
this.context this.contextStack.pop();
    };

    
ElementWriter.prototype.getCurrentPositionOnPage = function(){
        return (
this.contextStack[0] || this.context).getCurrentPosition();
    };


    
module.exports ElementWriter;


/***/ },
/* 22 */
/***/ 
function(moduleexports) {

    
/* jslint node: true */
    
'use strict';

    
/**
    * Creates an instance of Line
    *
    * @constructor
    * @this {Line}
    * @param {Number} Maximum width this line can have
    */
    
function Line(maxWidth) {
        
this.maxWidth maxWidth;
        
this.leadingCut 0;
        
this.trailingCut 0;
        
this.inlineWidths 0;
        
this.inlines = [];
    }

    
Line.prototype.getAscenderHeight = function() {
        var 
0;

        
this.inlines.forEach(function(inline) {
            
Math.max(yinline.font.ascender 1000 inline.fontSize);
        });
        return 
y;
    };

    
Line.prototype.hasEnoughSpaceForInline = function(inline) {
        if (
this.inlines.length === 0) return true;
        if (
this.newLineForced) return false;

        return 
this.inlineWidths inline.width this.leadingCut - (inline.trailingCut || 0) <= this.maxWidth;
    };

    
Line.prototype.addInline = function(inline) {
        if (
this.inlines.length === 0) {
            
this.leadingCut inline.leadingCut || 0;
        }
        
this.trailingCut inline.trailingCut || 0;

        
inline.this.inlineWidths this.leadingCut;

        
this.inlines.push(inline);
        
this.inlineWidths += inline.width;

        if (
inline.lineEnd) {
            
this.newLineForced true;
        }
    };

    
Line.prototype.getWidth = function() {
        return 
this.inlineWidths this.leadingCut this.trailingCut;
    };

    
/**
    * Returns line height
    * @return {Number}
    */
    
Line.prototype.getHeight = function() {
        var 
max 0;

        
this.inlines.forEach(function(item) {
            
max Math.max(maxitem.height || 0);
        });

        return 
max;
    };

    
module.exports Line;


/***/ },
/* 23 */
/***/ 
function(moduleexports__webpack_require__) {

    
/* jslint node: true */
    
'use strict';

    var 
ColumnCalculator __webpack_require__(16);

    function 
TableProcessor(tableNode) {
      
this.tableNode tableNode;
    }

    
TableProcessor.prototype.beginTable = function(writer) {
      var 
tableNode;
      var 
availableWidth;
      var 
self this;

      
tableNode this.tableNode;
      
this.offsets tableNode._offsets;
      
this.layout tableNode._layout;

      
availableWidth writer.context().availableWidth this.offsets.total;
      
ColumnCalculator.buildColumnWidths(tableNode.table.widthsavailableWidth);

      
this.tableWidth tableNode._offsets.total getTableInnerContentWidth();
      
this.rowSpanData prepareRowSpanData();
      
this.cleanUpRepeatables false;

      
this.headerRows tableNode.table.headerRows || 0;
      
this.rowsWithoutPageBreak this.headerRows + (tableNode.table.keepWithHeaderRows || 0);
      
this.dontBreakRows tableNode.table.dontBreakRows || false;

      if (
this.rowsWithoutPageBreak) {
        
writer.beginUnbreakableBlock();
      }

      
this.drawHorizontalLine(0writer);

      function 
getTableInnerContentWidth() {
        var 
width 0;

        
tableNode.table.widths.forEach(function(w) {
          
width += w._calcWidth;
        });

        return 
width;
      }

      function 
prepareRowSpanData() {
        var 
rsd = [];
        var 
0;
        var 
lastWidth 0;

        
rsd.push({ left0rowSpan});

        for(var 
0self.tableNode.table.body[0].lengthli++) {
          var 
paddings self.layout.paddingLeft(iself.tableNode) + self.layout.paddingRight(iself.tableNode);
          var 
lBorder self.layout.vLineWidth(iself.tableNode);
          
lastWidth paddings lBorder self.tableNode.table.widths[i]._calcWidth;
          
rsd[rsd.length 1].width lastWidth;
          
+= lastWidth;
          
rsd.push({ leftxrowSpan0width});
        }

        return 
rsd;
      }
    };

    
TableProcessor.prototype.onRowBreak = function(rowIndexwriter) {
      var 
self this;
      return function() {
        
//console.log('moving by : ', topLineWidth, rowPaddingTop);
        
var offset self.rowPaddingTop + (!self.headerRows self.topLineWidth 0);
        
writer.context().moveDown(offset);
      };

    };

    
TableProcessor.prototype.beginRow = function(rowIndexwriter) {
      
this.topLineWidth this.layout.hLineWidth(rowIndexthis.tableNode);
      
this.rowPaddingTop this.layout.paddingTop(rowIndexthis.tableNode);
      
this.bottomLineWidth this.layout.hLineWidth(rowIndex+1this.tableNode);
      
this.rowPaddingBottom this.layout.paddingBottom(rowIndexthis.tableNode);

      
this.rowCallback this.onRowBreak(rowIndexwriter);
      
writer.tracker.startTracking('pageChanged'this.rowCallback );
        if(
this.dontBreakRows) {
            
writer.beginUnbreakableBlock();
        }
      
this.rowTopY writer.context().y;
      
this.reservedAtBottom this.bottomLineWidth this.rowPaddingBottom;

      
writer.context().availableHeight -= this.reservedAtBottom;

      
writer.context().moveDown(this.rowPaddingTop);
    };

    
TableProcessor.prototype.drawHorizontalLine = function(lineIndexwriteroverrideY) {
      var 
lineWidth this.layout.hLineWidth(lineIndexthis.tableNode);
      if (
lineWidth) {
        var 
offset lineWidth 2;
        var 
currentLine null;

        for(var 
0this.rowSpanData.lengthli++) {
          var 
data this.rowSpanData[i];
          var 
shouldDrawLine = !data.rowSpan;

          if (!
currentLine && shouldDrawLine) {
            
currentLine = { leftdata.leftwidth};
          }

          if (
shouldDrawLine) {
            
currentLine.width += (data.width || 0);
          }

          var 
= (overrideY || 0) + offset;

          if (!
shouldDrawLine || === 1) {
            if (
currentLine) {
              
writer.addVector({
                
type'line',
                
x1currentLine.left,
                
x2currentLine.left currentLine.width,
                
y1y,
                
y2y,
                
lineWidthlineWidth,
                
lineColortypeof this.layout.hLineColor === 'function' this.layout.hLineColor(lineIndexthis.tableNode) : this.layout.hLineColor
              
}, falseoverrideY);
              
currentLine null;
            }
          }
        }

        
writer.context().moveDown(lineWidth);
      }
    };

    
TableProcessor.prototype.drawVerticalLine = function(xy0y1vLineIndexwriter) {
      var 
width this.layout.vLineWidth(vLineIndexthis.tableNode);
      if (
width === 0) return;
      
writer.addVector({
        
type'line',
        
x1width/2,
        
x2width/2,
        
y1y0,
        
y2y1,
        
lineWidthwidth,
        
lineColortypeof this.layout.vLineColor === 'function' this.layout.vLineColor(vLineIndexthis.tableNode) : this.layout.vLineColor
      
}, falsetrue);
    };

    
TableProcessor.prototype.endTable = function(writer) {
      if (
this.cleanUpRepeatables) {
        
writer.popFromRepeatables();
      }
    };

    
TableProcessor.prototype.endRow = function(rowIndexwriterpageBreaks) {
        var 
li;
        var 
self this;
        
writer.tracker.stopTracking('pageChanged'this.rowCallback);
        
writer.context().moveDown(this.layout.paddingBottom(rowIndexthis.tableNode));
        
writer.context().availableHeight += this.reservedAtBottom;

        var 
endingPage writer.context().page;
        var 
endingY writer.context().y;

        var 
xs getLineXs();

        var 
ys = [];

        var 
hasBreaks pageBreaks && pageBreaks.length 0;

        
ys.push({
          
y0this.rowTopY,
          
pagehasBreaks pageBreaks[0].prevPage endingPage
        
});

        if (
hasBreaks) {
          for(
0pageBreaks.lengthli++) {
            var 
pageBreak pageBreaks[i];
            
ys[ys.length 1].y1 pageBreak.prevY;

            
ys.push({y0pageBreak.ypagepageBreak.prevPage 1});
          }
        }

        
ys[ys.length 1].y1 endingY;

        var 
skipOrphanePadding = (ys[0].y1 ys[0].y0 === this.rowPaddingTop);
        for(var 
yi = (skipOrphanePadding 0), yl ys.lengthyi ylyi++) {
          var 
willBreak yi ys.length 1;
          var 
rowBreakWithoutHeader = (yi && !this.headerRows);
          var 
hzLineOffset =  rowBreakWithoutHeader this.topLineWidth;
          var 
y1 ys[yi].y0;
          var 
y2 ys[yi].y1;

                if(
willBreak) {
                    
y2 y2 this.rowPaddingBottom;
                }

          if (
writer.context().page != ys[yi].page) {
            
writer.context().page ys[yi].page;

            
//TODO: buggy, availableHeight should be updated on every pageChanged event
            // TableProcessor should be pageChanged listener, instead of processRow
            
this.reservedAtBottom 0;
          }

          for(
0xs.lengthli++) {
            
this.drawVerticalLine(xs[i].xy1 hzLineOffsety2 this.bottomLineWidthxs[i].indexwriter);
            if(
l-1) {
              var 
colIndex xs[i].index;
              var 
fillColor=  this.tableNode.table.body[rowIndex][colIndex].fillColor;
              if(
fillColor ) {
                var 
wBorder this.layout.vLineWidth(colIndexthis.tableNode);
                var 
xf xs[i].x+wBorder;
                var 
yf y1 hzLineOffset;
                
writer.addVector({
                  
type'rect',
                  
xxf,
                  
yyf,
                  
wxs[i+1].x-xf,
                  
hy2+this.bottomLineWidth-yf,
                  
lineWidth0,
                  
colorfillColor
                
}, falsetrue0);
              }
            }
          }

          if (
willBreak && this.layout.hLineWhenBroken !== false) {
            
this.drawHorizontalLine(rowIndex 1writery2);
          }
          if(
rowBreakWithoutHeader && this.layout.hLineWhenBroken !== false) {
            
this.drawHorizontalLine(rowIndexwritery1);
          }
        }

        
writer.context().page endingPage;
        
writer.context().endingY;

        var 
row this.tableNode.table.body[rowIndex];
        for(
0row.lengthli++) {
          if (
row[i].rowSpan) {
            
this.rowSpanData[i].rowSpan row[i].rowSpan;

            
// fix colSpans
            
if (row[i].colSpan && row[i].colSpan 1) {
              for(var 
1row[i].rowSpanj++) {
                
this.tableNode.table.body[rowIndex j][i]._colSpan row[i].colSpan;
              }
            }
          }

          if(
this.rowSpanData[i].rowSpan 0) {
            
this.rowSpanData[i].rowSpan--;
          }
        }

        
this.drawHorizontalLine(rowIndex 1writer);

        if(
this.headerRows && rowIndex === this.headerRows 1) {
          
this.headerRepeatable writer.currentBlockToRepeatable();
        }

        if(
this.dontBreakRows) {
          
writer.tracker.auto('pageChanged',
            function() {
              
self.drawHorizontalLine(rowIndexwriter);
            },
            function() {
              
writer.commitUnbreakableBlock();
              
self.drawHorizontalLine(rowIndexwriter);
            }
          );
        }

        if(
this.headerRepeatable && (rowIndex === (this.rowsWithoutPageBreak 1) || rowIndex === this.tableNode.table.body.length 1)) {
          
writer.commitUnbreakableBlock();
          
writer.pushToRepeatables(this.headerRepeatable);
          
this.cleanUpRepeatables true;
          
this.headerRepeatable null;
        }

        function 
getLineXs() {
          var 
result = [];
          var 
cols 0;

          for(var 
0self.tableNode.table.body[rowIndex].lengthli++) {
            if (!
cols) {
              
result.push({ xself.rowSpanData[i].leftindexi});

              var 
item self.tableNode.table.body[rowIndex][i];
              
cols = (item._colSpan || item.colSpan || 0);
            }
            if (
cols 0) {
              
cols--;
            }
          }

          
result.push({ xself.rowSpanData[self.rowSpanData.length 1].leftindexself.rowSpanData.length 1});

          return 
result;
        }
    };

    
module.exports TableProcessor;


/***/ },
/* 24 */
/***/ 
function(moduleexports__webpack_require__) {

    
/* WEBPACK VAR INJECTION */(function(Buffer) {// Generated by CoffeeScript 1.7.1

    /*
    PDFDocument - represents an entire PDF document
    By Devon Govett
     */

    
(function() {
      var 
PDFDocumentPDFObjectPDFPagePDFReferencefsstream,
        
__hasProp = {}.hasOwnProperty,
        
__extends = function(childparent) { for (var key in parent) { if (__hasProp.call(parentkey)) child[key] = parent[key]; } function ctor() { this.constructor child; } ctor.prototype parent.prototypechild.prototype = new ctor(); child.__super__ parent.prototype; return child; };

      
stream __webpack_require__(25);

      
fs __webpack_require__(44);

      
PDFObject __webpack_require__(45);

      
PDFReference __webpack_require__(46);

      
PDFPage __webpack_require__(64);

      
PDFDocument = (function(_super) {
        var 
mixin;

        
__extends(PDFDocument_super);

        function 
PDFDocument(options) {
          var 
keyval_ref_ref1;
          
this.options options != null options : {};
          
PDFDocument.__super__.constructor.apply(thisarguments);
          
this.version 1.3;
          
this.compress = (_ref this.options.compress) != null _ref true;
          
this._pageBuffer = [];
          
this._pageBufferStart 0;
          
this._offsets = [];
          
this._waiting 0;
          
this._ended false;
          
this._offset 0;
          
this._root this.ref({
            
Type'Catalog',
            
Pagesthis.ref({
              
Type'Pages',
              
Count0,
              
Kids: []
            })
          });
          
this.page null;
          
this.initColor();
          
this.initVector();
          
this.initFonts();
          
this.initText();
          
this.initImages();
          
this.info = {
            
Producer'PDFKit',
            
Creator'PDFKit',
            
CreationDate: new Date()
          };
          if (
this.options.info) {
            
_ref1 this.options.info;
            for (
key in _ref1) {
              
val _ref1[key];
              
this.info[key] = val;
            }
          }
          
this._write("%PDF-" this.version);
          
this._write("%xFFxFFxFFxFF");
          
this.addPage();
        }

        
mixin = function(methods) {
          var 
methodname_results;
          
_results = [];
          for (
name in methods) {
            
method methods[name];
            
_results.push(PDFDocument.prototype[name] = method);
          }
          return 
_results;
        };

        
mixin(__webpack_require__(65));

        
mixin(__webpack_require__(67));

        
mixin(__webpack_require__(69));

        
mixin(__webpack_require__(89));

        
mixin(__webpack_require__(96));

        
mixin(__webpack_require__(101));

        
PDFDocument.prototype.addPage = function(options) {
          var 
pages;
          if (
options == null) {
            
options this.options;
          }
          if (!
this.options.bufferPages) {
            
this.flushPages();
          }
          
this.page = new PDFPage(thisoptions);
          
this._pageBuffer.push(this.page);
          
pages this._root.data.Pages.data;
          
pages.Kids.push(this.page.dictionary);
          
pages.Count++;
          
this.this.page.margins.left;
          
this.this.page.margins.top;
          
this._ctm = [100100];
          
this.transform(100, -10this.page.height);
          return 
this;
        };

        
PDFDocument.prototype.bufferedPageRange = function() {
          return {
            
startthis._pageBufferStart,
            
countthis._pageBuffer.length
          
};
        };

        
PDFDocument.prototype.switchToPage = function(n) {
          var 
page;
          if (!(
page this._pageBuffer[this._pageBufferStart])) {
            throw new 
Error("switchToPage(" ") out of bounds, current buffer covers pages " this._pageBufferStart " to " + (this._pageBufferStart this._pageBuffer.length 1));
          }
          return 
this.page page;
        };

        
PDFDocument.prototype.flushPages = function() {
          var 
pagepages_i_len;
          
pages this._pageBuffer;
          
this._pageBuffer = [];
          
this._pageBufferStart += pages.length;
          for (
_i 0_len pages.length_i _len_i++) {
            
page pages[_i];
            
page.end();
          }
        };

        
PDFDocument.prototype.ref = function(data) {
          var 
ref;
          
ref = new PDFReference(thisthis._offsets.length 1data);
          
this._offsets.push(null);
          
this._waiting++;
          return 
ref;
        };

        
PDFDocument.prototype._read = function() {};

        
PDFDocument.prototype._write = function(data) {
          if (!
Buffer.isBuffer(data)) {
            
data = new Buffer(data 'n''binary');
          }
          
this.push(data);
          return 
this._offset += data.length;
        };

        
PDFDocument.prototype.addContent = function(data) {
          
this.page.write(data);
          return 
this;
        };

        
PDFDocument.prototype._refEnd = function(ref) {
          
this._offsets[ref.id 1] = ref.offset;
          if (--
this._waiting === && this._ended) {
            
this._finalize();
            return 
this._ended false;
          }
        };

        
PDFDocument.prototype.write = function(filenamefn) {
          var 
err;
          
err = new Error('PDFDocument#write is deprecated, and will be removed in a future version of PDFKit. Please pipe the document into a Node stream.');
          
console.warn(err.stack);
          
this.pipe(fs.createWriteStream(filename));
          
this.end();
          return 
this.once('end'fn);
        };

        
PDFDocument.prototype.output = function(fn) {
          throw new 
Error('PDFDocument#output is deprecated, and has been removed from PDFKit. Please pipe the document into a Node stream.');
        };

        
PDFDocument.prototype.end = function() {
          var 
fontkeynameval_ref_ref1;
          
this.flushPages();
          
this._info this.ref();
          
_ref this.info;
          for (
key in _ref) {
            
val _ref[key];
            if (
typeof val === 'string') {
              
val = new String(val);
            }
            
this._info.data[key] = val;
          }
          
this._info.end();
          
_ref1 this._fontFamilies;
          for (
name in _ref1) {
            
font _ref1[name];
            
font.embed();
          }
          
this._root.end();
          
this._root.data.Pages.end();
          if (
this._waiting === 0) {
            return 
this._finalize();
          } else {
            return 
this._ended true;
          }
        };

        
PDFDocument.prototype._finalize = function(fn) {
          var 
offsetxRefOffset_i_len_ref;
          
xRefOffset this._offset;
          
this._write("xref");
          
this._write("0 " + (this._offsets.length 1));
          
this._write("0000000000 65535 f ");
          
_ref this._offsets;
          for (
_i 0_len _ref.length_i _len_i++) {
            
offset _ref[_i];
            
offset = ('0000000000' offset).slice(-10);
            
this._write(offset ' 00000 n ');
          }
          
this._write('trailer');
          
this._write(PDFObject.convert({
            
Sizethis._offsets.length 1,
            
Rootthis._root,
            
Infothis._info
          
}));
          
this._write('startxref');
          
this._write("" xRefOffset);
          
this._write('%%EOF');
          return 
this.push(null);
        };

        
PDFDocument.prototype.toString = function() {
          return 
"[object PDFDocument]";
        };

        return 
PDFDocument;

      })(
stream.Readable);

      
module.exports PDFDocument;

    }).
call(this);

    
/* WEBPACK VAR INJECTION */}.call(exports__webpack_require__(2).Buffer))

/***/ },
/* 25 */
/***/ 
function(moduleexports__webpack_require__) {

    
// Copyright Joyent, Inc. and other Node contributors.
    //
    // Permission is hereby granted, free of charge, to any person obtaining a
    // copy of this software and associated documentation files (the
    // "Software"), to deal in the Software without restriction, including
    // without limitation the rights to use, copy, modify, merge, publish,
    // distribute, sublicense, and/or sell copies of the Software, and to permit
    // persons to whom the Software is furnished to do so, subject to the
    // following conditions:
    //
    // The above copyright notice and this permission notice shall be included
    // in all copies or substantial portions of the Software.
    //
    // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
    // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
    // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
    // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
    // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
    // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
    // USE OR OTHER DEALINGS IN THE SOFTWARE.

    
module.exports Stream;

    var 
EE __webpack_require__(26).EventEmitter;
    var 
inherits __webpack_require__(27);

    
inherits(StreamEE);
    
Stream.Readable __webpack_require__(28);
    
Stream.Writable __webpack_require__(40);
    
Stream.Duplex __webpack_require__(41);
    
Stream.Transform __webpack_require__(42);
    
Stream.PassThrough __webpack_require__(43);

    
// Backwards-compat with node 0.4.x
    
Stream.Stream Stream;



    
// old-style streams.  Note that the pipe method (the only relevant
    // part of this class) is overridden in the Readable class.

    
function Stream() {
      
EE.call(this);
    }

    
Stream.prototype.pipe = function(destoptions) {
      var 
source this;

      function 
ondata(chunk) {
        if (
dest.writable) {
          if (
false === dest.write(chunk) && source.pause) {
            
source.pause();
          }
        }
      }

      
source.on('data'ondata);

      function 
ondrain() {
        if (
source.readable && source.resume) {
          
source.resume();
        }
      }

      
dest.on('drain'ondrain);

      
// If the 'end' option is not supplied, dest.end() will be called when
      // source gets the 'end' or 'close' events.  Only dest.end() once.
      
if (!dest._isStdio && (!options || options.end !== false)) {
        
source.on('end'onend);
        
source.on('close'onclose);
      }

      var 
didOnEnd false;
      function 
onend() {
        if (
didOnEnd) return;
        
didOnEnd true;

        
dest.end();
      }


      function 
onclose() {
        if (
didOnEnd) return;
        
didOnEnd true;

        if (
typeof dest.destroy === 'function'dest.destroy();
      }

      
// don't leave dangling pipes when there are errors.
      
function onerror(er) {
        
cleanup();
        if (
EE.listenerCount(this'error') === 0) {
          throw 
er// Unhandled stream error in pipe.
        
}
      }

      
source.on('error'onerror);
      
dest.on('error'onerror);

      
// remove all the event listeners that were added.
      
function cleanup() {
        
source.removeListener('data'ondata);
        
dest.removeListener('drain'ondrain);

        
source.removeListener('end'onend);
        
source.removeListener('close'onclose);

        
source.removeListener('error'onerror);
        
dest.removeListener('error'onerror);

        
source.removeListener('end'cleanup);
        
source.removeListener('close'cleanup);

        
dest.removeListener('close'cleanup);
      }

      
source.on('end'cleanup);
      
source.on('close'cleanup);

      
dest.on('close'cleanup);

      
dest.emit('pipe'source);

      
// Allow for unix-like usage: A.pipe(B).pipe(C)
      
return dest;
    };


/***/ },
/* 26 */
/***/ 
function(moduleexports) {

    
// Copyright Joyent, Inc. and other Node contributors.
    //
    // Permission is hereby granted, free of charge, to any person obtaining a
    // copy of this software and associated documentation files (the
    // "Software"), to deal in the Software without restriction, including
    // without limitation the rights to use, copy, modify, merge, publish,
    // distribute, sublicense, and/or sell copies of the Software, and to permit
    // persons to whom the Software is furnished to do so, subject to the
    // following conditions:
    //
    // The above copyright notice and this permission notice shall be included
    // in all copies or substantial portions of the Software.
    //
    // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
    // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
    // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
    // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
    // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
    // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
    // USE OR OTHER DEALINGS IN THE SOFTWARE.

    
function EventEmitter() {
      
this._events this._events || {};
      
this._maxListeners this._maxListeners || undefined;
    }
    
module.exports EventEmitter;

    
// Backwards-compat with node 0.10.x
    
EventEmitter.EventEmitter EventEmitter;

    
EventEmitter.prototype._events undefined;
    
EventEmitter.prototype._maxListeners undefined;

    
// By default EventEmitters will print a warning if more than 10 listeners are
    // added to it. This is a useful default which helps finding memory leaks.
    
EventEmitter.defaultMaxListeners 10;

    
// Obviously not all Emitters should be limited to 10. This function allows
    // that to be increased. Set to zero for unlimited.
    
EventEmitter.prototype.setMaxListeners = function(n) {
      if (!
isNumber(n) || || isNaN(n))
        throw 
TypeError('n must be a positive number');
      
this._maxListeners n;
      return 
this;
    };

    
EventEmitter.prototype.emit = function(type) {
      var 
erhandlerlenargsilisteners;

      if (!
this._events)
        
this._events = {};

      
// If there is no 'error' event listener then throw.
      
if (type === 'error') {
        if (!
this._events.error ||
            (
isObject(this._events.error) && !this._events.error.length)) {
          
er arguments[1];
          if (
er instanceof Error) {
            throw 
er// Unhandled 'error' event
          
}
          throw 
TypeError('Uncaught, unspecified "error" event.');
        }
      }

      
handler this._events[type];

      if (
isUndefined(handler))
        return 
false;

      if (
isFunction(handler)) {
        switch (
arguments.length) {
          
// fast cases
          
case 1:
            
handler.call(this);
            break;
          case 
2:
            
handler.call(thisarguments[1]);
            break;
          case 
3:
            
handler.call(thisarguments[1], arguments[2]);
            break;
          
// slower
          
default:
            
len arguments.length;
            
args = new Array(len 1);
            for (
1leni++)
              
args[1] = arguments[i];
            
handler.apply(thisargs);
        }
      } else if (
isObject(handler)) {
        
len arguments.length;
        
args = new Array(len 1);
        for (
1leni++)
          
args[1] = arguments[i];

        
listeners handler.slice();
        
len listeners.length;
        for (
0leni++)
          
listeners[i].apply(thisargs);
      }

      return 
true;
    };

    
EventEmitter.prototype.addListener = function(typelistener) {
      var 
m;

      if (!
isFunction(listener))
        throw 
TypeError('listener must be a function');

      if (!
this._events)
        
this._events = {};

      
// To avoid recursion in the case that type === "newListener"! Before
      // adding it to the listeners, first emit "newListener".
      
if (this._events.newListener)
        
this.emit('newListener'type,
                  
isFunction(listener.listener) ?
                  
listener.listener listener);

      if (!
this._events[type])
        
// Optimize the case of one listener. Don't need the extra array object.
        
this._events[type] = listener;
      else if (
isObject(this._events[type]))
        
// If we've already got an array, just append.
        
this._events[type].push(listener);
      else
        
// Adding the second element, need to change to array.
        
this._events[type] = [this._events[type], listener];

      
// Check for listener leak
      
if (isObject(this._events[type]) && !this._events[type].warned) {
        var 
m;
        if (!
isUndefined(this._maxListeners)) {
          
this._maxListeners;
        } else {
          
EventEmitter.defaultMaxListeners;
        }

        if (
&& && this._events[type].length m) {
          
this._events[type].warned true;
          
console.error('(node) warning: possible EventEmitter memory ' +
                        
'leak detected. %d listeners added. ' +
                        
'Use emitter.setMaxListeners() to increase limit.',
                        
this._events[type].length);
          if (
typeof console.trace === 'function') {
            
// not supported in IE 10
            
console.trace();
          }
        }
      }

      return 
this;
    };

    
EventEmitter.prototype.on EventEmitter.prototype.addListener;

    
EventEmitter.prototype.once = function(typelistener) {
      if (!
isFunction(listener))
        throw 
TypeError('listener must be a function');

      var 
fired false;

      function 
g() {
        
this.removeListener(typeg);

        if (!
fired) {
          
fired true;
          
listener.apply(thisarguments);
        }
      }

      
g.listener listener;
      
this.on(typeg);

      return 
this;
    };

    
// emits a 'removeListener' event iff the listener was removed
    
EventEmitter.prototype.removeListener = function(typelistener) {
      var list, 
positionlengthi;

      if (!
isFunction(listener))
        throw 
TypeError('listener must be a function');

      if (!
this._events || !this._events[type])
        return 
this;

      list = 
this._events[type];
      
length = list.length;
      
position = -1;

      if (list === 
listener ||
          (
isFunction(list.listener) && list.listener === listener)) {
        
delete this._events[type];
        if (
this._events.removeListener)
          
this.emit('removeListener'typelistener);

      } else if (
isObject(list)) {
        for (
lengthi-- > 0;) {
          if (list[
i] === listener ||
              (list[
i].listener && list[i].listener === listener)) {
            
position i;
            break;
          }
        }

        if (
position 0)
          return 
this;

        if (list.
length === 1) {
          list.
length 0;
          
delete this._events[type];
        } else {
          list.
splice(position1);
        }

        if (
this._events.removeListener)
          
this.emit('removeListener'typelistener);
      }

      return 
this;
    };

    
EventEmitter.prototype.removeAllListeners = function(type) {
      var 
keylisteners;

      if (!
this._events)
        return 
this;

      
// not listening for removeListener, no need to emit
      
if (!this._events.removeListener) {
        if (
arguments.length === 0)
          
this._events = {};
        else if (
this._events[type])
          
delete this._events[type];
        return 
this;
      }

      
// emit removeListener for all listeners on all events
      
if (arguments.length === 0) {
        for (
key in this._events) {
          if (
key === 'removeListener') continue;
          
this.removeAllListeners(key);
        }
        
this.removeAllListeners('removeListener');
        
this._events = {};
        return 
this;
      }

      
listeners this._events[type];

      if (
isFunction(listeners)) {
        
this.removeListener(typelisteners);
      } else {
        
// LIFO order
        
while (listeners.length)
          
this.removeListener(typelisteners[listeners.length 1]);
      }
      
delete this._events[type];

      return 
this;
    };

    
EventEmitter.prototype.listeners = function(type) {
      var 
ret;
      if (!
this._events || !this._events[type])
        
ret = [];
      else if (
isFunction(this._events[type]))
        
ret = [this._events[type]];
      else
        
ret this._events[type].slice();
      return 
ret;
    };

    
EventEmitter.listenerCount = function(emittertype) {
      var 
ret;
      if (!
emitter._events || !emitter._events[type])
        
ret 0;
      else if (
isFunction(emitter._events[type]))
        
ret 1;
      else
        
ret emitter._events[type].length;
      return 
ret;
    };

    function 
isFunction(arg) {
      return 
typeof arg === 'function';
    }

    function 
isNumber(arg) {
      return 
typeof arg === 'number';
    }

    function 
isObject(arg) {
      return 
typeof arg === 'object' && arg !== null;
    }

    function 
isUndefined(arg) {
      return 
arg === void 0;
    }


/***/ },
/* 27 */
/***/ 
function(moduleexports) {

    if (
typeof Object.create === 'function') {
      
// implementation from standard node.js 'util' module
      
module.exports = function inherits(ctorsuperCtor) {
        
ctor.super_ superCtor
        ctor
.prototype Object.create(superCtor.prototype, {
          
constructor: {
            
valuector,
            
enumerablefalse,
            
writabletrue,
            
configurabletrue
          
}
        });
      };
    } else {
      
// old school shim for old browsers
      
module.exports = function inherits(ctorsuperCtor) {
        
ctor.super_ superCtor
        
var TempCtor = function () {}
        
TempCtor.prototype superCtor.prototype
        ctor
.prototype = new TempCtor()
        
ctor.prototype.constructor ctor
      
}
    }


/***/ },
/* 28 */
/***/ 
function(moduleexports__webpack_require__) {

    
exports module.exports __webpack_require__(29);
    
exports.Stream __webpack_require__(25);
    
exports.Readable exports;
    
exports.Writable __webpack_require__(36);
    
exports.Duplex __webpack_require__(35);
    
exports.Transform __webpack_require__(38);
    
exports.PassThrough __webpack_require__(39);


/***/ },
/* 29 */
/***/ 
function(moduleexports__webpack_require__) {

    
/* WEBPACK VAR INJECTION */(function(process) {// Copyright Joyent, Inc. and other Node contributors.
    //
    // Permission is hereby granted, free of charge, to any person obtaining a
    // copy of this software and associated documentation files (the
    // "Software"), to deal in the Software without restriction, including
    // without limitation the rights to use, copy, modify, merge, publish,
    // distribute, sublicense, and/or sell copies of the Software, and to permit
    // persons to whom the Software is furnished to do so, subject to the
    // following conditions:
    //
    // The above copyright notice and this permission notice shall be included
    // in all copies or substantial portions of the Software.
    //
    // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
    // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
    // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
    // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
    // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
    // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
    // USE OR OTHER DEALINGS IN THE SOFTWARE.

    
module.exports Readable;

    
/*<replacement>*/
    
var isArray __webpack_require__(31);
    
/*</replacement>*/


    /*<replacement>*/
    
var Buffer __webpack_require__(2).Buffer;
    
/*</replacement>*/

    
Readable.ReadableState ReadableState;

    var 
EE __webpack_require__(26).EventEmitter;

    
/*<replacement>*/
    
if (!EE.listenerCountEE.listenerCount = function(emittertype) {
      return 
emitter.listeners(type).length;
    };
    
/*</replacement>*/

    
var Stream __webpack_require__(25);

    
/*<replacement>*/
    
var util __webpack_require__(32);
    
util.inherits __webpack_require__(33);
    
/*</replacement>*/

    
var StringDecoder;


    
/*<replacement>*/
    
var debug __webpack_require__(34);
    if (
debug && debug.debuglog) {
      
debug debug.debuglog('stream');
    } else {
      
debug = function () {};
    }
    
/*</replacement>*/


    
util.inherits(ReadableStream);

    function 
ReadableState(optionsstream) {
      var 
Duplex __webpack_require__(35);

      
options options || {};

      
// the point at which it stops calling _read() to fill the buffer
      // Note: 0 is a valid value, means "don't call _read preemptively ever"
      
var hwm options.highWaterMark;
      var 
defaultHwm options.objectMode 16 16 1024;
      
this.highWaterMark = (hwm || hwm === 0) ? hwm defaultHwm;

      
// cast to ints.
      
this.highWaterMark = ~~this.highWaterMark;

      
this.buffer = [];
      
this.length 0;
      
this.pipes null;
      
this.pipesCount 0;
      
this.flowing null;
      
this.ended false;
      
this.endEmitted false;
      
this.reading false;

      
// a flag to be able to tell if the onwrite cb is called immediately,
      // or on a later tick.  We set this to true at first, because any
      // actions that shouldn't happen until "later" should generally also
      // not happen before the first write call.
      
this.sync true;

      
// whenever we return null, then we set a flag to say
      // that we're awaiting a 'readable' event emission.
      
this.needReadable false;
      
this.emittedReadable false;
      
this.readableListening false;


      
// object stream flag. Used to make read(n) ignore n and to
      // make all the buffer merging and length checks go away
      
this.objectMode = !!options.objectMode;

      if (
stream instanceof Duplex)
        
this.objectMode this.objectMode || !!options.readableObjectMode;

      
// Crypto is kind of old and crusty.  Historically, its default string
      // encoding is 'binary' so we have to make this configurable.
      // Everything else in the universe uses 'utf8', though.
      
this.defaultEncoding options.defaultEncoding || 'utf8';

      
// when piping, we only care about 'readable' events that happen
      // after read()ing all the bytes and not getting any pushback.
      
this.ranOut false;

      
// the number of writers that are awaiting a drain event in .pipe()s
      
this.awaitDrain 0;

      
// if true, a maybeReadMore has been scheduled
      
this.readingMore false;

      
this.decoder null;
      
this.encoding null;
      if (
options.encoding) {
        if (!
StringDecoder)
          
StringDecoder __webpack_require__(37).StringDecoder;
        
this.decoder = new StringDecoder(options.encoding);
        
this.encoding options.encoding;
      }
    }

    function 
Readable(options) {
      var 
Duplex __webpack_require__(35);

      if (!(
this instanceof Readable))
        return new 
Readable(options);

      
this._readableState = new ReadableState(optionsthis);

      
// legacy
      
this.readable true;

      
Stream.call(this);
    }

    
// Manually shove something into the read() buffer.
    // This returns true if the highWaterMark has not been hit yet,
    // similar to how Writable.write() returns true if you should
    // write() some more.
    
Readable.prototype.push = function(chunkencoding) {
      var 
state this._readableState;

      if (
util.isString(chunk) && !state.objectMode) {
        
encoding encoding || state.defaultEncoding;
        if (
encoding !== state.encoding) {
          
chunk = new Buffer(chunkencoding);
          
encoding '';
        }
      }

      return 
readableAddChunk(thisstatechunkencodingfalse);
    };

    
// Unshift should *always* be something directly out of read()
    
Readable.prototype.unshift = function(chunk) {
      var 
state this._readableState;
      return 
readableAddChunk(thisstatechunk''true);
    };

    function 
readableAddChunk(streamstatechunkencodingaddToFront) {
      var 
er chunkInvalid(statechunk);
      if (
er) {
        
stream.emit('error'er);
      } else if (
util.isNullOrUndefined(chunk)) {
        
state.reading false;
        if (!
state.ended)
          
onEofChunk(streamstate);
      } else if (
state.objectMode || chunk && chunk.length 0) {
        if (
state.ended && !addToFront) {
          var 
= new Error('stream.push() after EOF');
          
stream.emit('error'e);
        } else if (
state.endEmitted && addToFront) {
          var 
= new Error('stream.unshift() after end event');
          
stream.emit('error'e);
        } else {
          if (
state.decoder && !addToFront && !encoding)
            
chunk state.decoder.write(chunk);

          if (!
addToFront)
            
state.reading false;

          
// if we want the data now, just emit it.
          
if (state.flowing && state.length === && !state.sync) {
            
stream.emit('data'chunk);
            
stream.read(0);
          } else {
            
// update the buffer info.
            
state.length += state.objectMode chunk.length;
            if (
addToFront)
              
state.buffer.unshift(chunk);
            else
              
state.buffer.push(chunk);

            if (
state.needReadable)
              
emitReadable(stream);
          }

          
maybeReadMore(streamstate);
        }
      } else if (!
addToFront) {
        
state.reading false;
      }

      return 
needMoreData(state);
    }



    
// if it's past the high water mark, we can push in some more.
    // Also, if we have no data yet, we can stand some
    // more bytes.  This is to work around cases where hwm=0,
    // such as the repl.  Also, if the push() triggered a
    // readable event, and the user called read(largeNumber) such that
    // needReadable was set, then we ought to push more, so that another
    // 'readable' event will be triggered.
    
function needMoreData(state) {
      return !
state.ended &&
             (
state.needReadable ||
              
state.length state.highWaterMark ||
              
state.length === 0);
    }

    
// backwards compatibility.
    
Readable.prototype.setEncoding = function(enc) {
      if (!
StringDecoder)
        
StringDecoder __webpack_require__(37).StringDecoder;
      
this._readableState.decoder = new StringDecoder(enc);
      
this._readableState.encoding enc;
      return 
this;
    };

    
// Don't raise the hwm > 128MB
    
var MAX_HWM 0x800000;
    function 
roundUpToNextPowerOf2(n) {
      if (
>= MAX_HWM) {
        
MAX_HWM;
      } else {
        
// Get the next highest power of 2
        
n--;
        for (var 
132<<= 1|= >> p;
        
n++;
      }
      return 
n;
    }

    function 
howMuchToRead(nstate) {
      if (
state.length === && state.ended)
        return 
0;

      if (
state.objectMode)
        return 
=== 1;

      if (
isNaN(n) || util.isNull(n)) {
        
// only flow one buffer at a time
        
if (state.flowing && state.buffer.length)
          return 
state.buffer[0].length;
        else
          return 
state.length;
      }

      if (
<= 0)
        return 
0;

      
// If we're asking for more than the target buffer level,
      // then raise the water mark.  Bump up to the next highest
      // power of 2, to prevent increasing it excessively in tiny
      // amounts.
      
if (state.highWaterMark)
        
state.highWaterMark roundUpToNextPowerOf2(n);

      
// don't have that much.  return null, unless we've ended.
      
if (state.length) {
        if (!
state.ended) {
          
state.needReadable true;
          return 
0;
        } else
          return 
state.length;
      }

      return 
n;
    }

    
// you can override either this method, or the async _read(n) below.
    
Readable.prototype.read = function(n) {
      
debug('read'n);
      var 
state this._readableState;
      var 
nOrig n;

      if (!
util.isNumber(n) || 0)
        
state.emittedReadable false;

      
// if we're doing read(0) to trigger a readable event, but we
      // already have a bunch of data in the buffer, then just trigger
      // the 'readable' event and move on.
      
if (=== &&
          
state.needReadable &&
          (
state.length >= state.highWaterMark || state.ended)) {
        
debug('read: emitReadable'state.lengthstate.ended);
        if (
state.length === && state.ended)
          
endReadable(this);
        else
          
emitReadable(this);
        return 
null;
      }

      
howMuchToRead(nstate);

      
// if we've ended, and we're now clear, then finish it up.
      
if (=== && state.ended) {
        if (
state.length === 0)
          
endReadable(this);
        return 
null;
      }

      
// All the actual chunk generation logic needs to be
      // *below* the call to _read.  The reason is that in certain
      // synthetic stream cases, such as passthrough streams, _read
      // may be a completely synchronous operation which may change
      // the state of the read buffer, providing enough data when
      // before there was *not* enough.
      //
      // So, the steps are:
      // 1. Figure out what the state of things will be after we do
      // a read from the buffer.
      //
      // 2. If that resulting state will trigger a _read, then call _read.
      // Note that this may be asynchronous, or synchronous.  Yes, it is
      // deeply ugly to write APIs this way, but that still doesn't mean
      // that the Readable class should behave improperly, as streams are
      // designed to be sync/async agnostic.
      // Take note if the _read call is sync or async (ie, if the read call
      // has returned yet), so that we know whether or not it's safe to emit
      // 'readable' etc.
      //
      // 3. Actually pull the requested chunks out of the buffer and return.

      // if we need a readable event, then we need to do some reading.
      
var doRead state.needReadable;
      
debug('need readable'doRead);

      
// if we currently have less than the highWaterMark, then also read some
      
if (state.length === || state.length state.highWaterMark) {
        
doRead true;
        
debug('length less than watermark'doRead);
      }

      
// however, if we've ended, then there's no point, and if we're already
      // reading, then it's unnecessary.
      
if (state.ended || state.reading) {
        
doRead false;
        
debug('reading or ended'doRead);
      }

      if (
doRead) {
        
debug('do read');
        
state.reading true;
        
state.sync true;
        
// if the length is currently zero, then we *need* a readable event.
        
if (state.length === 0)
          
state.needReadable true;
        
// call internal read method
        
this._read(state.highWaterMark);
        
state.sync false;
      }

      
// If _read pushed data synchronously, then `reading` will be false,
      // and we need to re-evaluate how much data we can return to the user.
      
if (doRead && !state.reading)
        
howMuchToRead(nOrigstate);

      var 
ret;
      if (
0)
        
ret fromList(nstate);
      else
        
ret null;

      if (
util.isNull(ret)) {
        
state.needReadable true;
        
0;
      }

      
state.length -= n;

      
// If we have nothing in the buffer, then we want to know
      // as soon as we *do* get something into the buffer.
      
if (state.length === && !state.ended)
        
state.needReadable true;

      
// If we tried to read() past the EOF, then emit end on the next tick.
      
if (nOrig !== && state.ended && state.length === 0)
        
endReadable(this);

      if (!
util.isNull(ret))
        
this.emit('data'ret);

      return 
ret;
    };

    function 
chunkInvalid(statechunk) {
      var 
er null;
      if (!
util.isBuffer(chunk) &&
          !
util.isString(chunk) &&
          !
util.isNullOrUndefined(chunk) &&
          !
state.objectMode) {
        
er = new TypeError('Invalid non-string/buffer chunk');
      }
      return 
er;
    }


    function 
onEofChunk(streamstate) {
      if (
state.decoder && !state.ended) {
        var 
chunk state.decoder.end();
        if (
chunk && chunk.length) {
          
state.buffer.push(chunk);
          
state.length += state.objectMode chunk.length;
        }
      }
      
state.ended true;

      
// emit 'readable' now to make sure it gets picked up.
      
emitReadable(stream);
    }

    
// Don't emit readable right away in sync mode, because this can trigger
    // another read() call => stack overflow.  This way, it might trigger
    // a nextTick recursion warning, but that's not so bad.
    
function emitReadable(stream) {
      var 
state stream._readableState;
      
state.needReadable false;
      if (!
state.emittedReadable) {
        
debug('emitReadable'state.flowing);
        
state.emittedReadable true;
        if (
state.sync)
          
process.nextTick(function() {
            
emitReadable_(stream);
          });
        else
          
emitReadable_(stream);
      }
    }

    function 
emitReadable_(stream) {
      
debug('emit readable');
      
stream.emit('readable');
      
flow(stream);
    }


    
// at this point, the user has presumably seen the 'readable' event,
    // and called read() to consume some data.  that may have triggered
    // in turn another _read(n) call, in which case reading = true if
    // it's in progress.
    // However, if we're not ended, or reading, and the length < hwm,
    // then go ahead and try to read some more preemptively.
    
function maybeReadMore(streamstate) {
      if (!
state.readingMore) {
        
state.readingMore true;
        
process.nextTick(function() {
          
maybeReadMore_(streamstate);
        });
      }
    }

    function 
maybeReadMore_(streamstate) {
      var 
len state.length;
      while (!
state.reading && !state.flowing && !state.ended &&
             
state.length state.highWaterMark) {
        
debug('maybeReadMore read 0');
        
stream.read(0);
        if (
len === state.length)
          
// didn't get any data, stop spinning.
          
break;
        else
          
len state.length;
      }
      
state.readingMore false;
    }

    
// abstract method.  to be overridden in specific implementation classes.
    // call cb(er, data) where data is <= n in length.
    // for virtual (non-string, non-buffer) streams, "length" is somewhat
    // arbitrary, and perhaps not very meaningful.
    
Readable.prototype._read = function(n) {
      
this.emit('error', new Error('not implemented'));
    };

    
Readable.prototype.pipe = function(destpipeOpts) {
      var 
src this;
      var 
state this._readableState;

      switch (
state.pipesCount) {
        case 
0:
          
state.pipes dest;
          break;
        case 
1:
          
state.pipes = [state.pipesdest];
          break;
        default:
          
state.pipes.push(dest);
          break;
      }
      
state.pipesCount += 1;
      
debug('pipe count=%d opts=%j'state.pipesCountpipeOpts);

      var 
doEnd = (!pipeOpts || pipeOpts.end !== false) &&
                  
dest !== process.stdout &&
                  
dest !== process.stderr;

      var 
endFn doEnd onend cleanup;
      if (
state.endEmitted)
        
process.nextTick(endFn);
      else
        
src.once('end'endFn);

      
dest.on('unpipe'onunpipe);
      function 
onunpipe(readable) {
        
debug('onunpipe');
        if (
readable === src) {
          
cleanup();
        }
      }

      function 
onend() {
        
debug('onend');
        
dest.end();
      }

      
// when the dest drains, it reduces the awaitDrain counter
      // on the source.  This would be more elegant with a .once()
      // handler in flow(), but adding and removing repeatedly is
      // too slow.
      
var ondrain pipeOnDrain(src);
      
dest.on('drain'ondrain);

      function 
cleanup() {
        
debug('cleanup');
        
// cleanup event handlers once the pipe is broken
        
dest.removeListener('close'onclose);
        
dest.removeListener('finish'onfinish);
        
dest.removeListener('drain'ondrain);
        
dest.removeListener('error'onerror);
        
dest.removeListener('unpipe'onunpipe);
        
src.removeListener('end'onend);
        
src.removeListener('end'cleanup);
        
src.removeListener('data'ondata);

        
// if the reader is waiting for a drain event from this
        // specific writer, then it would cause it to never start
        // flowing again.
        // So, if this is awaiting a drain, then we just call it now.
        // If we don't know, then assume that we are waiting for one.
        
if (state.awaitDrain &&
            (!
dest._writableState || dest._writableState.needDrain))
          
ondrain();
      }

      
src.on('data'ondata);
      function 
ondata(chunk) {
        
debug('ondata');
        var 
ret dest.write(chunk);
        if (
false === ret) {
          
debug('false write response, pause',
                
src._readableState.awaitDrain);
          
src._readableState.awaitDrain++;
          
src.pause();
        }
      }

      
// if the dest has an error, then stop piping into it.
      // however, don't suppress the throwing behavior for this.
      
function onerror(er) {
        
debug('onerror'er);
        
unpipe();
        
dest.removeListener('error'onerror);
        if (
EE.listenerCount(dest'error') === 0)
          
dest.emit('error'er);
      }
      
// This is a brutally ugly hack to make sure that our error handler
      // is attached before any userland ones.  NEVER DO THIS.
      
if (!dest._events || !dest._events.error)
        
dest.on('error'onerror);
      else if (
isArray(dest._events.error))
        
dest._events.error.unshift(onerror);
      else
        
dest._events.error = [onerrordest._events.error];



      
// Both close and finish should trigger unpipe, but only once.
      
function onclose() {
        
dest.removeListener('finish'onfinish);
        
unpipe();
      }
      
dest.once('close'onclose);
      function 
onfinish() {
        
debug('onfinish');
        
dest.removeListener('close'onclose);
        
unpipe();
      }
      
dest.once('finish'onfinish);

      function 
unpipe() {
        
debug('unpipe');
        
src.unpipe(dest);
      }

      
// tell the dest that it's being piped to
      
dest.emit('pipe'src);

      
// start the flow if it hasn't been started already.
      
if (!state.flowing) {
        
debug('pipe resume');
        
src.resume();
      }

      return 
dest;
    };

    function 
pipeOnDrain(src) {
      return function() {
        var 
state src._readableState;
        
debug('pipeOnDrain'state.awaitDrain);
        if (
state.awaitDrain)
          
state.awaitDrain--;
        if (
state.awaitDrain === && EE.listenerCount(src'data')) {
          
state.flowing true;
          
flow(src);
        }
      };
    }


    
Readable.prototype.unpipe = function(dest) {
      var 
state this._readableState;

      
// if we're not piping anywhere, then do nothing.
      
if (state.pipesCount === 0)
        return 
this;

      
// just one destination.  most common case.
      
if (state.pipesCount === 1) {
        
// passed in one, but it's not the right one.
        
if (dest && dest !== state.pipes)
          return 
this;

        if (!
dest)
          
dest state.pipes;

        
// got a match.
        
state.pipes null;
        
state.pipesCount 0;
        
state.flowing false;
        if (
dest)
          
dest.emit('unpipe'this);
        return 
this;
      }

      
// slow case. multiple pipe destinations.

      
if (!dest) {
        
// remove all.
        
var dests state.pipes;
        var 
len state.pipesCount;
        
state.pipes null;
        
state.pipesCount 0;
        
state.flowing false;

        for (var 
0leni++)
          
dests[i].emit('unpipe'this);
        return 
this;
      }

      
// try to find the right one.
      
var indexOf(state.pipesdest);
      if (
=== -1)
        return 
this;

      
state.pipes.splice(i1);
      
state.pipesCount -= 1;
      if (
state.pipesCount === 1)
        
state.pipes state.pipes[0];

      
dest.emit('unpipe'this);

      return 
this;
    };

    
// set up data events if they are asked for
    // Ensure readable listeners eventually get something
    
Readable.prototype.on = function(evfn) {
      var 
res Stream.prototype.on.call(thisevfn);

      
// If listening to data, and it has not explicitly been paused,
      // then call resume to start the flow of data on the next tick.
      
if (ev === 'data' && false !== this._readableState.flowing) {
        
this.resume();
      }

      if (
ev === 'readable' && this.readable) {
        var 
state this._readableState;
        if (!
state.readableListening) {
          
state.readableListening true;
          
state.emittedReadable false;
          
state.needReadable true;
          if (!
state.reading) {
            var 
self this;
            
process.nextTick(function() {
              
debug('readable nexttick read 0');
              
self.read(0);
            });
          } else if (
state.length) {
            
emitReadable(thisstate);
          }
        }
      }

      return 
res;
    };
    
Readable.prototype.addListener Readable.prototype.on;

    
// pause() and resume() are remnants of the legacy readable stream API
    // If the user uses them, then switch into old mode.
    
Readable.prototype.resume = function() {
      var 
state this._readableState;
      if (!
state.flowing) {
        
debug('resume');
        
state.flowing true;
        if (!
state.reading) {
          
debug('resume read 0');
          
this.read(0);
        }
        
resume(thisstate);
      }
      return 
this;
    };

    function 
resume(streamstate) {
      if (!
state.resumeScheduled) {
        
state.resumeScheduled true;
        
process.nextTick(function() {
          
resume_(streamstate);
        });
      }
    }

    function 
resume_(streamstate) {
      
state.resumeScheduled false;
      
stream.emit('resume');
      
flow(stream);
      if (
state.flowing && !state.reading)
        
stream.read(0);
    }

    
Readable.prototype.pause = function() {
      
debug('call pause flowing=%j'this._readableState.flowing);
      if (
false !== this._readableState.flowing) {
        
debug('pause');
        
this._readableState.flowing false;
        
this.emit('pause');
      }
      return 
this;
    };

    function 
flow(stream) {
      var 
state stream._readableState;
      
debug('flow'state.flowing);
      if (
state.flowing) {
        do {
          var 
chunk stream.read();
        } while (
null !== chunk && state.flowing);
      }
    }

    
// wrap an old-style stream as the async data source.
    // This is *not* part of the readable stream interface.
    // It is an ugly unfortunate mess of history.
    
Readable.prototype.wrap = function(stream) {
      var 
state this._readableState;
      var 
paused false;

      var 
self this;
      
stream.on('end', function() {
        
debug('wrapped end');
        if (
state.decoder && !state.ended) {
          var 
chunk state.decoder.end();
          if (
chunk && chunk.length)
            
self.push(chunk);
        }

        
self.push(null);
      });

      
stream.on('data', function(chunk) {
        
debug('wrapped data');
        if (
state.decoder)
          
chunk state.decoder.write(chunk);
        if (!
chunk || !state.objectMode && !chunk.length)
          return;

        var 
ret self.push(chunk);
        if (!
ret) {
          
paused true;
          
stream.pause();
        }
      });

      
// proxy all the other methods.
      // important when wrapping filters and duplexes.
      
for (var i in stream) {
        if (
util.isFunction(stream[i]) && util.isUndefined(this[i])) {
          
this[i] = function(method) { return function() {
            return 
stream[method].apply(streamarguments);
          }}(
i);
        }
      }

      
// proxy certain important events.
      
var events = ['error''close''destroy''pause''resume'];
      forEach(
events, function(ev) {
        
stream.on(evself.emit.bind(selfev));
      });

      
// when we try to consume some more bytes, simply unpause the
      // underlying stream.
      
self._read = function(n) {
        
debug('wrapped _read'n);
        if (
paused) {
          
paused false;
          
stream.resume();
        }
      };

      return 
self;
    };



    
// exposed for testing purposes only.
    
Readable._fromList fromList;

    
// Pluck off n bytes from an array of buffers.
    // Length is the combined lengths of all the buffers in the list.
    
function fromList(nstate) {
      var list = 
state.buffer;
      var 
length state.length;
      var 
stringMode = !!state.decoder;
      var 
objectMode = !!state.objectMode;
      var 
ret;

      
// nothing in the list, definitely empty.
      
if (list.length === 0)
        return 
null;

      if (
length === 0)
        
ret null;
      else if (
objectMode)
        
ret = list.shift();
      else if (!
|| >= length) {
        
// read it all, truncate the array.
        
if (stringMode)
          
ret = list.join('');
        else
          
ret Buffer.concat(list, length);
        list.
length 0;
      } else {
        
// read just some of it.
        
if (< list[0].length) {
          
// just take a part of the first list item.
          // slice is the same for buffers and strings.
          
var buf = list[0];
          
ret buf.slice(0n);
          list[
0] = buf.slice(n);
        } else if (
=== list[0].length) {
          
// first list is a perfect match
          
ret = list.shift();
        } else {
          
// complex case.
          // we have enough to cover it, but it spans past the first buffer.
          
if (stringMode)
            
ret '';
          else
            
ret = new Buffer(n);

          var 
0;
          for (var 
0= list.length&& ni++) {
            var 
buf = list[0];
            var 
cpy Math.min(cbuf.length);

            if (
stringMode)
              
ret += buf.slice(0cpy);
            else
              
buf.copy(retc0cpy);

            if (
cpy buf.length)
              list[
0] = buf.slice(cpy);
            else
              list.
shift();

            
+= cpy;
          }
        }
      }

      return 
ret;
    }

    function 
endReadable(stream) {
      var 
state stream._readableState;

      
// If we get here before consuming all the bytes, then that is a
      // bug in node.  Should never happen.
      
if (state.length 0)
        throw new 
Error('endReadable called on non-empty stream');

      if (!
state.endEmitted) {
        
state.ended true;
        
process.nextTick(function() {
          
// Check that we didn't get one last unshift.
          
if (!state.endEmitted && state.length === 0) {
            
state.endEmitted true;
            
stream.readable false;
            
stream.emit('end');
          }
        });
      }
    }

    function forEach (
xsf) {
      for (var 
0xs.lengthli++) {
        
f(xs[i], i);
      }
    }

    function 
indexOf (xsx) {
      for (var 
0xs.lengthli++) {
        if (
xs[i] === x) return i;
      }
      return -
1;
    }

    
/* WEBPACK VAR INJECTION */}.call(exports__webpack_require__(30)))

/***/ },
/* 30 */
/***/ 
function(moduleexports) {

    
// shim for using process in browser

    
var process module.exports = {};
    var 
queue = [];
    var 
draining false;
    var 
currentQueue;
    var 
queueIndex = -1;

    function 
cleanUpNextTick() {
        
draining false;
        if (
currentQueue.length) {
            
queue currentQueue.concat(queue);
        } else {
            
queueIndex = -1;
        }
        if (
queue.length) {
            
drainQueue();
        }
    }

    function 
drainQueue() {
        if (
draining) {
            return;
        }
        var 
timeout setTimeout(cleanUpNextTick);
        
draining true;

        var 
len queue.length;
        while(
len) {
            
currentQueue queue;
            
queue = [];
            while (++
queueIndex len) {
                
currentQueue[queueIndex].run();
            }
            
queueIndex = -1;
            
len queue.length;
        }
        
currentQueue null;
        
draining false;
        
clearTimeout(timeout);
    }

    
process.nextTick = function (fun) {
        var 
args = new Array(arguments.length 1);
        if (
arguments.length 1) {
            for (var 
1arguments.lengthi++) {
                
args[1] = arguments[i];
            }
        }
        
queue.push(new Item(funargs));
        if (
queue.length === && !draining) {
            
setTimeout(drainQueue0);
        }
    };

    
// v8 likes predictible objects
    
function Item(fun, array) {
        
this.fun fun;
        
this.array = array;
    }
    
Item.prototype.run = function () {
        
this.fun.apply(nullthis.array);
    };
    
process.title 'browser';
    
process.browser true;
    
process.env = {};
    
process.argv = [];
    
process.version ''// empty string to avoid regexp issues
    
process.versions = {};

    function 
noop() {}

    
process.on noop;
    
process.addListener noop;
    
process.once noop;
    
process.off noop;
    
process.removeListener noop;
    
process.removeAllListeners noop;
    
process.emit noop;

    
process.binding = function (name) {
        throw new 
Error('process.binding is not supported');
    };

    
// TODO(shtylman)
    
process.cwd = function () { return '/' };
    
process.chdir = function (dir) {
        throw new 
Error('process.chdir is not supported');
    };
    
process.umask = function() { return 0; };


/***/ },
/* 31 */
/***/ 
function(moduleexports) {

    
module.exports = Array.isArray || function (arr) {
      return 
Object.prototype.toString.call(arr) == '[object Array]';
    };


/***/ },
/* 32 */
/***/ 
function(moduleexports__webpack_require__) {

    
/* WEBPACK VAR INJECTION */(function(Buffer) {// Copyright Joyent, Inc. and other Node contributors.
    //
    // Permission is hereby granted, free of charge, to any person obtaining a
    // copy of this software and associated documentation files (the
    // "Software"), to deal in the Software without restriction, including
    // without limitation the rights to use, copy, modify, merge, publish,
    // distribute, sublicense, and/or sell copies of the Software, and to permit
    // persons to whom the Software is furnished to do so, subject to the
    // following conditions:
    //
    // The above copyright notice and this permission notice shall be included
    // in all copies or substantial portions of the Software.
    //
    // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
    // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
    // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
    // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
    // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
    // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
    // USE OR OTHER DEALINGS IN THE SOFTWARE.

    // NOTE: These type checking functions intentionally don't use `instanceof`
    // because it is fragile and can be easily faked with `Object.create()`.
    
function isArray(ar) {
      return Array.
isArray(ar);
    }
    
exports.isArray isArray;

    function 
isBoolean(arg) {
      return 
typeof arg === 'boolean';
    }
    
exports.isBoolean isBoolean;

    function 
isNull(arg) {
      return 
arg === null;
    }
    
exports.isNull isNull;

    function 
isNullOrUndefined(arg) {
      return 
arg == null;
    }
    
exports.isNullOrUndefined isNullOrUndefined;

    function 
isNumber(arg) {
      return 
typeof arg === 'number';
    }
    
exports.isNumber isNumber;

    function 
isString(arg) {
      return 
typeof arg === 'string';
    }
    
exports.isString isString;

    function 
isSymbol(arg) {
      return 
typeof arg === 'symbol';
    }
    
exports.isSymbol isSymbol;

    function 
isUndefined(arg) {
      return 
arg === void 0;
    }
    
exports.isUndefined isUndefined;

    function 
isRegExp(re) {
      return 
isObject(re) && objectToString(re) === '[object RegExp]';
    }
    
exports.isRegExp isRegExp;

    function 
isObject(arg) {
      return 
typeof arg === 'object' && arg !== null;
    }
    
exports.isObject isObject;

    function 
isDate(d) {
      return 
isObject(d) && objectToString(d) === '[object Date]';
    }
    
exports.isDate isDate;

    function 
isError(e) {
      return 
isObject(e) &&
          (
objectToString(e) === '[object Error]' || instanceof Error);
    }
    
exports.isError isError;

    function 
isFunction(arg) {
      return 
typeof arg === 'function';
    }
    
exports.isFunction isFunction;

    function 
isPrimitive(arg) {
      return 
arg === null ||
             
typeof arg === 'boolean' ||
             
typeof arg === 'number' ||
             
typeof arg === 'string' ||
             
typeof arg === 'symbol' ||  // ES6 symbol
             
typeof arg === 'undefined';
    }
    
exports.isPrimitive isPrimitive;

    function 
isBuffer(arg) {
      return 
Buffer.isBuffer(arg);
    }
    
exports.isBuffer isBuffer;

    function 
objectToString(o) {
      return 
Object.prototype.toString.call(o);
    }
    
/* WEBPACK VAR INJECTION */}.call(exports__webpack_require__(2).Buffer))

/***/ },
/* 33 */
/***/ 
function(moduleexports) {

    if (
typeof Object.create === 'function') {
      
// implementation from standard node.js 'util' module
      
module.exports = function inherits(ctorsuperCtor) {
        
ctor.super_ superCtor
        ctor
.prototype Object.create(superCtor.prototype, {
          
constructor: {
            
valuector,
            
enumerablefalse,
            
writabletrue,
            
configurabletrue
          
}
        });
      };
    } else {
      
// old school shim for old browsers
      
module.exports = function inherits(ctorsuperCtor) {
        
ctor.super_ superCtor
        
var TempCtor = function () {}
        
TempCtor.prototype superCtor.prototype
        ctor
.prototype = new TempCtor()
        
ctor.prototype.constructor ctor
      
}
    }


/***/ },
/* 34 */
/***/ 
function(moduleexports) {

    
/* (ignored) */

/***/ 
},
/* 35 */
/***/ 
function(moduleexports__webpack_require__) {

    
/* WEBPACK VAR INJECTION */(function(process) {// Copyright Joyent, Inc. and other Node contributors.
    //
    // Permission is hereby granted, free of charge, to any person obtaining a
    // copy of this software and associated documentation files (the
    // "Software"), to deal in the Software without restriction, including
    // without limitation the rights to use, copy, modify, merge, publish,
    // distribute, sublicense, and/or sell copies of the Software, and to permit
    // persons to whom the Software is furnished to do so, subject to the
    // following conditions:
    //
    // The above copyright notice and this permission notice shall be included
    // in all copies or substantial portions of the Software.
    //
    // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
    // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
    // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
    // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
    // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
    // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
    // USE OR OTHER DEALINGS IN THE SOFTWARE.

    // a duplex stream is just a stream that is both readable and writable.
    // Since JS doesn't have multiple prototypal inheritance, this class
    // prototypally inherits from Readable, and then parasitically from
    // Writable.

    
module.exports Duplex;

    
/*<replacement>*/
    
var objectKeys Object.keys || function (obj) {
      var 
keys = [];
      for (var 
key in objkeys.push(key);
      return 
keys;
    }
    
/*</replacement>*/


    /*<replacement>*/
    
var util __webpack_require__(32);
    
util.inherits __webpack_require__(33);
    
/*</replacement>*/

    
var Readable __webpack_require__(29);
    var 
Writable __webpack_require__(36);

    
util.inherits(DuplexReadable);

    forEach(
objectKeys(Writable.prototype), function(method) {
      if (!
Duplex.prototype[method])
        
Duplex.prototype[method] = Writable.prototype[method];
    });

    function 
Duplex(options) {
      if (!(
this instanceof Duplex))
        return new 
Duplex(options);

      
Readable.call(thisoptions);
      
Writable.call(thisoptions);

      if (
options && options.readable === false)
        
this.readable false;

      if (
options && options.writable === false)
        
this.writable false;

      
this.allowHalfOpen true;
      if (
options && options.allowHalfOpen === false)
        
this.allowHalfOpen false;

      
this.once('end'onend);
    }

    
// the no-half-open enforcer
    
function onend() {
      
// if we allow half-open state, or if the writable side ended,
      // then we're ok.
      
if (this.allowHalfOpen || this._writableState.ended)
        return;

      
// no more data can be written.
      // But allow more writes to happen in this tick.
      
process.nextTick(this.end.bind(this));
    }

    function forEach (
xsf) {
      for (var 
0xs.lengthli++) {
        
f(xs[i], i);
      }
    }

    
/* WEBPACK VAR INJECTION */}.call(exports__webpack_require__(30)))

/***/ },
/* 36 */
/***/ 
function(moduleexports__webpack_require__) {

    
/* WEBPACK VAR INJECTION */(function(process) {// Copyright Joyent, Inc. and other Node contributors.
    //
    // Permission is hereby granted, free of charge, to any person obtaining a
    // copy of this software and associated documentation files (the
    // "Software"), to deal in the Software without restriction, including
    // without limitation the rights to use, copy, modify, merge, publish,
    // distribute, sublicense, and/or sell copies of the Software, and to permit
    // persons to whom the Software is furnished to do so, subject to the
    // following conditions:
    //
    // The above copyright notice and this permission notice shall be included
    // in all copies or substantial portions of the Software.
    //
    // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
    // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
    // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
    // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
    // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
    // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
    // USE OR OTHER DEALINGS IN THE SOFTWARE.

    // A bit simpler than readable streams.
    // Implement an async ._write(chunk, cb), and it'll handle all
    // the drain event emission and buffering.

    
module.exports Writable;

    
/*<replacement>*/
    
var Buffer __webpack_require__(2).Buffer;
    
/*</replacement>*/

    
Writable.WritableState WritableState;


    
/*<replacement>*/
    
var util __webpack_require__(32);
    
util.inherits __webpack_require__(33);
    
/*</replacement>*/

    
var Stream __webpack_require__(25);

    
util.inherits(WritableStream);

    function 
WriteReq(chunkencodingcb) {
      
this.chunk chunk;
      
this.encoding encoding;
      
this.callback cb;
    }

    function 
WritableState(optionsstream) {
      var 
Duplex __webpack_require__(35);

      
options options || {};

      
// the point at which write() starts returning false
      // Note: 0 is a valid value, means that we always return false if
      // the entire buffer is not flushed immediately on write()
      
var hwm options.highWaterMark;
      var 
defaultHwm options.objectMode 16 16 1024;
      
this.highWaterMark = (hwm || hwm === 0) ? hwm defaultHwm;

      
// object stream flag to indicate whether or not this stream
      // contains buffers or objects.
      
this.objectMode = !!options.objectMode;

      if (
stream instanceof Duplex)
        
this.objectMode this.objectMode || !!options.writableObjectMode;

      
// cast to ints.
      
this.highWaterMark = ~~this.highWaterMark;

      
this.needDrain false;
      
// at the start of calling end()
      
this.ending false;
      
// when end() has been called, and returned
      
this.ended false;
      
// when 'finish' is emitted
      
this.finished false;

      
// should we decode strings into buffers before passing to _write?
      // this is here so that some node-core streams can optimize string
      // handling at a lower level.
      
var noDecode options.decodeStrings === false;
      
this.decodeStrings = !noDecode;

      
// Crypto is kind of old and crusty.  Historically, its default string
      // encoding is 'binary' so we have to make this configurable.
      // Everything else in the universe uses 'utf8', though.
      
this.defaultEncoding options.defaultEncoding || 'utf8';

      
// not an actual buffer we keep track of, but a measurement
      // of how much we're waiting to get pushed to some underlying
      // socket or file.
      
this.length 0;

      
// a flag to see when we're in the middle of a write.
      
this.writing false;

      
// when true all writes will be buffered until .uncork() call
      
this.corked 0;

      
// a flag to be able to tell if the onwrite cb is called immediately,
      // or on a later tick.  We set this to true at first, because any
      // actions that shouldn't happen until "later" should generally also
      // not happen before the first write call.
      
this.sync true;

      
// a flag to know if we're processing previously buffered items, which
      // may call the _write() callback in the same tick, so that we don't
      // end up in an overlapped onwrite situation.
      
this.bufferProcessing false;

      
// the callback that's passed to _write(chunk,cb)
      
this.onwrite = function(er) {
        
onwrite(streamer);
      };

      
// the callback that the user supplies to write(chunk,encoding,cb)
      
this.writecb null;

      
// the amount that is being written when _write is called.
      
this.writelen 0;

      
this.buffer = [];

      
// number of pending user-supplied write callbacks
      // this must be 0 before 'finish' can be emitted
      
this.pendingcb 0;

      
// emit prefinish if the only thing we're waiting for is _write cbs
      // This is relevant for synchronous Transform streams
      
this.prefinished false;

      
// True if the error was already emitted and should not be thrown again
      
this.errorEmitted false;
    }

    function 
Writable(options) {
      var 
Duplex __webpack_require__(35);

      
// Writable ctor is applied to Duplexes, though they're not
      // instanceof Writable, they're instanceof Readable.
      
if (!(this instanceof Writable) && !(this instanceof Duplex))
        return new 
Writable(options);

      
this._writableState = new WritableState(optionsthis);

      
// legacy.
      
this.writable true;

      
Stream.call(this);
    }

    
// Otherwise people can pipe Writable streams, which is just wrong.
    
Writable.prototype.pipe = function() {
      
this.emit('error', new Error('Cannot pipe. Not readable.'));
    };


    function 
writeAfterEnd(streamstatecb) {
      var 
er = new Error('write after end');
      
// TODO: defer error events consistently everywhere, not just the cb
      
stream.emit('error'er);
      
process.nextTick(function() {
        
cb(er);
      });
    }

    
// If we get something that is not a buffer, string, null, or undefined,
    // and we're not in objectMode, then that's an error.
    // Otherwise stream chunks are all considered to be of length=1, and the
    // watermarks determine how many objects to keep in the buffer, rather than
    // how many bytes or characters.
    
function validChunk(streamstatechunkcb) {
      var 
valid true;
      if (!
util.isBuffer(chunk) &&
          !
util.isString(chunk) &&
          !
util.isNullOrUndefined(chunk) &&
          !
state.objectMode) {
        var 
er = new TypeError('Invalid non-string/buffer chunk');
        
stream.emit('error'er);
        
process.nextTick(function() {
          
cb(er);
        });
        
valid false;
      }
      return 
valid;
    }

    
Writable.prototype.write = function(chunkencodingcb) {
      var 
state this._writableState;
      var 
ret false;

      if (
util.isFunction(encoding)) {
        
cb encoding;
        
encoding null;
      }

      if (
util.isBuffer(chunk))
        
encoding 'buffer';
      else if (!
encoding)
        
encoding state.defaultEncoding;

      if (!
util.isFunction(cb))
        
cb = function() {};

      if (
state.ended)
        
writeAfterEnd(thisstatecb);
      else if (
validChunk(thisstatechunkcb)) {
        
state.pendingcb++;
        
ret writeOrBuffer(thisstatechunkencodingcb);
      }

      return 
ret;
    };

    
Writable.prototype.cork = function() {
      var 
state this._writableState;

      
state.corked++;
    };

    
Writable.prototype.uncork = function() {
      var 
state this._writableState;

      if (
state.corked) {
        
state.corked--;

        if (!
state.writing &&
            !
state.corked &&
            !
state.finished &&
            !
state.bufferProcessing &&
            
state.buffer.length)
          
clearBuffer(thisstate);
      }
    };

    function 
decodeChunk(statechunkencoding) {
      if (!
state.objectMode &&
          
state.decodeStrings !== false &&
          
util.isString(chunk)) {
        
chunk = new Buffer(chunkencoding);
      }
      return 
chunk;
    }

    
// if we're already writing something, then just put this
    // in the queue, and wait our turn.  Otherwise, call _write
    // If we return false, then we need a drain event, so set that flag.
    
function writeOrBuffer(streamstatechunkencodingcb) {
      
chunk decodeChunk(statechunkencoding);
      if (
util.isBuffer(chunk))
        
encoding 'buffer';
      var 
len state.objectMode chunk.length;

      
state.length += len;

      var 
ret state.length state.highWaterMark;
      
// we must ensure that previous needDrain will not be reset to false.
      
if (!ret)
        
state.needDrain true;

      if (
state.writing || state.corked)
        
state.buffer.push(new WriteReq(chunkencodingcb));
      else
        
doWrite(streamstatefalselenchunkencodingcb);

      return 
ret;
    }

    function 
doWrite(streamstatewritevlenchunkencodingcb) {
      
state.writelen len;
      
state.writecb cb;
      
state.writing true;
      
state.sync true;
      if (
writev)
        
stream._writev(chunkstate.onwrite);
      else
        
stream._write(chunkencodingstate.onwrite);
      
state.sync false;
    }

    function 
onwriteError(streamstatesyncercb) {
      if (
sync)
        
process.nextTick(function() {
          
state.pendingcb--;
          
cb(er);
        });
      else {
        
state.pendingcb--;
        
cb(er);
      }

      
stream._writableState.errorEmitted true;
      
stream.emit('error'er);
    }

    function 
onwriteStateUpdate(state) {
      
state.writing false;
      
state.writecb null;
      
state.length -= state.writelen;
      
state.writelen 0;
    }

    function 
onwrite(streamer) {
      var 
state stream._writableState;
      var 
sync state.sync;
      var 
cb state.writecb;

      
onwriteStateUpdate(state);

      if (
er)
        
onwriteError(streamstatesyncercb);
      else {
        
// Check if we're actually ready to finish, but don't emit yet
        
var finished needFinish(streamstate);

        if (!
finished &&
            !
state.corked &&
            !
state.bufferProcessing &&
            
state.buffer.length) {
          
clearBuffer(streamstate);
        }

        if (
sync) {
          
process.nextTick(function() {
            
afterWrite(streamstatefinishedcb);
          });
        } else {
          
afterWrite(streamstatefinishedcb);
        }
      }
    }

    function 
afterWrite(streamstatefinishedcb) {
      if (!
finished)
        
onwriteDrain(streamstate);
      
state.pendingcb--;
      
cb();
      
finishMaybe(streamstate);
    }

    
// Must force callback to be called on nextTick, so that we don't
    // emit 'drain' before the write() consumer gets the 'false' return
    // value, and has a chance to attach a 'drain' listener.
    
function onwriteDrain(streamstate) {
      if (
state.length === && state.needDrain) {
        
state.needDrain false;
        
stream.emit('drain');
      }
    }


    
// if there's something in the buffer waiting, then process it
    
function clearBuffer(streamstate) {
      
state.bufferProcessing true;

      if (
stream._writev && state.buffer.length 1) {
        
// Fast case, write everything using _writev()
        
var cbs = [];
        for (var 
0state.buffer.lengthc++)
          
cbs.push(state.buffer[c].callback);

        
// count the one we are adding, as well.
        // TODO(isaacs) clean this up
        
state.pendingcb++;
        
doWrite(streamstatetruestate.lengthstate.buffer'', function(err) {
          for (var 
0cbs.lengthi++) {
            
state.pendingcb--;
            
cbs[i](err);
          }
        });

        
// Clear buffer
        
state.buffer = [];
      } else {
        
// Slow case, write chunks one-by-one
        
for (var 0state.buffer.lengthc++) {
          var 
entry state.buffer[c];
          var 
chunk entry.chunk;
          var 
encoding entry.encoding;
          var 
cb entry.callback;
          var 
len state.objectMode chunk.length;

          
doWrite(streamstatefalselenchunkencodingcb);

          
// if we didn't call the onwrite immediately, then
          // it means that we need to wait until it does.
          // also, that means that the chunk and cb are currently
          // being processed, so move the buffer counter past them.
          
if (state.writing) {
            
c++;
            break;
          }
        }

        if (
state.buffer.length)
          
state.buffer state.buffer.slice(c);
        else
          
state.buffer.length 0;
      }

      
state.bufferProcessing false;
    }

    
Writable.prototype._write = function(chunkencodingcb) {
      
cb(new Error('not implemented'));

    };

    
Writable.prototype._writev null;

    
Writable.prototype.end = function(chunkencodingcb) {
      var 
state this._writableState;

      if (
util.isFunction(chunk)) {
        
cb chunk;
        
chunk null;
        
encoding null;
      } else if (
util.isFunction(encoding)) {
        
cb encoding;
        
encoding null;
      }

      if (!
util.isNullOrUndefined(chunk))
        
this.write(chunkencoding);

      
// .end() fully uncorks
      
if (state.corked) {
        
state.corked 1;
        
this.uncork();
      }

      
// ignore unnecessary end() calls.
      
if (!state.ending && !state.finished)
        
endWritable(thisstatecb);
    };


    function 
needFinish(streamstate) {
      return (
state.ending &&
              
state.length === &&
              !
state.finished &&
              !
state.writing);
    }

    function 
prefinish(streamstate) {
      if (!
state.prefinished) {
        
state.prefinished true;
        
stream.emit('prefinish');
      }
    }

    function 
finishMaybe(streamstate) {
      var 
need needFinish(streamstate);
      if (
need) {
        if (
state.pendingcb === 0) {
          
prefinish(streamstate);
          
state.finished true;
          
stream.emit('finish');
        } else
          
prefinish(streamstate);
      }
      return 
need;
    }

    function 
endWritable(streamstatecb) {
      
state.ending true;
      
finishMaybe(streamstate);
      if (
cb) {
        if (
state.finished)
          
process.nextTick(cb);
        else
          
stream.once('finish'cb);
      }
      
state.ended true;
    }

    
/* WEBPACK VAR INJECTION */}.call(exports__webpack_require__(30)))

/***/ },
/* 37 */
/***/ 
function(moduleexports__webpack_require__) {

    
// Copyright Joyent, Inc. and other Node contributors.
    //
    // Permission is hereby granted, free of charge, to any person obtaining a
    // copy of this software and associated documentation files (the
    // "Software"), to deal in the Software without restriction, including
    // without limitation the rights to use, copy, modify, merge, publish,
    // distribute, sublicense, and/or sell copies of the Software, and to permit
    // persons to whom the Software is furnished to do so, subject to the
    // following conditions:
    //
    // The above copyright notice and this permission notice shall be included
    // in all copies or substantial portions of the Software.
    //
    // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
    // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
    // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
    // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
    // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
    // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
    // USE OR OTHER DEALINGS IN THE SOFTWARE.

    
var Buffer __webpack_require__(2).Buffer;

    var 
isBufferEncoding Buffer.isEncoding
      
|| function(encoding) {
           switch (
encoding && encoding.toLowerCase()) {
             case 
'hex': case 'utf8': case 'utf-8': case 'ascii': case 'binary': case 'base64': case 'ucs2': case 'ucs-2': case 'utf16le': case 'utf-16le': case 'raw': return true;
             default: return 
false;
           }
         }


    function 
assertEncoding(encoding) {
      if (
encoding && !isBufferEncoding(encoding)) {
        throw new 
Error('Unknown encoding: ' encoding);
      }
    }

    
// StringDecoder provides an interface for efficiently splitting a series of
    // buffers into a series of JS strings without breaking apart multi-byte
    // characters. CESU-8 is handled as part of the UTF-8 encoding.
    //
    // @TODO Handling all encodings inside a single object makes it very difficult
    // to reason about this code, so it should be split up in the future.
    // @TODO There should be a utf8-strict encoding that rejects invalid UTF-8 code
    // points as used by CESU-8.
    
var StringDecoder exports.StringDecoder = function(encoding) {
      
this.encoding = (encoding || 'utf8').toLowerCase().replace(/[-_]/, '');
      
assertEncoding(encoding);
      switch (
this.encoding) {
        case 
'utf8':
          
// CESU-8 represents each of Surrogate Pair by 3-bytes
          
this.surrogateSize 3;
          break;
        case 
'ucs2':
        case 
'utf16le':
          
// UTF-16 represents each of Surrogate Pair by 2-bytes
          
this.surrogateSize 2;
          
this.detectIncompleteChar utf16DetectIncompleteChar;
          break;
        case 
'base64':
          
// Base-64 stores 3 bytes in 4 chars, and pads the remainder.
          
this.surrogateSize 3;
          
this.detectIncompleteChar base64DetectIncompleteChar;
          break;
        default:
          
this.write passThroughWrite;
          return;
      }

      
// Enough space to store all bytes of a single character. UTF-8 needs 4
      // bytes, but CESU-8 may require up to 6 (3 bytes per surrogate).
      
this.charBuffer = new Buffer(6);
      
// Number of bytes received for the current incomplete multi-byte character.
      
this.charReceived 0;
      
// Number of bytes expected for the current incomplete multi-byte character.
      
this.charLength 0;
    };


    
// write decodes the given buffer and returns it as JS string that is
    // guaranteed to not contain any partial multi-byte characters. Any partial
    // character found at the end of the buffer is buffered up, and will be
    // returned when calling write again with the remaining bytes.
    //
    // Note: Converting a Buffer containing an orphan surrogate to a String
    // currently works, but converting a String to a Buffer (via `new Buffer`, or
    // Buffer#write) will replace incomplete surrogates with the unicode
    // replacement character. See https://codereview.chromium.org/121173009/ .
    
StringDecoder.prototype.write = function(buffer) {
      var 
charStr '';
      
// if our last write ended with an incomplete multibyte character
      
while (this.charLength) {
        
// determine how many remaining bytes this buffer has to offer for this char
        
var available = (buffer.length >= this.charLength this.charReceived) ?
            
this.charLength this.charReceived :
            
buffer.length;

        
// add the new bytes to the char buffer
        
buffer.copy(this.charBufferthis.charReceived0available);
        
this.charReceived += available;

        if (
this.charReceived this.charLength) {
          
// still not enough chars in this buffer? wait for more ...
          
return '';
        }

        
// remove bytes belonging to the current character from the buffer
        
buffer buffer.slice(availablebuffer.length);

        
// get the character that was split
        
charStr this.charBuffer.slice(0this.charLength).toString(this.encoding);

        
// CESU-8: lead surrogate (D800-DBFF) is also the incomplete character
        
var charCode charStr.charCodeAt(charStr.length 1);
        if (
charCode >= 0xD800 && charCode <= 0xDBFF) {
          
this.charLength += this.surrogateSize;
          
charStr '';
          continue;
        }
        
this.charReceived this.charLength 0;

        
// if there are no more bytes in this buffer, just emit our char
        
if (buffer.length === 0) {
          return 
charStr;
        }
        break;
      }

      
// determine and set charLength / charReceived
      
this.detectIncompleteChar(buffer);

      var 
end buffer.length;
      if (
this.charLength) {
        
// buffer the incomplete character bytes we got
        
buffer.copy(this.charBuffer0buffer.length this.charReceivedend);
        
end -= this.charReceived;
      }

      
charStr += buffer.toString(this.encoding0end);

      var 
end charStr.length 1;
      var 
charCode charStr.charCodeAt(end);
      
// CESU-8: lead surrogate (D800-DBFF) is also the incomplete character
      
if (charCode >= 0xD800 && charCode <= 0xDBFF) {
        var 
size this.surrogateSize;
        
this.charLength += size;
        
this.charReceived += size;
        
this.charBuffer.copy(this.charBuffersize0size);
        
buffer.copy(this.charBuffer00size);
        return 
charStr.substring(0end);
      }

      
// or just emit the charStr
      
return charStr;
    };

    
// detectIncompleteChar determines if there is an incomplete UTF-8 character at
    // the end of the given buffer. If so, it sets this.charLength to the byte
    // length that character, and sets this.charReceived to the number of bytes
    // that are available for this character.
    
StringDecoder.prototype.detectIncompleteChar = function(buffer) {
      
// determine how many bytes we have to check at the end of this buffer
      
var = (buffer.length >= 3) ? buffer.length;

      
// Figure out if one of the last i bytes of our buffer announces an
      // incomplete char.
      
for (; 0i--) {
        var 
buffer[buffer.length i];

        
// See http://en.wikipedia.org/wiki/UTF-8#Description

        // 110XXXXX
        
if (== && >> == 0x06) {
          
this.charLength 2;
          break;
        }

        
// 1110XXXX
        
if (<= && >> == 0x0E) {
          
this.charLength 3;
          break;
        }

        
// 11110XXX
        
if (<= && >> == 0x1E) {
          
this.charLength 4;
          break;
        }
      }
      
this.charReceived i;
    };

    
StringDecoder.prototype.end = function(buffer) {
      var 
res '';
      if (
buffer && buffer.length)
        
res this.write(buffer);

      if (
this.charReceived) {
        var 
cr this.charReceived;
        var 
buf this.charBuffer;
        var 
enc this.encoding;
        
res += buf.slice(0cr).toString(enc);
      }

      return 
res;
    };

    function 
passThroughWrite(buffer) {
      return 
buffer.toString(this.encoding);
    }

    function 
utf16DetectIncompleteChar(buffer) {
      
this.charReceived buffer.length 2;
      
this.charLength this.charReceived 0;
    }

    function 
base64DetectIncompleteChar(buffer) {
      
this.charReceived buffer.length 3;
      
this.charLength this.charReceived 0;
    }


/***/ },
/* 38 */
/***/ 
function(moduleexports__webpack_require__) {

    
// Copyright Joyent, Inc. and other Node contributors.
    //
    // Permission is hereby granted, free of charge, to any person obtaining a
    // copy of this software and associated documentation files (the
    // "Software"), to deal in the Software without restriction, including
    // without limitation the rights to use, copy, modify, merge, publish,
    // distribute, sublicense, and/or sell copies of the Software, and to permit
    // persons to whom the Software is furnished to do so, subject to the
    // following conditions:
    //
    // The above copyright notice and this permission notice shall be included
    // in all copies or substantial portions of the Software.
    //
    // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
    // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
    // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
    // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
    // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
    // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
    // USE OR OTHER DEALINGS IN THE SOFTWARE.


    // a transform stream is a readable/writable stream where you do
    // something with the data.  Sometimes it's called a "filter",
    // but that's not a great name for it, since that implies a thing where
    // some bits pass through, and others are simply ignored.  (That would
    // be a valid example of a transform, of course.)
    //
    // While the output is causally related to the input, it's not a
    // necessarily symmetric or synchronous transformation.  For example,
    // a zlib stream might take multiple plain-text writes(), and then
    // emit a single compressed chunk some time in the future.
    //
    // Here's how this works:
    //
    // The Transform stream has all the aspects of the readable and writable
    // stream classes.  When you write(chunk), that calls _write(chunk,cb)
    // internally, and returns false if there's a lot of pending writes
    // buffered up.  When you call read(), that calls _read(n) until
    // there's enough pending readable data buffered up.
    //
    // In a transform stream, the written data is placed in a buffer.  When
    // _read(n) is called, it transforms the queued up data, calling the
    // buffered _write cb's as it consumes chunks.  If consuming a single
    // written chunk would result in multiple output chunks, then the first
    // outputted bit calls the readcb, and subsequent chunks just go into
    // the read buffer, and will cause it to emit 'readable' if necessary.
    //
    // This way, back-pressure is actually determined by the reading side,
    // since _read has to be called to start processing a new chunk.  However,
    // a pathological inflate type of transform can cause excessive buffering
    // here.  For example, imagine a stream where every byte of input is
    // interpreted as an integer from 0-255, and then results in that many
    // bytes of output.  Writing the 4 bytes {ff,ff,ff,ff} would result in
    // 1kb of data being output.  In this case, you could write a very small
    // amount of input, and end up with a very large amount of output.  In
    // such a pathological inflating mechanism, there'd be no way to tell
    // the system to stop doing the transform.  A single 4MB write could
    // cause the system to run out of memory.
    //
    // However, even in such a pathological case, only a single written chunk
    // would be consumed, and then the rest would wait (un-transformed) until
    // the results of the previous transformed chunk were consumed.

    
module.exports Transform;

    var 
Duplex __webpack_require__(35);

    
/*<replacement>*/
    
var util __webpack_require__(32);
    
util.inherits __webpack_require__(33);
    
/*</replacement>*/

    
util.inherits(TransformDuplex);


    function 
TransformState(optionsstream) {
      
this.afterTransform = function(erdata) {
        return 
afterTransform(streamerdata);
      };

      
this.needTransform false;
      
this.transforming false;
      
this.writecb null;
      
this.writechunk null;
    }

    function 
afterTransform(streamerdata) {
      var 
ts stream._transformState;
      
ts.transforming false;

      var 
cb ts.writecb;

      if (!
cb)
        return 
stream.emit('error', new Error('no writecb in Transform class'));

      
ts.writechunk null;
      
ts.writecb null;

      if (!
util.isNullOrUndefined(data))
        
stream.push(data);

      if (
cb)
        
cb(er);

      var 
rs stream._readableState;
      
rs.reading false;
      if (
rs.needReadable || rs.length rs.highWaterMark) {
        
stream._read(rs.highWaterMark);
      }
    }


    function 
Transform(options) {
      if (!(
this instanceof Transform))
        return new 
Transform(options);

      
Duplex.call(thisoptions);

      
this._transformState = new TransformState(optionsthis);

      
// when the writable side finishes, then flush out anything remaining.
      
var stream this;

      
// start out asking for a readable event once data is transformed.
      
this._readableState.needReadable true;

      
// we have implemented the _read method, and done the other things
      // that Readable wants before the first _read call, so unset the
      // sync guard flag.
      
this._readableState.sync false;

      
this.once('prefinish', function() {
        if (
util.isFunction(this._flush))
          
this._flush(function(er) {
            
done(streamer);
          });
        else
          
done(stream);
      });
    }

    
Transform.prototype.push = function(chunkencoding) {
      
this._transformState.needTransform false;
      return 
Duplex.prototype.push.call(thischunkencoding);
    };

    
// This is the part where you do stuff!
    // override this function in implementation classes.
    // 'chunk' is an input chunk.
    //
    // Call `push(newChunk)` to pass along transformed output
    // to the readable side.  You may call 'push' zero or more times.
    //
    // Call `cb(err)` when you are done with this chunk.  If you pass
    // an error, then that'll put the hurt on the whole operation.  If you
    // never call cb(), then you'll never get another chunk.
    
Transform.prototype._transform = function(chunkencodingcb) {
      throw new 
Error('not implemented');
    };

    
Transform.prototype._write = function(chunkencodingcb) {
      var 
ts this._transformState;
      
ts.writecb cb;
      
ts.writechunk chunk;
      
ts.writeencoding encoding;
      if (!
ts.transforming) {
        var 
rs this._readableState;
        if (
ts.needTransform ||
            
rs.needReadable ||
            
rs.length rs.highWaterMark)
          
this._read(rs.highWaterMark);
      }
    };

    
// Doesn't matter what the args are here.
    // _transform does all the work.
    // That we got here means that the readable side wants more data.
    
Transform.prototype._read = function(n) {
      var 
ts this._transformState;

      if (!
util.isNull(ts.writechunk) && ts.writecb && !ts.transforming) {
        
ts.transforming true;
        
this._transform(ts.writechunkts.writeencodingts.afterTransform);
      } else {
        
// mark that we need a transform, so that any data that comes in
        // will get processed, now that we've asked for it.
        
ts.needTransform true;
      }
    };


    function 
done(streamer) {
      if (
er)
        return 
stream.emit('error'er);

      
// if there's nothing in the write buffer, then that means
      // that nothing more will ever be provided
      
var ws stream._writableState;
      var 
ts stream._transformState;

      if (
ws.length)
        throw new 
Error('calling transform done when ws.length != 0');

      if (
ts.transforming)
        throw new 
Error('calling transform done when still transforming');

      return 
stream.push(null);
    }


/***/ },
/* 39 */
/***/ 
function(moduleexports__webpack_require__) {

    
// Copyright Joyent, Inc. and other Node contributors.
    //
    // Permission is hereby granted, free of charge, to any person obtaining a
    // copy of this software and associated documentation files (the
    // "Software"), to deal in the Software without restriction, including
    // without limitation the rights to use, copy, modify, merge, publish,
    // distribute, sublicense, and/or sell copies of the Software, and to permit
    // persons to whom the Software is furnished to do so, subject to the
    // following conditions:
    //
    // The above copyright notice and this permission notice shall be included
    // in all copies or substantial portions of the Software.
    //
    // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
    // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
    // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
    // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
    // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
    // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
    // USE OR OTHER DEALINGS IN THE SOFTWARE.

    // a passthrough stream.
    // basically just the most minimal sort of Transform stream.
    // Every written chunk gets output as-is.

    
module.exports PassThrough;

    var 
Transform __webpack_require__(38);

    
/*<replacement>*/
    
var util __webpack_require__(32);
    
util.inherits __webpack_require__(33);
    
/*</replacement>*/

    
util.inherits(PassThroughTransform);

    function 
PassThrough(options) {
      if (!(
this instanceof PassThrough))
        return new 
PassThrough(options);

      
Transform.call(thisoptions);
    }

    
PassThrough.prototype._transform = function(chunkencodingcb) {
      
cb(nullchunk);
    };


/***/ },
/* 40 */
/***/ 
function(moduleexports__webpack_require__) {

    
module.exports __webpack_require__(36)


/***/ },
/* 41 */
/***/ 
function(moduleexports__webpack_require__) {

    
module.exports __webpack_require__(35)


/***/ },
/* 42 */
/***/ 
function(moduleexports__webpack_require__) {

    
module.exports __webpack_require__(38)


/***/ },
/* 43 */
/***/ 
function(moduleexports__webpack_require__) {

    
module.exports __webpack_require__(39)


/***/ },
/* 44 */
/***/ 
function(moduleexports__webpack_require__) {

    
/* WEBPACK VAR INJECTION */(function(Buffer__dirname) {/* jslint node: true */
    
'use strict';

    
// var b64 = require('./base64.js').base64DecToArr;
    
function VirtualFileSystem() {
        
this.fileSystem = {};
        
this.baseSystem = {};
    }

    
VirtualFileSystem.prototype.readFileSync = function(filename) {
        
filename fixFilename(filename);

        var 
base64content this.baseSystem[filename];
        if (
base64content) {
            return new 
Buffer(base64content'base64');
        }

        return 
this.fileSystem[filename];
    };

    
VirtualFileSystem.prototype.writeFileSync = function(filenamecontent) {
        
this.fileSystem[fixFilename(filename)] = content;
    };

    
VirtualFileSystem.prototype.bindFS = function(data) {
        
this.baseSystem data;
    };


    function 
fixFilename(filename) {
        if (
filename.indexOf(__dirname) === 0) {
            
filename filename.substring(__dirname.length);
        }

        if (
filename.indexOf('/') === 0) {
            
filename filename.substring(1);
        }

        return 
filename;
    }

    
module.exports = new VirtualFileSystem();

    
/* WEBPACK VAR INJECTION */}.call(exports__webpack_require__(2).Buffer"/"))

/***/ },
/* 45 */
/***/ 
function(moduleexports__webpack_require__) {

    
/* WEBPACK VAR INJECTION */(function(Buffer) {// Generated by CoffeeScript 1.7.1

    /*
    PDFObject - converts JavaScript types into their corrisponding PDF types.
    By Devon Govett
     */

    
(function() {
      var 
PDFObjectPDFReference;

      
PDFObject = (function() {
        var 
escapableescapableRepadswapBytes;

        function 
PDFObject() {}

        
pad = function(strlength) {
          return (Array(
length 1).join('0') + str).slice(-length);
        };

        
escapableRe = /[nrtbf()\]/g;

        
escapable = {
          
'n''\n',
          
'r''\r',
          
't''\t',
          
'b''\b',
          
'f''\f',
          
'\': '\\',
          '
(': '\(',
          '
)': '\)'
        };

        swapBytes = function(buff) {
          var a, i, l, _i, _ref;
          l = buff.length;
          if (l & 0x01) {
            throw new Error("Buffer length must be even");
          } else {
            for (i = _i = 0, _ref = l - 1; _i < _ref; i = _i += 2) {
              a = buff[i];
              buff[i] = buff[i + 1];
              buff[i + 1] = a;
            }
          }
          return buff;
        };

        PDFObject.convert = function(object) {
          var e, i, isUnicode, items, key, out, string, val, _i, _ref;
          if (typeof object === '
string') {
            return '
/' + object;
          } else if (object instanceof String) {
            string = object.replace(escapableRe, function(c) {
              return escapable[c];
            });
            isUnicode = false;
            for (i = _i = 0, _ref = string.length; _i < _ref; i = _i += 1) {
              if (string.charCodeAt(i) > 0x7f) {
                isUnicode = true;
                break;
              }
            }
            if (isUnicode) {
              string = swapBytes(new Buffer('
ufeff' + string, 'utf16le')).toString('binary');
            }
            return '
(' + string + ')';
          } else if (Buffer.isBuffer(object)) {
            return '
<' + object.toString('hex') + '>';
          } else if (object instanceof PDFReference) {
            return object.toString();
          } else if (object instanceof Date) {
            return '
(D:' + pad(object.getUTCFullYear(), 4) + pad(object.getUTCMonth(), 2) + pad(object.getUTCDate(), 2) + pad(object.getUTCHours(), 2) + pad(object.getUTCMinutes(), 2) + pad(object.getUTCSeconds(), 2) + 'Z)';
          } else if (Array.isArray(object)) {
            items = ((function() {
              var _j, _len, _results;
              _results = [];
              for (_j = 0, _len = object.length; _j < _len; _j++) {
                e = object[_j];
                _results.push(PDFObject.convert(e));
              }
              return _results;
            })()).join(' ');
            return '
[' + items + ']';
          } else if ({}.toString.call(object) === '
[object Object]') {
            out = ['
<<'];
            for (key in object) {
              val = object[key];
              out.push('
/' + key + ' ' + PDFObject.convert(val));
            }
            out.push('
>>');
            return out.join('
n');
          } else {
            return '' + object;
          }
        };

        return PDFObject;

      })();

      module.exports = PDFObject;

      PDFReference = __webpack_require__(46);

    }).call(this);

    /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(2).Buffer))

/***/ },
/* 46 */
/***/ function(module, exports, __webpack_require__) {

    /* WEBPACK VAR INJECTION */(function(Buffer) {// Generated by CoffeeScript 1.7.1

    /*
    PDFReference - represents a reference to another object in the PDF object heirarchy
    By Devon Govett
     */

    (function() {
      var PDFObject, PDFReference, zlib,
        __bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; };

      zlib = __webpack_require__(47);

      PDFReference = (function() {
        function PDFReference(document, id, data) {
          this.document = document;
          this.id = id;
          this.data = data != null ? data : {};
          this.finalize = __bind(this.finalize, this);
          this.gen = 0;
          this.deflate = null;
          this.compress = this.document.compress && !this.data.Filter;
          this.uncompressedLength = 0;
          this.chunks = [];
        }

        PDFReference.prototype.initDeflate = function() {
          this.data.Filter = '
FlateDecode';
          this.deflate = zlib.createDeflate();
          this.deflate.on('
data', (function(_this) {
            return function(chunk) {
              _this.chunks.push(chunk);
              return _this.data.Length += chunk.length;
            };
          })(this));
          return this.deflate.on('
end', this.finalize);
        };

        PDFReference.prototype.write = function(chunk) {
          var _base;
          if (!Buffer.isBuffer(chunk)) {
            chunk = new Buffer(chunk + '
n', 'binary');
          }
          this.uncompressedLength += chunk.length;
          if ((_base = this.data).Length == null) {
            _base.Length = 0;
          }
          if (this.compress) {
            if (!this.deflate) {
              this.initDeflate();
            }
            return this.deflate.write(chunk);
          } else {
            this.chunks.push(chunk);
            return this.data.Length += chunk.length;
          }
        };

        PDFReference.prototype.end = function(chunk) {
          if (typeof chunk === '
string' || Buffer.isBuffer(chunk)) {
            this.write(chunk);
          }
          if (this.deflate) {
            return this.deflate.end();
          } else {
            return this.finalize();
          }
        };

        PDFReference.prototype.finalize = function() {
          var chunk, _i, _len, _ref;
          this.offset = this.document._offset;
          this.document._write("" + this.id + " " + this.gen + " obj");
          this.document._write(PDFObject.convert(this.data));
          if (this.chunks.length) {
            this.document._write('
stream');
            _ref = this.chunks;
            for (_i = 0, _len = _ref.length; _i < _len; _i++) {
              chunk = _ref[_i];
              this.document._write(chunk);
            }
            this.chunks.length = 0;
            this.document._write('
nendstream');
          }
          this.document._write('
endobj');
          return this.document._refEnd(this);
        };

        PDFReference.prototype.toString = function() {
          return "" + this.id + " " + this.gen + " R";
        };

        return PDFReference;

      })();

      module.exports = PDFReference;

      PDFObject = __webpack_require__(45);

    }).call(this);

    /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(2).Buffer))

/***/ },
/* 47 */
/***/ function(module, exports, __webpack_require__) {

    /* WEBPACK VAR INJECTION */(function(Buffer, process) {// Copyright Joyent, Inc. and other Node contributors.
    //
    // Permission is hereby granted, free of charge, to any person obtaining a
    // copy of this software and associated documentation files (the
    // "Software"), to deal in the Software without restriction, including
    // without limitation the rights to use, copy, modify, merge, publish,
    // distribute, sublicense, and/or sell copies of the Software, and to permit
    // persons to whom the Software is furnished to do so, subject to the
    // following conditions:
    //
    // The above copyright notice and this permission notice shall be included
    // in all copies or substantial portions of the Software.
    //
    // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
    // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
    // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
    // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
    // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
    // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
    // USE OR OTHER DEALINGS IN THE SOFTWARE.

    var Transform = __webpack_require__(42);

    var binding = __webpack_require__(48);
    var util = __webpack_require__(60);
    var assert = __webpack_require__(63).ok;

    // zlib doesn'
t provide theseso kludge them in following the same
    
// const naming scheme zlib uses.
    
binding.Z_MIN_WINDOWBITS 8;
    
binding.Z_MAX_WINDOWBITS 15;
    
binding.Z_DEFAULT_WINDOWBITS 15;

    
// fewer than 64 bytes per chunk is stupid.
    // technically it could work with as few as 8, but even 64 bytes
    // is absurdly low.  Usually a MB or more is best.
    
binding.Z_MIN_CHUNK 64;
    
binding.Z_MAX_CHUNK Infinity;
    
binding.Z_DEFAULT_CHUNK = (16 1024);

    
binding.Z_MIN_MEMLEVEL 1;
    
binding.Z_MAX_MEMLEVEL 9;
    
binding.Z_DEFAULT_MEMLEVEL 8;

    
binding.Z_MIN_LEVEL = -1;
    
binding.Z_MAX_LEVEL 9;
    
binding.Z_DEFAULT_LEVEL binding.Z_DEFAULT_COMPRESSION;

    
// expose all the zlib constants
    
Object.keys(binding).forEach(function(k) {
      if (
k.match(/^Z/)) exports[k] = binding[k];
    });

    
// translation table for return codes.
    
exports.codes = {
      
Z_OKbinding.Z_OK,
      
Z_STREAM_ENDbinding.Z_STREAM_END,
      
Z_NEED_DICTbinding.Z_NEED_DICT,
      
Z_ERRNObinding.Z_ERRNO,
      
Z_STREAM_ERRORbinding.Z_STREAM_ERROR,
      
Z_DATA_ERRORbinding.Z_DATA_ERROR,
      
Z_MEM_ERRORbinding.Z_MEM_ERROR,
      
Z_BUF_ERRORbinding.Z_BUF_ERROR,
      
Z_VERSION_ERRORbinding.Z_VERSION_ERROR
    
};

    
Object.keys(exports.codes).forEach(function(k) {
      
exports.codes[exports.codes[k]] = k;
    });

    
exports.Deflate Deflate;
    
exports.Inflate Inflate;
    
exports.Gzip Gzip;
    
exports.Gunzip Gunzip;
    
exports.DeflateRaw DeflateRaw;
    
exports.InflateRaw InflateRaw;
    
exports.Unzip Unzip;

    
exports.createDeflate = function(o) {
      return new 
Deflate(o);
    };

    
exports.createInflate = function(o) {
      return new 
Inflate(o);
    };

    
exports.createDeflateRaw = function(o) {
      return new 
DeflateRaw(o);
    };

    
exports.createInflateRaw = function(o) {
      return new 
InflateRaw(o);
    };

    
exports.createGzip = function(o) {
      return new 
Gzip(o);
    };

    
exports.createGunzip = function(o) {
      return new 
Gunzip(o);
    };

    
exports.createUnzip = function(o) {
      return new 
Unzip(o);
    };


    
// Convenience methods.
    // compress/decompress a string or buffer in one step.
    
exports.deflate = function(bufferoptscallback) {
      if (
typeof opts === 'function') {
        
callback opts;
        
opts = {};
      }
      return 
zlibBuffer(new Deflate(opts), buffercallback);
    };

    
exports.deflateSync = function(bufferopts) {
      return 
zlibBufferSync(new Deflate(opts), buffer);
    };

    
exports.gzip = function(bufferoptscallback) {
      if (
typeof opts === 'function') {
        
callback opts;
        
opts = {};
      }
      return 
zlibBuffer(new Gzip(opts), buffercallback);
    };

    
exports.gzipSync = function(bufferopts) {
      return 
zlibBufferSync(new Gzip(opts), buffer);
    };

    
exports.deflateRaw = function(bufferoptscallback) {
      if (
typeof opts === 'function') {
        
callback opts;
        
opts = {};
      }
      return 
zlibBuffer(new DeflateRaw(opts), buffercallback);
    };

    
exports.deflateRawSync = function(bufferopts) {
      return 
zlibBufferSync(new DeflateRaw(opts), buffer);
    };

    
exports.unzip = function(bufferoptscallback) {
      if (
typeof opts === 'function') {
        
callback opts;
        
opts = {};
      }
      return 
zlibBuffer(new Unzip(opts), buffercallback);
    };

    
exports.unzipSync = function(bufferopts) {
      return 
zlibBufferSync(new Unzip(opts), buffer);
    };

    
exports.inflate = function(bufferoptscallback) {
      if (
typeof opts === 'function') {
        
callback opts;
        
opts = {};
      }
      return 
zlibBuffer(new Inflate(opts), buffercallback);
    };

    
exports.inflateSync = function(bufferopts) {
      return 
zlibBufferSync(new Inflate(opts), buffer);
    };

    
exports.gunzip = function(bufferoptscallback) {
      if (
typeof opts === 'function') {
        
callback opts;
        
opts = {};
      }
      return 
zlibBuffer(new Gunzip(opts), buffercallback);
    };

    
exports.gunzipSync = function(bufferopts) {
      return 
zlibBufferSync(new Gunzip(opts), buffer);
    };

    
exports.inflateRaw = function(bufferoptscallback) {
      if (
typeof opts === 'function') {
        
callback opts;
        
opts = {};
      }
      return 
zlibBuffer(new InflateRaw(opts), buffercallback);
    };

    
exports.inflateRawSync = function(bufferopts) {
      return 
zlibBufferSync(new InflateRaw(opts), buffer);
    };

    function 
zlibBuffer(enginebuffercallback) {
      var 
buffers = [];
      var 
nread 0;

      
engine.on('error'onError);
      
engine.on('end'onEnd);

      
engine.end(buffer);
      
flow();

      function 
flow() {
        var 
chunk;
        while (
null !== (chunk engine.read())) {
          
buffers.push(chunk);
          
nread += chunk.length;
        }
        
engine.once('readable'flow);
      }

      function 
onError(err) {
        
engine.removeListener('end'onEnd);
        
engine.removeListener('readable'flow);
        
callback(err);
      }

      function 
onEnd() {
        var 
buf Buffer.concat(buffersnread);
        
buffers = [];
        
callback(nullbuf);
        
engine.close();
      }
    }

    function 
zlibBufferSync(enginebuffer) {
      if (
typeof buffer === 'string')
        
buffer = new Buffer(buffer);
      if (!
Buffer.isBuffer(buffer))
        throw new 
TypeError('Not a string or buffer');

      var 
flushFlag binding.Z_FINISH;

      return 
engine._processChunk(bufferflushFlag);
    }

    
// generic zlib
    // minimal 2-byte header
    
function Deflate(opts) {
      if (!(
this instanceof Deflate)) return new Deflate(opts);
      
Zlib.call(thisoptsbinding.DEFLATE);
    }

    function 
Inflate(opts) {
      if (!(
this instanceof Inflate)) return new Inflate(opts);
      
Zlib.call(thisoptsbinding.INFLATE);
    }



    
// gzip - bigger header, same deflate compression
    
function Gzip(opts) {
      if (!(
this instanceof Gzip)) return new Gzip(opts);
      
Zlib.call(thisoptsbinding.GZIP);
    }

    function 
Gunzip(opts) {
      if (!(
this instanceof Gunzip)) return new Gunzip(opts);
      
Zlib.call(thisoptsbinding.GUNZIP);
    }



    
// raw - no header
    
function DeflateRaw(opts) {
      if (!(
this instanceof DeflateRaw)) return new DeflateRaw(opts);
      
Zlib.call(thisoptsbinding.DEFLATERAW);
    }

    function 
InflateRaw(opts) {
      if (!(
this instanceof InflateRaw)) return new InflateRaw(opts);
      
Zlib.call(thisoptsbinding.INFLATERAW);
    }


    
// auto-detect header.
    
function Unzip(opts) {
      if (!(
this instanceof Unzip)) return new Unzip(opts);
      
Zlib.call(thisoptsbinding.UNZIP);
    }


    
// the Zlib class they all inherit from
    // This thing manages the queue of requests, and returns
    // true or false if there is anything in the queue when
    // you call the .write() method.

    
function Zlib(optsmode) {
      
this._opts opts opts || {};
      
this._chunkSize opts.chunkSize || exports.Z_DEFAULT_CHUNK;

      
Transform.call(thisopts);

      if (
opts.flush) {
        if (
opts.flush !== binding.Z_NO_FLUSH &&
            
opts.flush !== binding.Z_PARTIAL_FLUSH &&
            
opts.flush !== binding.Z_SYNC_FLUSH &&
            
opts.flush !== binding.Z_FULL_FLUSH &&
            
opts.flush !== binding.Z_FINISH &&
            
opts.flush !== binding.Z_BLOCK) {
          throw new 
Error('Invalid flush flag: ' opts.flush);
        }
      }
      
this._flushFlag opts.flush || binding.Z_NO_FLUSH;

      if (
opts.chunkSize) {
        if (
opts.chunkSize exports.Z_MIN_CHUNK ||
            
opts.chunkSize exports.Z_MAX_CHUNK) {
          throw new 
Error('Invalid chunk size: ' opts.chunkSize);
        }
      }

      if (
opts.windowBits) {
        if (
opts.windowBits exports.Z_MIN_WINDOWBITS ||
            
opts.windowBits exports.Z_MAX_WINDOWBITS) {
          throw new 
Error('Invalid windowBits: ' opts.windowBits);
        }
      }

      if (
opts.level) {
        if (
opts.level exports.Z_MIN_LEVEL ||
            
opts.level exports.Z_MAX_LEVEL) {
          throw new 
Error('Invalid compression level: ' opts.level);
        }
      }

      if (
opts.memLevel) {
        if (
opts.memLevel exports.Z_MIN_MEMLEVEL ||
            
opts.memLevel exports.Z_MAX_MEMLEVEL) {
          throw new 
Error('Invalid memLevel: ' opts.memLevel);
        }
      }

      if (
opts.strategy) {
        if (
opts.strategy != exports.Z_FILTERED &&
            
opts.strategy != exports.Z_HUFFMAN_ONLY &&
            
opts.strategy != exports.Z_RLE &&
            
opts.strategy != exports.Z_FIXED &&
            
opts.strategy != exports.Z_DEFAULT_STRATEGY) {
          throw new 
Error('Invalid strategy: ' opts.strategy);
        }
      }

      if (
opts.dictionary) {
        if (!
Buffer.isBuffer(opts.dictionary)) {
          throw new 
Error('Invalid dictionary: it should be a Buffer instance');
        }
      }

      
this._binding = new binding.Zlib(mode);

      var 
self this;
      
this._hadError false;
      
this._binding.onerror = function(messageerrno) {
        
// there is no way to cleanly recover.
        // continuing only obscures problems.
        
self._binding null;
        
self._hadError true;

        var 
error = new Error(message);
        
error.errno errno;
        
error.code exports.codes[errno];
        
self.emit('error'error);
      };

      var 
level exports.Z_DEFAULT_COMPRESSION;
      if (
typeof opts.level === 'number'level opts.level;

      var 
strategy exports.Z_DEFAULT_STRATEGY;
      if (
typeof opts.strategy === 'number'strategy opts.strategy;

      
this._binding.init(opts.windowBits || exports.Z_DEFAULT_WINDOWBITS,
                         
level,
                         
opts.memLevel || exports.Z_DEFAULT_MEMLEVEL,
                         
strategy,
                         
opts.dictionary);

      
this._buffer = new Buffer(this._chunkSize);
      
this._offset 0;
      
this._closed false;
      
this._level level;
      
this._strategy strategy;

      
this.once('end'this.close);
    }

    
util.inherits(ZlibTransform);

    
Zlib.prototype.params = function(levelstrategycallback) {
      if (
level exports.Z_MIN_LEVEL ||
          
level exports.Z_MAX_LEVEL) {
        throw new 
RangeError('Invalid compression level: ' level);
      }
      if (
strategy != exports.Z_FILTERED &&
          
strategy != exports.Z_HUFFMAN_ONLY &&
          
strategy != exports.Z_RLE &&
          
strategy != exports.Z_FIXED &&
          
strategy != exports.Z_DEFAULT_STRATEGY) {
        throw new 
TypeError('Invalid strategy: ' strategy);
      }

      if (
this._level !== level || this._strategy !== strategy) {
        var 
self this;
        
this.flush(binding.Z_SYNC_FLUSH, function() {
          
self._binding.params(levelstrategy);
          if (!
self._hadError) {
            
self._level level;
            
self._strategy strategy;
            if (
callbackcallback();
          }
        });
      } else {
        
process.nextTick(callback);
      }
    };

    
Zlib.prototype.reset = function() {
      return 
this._binding.reset();
    };

    
// This is the _flush function called by the transform class,
    // internally, when the last chunk has been written.
    
Zlib.prototype._flush = function(callback) {
      
this._transform(new Buffer(0), ''callback);
    };

    
Zlib.prototype.flush = function(kindcallback) {
      var 
ws this._writableState;

      if (
typeof kind === 'function' || (kind === void 0 && !callback)) {
        
callback kind;
        
kind binding.Z_FULL_FLUSH;
      }

      if (
ws.ended) {
        if (
callback)
          
process.nextTick(callback);
      } else if (
ws.ending) {
        if (
callback)
          
this.once('end'callback);
      } else if (
ws.needDrain) {
        var 
self this;
        
this.once('drain', function() {
          
self.flush(callback);
        });
      } else {
        
this._flushFlag kind;
        
this.write(new Buffer(0), ''callback);
      }
    };

    
Zlib.prototype.close = function(callback) {
      if (
callback)
        
process.nextTick(callback);

      if (
this._closed)
        return;

      
this._closed true;

      
this._binding.close();

      var 
self this;
      
process.nextTick(function() {
        
self.emit('close');
      });
    };

    
Zlib.prototype._transform = function(chunkencodingcb) {
      var 
flushFlag;
      var 
ws this._writableState;
      var 
ending ws.ending || ws.ended;
      var 
last ending && (!chunk || ws.length === chunk.length);

      if (!
chunk === null && !Buffer.isBuffer(chunk))
        return 
cb(new Error('invalid input'));

      
// If it's the last chunk, or a final flush, we use the Z_FINISH flush flag.
      // If it's explicitly flushing at some other time, then we use
      // Z_FULL_FLUSH. Otherwise, use Z_NO_FLUSH for maximum compression
      // goodness.
      
if (last)
        
flushFlag binding.Z_FINISH;
      else {
        
flushFlag this._flushFlag;
        
// once we've flushed the last of the queue, stop flushing and
        // go back to the normal behavior.
        
if (chunk.length >= ws.length) {
          
this._flushFlag this._opts.flush || binding.Z_NO_FLUSH;
        }
      }

      var 
self this;
      
this._processChunk(chunkflushFlagcb);
    };

    
Zlib.prototype._processChunk = function(chunkflushFlagcb) {
      var 
availInBefore chunk && chunk.length;
      var 
availOutBefore this._chunkSize this._offset;
      var 
inOff 0;

      var 
self this;

      var 
async typeof cb === 'function';

      if (!
async) {
        var 
buffers = [];
        var 
nread 0;

        var 
error;
        
this.on('error', function(er) {
          
error er;
        });

        do {
          var 
res this._binding.writeSync(flushFlag,
                                            
chunk// in
                                            
inOff// in_off
                                            
availInBefore// in_len
                                            
this._buffer// out
                                            
this._offset//out_off
                                            
availOutBefore); // out_len
        
} while (!this._hadError && callback(res[0], res[1]));

        if (
this._hadError) {
          throw 
error;
        }

        var 
buf Buffer.concat(buffersnread);
        
this.close();

        return 
buf;
      }

      var 
req this._binding.write(flushFlag,
                                    
chunk// in
                                    
inOff// in_off
                                    
availInBefore// in_len
                                    
this._buffer// out
                                    
this._offset//out_off
                                    
availOutBefore); // out_len

      
req.buffer chunk;
      
req.callback callback;

      function 
callback(availInAfteravailOutAfter) {
        if (
self._hadError)
          return;

        var 
have availOutBefore availOutAfter;
        
assert(have >= 0'have should not go down');

        if (
have 0) {
          var 
out self._buffer.slice(self._offsetself._offset have);
          
self._offset += have;
          
// serve some output to the consumer.
          
if (async) {
            
self.push(out);
          } else {
            
buffers.push(out);
            
nread += out.length;
          }
        }

        
// exhausted the output buffer, or used all the input create a new one.
        
if (availOutAfter === || self._offset >= self._chunkSize) {
          
availOutBefore self._chunkSize;
          
self._offset 0;
          
self._buffer = new Buffer(self._chunkSize);
        }

        if (
availOutAfter === 0) {
          
// Not actually done.  Need to reprocess.
          // Also, update the availInBefore to the availInAfter value,
          // so that if we have to hit it a third (fourth, etc.) time,
          // it'll have the correct byte counts.
          
inOff += (availInBefore availInAfter);
          
availInBefore availInAfter;

          if (!
async)
            return 
true;

          var 
newReq self._binding.write(flushFlag,
                                           
chunk,
                                           
inOff,
                                           
availInBefore,
                                           
self._buffer,
                                           
self._offset,
                                           
self._chunkSize);
          
newReq.callback callback// this same function
          
newReq.buffer chunk;
          return;
        }

        if (!
async)
          return 
false;

        
// finished with the chunk.
        
cb();
      }
    };

    
util.inherits(DeflateZlib);
    
util.inherits(InflateZlib);
    
util.inherits(GzipZlib);
    
util.inherits(GunzipZlib);
    
util.inherits(DeflateRawZlib);
    
util.inherits(InflateRawZlib);
    
util.inherits(UnzipZlib);

    
/* WEBPACK VAR INJECTION */}.call(exports__webpack_require__(2).Buffer__webpack_require__(30)))

/***/ },
/* 48 */
/***/ 
function(moduleexports__webpack_require__) {

    
/* WEBPACK VAR INJECTION */(function(processBuffer) {var msg __webpack_require__(49);
    var 
zstream __webpack_require__(50);
    var 
zlib_deflate __webpack_require__(51);
    var 
zlib_inflate __webpack_require__(56);
    var 
constants __webpack_require__(59);

    for (var 
key in constants) {
      
exports[key] = constants[key];
    }

    
// zlib modes
    
exports.NONE 0;
    
exports.DEFLATE 1;
    
exports.INFLATE 2;
    
exports.GZIP 3;
    
exports.GUNZIP 4;
    
exports.DEFLATERAW 5;
    
exports.INFLATERAW 6;
    
exports.UNZIP 7;

    
/**
     * Emulate Node's zlib C++ layer for use by the JS layer in index.js
     */
    
function Zlib(mode) {
      if (
mode exports.DEFLATE || mode exports.UNZIP)
        throw new 
TypeError("Bad argument");
        
      
this.mode mode;
      
this.init_done false;
      
this.write_in_progress false;
      
this.pending_close false;
      
this.windowBits 0;
      
this.level 0;
      
this.memLevel 0;
      
this.strategy 0;
      
this.dictionary null;
    }

    
Zlib.prototype.init = function(windowBitslevelmemLevelstrategydictionary) {
      
this.windowBits windowBits;
      
this.level level;
      
this.memLevel memLevel;
      
this.strategy strategy;
      
// dictionary not supported.
      
      
if (this.mode === exports.GZIP || this.mode === exports.GUNZIP)
        
this.windowBits += 16;
        
      if (
this.mode === exports.UNZIP)
        
this.windowBits += 32;
        
      if (
this.mode === exports.DEFLATERAW || this.mode === exports.INFLATERAW)
        
this.windowBits = -this.windowBits;
        
      
this.strm = new zstream();
      
      switch (
this.mode) {
        case 
exports.DEFLATE:
        case 
exports.GZIP:
        case 
exports.DEFLATERAW:
          var 
status zlib_deflate.deflateInit2(
            
this.strm,
            
this.level,
            
exports.Z_DEFLATED,
            
this.windowBits,
            
this.memLevel,
            
this.strategy
          
);
          break;
        case 
exports.INFLATE:
        case 
exports.GUNZIP:
        case 
exports.INFLATERAW:
        case 
exports.UNZIP:
          var 
status  zlib_inflate.inflateInit2(
            
this.strm,
            
this.windowBits
          
);
          break;
        default:
          throw new 
Error("Unknown mode " this.mode);
      }
      
      if (
status !== exports.Z_OK) {
        
this._error(status);
        return;
      }
      
      
this.write_in_progress false;
      
this.init_done true;
    };

    
Zlib.prototype.params = function() {
      throw new 
Error("deflateParams Not supported");
    };

    
Zlib.prototype._writeCheck = function() {
      if (!
this.init_done)
        throw new 
Error("write before init");
        
      if (
this.mode === exports.NONE)
        throw new 
Error("already finalized");
        
      if (
this.write_in_progress)
        throw new 
Error("write already in progress");
        
      if (
this.pending_close)
        throw new 
Error("close is pending");
    };

    
Zlib.prototype.write = function(flushinputin_offin_lenoutout_offout_len) {    
      
this._writeCheck();
      
this.write_in_progress true;
      
      var 
self this;
      
process.nextTick(function() {
        
self.write_in_progress false;
        var 
res self._write(flushinputin_offin_lenoutout_offout_len);
        
self.callback(res[0], res[1]);
        
        if (
self.pending_close)
          
self.close();
      });
      
      return 
this;
    };

    
// set method for Node buffers, used by pako
    
function bufferSet(dataoffset) {
      for (var 
0data.lengthi++) {
        
this[offset i] = data[i];
      }
    }

    
Zlib.prototype.writeSync = function(flushinputin_offin_lenoutout_offout_len) {
      
this._writeCheck();
      return 
this._write(flushinputin_offin_lenoutout_offout_len);
    };

    
Zlib.prototype._write = function(flushinputin_offin_lenoutout_offout_len) {
      
this.write_in_progress true;
      
      if (
flush !== exports.Z_NO_FLUSH &&
          
flush !== exports.Z_PARTIAL_FLUSH &&
          
flush !== exports.Z_SYNC_FLUSH &&
          
flush !== exports.Z_FULL_FLUSH &&
          
flush !== exports.Z_FINISH &&
          
flush !== exports.Z_BLOCK) {
        throw new 
Error("Invalid flush value");
      }
      
      if (
input == null) {
        
input = new Buffer(0);
        
in_len 0;
        
in_off 0;
      }
      
      if (
out._set)
        
out.set out._set;
      else
        
out.set bufferSet;
      
      var 
strm this.strm;
      
strm.avail_in in_len;
      
strm.input input;
      
strm.next_in in_off;
      
strm.avail_out out_len;
      
strm.output out;
      
strm.next_out out_off;
      
      switch (
this.mode) {
        case 
exports.DEFLATE:
        case 
exports.GZIP:
        case 
exports.DEFLATERAW:
          var 
status zlib_deflate.deflate(strmflush);
          break;
        case 
exports.UNZIP:
        case 
exports.INFLATE:
        case 
exports.GUNZIP:
        case 
exports.INFLATERAW:
          var 
status zlib_inflate.inflate(strmflush);
          break;
        default:
          throw new 
Error("Unknown mode " this.mode);
      }
      
      if (
status !== exports.Z_STREAM_END && status !== exports.Z_OK) {
        
this._error(status);
      }
      
      
this.write_in_progress false;
      return [
strm.avail_instrm.avail_out];
    };

    
Zlib.prototype.close = function() {
      if (
this.write_in_progress) {
        
this.pending_close true;
        return;
      }
      
      
this.pending_close false;
      
      if (
this.mode === exports.DEFLATE || this.mode === exports.GZIP || this.mode === exports.DEFLATERAW) {
        
zlib_deflate.deflateEnd(this.strm);
      } else {
        
zlib_inflate.inflateEnd(this.strm);
      }
      
      
this.mode exports.NONE;
    };

    
Zlib.prototype.reset = function() {
      switch (
this.mode) {
        case 
exports.DEFLATE:
        case 
exports.DEFLATERAW:
          var 
status zlib_deflate.deflateReset(this.strm);
          break;
        case 
exports.INFLATE:
        case 
exports.INFLATERAW:
          var 
status zlib_inflate.inflateReset(this.strm);
          break;
      }
      
      if (
status !== exports.Z_OK) {
        
this._error(status);
      }
    };

    
Zlib.prototype._error = function(status) {
      
this.onerror(msg[status] + ': ' this.strm.msgstatus);
      
      
this.write_in_progress false;
      if (
this.pending_close)
        
this.close();
    };

    
exports.Zlib Zlib;

    
/* WEBPACK VAR INJECTION */}.call(exports__webpack_require__(30), __webpack_require__(2).Buffer))

/***/ },
/* 49 */
/***/ 
function(moduleexports) {

    
'use strict';

    
module.exports = {
      
'2':    'need dictionary',     /* Z_NEED_DICT       2  */
      
'1':    'stream end',          /* Z_STREAM_END      1  */
      
'0':    '',                    /* Z_OK              0  */
      
'-1':   'file error',          /* Z_ERRNO         (-1) */
      
'-2':   'stream error',        /* Z_STREAM_ERROR  (-2) */
      
'-3':   'data error',          /* Z_DATA_ERROR    (-3) */
      
'-4':   'insufficient memory'/* Z_MEM_ERROR     (-4) */
      
'-5':   'buffer error',        /* Z_BUF_ERROR     (-5) */
      
'-6':   'incompatible version' /* Z_VERSION_ERROR (-6) */
    
};


/***/ },
/* 50 */
/***/ 
function(moduleexports) {

    
'use strict';


    function 
ZStream() {
      
/* next input byte */
      
this.input null// JS specific, because we have no pointers
      
this.next_in 0;
      
/* number of bytes available at input */
      
this.avail_in 0;
      
/* total number of input bytes read so far */
      
this.total_in 0;
      
/* next output byte should be put there */
      
this.output null// JS specific, because we have no pointers
      
this.next_out 0;
      
/* remaining free space at output */
      
this.avail_out 0;
      
/* total number of bytes output so far */
      
this.total_out 0;
      
/* last error message, NULL if no error */
      
this.msg ''/*Z_NULL*/;
      
/* not visible by applications */
      
this.state null;
      
/* best guess about the data type: binary or text */
      
this.data_type 2/*Z_UNKNOWN*/;
      
/* adler32 value of the uncompressed data */
      
this.adler 0;
    }

    
module.exports ZStream;


/***/ },
/* 51 */
/***/ 
function(moduleexports__webpack_require__) {

    
'use strict';

    var 
utils   __webpack_require__(52);
    var 
trees   __webpack_require__(53);
    var 
adler32 __webpack_require__(54);
    var 
crc32   __webpack_require__(55);
    var 
msg   __webpack_require__(49);

    
/* Public constants ==========================================================*/
    /* ===========================================================================*/


    /* Allowed flush values; see deflate() and inflate() below for details */
    
var Z_NO_FLUSH      0;
    var 
Z_PARTIAL_FLUSH 1;
    
//var Z_SYNC_FLUSH    = 2;
    
var Z_FULL_FLUSH    3;
    var 
Z_FINISH        4;
    var 
Z_BLOCK         5;
    
//var Z_TREES         = 6;


    /* Return codes for the compression/decompression functions. Negative values
     * are errors, positive values are used for special but normal events.
     */
    
var Z_OK            0;
    var 
Z_STREAM_END    1;
    
//var Z_NEED_DICT     = 2;
    //var Z_ERRNO         = -1;
    
var Z_STREAM_ERROR  = -2;
    var 
Z_DATA_ERROR    = -3;
    
//var Z_MEM_ERROR     = -4;
    
var Z_BUF_ERROR     = -5;
    
//var Z_VERSION_ERROR = -6;


    /* compression levels */
    //var Z_NO_COMPRESSION      = 0;
    //var Z_BEST_SPEED          = 1;
    //var Z_BEST_COMPRESSION    = 9;
    
var Z_DEFAULT_COMPRESSION = -1;


    var 
Z_FILTERED            1;
    var 
Z_HUFFMAN_ONLY        2;
    var 
Z_RLE                 3;
    var 
Z_FIXED               4;
    var 
Z_DEFAULT_STRATEGY    0;

    
/* Possible values of the data_type field (though see inflate()) */
    //var Z_BINARY              = 0;
    //var Z_TEXT                = 1;
    //var Z_ASCII               = 1; // = Z_TEXT
    
var Z_UNKNOWN             2;


    
/* The deflate compression method */
    
var Z_DEFLATED  8;

    
/*============================================================================*/


    
var MAX_MEM_LEVEL 9;
    
/* Maximum value for memLevel in deflateInit2 */
    
var MAX_WBITS 15;
    
/* 32K LZ77 window */
    
var DEF_MEM_LEVEL 8;


    var 
LENGTH_CODES  29;
    
/* number of length codes, not counting the special END_BLOCK code */
    
var LITERALS      256;
    
/* number of literal bytes 0..255 */
    
var L_CODES       LITERALS LENGTH_CODES;
    
/* number of Literal or Length codes, including the END_BLOCK code */
    
var D_CODES       30;
    
/* number of distance codes */
    
var BL_CODES      19;
    
/* number of codes used to transfer the bit lengths */
    
var HEAP_SIZE     2*L_CODES 1;
    
/* maximum heap size */
    
var MAX_BITS  15;
    
/* All codes must not exceed MAX_BITS bits */

    
var MIN_MATCH 3;
    var 
MAX_MATCH 258;
    var 
MIN_LOOKAHEAD = (MAX_MATCH MIN_MATCH 1);

    var 
PRESET_DICT 0x20;

    var 
INIT_STATE 42;
    var 
EXTRA_STATE 69;
    var 
NAME_STATE 73;
    var 
COMMENT_STATE 91;
    var 
HCRC_STATE 103;
    var 
BUSY_STATE 113;
    var 
FINISH_STATE 666;

    var 
BS_NEED_MORE      1/* block not completed, need more input or more output */
    
var BS_BLOCK_DONE     2/* block flush performed */
    
var BS_FINISH_STARTED 3/* finish started, need only more output at next deflate */
    
var BS_FINISH_DONE    4/* finish done, accept no more input or output */

    
var OS_CODE 0x03// Unix :) . Don't detect, use this default.

    
function err(strmerrorCode) {
      
strm.msg msg[errorCode];
      return 
errorCode;
    }

    function 
rank(f) {
      return ((
f) << 1) - ((f) > 0);
    }

    function 
zero(buf) { var len buf.length; while (--len >= 0) { buf[len] = 0; } }


    
/* =========================================================================
     * Flush as much pending output as possible. All deflate() output goes
     * through this function so some applications may wish to modify it
     * to avoid allocating a large strm->output buffer and copying into it.
     * (See also read_buf()).
     */
    
function flush_pending(strm) {
      var 
strm.state;

      
//_tr_flush_bits(s);
      
var len s.pending;
      if (
len strm.avail_out) {
        
len strm.avail_out;
      }
      if (
len === 0) { return; }

      
utils.arraySet(strm.outputs.pending_bufs.pending_outlenstrm.next_out);
      
strm.next_out += len;
      
s.pending_out += len;
      
strm.total_out += len;
      
strm.avail_out -= len;
      
s.pending -= len;
      if (
s.pending === 0) {
        
s.pending_out 0;
      }
    }


    function 
flush_block_only (slast) {
      
trees._tr_flush_block(s, (s.block_start >= s.block_start : -1), s.strstart s.block_startlast);
      
s.block_start s.strstart;
      
flush_pending(s.strm);
    }


    function 
put_byte(sb) {
      
s.pending_buf[s.pending++] = b;
    }


    
/* =========================================================================
     * Put a short in the pending buffer. The 16-bit value is put in MSB order.
     * IN assertion: the stream state is correct and there is enough room in
     * pending_buf.
     */
    
function putShortMSB(sb) {
    
//  put_byte(s, (Byte)(b >> 8));
    //  put_byte(s, (Byte)(b & 0xff));
      
s.pending_buf[s.pending++] = (>>> 8) & 0xff;
      
s.pending_buf[s.pending++] = 0xff;
    }


    
/* ===========================================================================
     * Read a new buffer from the current input stream, update the adler32
     * and total number of bytes read.  All deflate() input goes through
     * this function so some applications may wish to modify it to avoid
     * allocating a large strm->input buffer and copying from it.
     * (See also flush_pending()).
     */
    
function read_buf(strmbufstartsize) {
      var 
len strm.avail_in;

      if (
len size) { len size; }
      if (
len === 0) { return 0; }

      
strm.avail_in -= len;

      
utils.arraySet(bufstrm.inputstrm.next_inlenstart);
      if (
strm.state.wrap === 1) {
        
strm.adler adler32(strm.adlerbuflenstart);
      }

      else if (
strm.state.wrap === 2) {
        
strm.adler crc32(strm.adlerbuflenstart);
      }

      
strm.next_in += len;
      
strm.total_in += len;

      return 
len;
    }


    
/* ===========================================================================
     * Set match_start to the longest match starting at the given string and
     * return its length. Matches shorter or equal to prev_length are discarded,
     * in which case the result is equal to prev_length and match_start is
     * garbage.
     * IN assertions: cur_match is the head of the hash chain for the current
     *   string (strstart) and its distance is <= MAX_DIST, and prev_length >= 1
     * OUT assertion: the match length is not greater than s->lookahead.
     */
    
function longest_match(scur_match) {
      var 
chain_length s.max_chain_length;      /* max hash chain length */
      
var scan s.strstart/* current string */
      
var match;                       /* matched string */
      
var len;                           /* length of current match */
      
var best_len s.prev_length;              /* best match length so far */
      
var nice_match s.nice_match;             /* stop if match long enough */
      
var limit = (s.strstart > (s.w_size MIN_LOOKAHEAD)) ?
          
s.strstart - (s.w_size MIN_LOOKAHEAD) : 0/*NIL*/;

      var 
_win s.window// shortcut

      
var wmask s.w_mask;
      var 
prev  s.prev;

      
/* Stop when cur_match becomes <= limit. To simplify the code,
       * we prevent matches with the string of window index 0.
       */

      
var strend s.strstart MAX_MATCH;
      var 
scan_end1  _win[scan best_len 1];
      var 
scan_end   _win[scan best_len];

      
/* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16.
       * It is easy to get rid of this optimization if necessary.
       */
      // Assert(s->hash_bits >= 8 && MAX_MATCH == 258, "Code too clever");

      /* Do not waste too much time if we already have a good match: */
      
if (s.prev_length >= s.good_match) {
        
chain_length >>= 2;
      }
      
/* Do not look for matches beyond the end of the input. This is necessary
       * to make deflate deterministic.
       */
      
if (nice_match s.lookahead) { nice_match s.lookahead; }

      
// Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");

      
do {
        
// Assert(cur_match < s->strstart, "no future");
        
match cur_match;

        
/* Skip to next match if the match length cannot increase
         * or if the match length is less than 2.  Note that the checks below
         * for insufficient lookahead only occur occasionally for performance
         * reasons.  Therefore uninitialized memory will be accessed, and
         * conditional jumps will be made that depend on those values.
         * However the length of the match is limited to the lookahead, so
         * the output of deflate is not affected by the uninitialized values.
         */

        
if (_win[match best_len]     !== scan_end  ||
            
_win[match best_len 1] !== scan_end1 ||
            
_win[match]                !== _win[scan] ||
            
_win[++match]              !== _win[scan 1]) {
          continue;
        }

        
/* The check at best_len-1 can be removed because it will be made
         * again later. (This heuristic is not always a win.)
         * It is not necessary to compare scan[2] and match[2] since they
         * are always equal when the other bytes match, given that
         * the hash keys are equal and that HASH_BITS >= 8.
         */
        
scan += 2;
        
match++;
        
// Assert(*scan == *match, "match[2]?");

        /* We check for insufficient lookahead only every 8th comparison;
         * the 256th check will be made at strstart+258.
         */
        
do {
          
/*jshint noempty:false*/
        
} while (_win[++scan] === _win[++match] && _win[++scan] === _win[++match] &&
                 
_win[++scan] === _win[++match] && _win[++scan] === _win[++match] &&
                 
_win[++scan] === _win[++match] && _win[++scan] === _win[++match] &&
                 
_win[++scan] === _win[++match] && _win[++scan] === _win[++match] &&
                 
scan strend);

        
// Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan");

        
len MAX_MATCH - (strend scan);
        
scan strend MAX_MATCH;

        if (
len best_len) {
          
s.match_start cur_match;
          
best_len len;
          if (
len >= nice_match) {
            break;
          }
          
scan_end1  _win[scan best_len 1];
          
scan_end   _win[scan best_len];
        }
      } while ((
cur_match prev[cur_match wmask]) > limit && --chain_length !== 0);

      if (
best_len <= s.lookahead) {
        return 
best_len;
      }
      return 
s.lookahead;
    }


    
/* ===========================================================================
     * Fill the window when the lookahead becomes insufficient.
     * Updates strstart and lookahead.
     *
     * IN assertion: lookahead < MIN_LOOKAHEAD
     * OUT assertions: strstart <= window_size-MIN_LOOKAHEAD
     *    At least one byte has been read, or avail_in == 0; reads are
     *    performed for at least two bytes (required for the zip translate_eol
     *    option -- not supported here).
     */
    
function fill_window(s) {
      var 
_w_size s.w_size;
      var 
pnmmorestr;

      
//Assert(s->lookahead < MIN_LOOKAHEAD, "already enough lookahead");

      
do {
        
more s.window_size s.lookahead s.strstart;

        
// JS ints have 32 bit, block below not needed
        /* Deal with !@#$% 64K limit: */
        //if (sizeof(int) <= 2) {
        //    if (more == 0 && s->strstart == 0 && s->lookahead == 0) {
        //        more = wsize;
        //
        //  } else if (more == (unsigned)(-1)) {
        //        /* Very unlikely, but possible on 16 bit machine if
        //         * strstart == 0 && lookahead == 1 (input done a byte at time)
        //         */
        //        more--;
        //    }
        //}


        /* If the window is almost full and there is insufficient lookahead,
         * move the upper half to the lower one to make room in the upper half.
         */
        
if (s.strstart >= _w_size + (_w_size MIN_LOOKAHEAD)) {

          
utils.arraySet(s.windows.window_w_size_w_size0);
          
s.match_start -= _w_size;
          
s.strstart -= _w_size;
          
/* we now have strstart >= MAX_DIST */
          
s.block_start -= _w_size;

          
/* Slide the hash table (could be avoided with 32 bit values
           at the expense of memory usage). We slide even when level == 0
           to keep the hash table consistent if we switch back to level > 0
           later. (Using level 0 permanently is not an optimal usage of
           zlib, so we don't care about this pathological case.)
           */

          
s.hash_size;
          
n;
          do {
            
s.head[--p];
            
s.head[p] = (>= _w_size _w_size 0);
          } while (--
n);

          
_w_size;
          
n;
          do {
            
s.prev[--p];
            
s.prev[p] = (>= _w_size _w_size 0);
            
/* If n is not on any hash chain, prev[n] is garbage but
             * its value will never be used.
             */
          
} while (--n);

          
more += _w_size;
        }
        if (
s.strm.avail_in === 0) {
          break;
        }

        
/* If there was no sliding:
         *    strstart <= WSIZE+MAX_DIST-1 && lookahead <= MIN_LOOKAHEAD - 1 &&
         *    more == window_size - lookahead - strstart
         * => more >= window_size - (MIN_LOOKAHEAD-1 + WSIZE + MAX_DIST-1)
         * => more >= window_size - 2*WSIZE + 2
         * In the BIG_MEM or MMAP case (not yet supported),
         *   window_size == input_size + MIN_LOOKAHEAD  &&
         *   strstart + s->lookahead <= input_size => more >= MIN_LOOKAHEAD.
         * Otherwise, window_size == 2*WSIZE so more >= 2.
         * If there was sliding, more >= WSIZE. So in all cases, more >= 2.
         */
        //Assert(more >= 2, "more < 2");
        
read_buf(s.strms.windows.strstart s.lookaheadmore);
        
s.lookahead += n;

        
/* Initialize the hash value now that we have some input: */
        
if (s.lookahead s.insert >= MIN_MATCH) {
          
str s.strstart s.insert;
          
s.ins_h s.window[str];

          
/* UPDATE_HASH(s, s->ins_h, s->window[str + 1]); */
          
s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[str 1]) & s.hash_mask;
    
//#if MIN_MATCH != 3
    //        Call update_hash() MIN_MATCH-3 more times
    //#endif
          
while (s.insert) {
            
/* UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1]); */
            
s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[str MIN_MATCH-1]) & s.hash_mask;

            
s.prev[str s.w_mask] = s.head[s.ins_h];
            
s.head[s.ins_h] = str;
            
str++;
            
s.insert--;
            if (
s.lookahead s.insert MIN_MATCH) {
              break;
            }
          }
        }
        
/* If the whole input has less than MIN_MATCH bytes, ins_h is garbage,
         * but this is not important since only literal bytes will be emitted.
         */

      
} while (s.lookahead MIN_LOOKAHEAD && s.strm.avail_in !== 0);

      
/* If the WIN_INIT bytes after the end of the current data have never been
       * written, then zero those bytes in order to avoid memory check reports of
       * the use of uninitialized (or uninitialised as Julian writes) bytes by
       * the longest match routines.  Update the high water mark for the next
       * time through here.  WIN_INIT is set to MAX_MATCH since the longest match
       * routines allow scanning to strstart + MAX_MATCH, ignoring lookahead.
       */
    //  if (s.high_water < s.window_size) {
    //    var curr = s.strstart + s.lookahead;
    //    var init = 0;
    //
    //    if (s.high_water < curr) {
    //      /* Previous high water mark below current data -- zero WIN_INIT
    //       * bytes or up to end of window, whichever is less.
    //       */
    //      init = s.window_size - curr;
    //      if (init > WIN_INIT)
    //        init = WIN_INIT;
    //      zmemzero(s->window + curr, (unsigned)init);
    //      s->high_water = curr + init;
    //    }
    //    else if (s->high_water < (ulg)curr + WIN_INIT) {
    //      /* High water mark at or above current data, but below current data
    //       * plus WIN_INIT -- zero out to current data plus WIN_INIT, or up
    //       * to end of window, whichever is less.
    //       */
    //      init = (ulg)curr + WIN_INIT - s->high_water;
    //      if (init > s->window_size - s->high_water)
    //        init = s->window_size - s->high_water;
    //      zmemzero(s->window + s->high_water, (unsigned)init);
    //      s->high_water += init;
    //    }
    //  }
    //
    //  Assert((ulg)s->strstart <= s->window_size - MIN_LOOKAHEAD,
    //    "not enough room for search");
    
}

    
/* ===========================================================================
     * Copy without compression as much as possible from the input stream, return
     * the current block state.
     * This function does not insert new strings in the dictionary since
     * uncompressible data is probably not useful. This function is used
     * only for the level=0 compression option.
     * NOTE: this function should be optimized to avoid extra copying from
     * window to pending_buf.
     */
    
function deflate_stored(sflush) {
      
/* Stored blocks are limited to 0xffff bytes, pending_buf is limited
       * to pending_buf_size, and each stored block has a 5 byte header:
       */
      
var max_block_size 0xffff;

      if (
max_block_size s.pending_buf_size 5) {
        
max_block_size s.pending_buf_size 5;
      }

      
/* Copy as much as possible from input to output: */
      
for (;;) {
        
/* Fill the window as much as possible: */
        
if (s.lookahead <= 1) {

          
//Assert(s->strstart < s->w_size+MAX_DIST(s) ||
          //  s->block_start >= (long)s->w_size, "slide too late");
    //      if (!(s.strstart < s.w_size + (s.w_size - MIN_LOOKAHEAD) ||
    //        s.block_start >= s.w_size)) {
    //        throw  new Error("slide too late");
    //      }

          
fill_window(s);
          if (
s.lookahead === && flush === Z_NO_FLUSH) {
            return 
BS_NEED_MORE;
          }

          if (
s.lookahead === 0) {
            break;
          }
          
/* flush the current block */
        
}
        
//Assert(s->block_start >= 0L, "block gone");
    //    if (s.block_start < 0) throw new Error("block gone");

        
s.strstart += s.lookahead;
        
s.lookahead 0;

        
/* Emit a stored block if pending_buf will be full: */
        
var max_start s.block_start max_block_size;

        if (
s.strstart === || s.strstart >= max_start) {
          
/* strstart == 0 is possible when wraparound on 16-bit machine */
          
s.lookahead s.strstart max_start;
          
s.strstart max_start;
          
/*** FLUSH_BLOCK(s, 0); ***/
          
flush_block_only(sfalse);
          if (
s.strm.avail_out === 0) {
            return 
BS_NEED_MORE;
          }
          
/***/


        
}
        
/* Flush if we may have to slide, otherwise block_start may become
         * negative and the data will be gone:
         */
        
if (s.strstart s.block_start >= (s.w_size MIN_LOOKAHEAD)) {
          
/*** FLUSH_BLOCK(s, 0); ***/
          
flush_block_only(sfalse);
          if (
s.strm.avail_out === 0) {
            return 
BS_NEED_MORE;
          }
          
/***/
        
}
      }

      
s.insert 0;

      if (
flush === Z_FINISH) {
        
/*** FLUSH_BLOCK(s, 1); ***/
        
flush_block_only(strue);
        if (
s.strm.avail_out === 0) {
          return 
BS_FINISH_STARTED;
        }
        
/***/
        
return BS_FINISH_DONE;
      }

      if (
s.strstart s.block_start) {
        
/*** FLUSH_BLOCK(s, 0); ***/
        
flush_block_only(sfalse);
        if (
s.strm.avail_out === 0) {
          return 
BS_NEED_MORE;
        }
        
/***/
      
}

      return 
BS_NEED_MORE;
    }

    
/* ===========================================================================
     * Compress as much as possible from the input stream, return the current
     * block state.
     * This function does not perform lazy evaluation of matches and inserts
     * new strings in the dictionary only for unmatched strings or for short
     * matches. It is used only for the fast compression options.
     */
    
function deflate_fast(sflush) {
      var 
hash_head;        /* head of the hash chain */
      
var bflush;           /* set if current block must be flushed */

      
for (;;) {
        
/* Make sure that we always have enough lookahead, except
         * at the end of the input file. We need MAX_MATCH bytes
         * for the next match, plus MIN_MATCH bytes to insert the
         * string following the next match.
         */
        
if (s.lookahead MIN_LOOKAHEAD) {
          
fill_window(s);
          if (
s.lookahead MIN_LOOKAHEAD && flush === Z_NO_FLUSH) {
            return 
BS_NEED_MORE;
          }
          if (
s.lookahead === 0) {
            break; 
/* flush the current block */
          
}
        }

        
/* Insert the string window[strstart .. strstart+2] in the
         * dictionary, and set hash_head to the head of the hash chain:
         */
        
hash_head 0/*NIL*/;
        if (
s.lookahead >= MIN_MATCH) {
          
/*** INSERT_STRING(s, s.strstart, hash_head); ***/
          
s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[s.strstart MIN_MATCH 1]) & s.hash_mask;
          
hash_head s.prev[s.strstart s.w_mask] = s.head[s.ins_h];
          
s.head[s.ins_h] = s.strstart;
          
/***/
        
}

        
/* Find the longest match, discarding those <= prev_length.
         * At this point we have always match_length < MIN_MATCH
         */
        
if (hash_head !== 0/*NIL*/ && ((s.strstart hash_head) <= (s.w_size MIN_LOOKAHEAD))) {
          
/* To simplify the code, we prevent matches with the string
           * of window index 0 (in particular we have to avoid a match
           * of the string with itself at the start of the input file).
           */
          
s.match_length longest_match(shash_head);
          
/* longest_match() sets match_start */
        
}
        if (
s.match_length >= MIN_MATCH) {
          
// check_match(s, s.strstart, s.match_start, s.match_length); // for debug only

          /*** _tr_tally_dist(s, s.strstart - s.match_start,
                         s.match_length - MIN_MATCH, bflush); ***/
          
bflush trees._tr_tally(ss.strstart s.match_starts.match_length MIN_MATCH);

          
s.lookahead -= s.match_length;

          
/* Insert new strings in the hash table only if the match length
           * is not too large. This saves time but degrades compression.
           */
          
if (s.match_length <= s.max_lazy_match/*max_insert_length*/ && s.lookahead >= MIN_MATCH) {
            
s.match_length--; /* string at strstart already in table */
            
do {
              
s.strstart++;
              
/*** INSERT_STRING(s, s.strstart, hash_head); ***/
              
s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[s.strstart MIN_MATCH 1]) & s.hash_mask;
              
hash_head s.prev[s.strstart s.w_mask] = s.head[s.ins_h];
              
s.head[s.ins_h] = s.strstart;
              
/***/
              /* strstart never exceeds WSIZE-MAX_MATCH, so there are
               * always MIN_MATCH bytes ahead.
               */
            
} while (--s.match_length !== 0);
            
s.strstart++;
          } else
          {
            
s.strstart += s.match_length;
            
s.match_length 0;
            
s.ins_h s.window[s.strstart];
            
/* UPDATE_HASH(s, s.ins_h, s.window[s.strstart+1]); */
            
s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[s.strstart 1]) & s.hash_mask;

    
//#if MIN_MATCH != 3
    //                Call UPDATE_HASH() MIN_MATCH-3 more times
    //#endif
            /* If lookahead < MIN_MATCH, ins_h is garbage, but it does not
             * matter since it will be recomputed at next deflate call.
             */
          
}
        } else {
          
/* No match, output a literal byte */
          //Tracevv((stderr,"%c", s.window[s.strstart]));
          /*** _tr_tally_lit(s, s.window[s.strstart], bflush); ***/
          
bflush trees._tr_tally(s0s.window[s.strstart]);

          
s.lookahead--;
          
s.strstart++;
        }
        if (
bflush) {
          
/*** FLUSH_BLOCK(s, 0); ***/
          
flush_block_only(sfalse);
          if (
s.strm.avail_out === 0) {
            return 
BS_NEED_MORE;
          }
          
/***/
        
}
      }
      
s.insert = ((s.strstart < (MIN_MATCH-1)) ? s.strstart MIN_MATCH-1);
      if (
flush === Z_FINISH) {
        
/*** FLUSH_BLOCK(s, 1); ***/
        
flush_block_only(strue);
        if (
s.strm.avail_out === 0) {
          return 
BS_FINISH_STARTED;
        }
        
/***/
        
return BS_FINISH_DONE;
      }
      if (
s.last_lit) {
        
/*** FLUSH_BLOCK(s, 0); ***/
        
flush_block_only(sfalse);
        if (
s.strm.avail_out === 0) {
          return 
BS_NEED_MORE;
        }
        
/***/
      
}
      return 
BS_BLOCK_DONE;
    }

    
/* ===========================================================================
     * Same as above, but achieves better compression. We use a lazy
     * evaluation for matches: a match is finally adopted only if there is
     * no better match at the next window position.
     */
    
function deflate_slow(sflush) {
      var 
hash_head;          /* head of hash chain */
      
var bflush;              /* set if current block must be flushed */

      
var max_insert;

      
/* Process the input block. */
      
for (;;) {
        
/* Make sure that we always have enough lookahead, except
         * at the end of the input file. We need MAX_MATCH bytes
         * for the next match, plus MIN_MATCH bytes to insert the
         * string following the next match.
         */
        
if (s.lookahead MIN_LOOKAHEAD) {
          
fill_window(s);
          if (
s.lookahead MIN_LOOKAHEAD && flush === Z_NO_FLUSH) {
            return 
BS_NEED_MORE;
          }
          if (
s.lookahead === 0) { break; } /* flush the current block */
        
}

        
/* Insert the string window[strstart .. strstart+2] in the
         * dictionary, and set hash_head to the head of the hash chain:
         */
        
hash_head 0/*NIL*/;
        if (
s.lookahead >= MIN_MATCH) {
          
/*** INSERT_STRING(s, s.strstart, hash_head); ***/
          
s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[s.strstart MIN_MATCH 1]) & s.hash_mask;
          
hash_head s.prev[s.strstart s.w_mask] = s.head[s.ins_h];
          
s.head[s.ins_h] = s.strstart;
          
/***/
        
}

        
/* Find the longest match, discarding those <= prev_length.
         */
        
s.prev_length s.match_length;
        
s.prev_match s.match_start;
        
s.match_length MIN_MATCH-1;

        if (
hash_head !== 0/*NIL*/ && s.prev_length s.max_lazy_match &&
            
s.strstart hash_head <= (s.w_size-MIN_LOOKAHEAD)/*MAX_DIST(s)*/) {
          
/* To simplify the code, we prevent matches with the string
           * of window index 0 (in particular we have to avoid a match
           * of the string with itself at the start of the input file).
           */
          
s.match_length longest_match(shash_head);
          
/* longest_match() sets match_start */

          
if (s.match_length <= &&
             (
s.strategy === Z_FILTERED || (s.match_length === MIN_MATCH && s.strstart s.match_start 4096/*TOO_FAR*/))) {

            
/* If prev_match is also MIN_MATCH, match_start is garbage
             * but we will ignore the current match anyway.
             */
            
s.match_length MIN_MATCH-1;
          }
        }
        
/* If there was a match at the previous step and the current
         * match is not better, output the previous match:
         */
        
if (s.prev_length >= MIN_MATCH && s.match_length <= s.prev_length) {
          
max_insert s.strstart s.lookahead MIN_MATCH;
          
/* Do not insert strings in hash table beyond this. */

          //check_match(s, s.strstart-1, s.prev_match, s.prev_length);

          /***_tr_tally_dist(s, s.strstart - 1 - s.prev_match,
                         s.prev_length - MIN_MATCH, bflush);***/
          
bflush trees._tr_tally(ss.strstart 1s.prev_matchs.prev_length MIN_MATCH);
          
/* Insert in hash table all strings up to the end of the match.
           * strstart-1 and strstart are already inserted. If there is not
           * enough lookahead, the last two strings are not inserted in
           * the hash table.
           */
          
s.lookahead -= s.prev_length-1;
          
s.prev_length -= 2;
          do {
            if (++
s.strstart <= max_insert) {
              
/*** INSERT_STRING(s, s.strstart, hash_head); ***/
              
s.ins_h = ((s.ins_h << s.hash_shift) ^ s.window[s.strstart MIN_MATCH 1]) & s.hash_mask;
              
hash_head s.prev[s.strstart s.w_mask] = s.head[s.ins_h];
              
s.head[s.ins_h] = s.strstart;
              
/***/
            
}
          } while (--
s.prev_length !== 0);
          
s.match_available 0;
          
s.match_length MIN_MATCH-1;
          
s.strstart++;

          if (
bflush) {
            
/*** FLUSH_BLOCK(s, 0); ***/
            
flush_block_only(sfalse);
            if (
s.strm.avail_out === 0) {
              return 
BS_NEED_MORE;
            }
            
/***/
          
}

        } else if (
s.match_available) {
          
/* If there was no match at the previous position, output a
           * single literal. If there was a match but the current match
           * is longer, truncate the previous match to a single literal.
           */
          //Tracevv((stderr,"%c", s->window[s->strstart-1]));
          /*** _tr_tally_lit(s, s.window[s.strstart-1], bflush); ***/
          
bflush trees._tr_tally(s0s.window[s.strstart-1]);

          if (
bflush) {
            
/*** FLUSH_BLOCK_ONLY(s, 0) ***/
            
flush_block_only(sfalse);
            
/***/
          
}
          
s.strstart++;
          
s.lookahead--;
          if (
s.strm.avail_out === 0) {
            return 
BS_NEED_MORE;
          }
        } else {
          
/* There is no previous match to compare with, wait for
           * the next step to decide.
           */
          
s.match_available 1;
          
s.strstart++;
          
s.lookahead--;
        }
      }
      
//Assert (flush != Z_NO_FLUSH, "no flush?");
      
if (s.match_available) {
        
//Tracevv((stderr,"%c", s->window[s->strstart-1]));
        /*** _tr_tally_lit(s, s.window[s.strstart-1], bflush); ***/
        
bflush trees._tr_tally(s0s.window[s.strstart-1]);

        
s.match_available 0;
      }
      
s.insert s.strstart MIN_MATCH-s.strstart MIN_MATCH-1;
      if (
flush === Z_FINISH) {
        
/*** FLUSH_BLOCK(s, 1); ***/
        
flush_block_only(strue);
        if (
s.strm.avail_out === 0) {
          return 
BS_FINISH_STARTED;
        }
        
/***/
        
return BS_FINISH_DONE;
      }
      if (
s.last_lit) {
        
/*** FLUSH_BLOCK(s, 0); ***/
        
flush_block_only(sfalse);
        if (
s.strm.avail_out === 0) {
          return 
BS_NEED_MORE;
        }
        
/***/
      
}

      return 
BS_BLOCK_DONE;
    }


    
/* ===========================================================================
     * For Z_RLE, simply look for runs of bytes, generate matches only of distance
     * one.  Do not maintain a hash table.  (It will be regenerated if this run of
     * deflate switches away from Z_RLE.)
     */
    
function deflate_rle(sflush) {
      var 
bflush;            /* set if current block must be flushed */
      
var prev;              /* byte at distance one to match */
      
var scanstrend;      /* scan goes up to strend for length of run */

      
var _win s.window;

      for (;;) {
        
/* Make sure that we always have enough lookahead, except
         * at the end of the input file. We need MAX_MATCH bytes
         * for the longest run, plus one for the unrolled loop.
         */
        
if (s.lookahead <= MAX_MATCH) {
          
fill_window(s);
          if (
s.lookahead <= MAX_MATCH && flush === Z_NO_FLUSH) {
            return 
BS_NEED_MORE;
          }
          if (
s.lookahead === 0) { break; } /* flush the current block */
        
}

        
/* See how many times the previous byte repeats */
        
s.match_length 0;
        if (
s.lookahead >= MIN_MATCH && s.strstart 0) {
          
scan s.strstart 1;
          
prev _win[scan];
          if (
prev === _win[++scan] && prev === _win[++scan] && prev === _win[++scan]) {
            
strend s.strstart MAX_MATCH;
            do {
              
/*jshint noempty:false*/
            
} while (prev === _win[++scan] && prev === _win[++scan] &&
                     
prev === _win[++scan] && prev === _win[++scan] &&
                     
prev === _win[++scan] && prev === _win[++scan] &&
                     
prev === _win[++scan] && prev === _win[++scan] &&
                     
scan strend);
            
s.match_length MAX_MATCH - (strend scan);
            if (
s.match_length s.lookahead) {
              
s.match_length s.lookahead;
            }
          }
          
//Assert(scan <= s->window+(uInt)(s->window_size-1), "wild scan");
        
}

        
/* Emit match if have run of MIN_MATCH or longer, else emit literal */
        
if (s.match_length >= MIN_MATCH) {
          
//check_match(s, s.strstart, s.strstart - 1, s.match_length);

          /*** _tr_tally_dist(s, 1, s.match_length - MIN_MATCH, bflush); ***/
          
bflush trees._tr_tally(s1s.match_length MIN_MATCH);

          
s.lookahead -= s.match_length;
          
s.strstart += s.match_length;
          
s.match_length 0;
        } else {
          
/* No match, output a literal byte */
          //Tracevv((stderr,"%c", s->window[s->strstart]));
          /*** _tr_tally_lit(s, s.window[s.strstart], bflush); ***/
          
bflush trees._tr_tally(s0s.window[s.strstart]);

          
s.lookahead--;
          
s.strstart++;
        }
        if (
bflush) {
          
/*** FLUSH_BLOCK(s, 0); ***/
          
flush_block_only(sfalse);
          if (
s.strm.avail_out === 0) {
            return 
BS_NEED_MORE;
          }
          
/***/
        
}
      }
      
s.insert 0;
      if (
flush === Z_FINISH) {
        
/*** FLUSH_BLOCK(s, 1); ***/
        
flush_block_only(strue);
        if (
s.strm.avail_out === 0) {
          return 
BS_FINISH_STARTED;
        }
        
/***/
        
return BS_FINISH_DONE;
      }
      if (
s.last_lit) {
        
/*** FLUSH_BLOCK(s, 0); ***/
        
flush_block_only(sfalse);
        if (
s.strm.avail_out === 0) {
          return 
BS_NEED_MORE;
        }
        
/***/
      
}
      return 
BS_BLOCK_DONE;
    }

    
/* ===========================================================================
     * For Z_HUFFMAN_ONLY, do not look for matches.  Do not maintain a hash table.
     * (It will be regenerated if this run of deflate switches away from Huffman.)
     */
    
function deflate_huff(sflush) {
      var 
bflush;             /* set if current block must be flushed */

      
for (;;) {
        
/* Make sure that we have a literal to write. */
        
if (s.lookahead === 0) {
          
fill_window(s);
          if (
s.lookahead === 0) {
            if (
flush === Z_NO_FLUSH) {
              return 
BS_NEED_MORE;
            }
            break;      
/* flush the current block */
          
}
        }

        
/* Output a literal byte */
        
s.match_length 0;
        
//Tracevv((stderr,"%c", s->window[s->strstart]));
        /*** _tr_tally_lit(s, s.window[s.strstart], bflush); ***/
        
bflush trees._tr_tally(s0s.window[s.strstart]);
        
s.lookahead--;
        
s.strstart++;
        if (
bflush) {
          
/*** FLUSH_BLOCK(s, 0); ***/
          
flush_block_only(sfalse);
          if (
s.strm.avail_out === 0) {
            return 
BS_NEED_MORE;
          }
          
/***/
        
}
      }
      
s.insert 0;
      if (
flush === Z_FINISH) {
        
/*** FLUSH_BLOCK(s, 1); ***/
        
flush_block_only(strue);
        if (
s.strm.avail_out === 0) {
          return 
BS_FINISH_STARTED;
        }
        
/***/
        
return BS_FINISH_DONE;
      }
      if (
s.last_lit) {
        
/*** FLUSH_BLOCK(s, 0); ***/
        
flush_block_only(sfalse);
        if (
s.strm.avail_out === 0) {
          return 
BS_NEED_MORE;
        }
        
/***/
      
}
      return 
BS_BLOCK_DONE;
    }

    
/* Values for max_lazy_match, good_match and max_chain_length, depending on
     * the desired pack level (0..9). The values given below have been tuned to
     * exclude worst case performance for pathological files. Better values may be
     * found for specific files.
     */
    
var Config = function (good_lengthmax_lazynice_lengthmax_chainfunc) {
      
this.good_length good_length;
      
this.max_lazy max_lazy;
      
this.nice_length nice_length;
      
this.max_chain max_chain;
      
this.func func;
    };

    var 
configuration_table;

    
configuration_table = [
      
/*      good lazy nice chain */
      
new Config(0000deflate_stored),          /* 0 store only */
      
new Config(4484deflate_fast),            /* 1 max speed, no lazy matches */
      
new Config(45168deflate_fast),           /* 2 */
      
new Config(463232deflate_fast),          /* 3 */

      
new Config(441616deflate_slow),          /* 4 lazy matches */
      
new Config(8163232deflate_slow),         /* 5 */
      
new Config(816128128deflate_slow),       /* 6 */
      
new Config(832128256deflate_slow),       /* 7 */
      
new Config(321282581024deflate_slow),    /* 8 */
      
new Config(322582584096deflate_slow)     /* 9 max compression */
    
];


    
/* ===========================================================================
     * Initialize the "longest match" routines for a new zlib stream
     */
    
function lm_init(s) {
      
s.window_size s.w_size;

      
/*** CLEAR_HASH(s); ***/
      
zero(s.head); // Fill with NIL (= 0);

      /* Set the default configuration parameters:
       */
      
s.max_lazy_match configuration_table[s.level].max_lazy;
      
s.good_match configuration_table[s.level].good_length;
      
s.nice_match configuration_table[s.level].nice_length;
      
s.max_chain_length configuration_table[s.level].max_chain;

      
s.strstart 0;
      
s.block_start 0;
      
s.lookahead 0;
      
s.insert 0;
      
s.match_length s.prev_length MIN_MATCH 1;
      
s.match_available 0;
      
s.ins_h 0;
    }


    function 
DeflateState() {
      
this.strm null;            /* pointer back to this zlib stream */
      
this.status 0;            /* as the name implies */
      
this.pending_buf null;      /* output still pending */
      
this.pending_buf_size 0;  /* size of pending_buf */
      
this.pending_out 0;       /* next pending byte to output to the stream */
      
this.pending 0;           /* nb of bytes in the pending buffer */
      
this.wrap 0;              /* bit 0 true for zlib, bit 1 true for gzip */
      
this.gzhead null;         /* gzip header information to write */
      
this.gzindex 0;           /* where in extra, name, or comment */
      
this.method Z_DEFLATED/* can only be DEFLATED */
      
this.last_flush = -1;   /* value of flush param for previous deflate call */

      
this.w_size 0;  /* LZ77 window size (32K by default) */
      
this.w_bits 0;  /* log2(w_size)  (8..16) */
      
this.w_mask 0;  /* w_size - 1 */

      
this.window null;
      
/* Sliding window. Input bytes are read into the second half of the window,
       * and move to the first half later to keep a dictionary of at least wSize
       * bytes. With this organization, matches are limited to a distance of
       * wSize-MAX_MATCH bytes, but this ensures that IO is always
       * performed with a length multiple of the block size.
       */

      
this.window_size 0;
      
/* Actual size of window: 2*wSize, except when the user input buffer
       * is directly used as sliding window.
       */

      
this.prev null;
      
/* Link to older string with same hash index. To limit the size of this
       * array to 64K, this link is maintained only for the last 32K strings.
       * An index in this array is thus a window index modulo 32K.
       */

      
this.head null;   /* Heads of the hash chains or NIL. */

      
this.ins_h 0;       /* hash index of string to be inserted */
      
this.hash_size 0;   /* number of elements in hash table */
      
this.hash_bits 0;   /* log2(hash_size) */
      
this.hash_mask 0;   /* hash_size-1 */

      
this.hash_shift 0;
      
/* Number of bits by which ins_h must be shifted at each input
       * step. It must be such that after MIN_MATCH steps, the oldest
       * byte no longer takes part in the hash key, that is:
       *   hash_shift * MIN_MATCH >= hash_bits
       */

      
this.block_start 0;
      
/* Window position at the beginning of the current output block. Gets
       * negative when the window is moved backwards.
       */

      
this.match_length 0;      /* length of best match */
      
this.prev_match 0;        /* previous match */
      
this.match_available 0;   /* set if previous match exists */
      
this.strstart 0;          /* start of string to insert */
      
this.match_start 0;       /* start of matching string */
      
this.lookahead 0;         /* number of valid bytes ahead in window */

      
this.prev_length 0;
      
/* Length of the best match at previous step. Matches not greater than this
       * are discarded. This is used in the lazy match evaluation.
       */

      
this.max_chain_length 0;
      
/* To speed up deflation, hash chains are never searched beyond this
       * length.  A higher limit improves compression ratio but degrades the
       * speed.
       */

      
this.max_lazy_match 0;
      
/* Attempt to find a better match only when the current match is strictly
       * smaller than this value. This mechanism is used only for compression
       * levels >= 4.
       */
      // That's alias to max_lazy_match, don't use directly
      //this.max_insert_length = 0;
      /* Insert new strings in the hash table only if the match length is not
       * greater than this length. This saves time but degrades compression.
       * max_insert_length is used only for compression levels <= 3.
       */

      
this.level 0;     /* compression level (1..9) */
      
this.strategy 0;  /* favor or force Huffman coding*/

      
this.good_match 0;
      
/* Use a faster search when the previous match is longer than this */

      
this.nice_match 0/* Stop searching when current match exceeds this */

                  /* used by trees.c: */

      /* Didn't use ct_data typedef below to suppress compiler warning */

      // struct ct_data_s dyn_ltree[HEAP_SIZE];   /* literal and length tree */
      // struct ct_data_s dyn_dtree[2*D_CODES+1]; /* distance tree */
      // struct ct_data_s bl_tree[2*BL_CODES+1];  /* Huffman tree for bit lengths */

      // Use flat array of DOUBLE size, with interleaved fata,
      // because JS does not support effective
      
this.dyn_ltree  = new utils.Buf16(HEAP_SIZE 2);
      
this.dyn_dtree  = new utils.Buf16((2*D_CODES+1) * 2);
      
this.bl_tree    = new utils.Buf16((2*BL_CODES+1) * 2);
      
zero(this.dyn_ltree);
      
zero(this.dyn_dtree);
      
zero(this.bl_tree);

      
this.l_desc   null;         /* desc. for literal tree */
      
this.d_desc   null;         /* desc. for distance tree */
      
this.bl_desc  null;         /* desc. for bit length tree */

      //ush bl_count[MAX_BITS+1];
      
this.bl_count = new utils.Buf16(MAX_BITS+1);
      
/* number of codes at each bit length for an optimal tree */

      //int heap[2*L_CODES+1];      /* heap used to build the Huffman trees */
      
this.heap = new utils.Buf16(2*L_CODES+1);  /* heap used to build the Huffman trees */
      
zero(this.heap);

      
this.heap_len 0;               /* number of elements in the heap */
      
this.heap_max 0;               /* element of largest frequency */
      /* The sons of heap[n] are heap[2*n] and heap[2*n+1]. heap[0] is not used.
       * The same heap array is used to build all trees.
       */

      
this.depth = new utils.Buf16(2*L_CODES+1); //uch depth[2*L_CODES+1];
      
zero(this.depth);
      
/* Depth of each subtree used as tie breaker for trees of equal frequency
       */

      
this.l_buf 0;          /* buffer index for literals or lengths */

      
this.lit_bufsize 0;
      
/* Size of match buffer for literals/lengths.  There are 4 reasons for
       * limiting lit_bufsize to 64K:
       *   - frequencies can be kept in 16 bit counters
       *   - if compression is not successful for the first block, all input
       *     data is still in the window so we can still emit a stored block even
       *     when input comes from standard input.  (This can also be done for
       *     all blocks if lit_bufsize is not greater than 32K.)
       *   - if compression is not successful for a file smaller than 64K, we can
       *     even emit a stored file instead of a stored block (saving 5 bytes).
       *     This is applicable only for zip (not gzip or zlib).
       *   - creating new Huffman trees less frequently may not provide fast
       *     adaptation to changes in the input data statistics. (Take for
       *     example a binary file with poorly compressible code followed by
       *     a highly compressible string table.) Smaller buffer sizes give
       *     fast adaptation but have of course the overhead of transmitting
       *     trees more frequently.
       *   - I can't count above 4
       */

      
this.last_lit 0;      /* running index in l_buf */

      
this.d_buf 0;
      
/* Buffer index for distances. To simplify the code, d_buf and l_buf have
       * the same number of elements. To use different lengths, an extra flag
       * array would be necessary.
       */

      
this.opt_len 0;       /* bit length of current block with optimal trees */
      
this.static_len 0;    /* bit length of current block with static trees */
      
this.matches 0;       /* number of string matches in current block */
      
this.insert 0;        /* bytes at end of window left to insert */


      
this.bi_buf 0;
      
/* Output buffer. bits are inserted starting at the bottom (least
       * significant bits).
       */
      
this.bi_valid 0;
      
/* Number of valid bits in bi_buf.  All bits above the last valid bit
       * are always zero.
       */

      // Used for window memory init. We safely ignore it for JS. That makes
      // sense only for pointers and memory check tools.
      //this.high_water = 0;
      /* High water mark offset in window for initialized bytes -- bytes above
       * this are set to zero in order to avoid memory check warnings when
       * longest match routines access bytes past the input.  This is then
       * updated to the new high water mark.
       */
    
}


    function 
deflateResetKeep(strm) {
      var 
s;

      if (!
strm || !strm.state) {
        return 
err(strmZ_STREAM_ERROR);
      }

      
strm.total_in strm.total_out 0;
      
strm.data_type Z_UNKNOWN;

      
strm.state;
      
s.pending 0;
      
s.pending_out 0;

      if (
s.wrap 0) {
        
s.wrap = -s.wrap;
        
/* was made negative by deflate(..., Z_FINISH); */
      
}
      
s.status = (s.wrap INIT_STATE BUSY_STATE);
      
strm.adler = (s.wrap === 2) ?
        
0  // crc32(0, Z_NULL, 0)
      
:
        
1// adler32(0, Z_NULL, 0)
      
s.last_flush Z_NO_FLUSH;
      
trees._tr_init(s);
      return 
Z_OK;
    }


    function 
deflateReset(strm) {
      var 
ret deflateResetKeep(strm);
      if (
ret === Z_OK) {
        
lm_init(strm.state);
      }
      return 
ret;
    }


    function 
deflateSetHeader(strmhead) {
      if (!
strm || !strm.state) { return Z_STREAM_ERROR; }
      if (
strm.state.wrap !== 2) { return Z_STREAM_ERROR; }
      
strm.state.gzhead head;
      return 
Z_OK;
    }


    function 
deflateInit2(strmlevelmethodwindowBitsmemLevelstrategy) {
      if (!
strm) { // === Z_NULL
        
return Z_STREAM_ERROR;
      }
      var 
wrap 1;

      if (
level === Z_DEFAULT_COMPRESSION) {
        
level 6;
      }

      if (
windowBits 0) { /* suppress zlib wrapper */
        
wrap 0;
        
windowBits = -windowBits;
      }

      else if (
windowBits 15) {
        
wrap 2;           /* write gzip wrapper instead */
        
windowBits -= 16;
      }


      if (
memLevel || memLevel MAX_MEM_LEVEL || method !== Z_DEFLATED ||
        
windowBits || windowBits 15 || level || level ||
        
strategy || strategy Z_FIXED) {
        return 
err(strmZ_STREAM_ERROR);
      }


      if (
windowBits === 8) {
        
windowBits 9;
      }
      
/* until 256-byte window bug fixed */

      
var = new DeflateState();

      
strm.state s;
      
s.strm strm;

      
s.wrap wrap;
      
s.gzhead null;
      
s.w_bits windowBits;
      
s.w_size << s.w_bits;
      
s.w_mask s.w_size 1;

      
s.hash_bits memLevel 7;
      
s.hash_size << s.hash_bits;
      
s.hash_mask s.hash_size 1;
      
s.hash_shift = ~~((s.hash_bits MIN_MATCH 1) / MIN_MATCH);

      
s.window = new utils.Buf8(s.w_size 2);
      
s.head = new utils.Buf16(s.hash_size);
      
s.prev = new utils.Buf16(s.w_size);

      
// Don't need mem init magic for JS.
      //s.high_water = 0;  /* nothing written to s->window yet */

      
s.lit_bufsize << (memLevel 6); /* 16K elements by default */

      
s.pending_buf_size s.lit_bufsize 4;
      
s.pending_buf = new utils.Buf8(s.pending_buf_size);

      
s.d_buf s.lit_bufsize >> 1;
      
s.l_buf = (2) * s.lit_bufsize;

      
s.level level;
      
s.strategy strategy;
      
s.method method;

      return 
deflateReset(strm);
    }

    function 
deflateInit(strmlevel) {
      return 
deflateInit2(strmlevelZ_DEFLATEDMAX_WBITSDEF_MEM_LEVELZ_DEFAULT_STRATEGY);
    }


    function 
deflate(strmflush) {
      var 
old_flushs;
      var 
begval// for gzip header write only

      
if (!strm || !strm.state ||
        
flush Z_BLOCK || flush 0) {
        return 
strm err(strmZ_STREAM_ERROR) : Z_STREAM_ERROR;
      }

      
strm.state;

      if (!
strm.output ||
          (!
strm.input && strm.avail_in !== 0) ||
          (
s.status === FINISH_STATE && flush !== Z_FINISH)) {
        return 
err(strm, (strm.avail_out === 0) ? Z_BUF_ERROR Z_STREAM_ERROR);
      }

      
s.strm strm/* just in case */
      
old_flush s.last_flush;
      
s.last_flush flush;

      
/* Write the header */
      
if (s.status === INIT_STATE) {

        if (
s.wrap === 2) { // GZIP header
          
strm.adler 0;  //crc32(0L, Z_NULL, 0);
          
put_byte(s31);
          
put_byte(s139);
          
put_byte(s8);
          if (!
s.gzhead) { // s->gzhead == Z_NULL
            
put_byte(s0);
            
put_byte(s0);
            
put_byte(s0);
            
put_byte(s0);
            
put_byte(s0);
            
put_byte(ss.level === :
                        (
s.strategy >= Z_HUFFMAN_ONLY || s.level ?
                         
0));
            
put_byte(sOS_CODE);
            
s.status BUSY_STATE;
          }
          else {
            
put_byte(s, (s.gzhead.text 0) +
                        (
s.gzhead.hcrc 0) +
                        (!
s.gzhead.extra 4) +
                        (!
s.gzhead.name 8) +
                        (!
s.gzhead.comment 16)
                    );
            
put_byte(ss.gzhead.time 0xff);
            
put_byte(s, (s.gzhead.time >> 8) & 0xff);
            
put_byte(s, (s.gzhead.time >> 16) & 0xff);
            
put_byte(s, (s.gzhead.time >> 24) & 0xff);
            
put_byte(ss.level === :
                        (
s.strategy >= Z_HUFFMAN_ONLY || s.level ?
                         
0));
            
put_byte(ss.gzhead.os 0xff);
            if (
s.gzhead.extra && s.gzhead.extra.length) {
              
put_byte(ss.gzhead.extra.length 0xff);
              
put_byte(s, (s.gzhead.extra.length >> 8) & 0xff);
            }
            if (
s.gzhead.hcrc) {
              
strm.adler crc32(strm.adlers.pending_bufs.pending0);
            }
            
s.gzindex 0;
            
s.status EXTRA_STATE;
          }
        }
        else 
// DEFLATE header
        
{
          var 
header = (Z_DEFLATED + ((s.w_bits 8) << 4)) << 8;
          var 
level_flags = -1;

          if (
s.strategy >= Z_HUFFMAN_ONLY || s.level 2) {
            
level_flags 0;
          } else if (
s.level 6) {
            
level_flags 1;
          } else if (
s.level === 6) {
            
level_flags 2;
          } else {
            
level_flags 3;
          }
          
header |= (level_flags << 6);
          if (
s.strstart !== 0) { header |= PRESET_DICT; }
          
header += 31 - (header 31);

          
s.status BUSY_STATE;
          
putShortMSB(sheader);

          
/* Save the adler32 of the preset dictionary: */
          
if (s.strstart !== 0) {
            
putShortMSB(sstrm.adler >>> 16);
            
putShortMSB(sstrm.adler 0xffff);
          }
          
strm.adler 1// adler32(0L, Z_NULL, 0);
        
}
      }

    
//#ifdef GZIP
      
if (s.status === EXTRA_STATE) {
        if (
s.gzhead.extra/* != Z_NULL*/) {
          
beg s.pending;  /* start of bytes to update crc */

          
while (s.gzindex < (s.gzhead.extra.length 0xffff)) {
            if (
s.pending === s.pending_buf_size) {
              if (
s.gzhead.hcrc && s.pending beg) {
                
strm.adler crc32(strm.adlers.pending_bufs.pending begbeg);
              }
              
flush_pending(strm);
              
beg s.pending;
              if (
s.pending === s.pending_buf_size) {
                break;
              }
            }
            
put_byte(ss.gzhead.extra[s.gzindex] & 0xff);
            
s.gzindex++;
          }
          if (
s.gzhead.hcrc && s.pending beg) {
            
strm.adler crc32(strm.adlers.pending_bufs.pending begbeg);
          }
          if (
s.gzindex === s.gzhead.extra.length) {
            
s.gzindex 0;
            
s.status NAME_STATE;
          }
        }
        else {
          
s.status NAME_STATE;
        }
      }
      if (
s.status === NAME_STATE) {
        if (
s.gzhead.name/* != Z_NULL*/) {
          
beg s.pending;  /* start of bytes to update crc */
          //int val;

          
do {
            if (
s.pending === s.pending_buf_size) {
              if (
s.gzhead.hcrc && s.pending beg) {
                
strm.adler crc32(strm.adlers.pending_bufs.pending begbeg);
              }
              
flush_pending(strm);
              
beg s.pending;
              if (
s.pending === s.pending_buf_size) {
                
val 1;
                break;
              }
            }
            
// JS specific: little magic to add zero terminator to end of string
            
if (s.gzindex s.gzhead.name.length) {
              
val s.gzhead.name.charCodeAt(s.gzindex++) & 0xff;
            } else {
              
val 0;
            }
            
put_byte(sval);
          } while (
val !== 0);

          if (
s.gzhead.hcrc && s.pending beg) {
            
strm.adler crc32(strm.adlers.pending_bufs.pending begbeg);
          }
          if (
val === 0) {
            
s.gzindex 0;
            
s.status COMMENT_STATE;
          }
        }
        else {
          
s.status COMMENT_STATE;
        }
      }
      if (
s.status === COMMENT_STATE) {
        if (
s.gzhead.comment/* != Z_NULL*/) {
          
beg s.pending;  /* start of bytes to update crc */
          //int val;

          
do {
            if (
s.pending === s.pending_buf_size) {
              if (
s.gzhead.hcrc && s.pending beg) {
                
strm.adler crc32(strm.adlers.pending_bufs.pending begbeg);
              }
              
flush_pending(strm);
              
beg s.pending;
              if (
s.pending === s.pending_buf_size) {
                
val 1;
                break;
              }
            }
            
// JS specific: little magic to add zero terminator to end of string
            
if (s.gzindex s.gzhead.comment.length) {
              
val s.gzhead.comment.charCodeAt(s.gzindex++) & 0xff;
            } else {
              
val 0;
            }
            
put_byte(sval);
          } while (
val !== 0);

          if (
s.gzhead.hcrc && s.pending beg) {
            
strm.adler crc32(strm.adlers.pending_bufs.pending begbeg);
          }
          if (
val === 0) {
            
s.status HCRC_STATE;
          }
        }
        else {
          
s.status HCRC_STATE;
        }
      }
      if (
s.status === HCRC_STATE) {
        if (
s.gzhead.hcrc) {
          if (
s.pending s.pending_buf_size) {
            
flush_pending(strm);
          }
          if (
s.pending <= s.pending_buf_size) {
            
put_byte(sstrm.adler 0xff);
            
put_byte(s, (strm.adler >> 8) & 0xff);
            
strm.adler 0//crc32(0L, Z_NULL, 0);
            
s.status BUSY_STATE;
          }
        }
        else {
          
s.status BUSY_STATE;
        }
      }
    
//#endif

      /* Flush as much pending output as possible */
      
if (s.pending !== 0) {
        
flush_pending(strm);
        if (
strm.avail_out === 0) {
          
/* Since avail_out is 0, deflate will be called again with
           * more output space, but possibly with both pending and
           * avail_in equal to zero. There won't be anything to do,
           * but this is not an error situation so make sure we
           * return OK instead of BUF_ERROR at next call of deflate:
           */
          
s.last_flush = -1;
          return 
Z_OK;
        }

        
/* Make sure there is something to do and avoid duplicate consecutive
         * flushes. For repeated and useless calls with Z_FINISH, we keep
         * returning Z_STREAM_END instead of Z_BUF_ERROR.
         */
      
} else if (strm.avail_in === && rank(flush) <= rank(old_flush) &&
        
flush !== Z_FINISH) {
        return 
err(strmZ_BUF_ERROR);
      }

      
/* User must not provide more input after the first FINISH: */
      
if (s.status === FINISH_STATE && strm.avail_in !== 0) {
        return 
err(strmZ_BUF_ERROR);
      }

      
/* Start a new block or continue the current one.
       */
      
if (strm.avail_in !== || s.lookahead !== ||
        (
flush !== Z_NO_FLUSH && s.status !== FINISH_STATE)) {
        var 
bstate = (s.strategy === Z_HUFFMAN_ONLY) ? deflate_huff(sflush) :
          (
s.strategy === Z_RLE deflate_rle(sflush) :
            
configuration_table[s.level].func(sflush));

        if (
bstate === BS_FINISH_STARTED || bstate === BS_FINISH_DONE) {
          
s.status FINISH_STATE;
        }
        if (
bstate === BS_NEED_MORE || bstate === BS_FINISH_STARTED) {
          if (
strm.avail_out === 0) {
            
s.last_flush = -1;
            
/* avoid BUF_ERROR next call, see above */
          
}
          return 
Z_OK;
          
/* If flush != Z_NO_FLUSH && avail_out == 0, the next call
           * of deflate should use the same flush parameter to make sure
           * that the flush is complete. So we don't have to output an
           * empty block here, this will be done at next call. This also
           * ensures that for a very small output buffer, we emit at most
           * one empty block.
           */
        
}
        if (
bstate === BS_BLOCK_DONE) {
          if (
flush === Z_PARTIAL_FLUSH) {
            
trees._tr_align(s);
          }
          else if (
flush !== Z_BLOCK) { /* FULL_FLUSH or SYNC_FLUSH */

            
trees._tr_stored_block(s00false);
            
/* For a full flush, this empty block will be recognized
             * as a special marker by inflate_sync().
             */
            
if (flush === Z_FULL_FLUSH) {
              
/*** CLEAR_HASH(s); ***/             /* forget history */
              
zero(s.head); // Fill with NIL (= 0);

              
if (s.lookahead === 0) {
                
s.strstart 0;
                
s.block_start 0;
                
s.insert 0;
              }
            }
          }
          
flush_pending(strm);
          if (
strm.avail_out === 0) {
            
s.last_flush = -1/* avoid BUF_ERROR at next call, see above */
            
return Z_OK;
          }
        }
      }
      
//Assert(strm->avail_out > 0, "bug2");
      //if (strm.avail_out <= 0) { throw new Error("bug2");}

      
if (flush !== Z_FINISH) { return Z_OK; }
      if (
s.wrap <= 0) { return Z_STREAM_END; }

      
/* Write the trailer */
      
if (s.wrap === 2) {
        
put_byte(sstrm.adler 0xff);
        
put_byte(s, (strm.adler >> 8) & 0xff);
        
put_byte(s, (strm.adler >> 16) & 0xff);
        
put_byte(s, (strm.adler >> 24) & 0xff);
        
put_byte(sstrm.total_in 0xff);
        
put_byte(s, (strm.total_in >> 8) & 0xff);
        
put_byte(s, (strm.total_in >> 16) & 0xff);
        
put_byte(s, (strm.total_in >> 24) & 0xff);
      }
      else
      {
        
putShortMSB(sstrm.adler >>> 16);
        
putShortMSB(sstrm.adler 0xffff);
      }

      
flush_pending(strm);
      
/* If avail_out is zero, the application will call deflate again
       * to flush the rest.
       */
      
if (s.wrap 0) { s.wrap = -s.wrap; }
      
/* write the trailer only once! */
      
return s.pending !== Z_OK Z_STREAM_END;
    }

    function 
deflateEnd(strm) {
      var 
status;

      if (!
strm/*== Z_NULL*/ || !strm.state/*== Z_NULL*/) {
        return 
Z_STREAM_ERROR;
      }

      
status strm.state.status;
      if (
status !== INIT_STATE &&
        
status !== EXTRA_STATE &&
        
status !== NAME_STATE &&
        
status !== COMMENT_STATE &&
        
status !== HCRC_STATE &&
        
status !== BUSY_STATE &&
        
status !== FINISH_STATE
      
) {
        return 
err(strmZ_STREAM_ERROR);
      }

      
strm.state null;

      return 
status === BUSY_STATE err(strmZ_DATA_ERROR) : Z_OK;
    }

    
/* =========================================================================
     * Copy the source state to the destination state
     */
    //function deflateCopy(dest, source) {
    //
    //}

    
exports.deflateInit deflateInit;
    
exports.deflateInit2 deflateInit2;
    
exports.deflateReset deflateReset;
    
exports.deflateResetKeep deflateResetKeep;
    
exports.deflateSetHeader deflateSetHeader;
    
exports.deflate deflate;
    
exports.deflateEnd deflateEnd;
    
exports.deflateInfo 'pako deflate (from Nodeca project)';

    
/* Not implemented
    exports.deflateBound = deflateBound;
    exports.deflateCopy = deflateCopy;
    exports.deflateSetDictionary = deflateSetDictionary;
    exports.deflateParams = deflateParams;
    exports.deflatePending = deflatePending;
    exports.deflatePrime = deflatePrime;
    exports.deflateTune = deflateTune;
    */


/***/ 
},
/* 52 */
/***/ 
function(moduleexports) {

    
'use strict';


    var 
TYPED_OK =  (typeof Uint8Array !== 'undefined') &&
                    (
typeof Uint16Array !== 'undefined') &&
                    (
typeof Int32Array !== 'undefined');


    
exports.assign = function (obj /*from1, from2, from3, ...*/) {
      var 
sources = Array.prototype.slice.call(arguments1);
      while (
sources.length) {
        var 
source sources.shift();
        if (!
source) { continue; }

        if (
typeof source !== 'object') {
          throw new 
TypeError(source 'must be non-object');
        }

        for (var 
p in source) {
          if (
source.hasOwnProperty(p)) {
            
obj[p] = source[p];
          }
        }
      }

      return 
obj;
    };


    
// reduce buffer size, avoiding mem copy
    
exports.shrinkBuf = function (bufsize) {
      if (
buf.length === size) { return buf; }
      if (
buf.subarray) { return buf.subarray(0size); }
      
buf.length size;
      return 
buf;
    };


    var 
fnTyped = {
      
arraySet: function (destsrcsrc_offslendest_offs) {
        if (
src.subarray && dest.subarray) {
          
dest.set(src.subarray(src_offssrc_offs+len), dest_offs);
          return;
        }
        
// Fallback to ordinary array
        
for (var i=0i<leni++) {
          
dest[dest_offs i] = src[src_offs i];
        }
      },
      
// Join array of chunks to single array.
      
flattenChunks: function(chunks) {
        var 
illenposchunkresult;

        
// calculate data length
        
len 0;
        for (
i=0l=chunks.lengthi<li++) {
          
len += chunks[i].length;
        }

        
// join chunks
        
result = new Uint8Array(len);
        
pos 0;
        for (
i=0l=chunks.lengthi<li++) {
          
chunk chunks[i];
          
result.set(chunkpos);
          
pos += chunk.length;
        }

        return 
result;
      }
    };

    var 
fnUntyped = {
      
arraySet: function (destsrcsrc_offslendest_offs) {
        for (var 
i=0i<leni++) {
          
dest[dest_offs i] = src[src_offs i];
        }
      },
      
// Join array of chunks to single array.
      
flattenChunks: function(chunks) {
        return [].
concat.apply([], chunks);
      }
    };


    
// Enable/Disable typed arrays use, for testing
    //
    
exports.setTyped = function (on) {
      if (
on) {
        
exports.Buf8  Uint8Array;
        
exports.Buf16 Uint16Array;
        
exports.Buf32 Int32Array;
        
exports.assign(exportsfnTyped);
      } else {
        
exports.Buf8  = Array;
        
exports.Buf16 = Array;
        
exports.Buf32 = Array;
        
exports.assign(exportsfnUntyped);
      }
    };

    
exports.setTyped(TYPED_OK);


/***/ },
/* 53 */
/***/ 
function(moduleexports__webpack_require__) {

    
'use strict';


    var 
utils __webpack_require__(52);

    
/* Public constants ==========================================================*/
    /* ===========================================================================*/


    //var Z_FILTERED          = 1;
    //var Z_HUFFMAN_ONLY      = 2;
    //var Z_RLE               = 3;
    
var Z_FIXED               4;
    
//var Z_DEFAULT_STRATEGY  = 0;

    /* Possible values of the data_type field (though see inflate()) */
    
var Z_BINARY              0;
    var 
Z_TEXT                1;
    
//var Z_ASCII             = 1; // = Z_TEXT
    
var Z_UNKNOWN             2;

    
/*============================================================================*/


    
function zero(buf) { var len buf.length; while (--len >= 0) { buf[len] = 0; } }

    
// From zutil.h

    
var STORED_BLOCK 0;
    var 
STATIC_TREES 1;
    var 
DYN_TREES    2;
    
/* The three kinds of block type */

    
var MIN_MATCH    3;
    var 
MAX_MATCH    258;
    
/* The minimum and maximum match lengths */

    // From deflate.h
    /* ===========================================================================
     * Internal compression state.
     */

    
var LENGTH_CODES  29;
    
/* number of length codes, not counting the special END_BLOCK code */

    
var LITERALS      256;
    
/* number of literal bytes 0..255 */

    
var L_CODES       LITERALS LENGTH_CODES;
    
/* number of Literal or Length codes, including the END_BLOCK code */

    
var D_CODES       30;
    
/* number of distance codes */

    
var BL_CODES      19;
    
/* number of codes used to transfer the bit lengths */

    
var HEAP_SIZE     2*L_CODES 1;
    
/* maximum heap size */

    
var MAX_BITS      15;
    
/* All codes must not exceed MAX_BITS bits */

    
var Buf_size      16;
    
/* size of bit buffer in bi_buf */


    /* ===========================================================================
     * Constants
     */

    
var MAX_BL_BITS 7;
    
/* Bit length codes must not exceed MAX_BL_BITS bits */

    
var END_BLOCK   256;
    
/* end of block literal code */

    
var REP_3_6     16;
    
/* repeat previous bit length 3-6 times (2 bits of repeat count) */

    
var REPZ_3_10   17;
    
/* repeat a zero length 3-10 times  (3 bits of repeat count) */

    
var REPZ_11_138 18;
    
/* repeat a zero length 11-138 times  (7 bits of repeat count) */

    
var extra_lbits =   /* extra bits for each length code */
      
[0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0];

    var 
extra_dbits =   /* extra bits for each distance code */
      
[0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13];

    var 
extra_blbits =  /* extra bits for each bit length code */
      
[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7];

    var 
bl_order =
      [
16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15];
    
/* The lengths of the bit length codes are sent in order of decreasing
     * probability, to avoid transmitting the lengths for unused bit length codes.
     */

    /* ===========================================================================
     * Local data. These are initialized only once.
     */

    // We pre-fill arrays with 0 to avoid uninitialized gaps

    
var DIST_CODE_LEN 512/* see definition of array dist_code below */

    // !!!! Use flat array insdead of structure, Freq = i*2, Len = i*2+1
    
var static_ltree  = new Array((L_CODES+2) * 2);
    
zero(static_ltree);
    
/* The static literal tree. Since the bit lengths are imposed, there is no
     * need for the L_CODES extra codes used during heap construction. However
     * The codes 286 and 287 are needed to build a canonical tree (see _tr_init
     * below).
     */

    
var static_dtree  = new Array(D_CODES 2);
    
zero(static_dtree);
    
/* The static distance tree. (Actually a trivial tree since all codes use
     * 5 bits.)
     */

    
var _dist_code    = new Array(DIST_CODE_LEN);
    
zero(_dist_code);
    
/* Distance codes. The first 256 values correspond to the distances
     * 3 .. 258, the last 256 values correspond to the top 8 bits of
     * the 15 bit distances.
     */

    
var _length_code  = new Array(MAX_MATCH-MIN_MATCH+1);
    
zero(_length_code);
    
/* length code for each normalized match length (0 == MIN_MATCH) */

    
var base_length   = new Array(LENGTH_CODES);
    
zero(base_length);
    
/* First normalized length for each code (0 = MIN_MATCH) */

    
var base_dist     = new Array(D_CODES);
    
zero(base_dist);
    
/* First normalized distance for each code (0 = distance of 1) */


    
var StaticTreeDesc = function (static_treeextra_bitsextra_baseelemsmax_length) {

      
this.static_tree  static_tree;  /* static tree or NULL */
      
this.extra_bits   extra_bits;   /* extra bits for each code or NULL */
      
this.extra_base   extra_base;   /* base index for extra_bits */
      
this.elems        elems;        /* max number of elements in the tree */
      
this.max_length   max_length;   /* max bit length for the codes */

      // show if `static_tree` has data or dummy - needed for monomorphic objects
      
this.has_stree    static_tree && static_tree.length;
    };


    var 
static_l_desc;
    var 
static_d_desc;
    var 
static_bl_desc;


    var 
TreeDesc = function(dyn_treestat_desc) {
      
this.dyn_tree dyn_tree;     /* the dynamic tree */
      
this.max_code 0;            /* largest code with non zero frequency */
      
this.stat_desc stat_desc;   /* the corresponding static tree */
    
};



    function 
d_code(dist) {
      return 
dist 256 _dist_code[dist] : _dist_code[256 + (dist >>> 7)];
    }


    
/* ===========================================================================
     * Output a short LSB first on the stream.
     * IN assertion: there is enough room in pendingBuf.
     */
    
function put_short (sw) {
    
//    put_byte(s, (uch)((w) & 0xff));
    //    put_byte(s, (uch)((ush)(w) >> 8));
      
s.pending_buf[s.pending++] = (w) & 0xff;
      
s.pending_buf[s.pending++] = (>>> 8) & 0xff;
    }


    
/* ===========================================================================
     * Send a value on a given number of bits.
     * IN assertion: length <= 16 and value fits in length bits.
     */
    
function send_bits(svaluelength) {
      if (
s.bi_valid > (Buf_size length)) {
        
s.bi_buf |= (value << s.bi_valid) & 0xffff;
        
put_short(ss.bi_buf);
        
s.bi_buf value >> (Buf_size s.bi_valid);
        
s.bi_valid += length Buf_size;
      } else {
        
s.bi_buf |= (value << s.bi_valid) & 0xffff;
        
s.bi_valid += length;
      }
    }


    function 
send_code(sctree) {
      
send_bits(stree[c*2]/*.Code*/tree[c*1]/*.Len*/);
    }


    
/* ===========================================================================
     * Reverse the first len bits of a code, using straightforward code (a faster
     * method would use a table)
     * IN assertion: 1 <= len <= 15
     */
    
function bi_reverse(codelen) {
      var 
res 0;
      do {
        
res |= code 1;
        
code >>>= 1;
        
res <<= 1;
      } while (--
len 0);
      return 
res >>> 1;
    }


    
/* ===========================================================================
     * Flush the bit buffer, keeping at most 7 bits in it.
     */
    
function bi_flush(s) {
      if (
s.bi_valid === 16) {
        
put_short(ss.bi_buf);
        
s.bi_buf 0;
        
s.bi_valid 0;

      } else if (
s.bi_valid >= 8) {
        
s.pending_buf[s.pending++] = s.bi_buf 0xff;
        
s.bi_buf >>= 8;
        
s.bi_valid -= 8;
      }
    }


    
/* ===========================================================================
     * Compute the optimal bit lengths for a tree and update the total bit length
     * for the current block.
     * IN assertion: the fields freq and dad are set, heap[heap_max] and
     *    above are the tree nodes sorted by increasing frequency.
     * OUT assertions: the field len is set to the optimal bit length, the
     *     array bl_count contains the frequencies for each bit length.
     *     The length opt_len is updated; static_len is also updated if stree is
     *     not null.
     */
    
function gen_bitlen(sdesc)
    
//    deflate_state *s;
    //    tree_desc *desc;    /* the tree descriptor */
    
{
      var 
tree            desc.dyn_tree;
      var 
max_code        desc.max_code;
      var 
stree           desc.stat_desc.static_tree;
      var 
has_stree       desc.stat_desc.has_stree;
      var 
extra           desc.stat_desc.extra_bits;
      var 
base            desc.stat_desc.extra_base;
      var 
max_length      desc.stat_desc.max_length;
      var 
h;              /* heap index */
      
var nm;           /* iterate over the tree elements */
      
var bits;           /* bit length */
      
var xbits;          /* extra bits */
      
var f;              /* frequency */
      
var overflow 0;   /* number of elements with bit length too large */

      
for (bits 0bits <= MAX_BITSbits++) {
        
s.bl_count[bits] = 0;
      }

      
/* In a first pass, compute the optimal bit lengths (which may
       * overflow in the case of the bit length tree).
       */
      
tree[s.heap[s.heap_max]*1]/*.Len*/ 0/* root of the heap */

      
for (s.heap_max+1HEAP_SIZEh++) {
        
s.heap[h];
        
bits tree[tree[n*+1]/*.Dad*/ 1]/*.Len*/ 1;
        if (
bits max_length) {
          
bits max_length;
          
overflow++;
        }
        
tree[n*1]/*.Len*/ bits;
        
/* We overwrite tree[n].Dad which is no longer needed */

        
if (max_code) { continue; } /* not a leaf node */

        
s.bl_count[bits]++;
        
xbits 0;
        if (
>= base) {
          
xbits extra[n-base];
        }
        
tree[2]/*.Freq*/;
        
s.opt_len += * (bits xbits);
        if (
has_stree) {
          
s.static_len += * (stree[n*1]/*.Len*/ xbits);
        }
      }
      if (
overflow === 0) { return; }

      
// Trace((stderr,"nbit length overflown"));
      /* This happens for example on obj2 and pic of the Calgary corpus */

      /* Find the first bit length which could increase: */
      
do {
        
bits max_length-1;
        while (
s.bl_count[bits] === 0) { bits--; }
        
s.bl_count[bits]--;      /* move one leaf down the tree */
        
s.bl_count[bits+1] += 2/* move one overflow item as its brother */
        
s.bl_count[max_length]--;
        
/* The brother of the overflow item also moves one step up,
         * but this does not affect bl_count[max_length]
         */
        
overflow -= 2;
      } while (
overflow 0);

      
/* Now recompute all bit lengths, scanning in increasing frequency.
       * h is still equal to HEAP_SIZE. (It is simpler to reconstruct all
       * lengths instead of fixing only the wrong ones. This idea is taken
       * from 'ar' written by Haruhiko Okumura.)
       */
      
for (bits max_lengthbits !== 0bits--) {
        
s.bl_count[bits];
        while (
!== 0) {
          
s.heap[--h];
          if (
max_code) { continue; }
          if (
tree[m*1]/*.Len*/ !== bits) {
            
// Trace((stderr,"code %d bits %d->%dn", m, tree[m].Len, bits));
            
s.opt_len += (bits tree[m*1]/*.Len*/)*tree[m*2]/*.Freq*/;
            
tree[m*1]/*.Len*/ bits;
          }
          
n--;
        }
      }
    }


    
/* ===========================================================================
     * Generate the codes for a given tree and bit counts (which need not be
     * optimal).
     * IN assertion: the array bl_count contains the bit length statistics for
     * the given tree and the field len is set for all tree elements.
     * OUT assertion: the field code is set for all tree elements of non
     *     zero code length.
     */
    
function gen_codes(treemax_codebl_count)
    
//    ct_data *tree;             /* the tree to decorate */
    //    int max_code;              /* largest code with non zero frequency */
    //    ushf *bl_count;            /* number of codes at each bit length */
    
{
      var 
next_code = new Array(MAX_BITS+1); /* next code value for each bit length */
      
var code 0;              /* running code value */
      
var bits;                  /* bit index */
      
var n;                     /* code index */

      /* The distribution counts are first used to generate the code values
       * without bit reversal.
       */
      
for (bits 1bits <= MAX_BITSbits++) {
        
next_code[bits] = code = (code bl_count[bits-1]) << 1;
      }
      
/* Check that the bit counts in bl_count are consistent. The last code
       * must be all ones.
       */
      //Assert (code + bl_count[MAX_BITS]-1 == (1<<MAX_BITS)-1,
      //        "inconsistent bit counts");
      //Tracev((stderr,"ngen_codes: max_code %d ", max_code));

      
for (0;  <= max_coden++) {
        var 
len tree[n*1]/*.Len*/;
        if (
len === 0) { continue; }
        
/* Now reverse the bits */
        
tree[n*2]/*.Code*/ bi_reverse(next_code[len]++, len);

        
//Tracecv(tree != static_ltree, (stderr,"nn %3d %c l %2d c %4x (%x) ",
        //     n, (isgraph(n) ? n : ' '), len, tree[n].Code, next_code[len]-1));
      
}
    }


    
/* ===========================================================================
     * Initialize the various 'constant' tables.
     */
    
function tr_static_init() {
      var 
n;        /* iterates over tree elements */
      
var bits;     /* bit counter */
      
var length;   /* length value */
      
var code;     /* code value */
      
var dist;     /* distance index */
      
var bl_count = new Array(MAX_BITS+1);
      
/* number of codes at each bit length for an optimal tree */

      // do check in _tr_init()
      //if (static_init_done) return;

      /* For some embedded targets, global variables are not initialized: */
    /*#ifdef NO_INIT_GLOBAL_POINTERS
      static_l_desc.static_tree = static_ltree;
      static_l_desc.extra_bits = extra_lbits;
      static_d_desc.static_tree = static_dtree;
      static_d_desc.extra_bits = extra_dbits;
      static_bl_desc.extra_bits = extra_blbits;
    #endif*/

      /* Initialize the mapping length (0..255) -> length code (0..28) */
      
length 0;
      for (
code 0code LENGTH_CODES-1code++) {
        
base_length[code] = length;
        for (
0< (1<<extra_lbits[code]); n++) {
          
_length_code[length++] = code;
        }
      }
      
//Assert (length == 256, "tr_static_init: length != 256");
      /* Note that the length 255 (match length 258) can be represented
       * in two different ways: code 284 + 5 bits or code 285, so we
       * overwrite length_code[255] to use the best encoding:
       */
      
_length_code[length-1] = code;

      
/* Initialize the mapping dist (0..32K) -> dist code (0..29) */
      
dist 0;
      for (
code code 16code++) {
        
base_dist[code] = dist;
        for (
0< (1<<extra_dbits[code]); n++) {
          
_dist_code[dist++] = code;
        }
      }
      
//Assert (dist == 256, "tr_static_init: dist != 256");
      
dist >>= 7/* from now on, all distances are divided by 128 */
      
for (; code D_CODEScode++) {
        
base_dist[code] = dist << 7;
        for (
0< (1<<(extra_dbits[code]-7)); n++) {
          
_dist_code[256 dist++] = code;
        }
      }
      
//Assert (dist == 256, "tr_static_init: 256+dist != 512");

      /* Construct the codes of the static literal tree */
      
for (bits 0bits <= MAX_BITSbits++) {
        
bl_count[bits] = 0;
      }

      
0;
      while (
<= 143) {
        
static_ltree[n*1]/*.Len*/ 8;
        
n++;
        
bl_count[8]++;
      }
      while (
<= 255) {
        
static_ltree[n*1]/*.Len*/ 9;
        
n++;
        
bl_count[9]++;
      }
      while (
<= 279) {
        
static_ltree[n*1]/*.Len*/ 7;
        
n++;
        
bl_count[7]++;
      }
      while (
<= 287) {
        
static_ltree[n*1]/*.Len*/ 8;
        
n++;
        
bl_count[8]++;
      }
      
/* Codes 286 and 287 do not exist, but we must include them in the
       * tree construction to get a canonical Huffman tree (longest code
       * all ones)
       */
      
gen_codes(static_ltreeL_CODES+1bl_count);

      
/* The static distance tree is trivial: */
      
for (0D_CODESn++) {
        
static_dtree[n*1]/*.Len*/ 5;
        
static_dtree[n*2]/*.Code*/ bi_reverse(n5);
      }

      
// Now data ready and we can init static trees
      
static_l_desc = new StaticTreeDesc(static_ltreeextra_lbitsLITERALS+1L_CODESMAX_BITS);
      
static_d_desc = new StaticTreeDesc(static_dtreeextra_dbits0,          D_CODESMAX_BITS);
      
static_bl_desc =new StaticTreeDesc(new Array(0), extra_blbits0,         BL_CODESMAX_BL_BITS);

      
//static_init_done = true;
    
}


    
/* ===========================================================================
     * Initialize a new block.
     */
    
function init_block(s) {
      var 
n/* iterates over tree elements */

      /* Initialize the trees. */
      
for (0L_CODES;  n++) { s.dyn_ltree[n*2]/*.Freq*/ 0; }
      for (
0D_CODES;  n++) { s.dyn_dtree[n*2]/*.Freq*/ 0; }
      for (
0BL_CODESn++) { s.bl_tree[n*2]/*.Freq*/ 0; }

      
s.dyn_ltree[END_BLOCK*2]/*.Freq*/ 1;
      
s.opt_len s.static_len 0;
      
s.last_lit s.matches 0;
    }


    
/* ===========================================================================
     * Flush the bit buffer and align the output on a byte boundary
     */
    
function bi_windup(s)
    {
      if (
s.bi_valid 8) {
        
put_short(ss.bi_buf);
      } else if (
s.bi_valid 0) {
        
//put_byte(s, (Byte)s->bi_buf);
        
s.pending_buf[s.pending++] = s.bi_buf;
      }
      
s.bi_buf 0;
      
s.bi_valid 0;
    }

    
/* ===========================================================================
     * Copy a stored block, storing first the length and its
     * one's complement if requested.
     */
    
function copy_block(sbuflenheader)
    
//DeflateState *s;
    //charf    *buf;    /* the input data */
    //unsigned len;     /* its length */
    //int      header;  /* true if block header must be written */
    
{
      
bi_windup(s);        /* align on byte boundary */

      
if (header) {
        
put_short(slen);
        
put_short(s, ~len);
      }
    
//  while (len--) {
    //    put_byte(s, *buf++);
    //  }
      
utils.arraySet(s.pending_bufs.windowbuflens.pending);
      
s.pending += len;
    }

    
/* ===========================================================================
     * Compares to subtrees, using the tree depth as tie breaker when
     * the subtrees have equal frequency. This minimizes the worst case length.
     */
    
function smaller(treenmdepth) {
      var 
_n2 n*2;
      var 
_m2 m*2;
      return (
tree[_n2]/*.Freq*/ tree[_m2]/*.Freq*/ ||
             (
tree[_n2]/*.Freq*/ === tree[_m2]/*.Freq*/ && depth[n] <= depth[m]));
    }

    
/* ===========================================================================
     * Restore the heap property by moving down the tree starting at node k,
     * exchanging a node with the smallest of its two sons if necessary, stopping
     * when the heap property is re-established (each father smaller than its
     * two sons).
     */
    
function pqdownheap(streek)
    
//    deflate_state *s;
    //    ct_data *tree;  /* the tree to restore */
    //    int k;               /* node to move down */
    
{
      var 
s.heap[k];
      var 
<< 1;  /* left son of k */
      
while (<= s.heap_len) {
        
/* Set j to the smallest of the two sons: */
        
if (s.heap_len &&
          
smaller(trees.heap[j+1], s.heap[j], s.depth)) {
          
j++;
        }
        
/* Exit if v is smaller than both sons */
        
if (smaller(treevs.heap[j], s.depth)) { break; }

        
/* Exchange v with the smallest son */
        
s.heap[k] = s.heap[j];
        
j;

        
/* And continue down the tree, setting j to the left son of k */
        
<<= 1;
      }
      
s.heap[k] = v;
    }


    
// inlined manually
    // var SMALLEST = 1;

    /* ===========================================================================
     * Send the block data compressed using the given Huffman trees
     */
    
function compress_block(sltreedtree)
    
//    deflate_state *s;
    //    const ct_data *ltree; /* literal tree */
    //    const ct_data *dtree; /* distance tree */
    
{
      var 
dist;           /* distance of matched string */
      
var lc;             /* match length or unmatched char (if dist == 0) */
      
var lx 0;         /* running index in l_buf */
      
var code;           /* the code to send */
      
var extra;          /* number of extra bits to send */

      
if (s.last_lit !== 0) {
        do {
          
dist = (s.pending_buf[s.d_buf lx*2] << 8) | (s.pending_buf[s.d_buf lx*1]);
          
lc s.pending_buf[s.l_buf lx];
          
lx++;

          if (
dist === 0) {
            
send_code(slcltree); /* send a literal byte */
            //Tracecv(isgraph(lc), (stderr," '%c' ", lc));
          
} else {
            
/* Here, lc is the match length - MIN_MATCH */
            
code _length_code[lc];
            
send_code(scode+LITERALS+1ltree); /* send the length code */
            
extra extra_lbits[code];
            if (
extra !== 0) {
              
lc -= base_length[code];
              
send_bits(slcextra);       /* send the extra length bits */
            
}
            
dist--; /* dist is now the match distance - 1 */
            
code d_code(dist);
            
//Assert (code < D_CODES, "bad d_code");

            
send_code(scodedtree);       /* send the distance code */
            
extra extra_dbits[code];
            if (
extra !== 0) {
              
dist -= base_dist[code];
              
send_bits(sdistextra);   /* send the extra distance bits */
            
}
          } 
/* literal or match pair ? */

          /* Check that the overlay between pending_buf and d_buf+l_buf is ok: */
          //Assert((uInt)(s->pending) < s->lit_bufsize + 2*lx,
          //       "pendingBuf overflow");

        
} while (lx s.last_lit);
      }

      
send_code(sEND_BLOCKltree);
    }


    
/* ===========================================================================
     * Construct one Huffman tree and assigns the code bit strings and lengths.
     * Update the total bit length for the current block.
     * IN assertion: the field freq is set for all tree elements.
     * OUT assertions: the fields len and code are set to the optimal bit length
     *     and corresponding code. The length opt_len is updated; static_len is
     *     also updated if stree is not null. The field max_code is set.
     */
    
function build_tree(sdesc)
    
//    deflate_state *s;
    //    tree_desc *desc; /* the tree descriptor */
    
{
      var 
tree     desc.dyn_tree;
      var 
stree    desc.stat_desc.static_tree;
      var 
has_stree desc.stat_desc.has_stree;
      var 
elems    desc.stat_desc.elems;
      var 
nm;          /* iterate over heap elements */
      
var max_code = -1/* largest code with non zero frequency */
      
var node;          /* new node being created */

      /* Construct the initial heap, with least frequent element in
       * heap[SMALLEST]. The sons of heap[n] are heap[2*n] and heap[2*n+1].
       * heap[0] is not used.
       */
      
s.heap_len 0;
      
s.heap_max HEAP_SIZE;

      for (
0elemsn++) {
        if (
tree[2]/*.Freq*/ !== 0) {
          
s.heap[++s.heap_len] = max_code n;
          
s.depth[n] = 0;

        } else {
          
tree[n*1]/*.Len*/ 0;
        }
      }

      
/* The pkzip format requires that at least one distance code exists,
       * and that at least one bit should be sent even if there is only one
       * possible code. So to avoid special checks later on we force at least
       * two codes of non zero frequency.
       */
      
while (s.heap_len 2) {
        
node s.heap[++s.heap_len] = (max_code ? ++max_code 0);
        
tree[node 2]/*.Freq*/ 1;
        
s.depth[node] = 0;
        
s.opt_len--;

        if (
has_stree) {
          
s.static_len -= stree[node*1]/*.Len*/;
        }
        
/* node is 0 or 1 so it does not have extra bits */
      
}
      
desc.max_code max_code;

      
/* The elements heap[heap_len/2+1 .. heap_len] are leaves of the tree,
       * establish sub-heaps of increasing lengths:
       */
      
for (= (s.heap_len >> 1/*int /2*/); >= 1n--) { pqdownheap(streen); }

      
/* Construct the Huffman tree by repeatedly combining the least two
       * frequent nodes.
       */
      
node elems;              /* next internal node of the tree */
      
do {
        
//pqremove(s, tree, n);  /* n = node of least frequency */
        /*** pqremove ***/
        
s.heap[1/*SMALLEST*/];
        
s.heap[1/*SMALLEST*/] = s.heap[s.heap_len--];
        
pqdownheap(stree1/*SMALLEST*/);
        
/***/

        
s.heap[1/*SMALLEST*/]; /* m = node of next least frequency */

        
s.heap[--s.heap_max] = n/* keep the nodes sorted by frequency */
        
s.heap[--s.heap_max] = m;

        
/* Create a new node father of n and m */
        
tree[node 2]/*.Freq*/ tree[2]/*.Freq*/ tree[2]/*.Freq*/;
        
s.depth[node] = (s.depth[n] >= s.depth[m] ? s.depth[n] : s.depth[m]) + 1;
        
tree[n*1]/*.Dad*/ tree[m*1]/*.Dad*/ node;

        
/* and insert the new node in the heap */
        
s.heap[1/*SMALLEST*/] = node++;
        
pqdownheap(stree1/*SMALLEST*/);

      } while (
s.heap_len >= 2);

      
s.heap[--s.heap_max] = s.heap[1/*SMALLEST*/];

      
/* At this point, the fields freq and dad are set. We can now
       * generate the bit lengths.
       */
      
gen_bitlen(sdesc);

      
/* The field len is now set, we can generate the bit codes */
      
gen_codes(treemax_codes.bl_count);
    }


    
/* ===========================================================================
     * Scan a literal or distance tree to determine the frequencies of the codes
     * in the bit length tree.
     */
    
function scan_tree(streemax_code)
    
//    deflate_state *s;
    //    ct_data *tree;   /* the tree to be scanned */
    //    int max_code;    /* and its largest code of non zero frequency */
    
{
      var 
n;                     /* iterates over all tree elements */
      
var prevlen = -1;          /* last emitted length */
      
var curlen;                /* length of current code */

      
var nextlen tree[0*1]/*.Len*//* length of next code */

      
var count 0;             /* repeat count of the current code */
      
var max_count 7;         /* max repeat count */
      
var min_count 4;         /* min repeat count */

      
if (nextlen === 0) {
        
max_count 138;
        
min_count 3;
      }
      
tree[(max_code+1)*1]/*.Len*/ 0xffff/* guard */

      
for (0<= max_coden++) {
        
curlen nextlen;
        
nextlen tree[(n+1)*1]/*.Len*/;

        if (++
count max_count && curlen === nextlen) {
          continue;

        } else if (
count min_count) {
          
s.bl_tree[curlen 2]/*.Freq*/ += count;

        } else if (
curlen !== 0) {

          if (
curlen !== prevlen) { s.bl_tree[curlen 2]/*.Freq*/++; }
          
s.bl_tree[REP_3_6*2]/*.Freq*/++;

        } else if (
count <= 10) {
          
s.bl_tree[REPZ_3_10*2]/*.Freq*/++;

        } else {
          
s.bl_tree[REPZ_11_138*2]/*.Freq*/++;
        }

        
count 0;
        
prevlen curlen;

        if (
nextlen === 0) {
          
max_count 138;
          
min_count 3;

        } else if (
curlen === nextlen) {
          
max_count 6;
          
min_count 3;

        } else {
          
max_count 7;
          
min_count 4;
        }
      }
    }


    
/* ===========================================================================
     * Send a literal or distance tree in compressed form, using the codes in
     * bl_tree.
     */
    
function send_tree(streemax_code)
    
//    deflate_state *s;
    //    ct_data *tree; /* the tree to be scanned */
    //    int max_code;       /* and its largest code of non zero frequency */
    
{
      var 
n;                     /* iterates over all tree elements */
      
var prevlen = -1;          /* last emitted length */
      
var curlen;                /* length of current code */

      
var nextlen tree[0*1]/*.Len*//* length of next code */

      
var count 0;             /* repeat count of the current code */
      
var max_count 7;         /* max repeat count */
      
var min_count 4;         /* min repeat count */

      /* tree[max_code+1].Len = -1; */  /* guard already set */
      
if (nextlen === 0) {
        
max_count 138;
        
min_count 3;
      }

      for (
0<= max_coden++) {
        
curlen nextlen;
        
nextlen tree[(n+1)*1]/*.Len*/;

        if (++
count max_count && curlen === nextlen) {
          continue;

        } else if (
count min_count) {
          do { 
send_code(scurlens.bl_tree); } while (--count !== 0);

        } else if (
curlen !== 0) {
          if (
curlen !== prevlen) {
            
send_code(scurlens.bl_tree);
            
count--;
          }
          
//Assert(count >= 3 && count <= 6, " 3_6?");
          
send_code(sREP_3_6s.bl_tree);
          
send_bits(scount-32);

        } else if (
count <= 10) {
          
send_code(sREPZ_3_10s.bl_tree);
          
send_bits(scount-33);

        } else {
          
send_code(sREPZ_11_138s.bl_tree);
          
send_bits(scount-117);
        }

        
count 0;
        
prevlen curlen;
        if (
nextlen === 0) {
          
max_count 138;
          
min_count 3;

        } else if (
curlen === nextlen) {
          
max_count 6;
          
min_count 3;

        } else {
          
max_count 7;
          
min_count 4;
        }
      }
    }


    
/* ===========================================================================
     * Construct the Huffman tree for the bit lengths and return the index in
     * bl_order of the last bit length code to send.
     */
    
function build_bl_tree(s) {
      var 
max_blindex;  /* index of last bit length code of non zero freq */

      /* Determine the bit length frequencies for literal and distance trees */
      
scan_tree(ss.dyn_ltrees.l_desc.max_code);
      
scan_tree(ss.dyn_dtrees.d_desc.max_code);

      
/* Build the bit length tree: */
      
build_tree(ss.bl_desc);
      
/* opt_len now includes the length of the tree representations, except
       * the lengths of the bit lengths codes and the 5+5+4 bits for the counts.
       */

      /* Determine the number of bit length codes to send. The pkzip format
       * requires that at least 4 bit length codes be sent. (appnote.txt says
       * 3 but the actual value used is 4.)
       */
      
for (max_blindex BL_CODES-1max_blindex >= 3max_blindex--) {
        if (
s.bl_tree[bl_order[max_blindex]*1]/*.Len*/ !== 0) {
          break;
        }
      }
      
/* Update opt_len to include the bit length tree and counts */
      
s.opt_len += 3*(max_blindex+1) + 5+5+4;
      
//Tracev((stderr, "ndyn trees: dyn %ld, stat %ld",
      //        s->opt_len, s->static_len));

      
return max_blindex;
    }


    
/* ===========================================================================
     * Send the header for a block using dynamic Huffman trees: the counts, the
     * lengths of the bit length codes, the literal tree and the distance tree.
     * IN assertion: lcodes >= 257, dcodes >= 1, blcodes >= 4.
     */
    
function send_all_trees(slcodesdcodesblcodes)
    
//    deflate_state *s;
    //    int lcodes, dcodes, blcodes; /* number of codes for each tree */
    
{
      var 
rank;                    /* index in bl_order */

      //Assert (lcodes >= 257 && dcodes >= 1 && blcodes >= 4, "not enough codes");
      //Assert (lcodes <= L_CODES && dcodes <= D_CODES && blcodes <= BL_CODES,
      //        "too many codes");
      //Tracev((stderr, "nbl counts: "));
      
send_bits(slcodes-2575); /* not +255 as stated in appnote.txt */
      
send_bits(sdcodes-1,   5);
      
send_bits(sblcodes-4,  4); /* not -3 as stated in appnote.txt */
      
for (rank 0rank blcodesrank++) {
        
//Tracev((stderr, "nbl code %2d ", bl_order[rank]));
        
send_bits(ss.bl_tree[bl_order[rank]*1]/*.Len*/3);
      }
      
//Tracev((stderr, "nbl tree: sent %ld", s->bits_sent));

      
send_tree(ss.dyn_ltreelcodes-1); /* literal tree */
      //Tracev((stderr, "nlit tree: sent %ld", s->bits_sent));

      
send_tree(ss.dyn_dtreedcodes-1); /* distance tree */
      //Tracev((stderr, "ndist tree: sent %ld", s->bits_sent));
    
}


    
/* ===========================================================================
     * Check if the data type is TEXT or BINARY, using the following algorithm:
     * - TEXT if the two conditions below are satisfied:
     *    a) There are no non-portable control characters belonging to the
     *       "black list" (0..6, 14..25, 28..31).
     *    b) There is at least one printable character belonging to the
     *       "white list" (9 {TAB}, 10 {LF}, 13 {CR}, 32..255).
     * - BINARY otherwise.
     * - The following partially-portable control characters form a
     *   "gray list" that is ignored in this detection algorithm:
     *   (7 {BEL}, 8 {BS}, 11 {VT}, 12 {FF}, 26 {SUB}, 27 {ESC}).
     * IN assertion: the fields Freq of dyn_ltree are set.
     */
    
function detect_data_type(s) {
      
/* black_mask is the bit mask of black-listed bytes
       * set bits 0..6, 14..25, and 28..31
       * 0xf3ffc07f = binary 11110011111111111100000001111111
       */
      
var black_mask 0xf3ffc07f;
      var 
n;

      
/* Check for non-textual ("black-listed") bytes. */
      
for (0<= 31n++, black_mask >>>= 1) {
        if ((
black_mask 1) && (s.dyn_ltree[n*2]/*.Freq*/ !== 0)) {
          return 
Z_BINARY;
        }
      }

      
/* Check for textual ("white-listed") bytes. */
      
if (s.dyn_ltree[2]/*.Freq*/ !== || s.dyn_ltree[10 2]/*.Freq*/ !== ||
          
s.dyn_ltree[13 2]/*.Freq*/ !== 0) {
        return 
Z_TEXT;
      }
      for (
32LITERALSn++) {
        if (
s.dyn_ltree[2]/*.Freq*/ !== 0) {
          return 
Z_TEXT;
        }
      }

      
/* There are no "black-listed" or "white-listed" bytes:
       * this stream either is empty or has tolerated ("gray-listed") bytes only.
       */
      
return Z_BINARY;
    }


    var 
static_init_done false;

    
/* ===========================================================================
     * Initialize the tree data structures for a new zlib stream.
     */
    
function _tr_init(s)
    {

      if (!
static_init_done) {
        
tr_static_init();
        
static_init_done true;
      }

      
s.l_desc  = new TreeDesc(s.dyn_ltreestatic_l_desc);
      
s.d_desc  = new TreeDesc(s.dyn_dtreestatic_d_desc);
      
s.bl_desc = new TreeDesc(s.bl_treestatic_bl_desc);

      
s.bi_buf 0;
      
s.bi_valid 0;

      
/* Initialize the first block of the first file: */
      
init_block(s);
    }


    
/* ===========================================================================
     * Send a stored block
     */
    
function _tr_stored_block(sbufstored_lenlast)
    
//DeflateState *s;
    //charf *buf;       /* input block */
    //ulg stored_len;   /* length of input block */
    //int last;         /* one if this is the last block for a file */
    
{
      
send_bits(s, (STORED_BLOCK<<1)+(last 0), 3);    /* send block type */
      
copy_block(sbufstored_lentrue); /* with header */
    
}


    
/* ===========================================================================
     * Send one empty static block to give enough lookahead for inflate.
     * This takes 10 bits, of which 7 may remain in the bit buffer.
     */
    
function _tr_align(s) {
      
send_bits(sSTATIC_TREES<<13);
      
send_code(sEND_BLOCKstatic_ltree);
      
bi_flush(s);
    }


    
/* ===========================================================================
     * Determine the best encoding for the current block: dynamic trees, static
     * trees or store, and output the encoded block to the zip file.
     */
    
function _tr_flush_block(sbufstored_lenlast)
    
//DeflateState *s;
    //charf *buf;       /* input block, or NULL if too old */
    //ulg stored_len;   /* length of input block */
    //int last;         /* one if this is the last block for a file */
    
{
      var 
opt_lenbstatic_lenb;  /* opt_len and static_len in bytes */
      
var max_blindex 0;        /* index of last bit length code of non zero freq */

      /* Build the Huffman trees unless a stored block is forced */
      
if (s.level 0) {

        
/* Check if the file is binary or text */
        
if (s.strm.data_type === Z_UNKNOWN) {
          
s.strm.data_type detect_data_type(s);
        }

        
/* Construct the literal and distance trees */
        
build_tree(ss.l_desc);
        
// Tracev((stderr, "nlit data: dyn %ld, stat %ld", s->opt_len,
        //        s->static_len));

        
build_tree(ss.d_desc);
        
// Tracev((stderr, "ndist data: dyn %ld, stat %ld", s->opt_len,
        //        s->static_len));
        /* At this point, opt_len and static_len are the total bit lengths of
         * the compressed block data, excluding the tree representations.
         */

        /* Build the bit length tree for the above two trees, and get the index
         * in bl_order of the last bit length code to send.
         */
        
max_blindex build_bl_tree(s);

        
/* Determine the best encoding. Compute the block lengths in bytes. */
        
opt_lenb = (s.opt_len+3+7) >>> 3;
        
static_lenb = (s.static_len+3+7) >>> 3;

        
// Tracev((stderr, "nopt %lu(%lu) stat %lu(%lu) stored %lu lit %u ",
        //        opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len,
        //        s->last_lit));

        
if (static_lenb <= opt_lenb) { opt_lenb static_lenb; }

      } else {
        
// Assert(buf != (char*)0, "lost buf");
        
opt_lenb static_lenb stored_len 5/* force a stored block */
      
}

      if ((
stored_len+<= opt_lenb) && (buf !== -1)) {
        
/* 4: two words for the lengths */

        /* The test buf != NULL is only necessary if LIT_BUFSIZE > WSIZE.
         * Otherwise we can't have processed more than WSIZE input bytes since
         * the last block flush, because compression would have been
         * successful. If LIT_BUFSIZE <= WSIZE, it is never too late to
         * transform a block into a stored block.
         */
        
_tr_stored_block(sbufstored_lenlast);

      } else if (
s.strategy === Z_FIXED || static_lenb === opt_lenb) {

        
send_bits(s, (STATIC_TREES<<1) + (last 0), 3);
        
compress_block(sstatic_ltreestatic_dtree);

      } else {
        
send_bits(s, (DYN_TREES<<1) + (last 0), 3);
        
send_all_trees(ss.l_desc.max_code+1s.d_desc.max_code+1max_blindex+1);
        
compress_block(ss.dyn_ltrees.dyn_dtree);
      }
      
// Assert (s->compressed_len == s->bits_sent, "bad compressed size");
      /* The above check is made mod 2^32, for files larger than 512 MB
       * and uLong implemented on 32 bits.
       */
      
init_block(s);

      if (
last) {
        
bi_windup(s);
      }
      
// Tracev((stderr,"ncomprlen %lu(%lu) ", s->compressed_len>>3,
      //       s->compressed_len-7*last));
    
}

    
/* ===========================================================================
     * Save the match info and tally the frequency counts. Return true if
     * the current block must be flushed.
     */
    
function _tr_tally(sdistlc)
    
//    deflate_state *s;
    //    unsigned dist;  /* distance of matched string */
    //    unsigned lc;    /* match length-MIN_MATCH or unmatched char (if dist==0) */
    
{
      
//var out_length, in_length, dcode;

      
s.pending_buf[s.d_buf s.last_lit 2]     = (dist >>> 8) & 0xff;
      
s.pending_buf[s.d_buf s.last_lit 1] = dist 0xff;

      
s.pending_buf[s.l_buf s.last_lit] = lc 0xff;
      
s.last_lit++;

      if (
dist === 0) {
        
/* lc is the unmatched char */
        
s.dyn_ltree[lc*2]/*.Freq*/++;
      } else {
        
s.matches++;
        
/* Here, lc is the match length - MIN_MATCH */
        
dist--;             /* dist = match distance - 1 */
        //Assert((ush)dist < (ush)MAX_DIST(s) &&
        //       (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) &&
        //       (ush)d_code(dist) < (ush)D_CODES,  "_tr_tally: bad match");

        
s.dyn_ltree[(_length_code[lc]+LITERALS+1) * 2]/*.Freq*/++;
        
s.dyn_dtree[d_code(dist) * 2]/*.Freq*/++;
      }

    
// (!) This block is disabled in zlib defailts,
    // don't enable it for binary compatibility

    //#ifdef TRUNCATE_BLOCK
    //  /* Try to guess if it is profitable to stop the current block here */
    //  if ((s.last_lit & 0x1fff) === 0 && s.level > 2) {
    //    /* Compute an upper bound for the compressed length */
    //    out_length = s.last_lit*8;
    //    in_length = s.strstart - s.block_start;
    //
    //    for (dcode = 0; dcode < D_CODES; dcode++) {
    //      out_length += s.dyn_dtree[dcode*2]/*.Freq*/ * (5 + extra_dbits[dcode]);
    //    }
    //    out_length >>>= 3;
    //    //Tracev((stderr,"nlast_lit %u, in %ld, out ~%ld(%ld%%) ",
    //    //       s->last_lit, in_length, out_length,
    //    //       100L - out_length*100L/in_length));
    //    if (s.matches < (s.last_lit>>1)/*int /2*/ && out_length < (in_length>>1)/*int /2*/) {
    //      return true;
    //    }
    //  }
    //#endif

      
return (s.last_lit === s.lit_bufsize-1);
      
/* We avoid equality with lit_bufsize because of wraparound at 64K
       * on 16 bit machines and because stored blocks are restricted to
       * 64K-1 bytes.
       */
    
}

    
exports._tr_init  _tr_init;
    
exports._tr_stored_block _tr_stored_block;
    
exports._tr_flush_block  _tr_flush_block;
    
exports._tr_tally _tr_tally;
    
exports._tr_align _tr_align;


/***/ },
/* 54 */
/***/ 
function(moduleexports) {

    
'use strict';

    
// Note: adler32 takes 12% for level 0 and 2% for level 6.
    // It doesn't worth to make additional optimizationa as in original.
    // Small size is preferable.

    
function adler32(adlerbuflenpos) {
      var 
s1 = (adler 0xffff) |0,
          
s2 = ((adler >>> 16) & 0xffff) |0,
          
0;

      while (
len !== 0) {
        
// Set limit ~ twice less than 5552, to keep
        // s2 in 31-bits, because we force signed ints.
        // in other case %= will fail.
        
len 2000 2000 len;
        
len -= n;

        do {
          
s1 = (s1 buf[pos++]) |0;
          
s2 = (s2 s1) |0;
        } while (--
n);

        
s1 %= 65521;
        
s2 %= 65521;
      }

      return (
s1 | (s2 << 16)) |0;
    }


    
module.exports adler32;


/***/ },
/* 55 */
/***/ 
function(moduleexports) {

    
'use strict';

    
// Note: we can't get significant speed boost here.
    // So write code to minimize size - no pregenerated tables
    // and array tools dependencies.


    // Use ordinary array, since untyped makes no boost here
    
function makeTable() {
      var 
ctable = [];

      for (var 
=0256n++) {
        
n;
        for (var 
=08k++) {
          
= ((c&1) ? (0xEDB88320 ^ (>>> 1)) : (>>> 1));
        }
        
table[n] = c;
      }

      return 
table;
    }

    
// Create table on load. Just 255 signed longs. Not a problem.
    
var crcTable makeTable();


    function 
crc32(crcbuflenpos) {
      var 
crcTable,
          
end pos len;

      
crc crc ^ (-1);

      for (var 
posendi++) {
        
crc = (crc >>> 8) ^ t[(crc buf[i]) & 0xFF];
      }

      return (
crc ^ (-1)); // >>> 0;
    
}


    
module.exports crc32;


/***/ },
/* 56 */
/***/ 
function(moduleexports__webpack_require__) {

    
'use strict';


    var 
utils __webpack_require__(52);
    var 
adler32 __webpack_require__(54);
    var 
crc32   __webpack_require__(55);
    var 
inflate_fast __webpack_require__(57);
    var 
inflate_table __webpack_require__(58);

    var 
CODES 0;
    var 
LENS 1;
    var 
DISTS 2;

    
/* Public constants ==========================================================*/
    /* ===========================================================================*/


    /* Allowed flush values; see deflate() and inflate() below for details */
    //var Z_NO_FLUSH      = 0;
    //var Z_PARTIAL_FLUSH = 1;
    //var Z_SYNC_FLUSH    = 2;
    //var Z_FULL_FLUSH    = 3;
    
var Z_FINISH        4;
    var 
Z_BLOCK         5;
    var 
Z_TREES         6;


    
/* Return codes for the compression/decompression functions. Negative values
     * are errors, positive values are used for special but normal events.
     */
    
var Z_OK            0;
    var 
Z_STREAM_END    1;
    var 
Z_NEED_DICT     2;
    
//var Z_ERRNO         = -1;
    
var Z_STREAM_ERROR  = -2;
    var 
Z_DATA_ERROR    = -3;
    var 
Z_MEM_ERROR     = -4;
    var 
Z_BUF_ERROR     = -5;
    
//var Z_VERSION_ERROR = -6;

    /* The deflate compression method */
    
var Z_DEFLATED  8;


    
/* STATES ====================================================================*/
    /* ===========================================================================*/


    
var    HEAD 1;       /* i: waiting for magic header */
    
var    FLAGS 2;      /* i: waiting for method and flags (gzip) */
    
var    TIME 3;       /* i: waiting for modification time (gzip) */
    
var    OS 4;         /* i: waiting for extra flags and operating system (gzip) */
    
var    EXLEN 5;      /* i: waiting for extra length (gzip) */
    
var    EXTRA 6;      /* i: waiting for extra bytes (gzip) */
    
var    NAME 7;       /* i: waiting for end of file name (gzip) */
    
var    COMMENT 8;    /* i: waiting for end of comment (gzip) */
    
var    HCRC 9;       /* i: waiting for header crc (gzip) */
    
var    DICTID 10;    /* i: waiting for dictionary check value */
    
var    DICT 11;      /* waiting for inflateSetDictionary() call */
    
var        TYPE 12;      /* i: waiting for type bits, including last-flag bit */
    
var        TYPEDO 13;    /* i: same, but skip check to exit inflate on new block */
    
var        STORED 14;    /* i: waiting for stored size (length and complement) */
    
var        COPY_ 15;     /* i/o: same as COPY below, but only first time in */
    
var        COPY 16;      /* i/o: waiting for input or output to copy stored block */
    
var        TABLE 17;     /* i: waiting for dynamic block table lengths */
    
var        LENLENS 18;   /* i: waiting for code length code lengths */
    
var        CODELENS 19;  /* i: waiting for length/lit and distance code lengths */
    
var            LEN_ 20;      /* i: same as LEN below, but only first time in */
    
var            LEN 21;       /* i: waiting for length/lit/eob code */
    
var            LENEXT 22;    /* i: waiting for length extra bits */
    
var            DIST 23;      /* i: waiting for distance code */
    
var            DISTEXT 24;   /* i: waiting for distance extra bits */
    
var            MATCH 25;     /* o: waiting for output space to copy string */
    
var            LIT 26;       /* o: waiting for output space to write literal */
    
var    CHECK 27;     /* i: waiting for 32-bit check value */
    
var    LENGTH 28;    /* i: waiting for 32-bit length (gzip) */
    
var    DONE 29;      /* finished check, done -- remain here until reset */
    
var    BAD 30;       /* got a data error -- remain here until reset */
    
var    MEM 31;       /* got an inflate() memory error -- remain here until reset */
    
var    SYNC 32;      /* looking for synchronization bytes to restart inflate() */

    /* ===========================================================================*/



    
var ENOUGH_LENS 852;
    var 
ENOUGH_DISTS 592;
    
//var ENOUGH =  (ENOUGH_LENS+ENOUGH_DISTS);

    
var MAX_WBITS 15;
    
/* 32K LZ77 window */
    
var DEF_WBITS MAX_WBITS;


    function 
ZSWAP32(q) {
      return  (((
>>> 24) & 0xff) +
              ((
>>> 8) & 0xff00) +
              ((
0xff00) << 8) +
              ((
0xff) << 24));
    }


    function 
InflateState() {
      
this.mode 0;             /* current inflate mode */
      
this.last false;          /* true if processing last block */
      
this.wrap 0;              /* bit 0 true for zlib, bit 1 true for gzip */
      
this.havedict false;      /* true if dictionary provided */
      
this.flags 0;             /* gzip header method and flags (0 if zlib) */
      
this.dmax 0;              /* zlib header max distance (INFLATE_STRICT) */
      
this.check 0;             /* protected copy of check value */
      
this.total 0;             /* protected copy of output count */
      // TODO: may be {}
      
this.head null;           /* where to save gzip header information */

      /* sliding window */
      
this.wbits 0;             /* log base 2 of requested window size */
      
this.wsize 0;             /* window size or zero if not using window */
      
this.whave 0;             /* valid bytes in the window */
      
this.wnext 0;             /* window write index */
      
this.window null;         /* allocated sliding window, if needed */

      /* bit accumulator */
      
this.hold 0;              /* input bit accumulator */
      
this.bits 0;              /* number of bits in "in" */

      /* for string and stored block copying */
      
this.length 0;            /* literal or length of data to copy */
      
this.offset 0;            /* distance back to copy string from */

      /* for table and code decoding */
      
this.extra 0;             /* extra bits needed */

      /* fixed and dynamic code tables */
      
this.lencode null;          /* starting table for length/literal codes */
      
this.distcode null;         /* starting table for distance codes */
      
this.lenbits 0;           /* index bits for lencode */
      
this.distbits 0;          /* index bits for distcode */

      /* dynamic table building */
      
this.ncode 0;             /* number of code length code lengths */
      
this.nlen 0;              /* number of length code lengths */
      
this.ndist 0;             /* number of distance code lengths */
      
this.have 0;              /* number of code lengths in lens[] */
      
this.next null;              /* next available space in codes[] */

      
this.lens = new utils.Buf16(320); /* temporary storage for code lengths */
      
this.work = new utils.Buf16(288); /* work area for code table building */

      /*
       because we don't have pointers in js, we use lencode and distcode directly
       as buffers so we don't need codes
      */
      //this.codes = new utils.Buf32(ENOUGH);       /* space for code tables */
      
this.lendyn null;              /* dynamic table for length/literal codes (JS specific) */
      
this.distdyn null;             /* dynamic table for distance codes (JS specific) */
      
this.sane 0;                   /* if false, allow invalid distance too far */
      
this.back 0;                   /* bits back of last unprocessed length/lit */
      
this.was 0;                    /* initial length of match */
    
}

    function 
inflateResetKeep(strm) {
      var 
state;

      if (!
strm || !strm.state) { return Z_STREAM_ERROR; }
      
state strm.state;
      
strm.total_in strm.total_out state.total 0;
      
strm.msg ''/*Z_NULL*/
      
if (state.wrap) {       /* to support ill-conceived Java test suite */
        
strm.adler state.wrap 1;
      }
      
state.mode HEAD;
      
state.last 0;
      
state.havedict 0;
      
state.dmax 32768;
      
state.head null/*Z_NULL*/;
      
state.hold 0;
      
state.bits 0;
      
//state.lencode = state.distcode = state.next = state.codes;
      
state.lencode state.lendyn = new utils.Buf32(ENOUGH_LENS);
      
state.distcode state.distdyn = new utils.Buf32(ENOUGH_DISTS);

      
state.sane 1;
      
state.back = -1;
      
//Tracev((stderr, "inflate: resetn"));
      
return Z_OK;
    }

    function 
inflateReset(strm) {
      var 
state;

      if (!
strm || !strm.state) { return Z_STREAM_ERROR; }
      
state strm.state;
      
state.wsize 0;
      
state.whave 0;
      
state.wnext 0;
      return 
inflateResetKeep(strm);

    }

    function 
inflateReset2(strmwindowBits) {
      var 
wrap;
      var 
state;

      
/* get the state */
      
if (!strm || !strm.state) { return Z_STREAM_ERROR; }
      
state strm.state;

      
/* extract wrap request from windowBits parameter */
      
if (windowBits 0) {
        
wrap 0;
        
windowBits = -windowBits;
      }
      else {
        
wrap = (windowBits >> 4) + 1;
        if (
windowBits 48) {
          
windowBits &= 15;
        }
      }

      
/* set number of window bits, free window if different */
      
if (windowBits && (windowBits || windowBits 15)) {
        return 
Z_STREAM_ERROR;
      }
      if (
state.window !== null && state.wbits !== windowBits) {
        
state.window null;
      }

      
/* update state and reset the rest of it */
      
state.wrap wrap;
      
state.wbits windowBits;
      return 
inflateReset(strm);
    }

    function 
inflateInit2(strmwindowBits) {
      var 
ret;
      var 
state;

      if (!
strm) { return Z_STREAM_ERROR; }
      
//strm.msg = Z_NULL;                 /* in case we return an error */

      
state = new InflateState();

      
//if (state === Z_NULL) return Z_MEM_ERROR;
      //Tracev((stderr, "inflate: allocatedn"));
      
strm.state state;
      
state.window null/*Z_NULL*/;
      
ret inflateReset2(strmwindowBits);
      if (
ret !== Z_OK) {
        
strm.state null/*Z_NULL*/;
      }
      return 
ret;
    }

    function 
inflateInit(strm) {
      return 
inflateInit2(strmDEF_WBITS);
    }


    
/*
     Return state with length and distance decoding tables and index sizes set to
     fixed code decoding.  Normally this returns fixed tables from inffixed.h.
     If BUILDFIXED is defined, then instead this routine builds the tables the
     first time it's called, and returns those tables the first time and
     thereafter.  This reduces the size of the code by about 2K bytes, in
     exchange for a little execution time.  However, BUILDFIXED should not be
     used for threaded applications, since the rewriting of the tables and virgin
     may not be thread-safe.
     */
    
var virgin true;

    var 
lenfixdistfix// We have no pointers in JS, so keep tables separate

    
function fixedtables(state) {
      
/* build fixed huffman tables if first call (may not be thread safe) */
      
if (virgin) {
        var 
sym;

        
lenfix = new utils.Buf32(512);
        
distfix = new utils.Buf32(32);

        
/* literal/length table */
        
sym 0;
        while (
sym 144) { state.lens[sym++] = 8; }
        while (
sym 256) { state.lens[sym++] = 9; }
        while (
sym 280) { state.lens[sym++] = 7; }
        while (
sym 288) { state.lens[sym++] = 8; }

        
inflate_table(LENS,  state.lens0288lenfix,   0state.work, {bits9});

        
/* distance table */
        
sym 0;
        while (
sym 32) { state.lens[sym++] = 5; }

        
inflate_table(DISTSstate.lens032,   distfix0state.work, {bits5});

        
/* do this just once */
        
virgin false;
      }

      
state.lencode lenfix;
      
state.lenbits 9;
      
state.distcode distfix;
      
state.distbits 5;
    }


    
/*
     Update the window with the last wsize (normally 32K) bytes written before
     returning.  If window does not exist yet, create it.  This is only called
     when a window is already in use, or when output has been written during this
     inflate call, but the end of the deflate stream has not been reached yet.
     It is also called to create a window for dictionary data when a dictionary
     is loaded.

     Providing output buffers larger than 32K to inflate() should provide a speed
     advantage, since only the last 32K of output is copied to the sliding window
     upon return from inflate(), and since all distances after the first 32K of
     output will fall in the output data, making match copies simpler and faster.
     The advantage may be dependent on the size of the processor's data caches.
     */
    
function updatewindow(strmsrcendcopy) {
      var 
dist;
      var 
state strm.state;

      
/* if it hasn't been done already, allocate space for the window */
      
if (state.window === null) {
        
state.wsize << state.wbits;
        
state.wnext 0;
        
state.whave 0;

        
state.window = new utils.Buf8(state.wsize);
      }

      
/* copy state->wsize or less output bytes into the circular window */
      
if (copy >= state.wsize) {
        
utils.arraySet(state.window,srcend state.wsizestate.wsize0);
        
state.wnext 0;
        
state.whave state.wsize;
      }
      else {
        
dist state.wsize state.wnext;
        if (
dist copy) {
          
dist copy;
        }
        
//zmemcpy(state->window + state->wnext, end - copy, dist);
        
utils.arraySet(state.window,srcend copydiststate.wnext);
        
copy -= dist;
        if (
copy) {
          
//zmemcpy(state->window, end - copy, copy);
          
utils.arraySet(state.window,srcend copycopy0);
          
state.wnext copy;
          
state.whave state.wsize;
        }
        else {
          
state.wnext += dist;
          if (
state.wnext === state.wsize) { state.wnext 0; }
          if (
state.whave state.wsize) { state.whave += dist; }
        }
      }
      return 
0;
    }

    function 
inflate(strmflush) {
      var 
state;
      var 
inputoutput;          // input/output buffers
      
var next;                   /* next input INDEX */
      
var put;                    /* next output INDEX */
      
var haveleft;             /* available input and output */
      
var hold;                   /* bit buffer */
      
var bits;                   /* bits in bit buffer */
      
var _in_out;              /* save starting available input and output */
      
var copy;                   /* number of stored or match bytes to copy */
      
var from;                   /* where to copy match bytes from */
      
var from_source;
      var 
here 0;               /* current decoding table entry */
      
var here_bitshere_ophere_val// paked "here" denormalized (JS specific)
      //var last;                   /* parent table entry */
      
var last_bitslast_oplast_val// paked "last" denormalized (JS specific)
      
var len;                    /* length to copy for repeats, bits to drop */
      
var ret;                    /* return code */
      
var hbuf = new utils.Buf8(4);    /* buffer for gzip header crc calculation */
      
var opts;

      var 
n// temporary var for NEED_BITS

      
var order /* permutation of code lengths */
        
[1617180879610511412313214115];


      if (!
strm || !strm.state || !strm.output ||
          (!
strm.input && strm.avail_in !== 0)) {
        return 
Z_STREAM_ERROR;
      }

      
state strm.state;
      if (
state.mode === TYPE) { state.mode TYPEDO; }    /* skip check */


      //--- LOAD() ---
      
put strm.next_out;
      
output strm.output;
      
left strm.avail_out;
      
next strm.next_in;
      
input strm.input;
      
have strm.avail_in;
      
hold state.hold;
      
bits state.bits;
      
//---

      
_in have;
      
_out left;
      
ret Z_OK;

      
inf_leave// goto emulation
      
for (;;) {
        switch (
state.mode) {
        case 
HEAD:
          if (
state.wrap === 0) {
            
state.mode TYPEDO;
            break;
          }
          
//=== NEEDBITS(16);
          
while (bits 16) {
            if (
have === 0) { break inf_leave; }
            
have--;
            
hold += input[next++] << bits;
            
bits += 8;
          }
          
//===//
          
if ((state.wrap 2) && hold === 0x8b1f) {  /* gzip header */
            
state.check 0/*crc32(0L, Z_NULL, 0)*/;
            
//=== CRC2(state.check, hold);
            
hbuf[0] = hold 0xff;
            
hbuf[1] = (hold >>> 8) & 0xff;
            
state.check crc32(state.checkhbuf20);
            
//===//

            //=== INITBITS();
            
hold 0;
            
bits 0;
            
//===//
            
state.mode FLAGS;
            break;
          }
          
state.flags 0;           /* expect zlib header */
          
if (state.head) {
            
state.head.done false;
          }
          if (!(
state.wrap 1) ||   /* check if zlib header allowed */
            
(((hold 0xff)/*BITS(8)*/ << 8) + (hold >> 8)) % 31) {
            
strm.msg 'incorrect header check';
            
state.mode BAD;
            break;
          }
          if ((
hold 0x0f)/*BITS(4)*/ !== Z_DEFLATED) {
            
strm.msg 'unknown compression method';
            
state.mode BAD;
            break;
          }
          
//--- DROPBITS(4) ---//
          
hold >>>= 4;
          
bits -= 4;
          
//---//
          
len = (hold 0x0f)/*BITS(4)*/ 8;
          if (
state.wbits === 0) {
            
state.wbits len;
          }
          else if (
len state.wbits) {
            
strm.msg 'invalid window size';
            
state.mode BAD;
            break;
          }
          
state.dmax << len;
          
//Tracev((stderr, "inflate:   zlib header okn"));
          
strm.adler state.check 1/*adler32(0L, Z_NULL, 0)*/;
          
state.mode hold 0x200 DICTID TYPE;
          
//=== INITBITS();
          
hold 0;
          
bits 0;
          
//===//
          
break;
        case 
FLAGS:
          
//=== NEEDBITS(16); */
          
while (bits 16) {
            if (
have === 0) { break inf_leave; }
            
have--;
            
hold += input[next++] << bits;
            
bits += 8;
          }
          
//===//
          
state.flags hold;
          if ((
state.flags 0xff) !== Z_DEFLATED) {
            
strm.msg 'unknown compression method';
            
state.mode BAD;
            break;
          }
          if (
state.flags 0xe000) {
            
strm.msg 'unknown header flags set';
            
state.mode BAD;
            break;
          }
          if (
state.head) {
            
state.head.text = ((hold >> 8) & 1);
          }
          if (
state.flags 0x0200) {
            
//=== CRC2(state.check, hold);
            
hbuf[0] = hold 0xff;
            
hbuf[1] = (hold >>> 8) & 0xff;
            
state.check crc32(state.checkhbuf20);
            
//===//
          
}
          
//=== INITBITS();
          
hold 0;
          
bits 0;
          
//===//
          
state.mode TIME;
          
/* falls through */
        
case TIME:
          
//=== NEEDBITS(32); */
          
while (bits 32) {
            if (
have === 0) { break inf_leave; }
            
have--;
            
hold += input[next++] << bits;
            
bits += 8;
          }
          
//===//
          
if (state.head) {
            
state.head.time hold;
          }
          if (
state.flags 0x0200) {
            
//=== CRC4(state.check, hold)
            
hbuf[0] = hold 0xff;
            
hbuf[1] = (hold >>> 8) & 0xff;
            
hbuf[2] = (hold >>> 16) & 0xff;
            
hbuf[3] = (hold >>> 24) & 0xff;
            
state.check crc32(state.checkhbuf40);
            
//===
          
}
          
//=== INITBITS();
          
hold 0;
          
bits 0;
          
//===//
          
state.mode OS;
          
/* falls through */
        
case OS:
          
//=== NEEDBITS(16); */
          
while (bits 16) {
            if (
have === 0) { break inf_leave; }
            
have--;
            
hold += input[next++] << bits;
            
bits += 8;
          }
          
//===//
          
if (state.head) {
            
state.head.xflags = (hold 0xff);
            
state.head.os = (hold >> 8);
          }
          if (
state.flags 0x0200) {
            
//=== CRC2(state.check, hold);
            
hbuf[0] = hold 0xff;
            
hbuf[1] = (hold >>> 8) & 0xff;
            
state.check crc32(state.checkhbuf20);
            
//===//
          
}
          
//=== INITBITS();
          
hold 0;
          
bits 0;
          
//===//
          
state.mode EXLEN;
          
/* falls through */
        
case EXLEN:
          if (
state.flags 0x0400) {
            
//=== NEEDBITS(16); */
            
while (bits 16) {
              if (
have === 0) { break inf_leave; }
              
have--;
              
hold += input[next++] << bits;
              
bits += 8;
            }
            
//===//
            
state.length hold;
            if (
state.head) {
              
state.head.extra_len hold;
            }
            if (
state.flags 0x0200) {
              
//=== CRC2(state.check, hold);
              
hbuf[0] = hold 0xff;
              
hbuf[1] = (hold >>> 8) & 0xff;
              
state.check crc32(state.checkhbuf20);
              
//===//
            
}
            
//=== INITBITS();
            
hold 0;
            
bits 0;
            
//===//
          
}
          else if (
state.head) {
            
state.head.extra null/*Z_NULL*/;
          }
          
state.mode EXTRA;
          
/* falls through */
        
case EXTRA:
          if (
state.flags 0x0400) {
            
copy state.length;
            if (
copy have) { copy have; }
            if (
copy) {
              if (
state.head) {
                
len state.head.extra_len state.length;
                if (!
state.head.extra) {
                  
// Use untyped array for more conveniend processing later
                  
state.head.extra = new Array(state.head.extra_len);
                }
                
utils.arraySet(
                  
state.head.extra,
                  
input,
                  
next,
                  
// extra field is limited to 65536 bytes
                  // - no need for additional size check
                  
copy,
                  
/*len + copy > state.head.extra_max - len ? state.head.extra_max : copy,*/
                  
len
                
);
                
//zmemcpy(state.head.extra + len, next,
                //        len + copy > state.head.extra_max ?
                //        state.head.extra_max - len : copy);
              
}
              if (
state.flags 0x0200) {
                
state.check crc32(state.checkinputcopynext);
              }
              
have -= copy;
              
next += copy;
              
state.length -= copy;
            }
            if (
state.length) { break inf_leave; }
          }
          
state.length 0;
          
state.mode NAME;
          
/* falls through */
        
case NAME:
          if (
state.flags 0x0800) {
            if (
have === 0) { break inf_leave; }
            
copy 0;
            do {
              
// TODO: 2 or 1 bytes?
              
len input[next copy++];
              
/* use constant limit because in js we should not preallocate memory */
              
if (state.head && len &&
                  (
state.length 65536 /*state.head.name_max*/)) {
                
state.head.name += String.fromCharCode(len);
              }
            } while (
len && copy have);

            if (
state.flags 0x0200) {
              
state.check crc32(state.checkinputcopynext);
            }
            
have -= copy;
            
next += copy;
            if (
len) { break inf_leave; }
          }
          else if (
state.head) {
            
state.head.name null;
          }
          
state.length 0;
          
state.mode COMMENT;
          
/* falls through */
        
case COMMENT:
          if (
state.flags 0x1000) {
            if (
have === 0) { break inf_leave; }
            
copy 0;
            do {
              
len input[next copy++];
              
/* use constant limit because in js we should not preallocate memory */
              
if (state.head && len &&
                  (
state.length 65536 /*state.head.comm_max*/)) {
                
state.head.comment += String.fromCharCode(len);
              }
            } while (
len && copy have);
            if (
state.flags 0x0200) {
              
state.check crc32(state.checkinputcopynext);
            }
            
have -= copy;
            
next += copy;
            if (
len) { break inf_leave; }
          }
          else if (
state.head) {
            
state.head.comment null;
          }
          
state.mode HCRC;
          
/* falls through */
        
case HCRC:
          if (
state.flags 0x0200) {
            
//=== NEEDBITS(16); */
            
while (bits 16) {
              if (
have === 0) { break inf_leave; }
              
have--;
              
hold += input[next++] << bits;
              
bits += 8;
            }
            
//===//
            
if (hold !== (state.check 0xffff)) {
              
strm.msg 'header crc mismatch';
              
state.mode BAD;
              break;
            }
            
//=== INITBITS();
            
hold 0;
            
bits 0;
            
//===//
          
}
          if (
state.head) {
            
state.head.hcrc = ((state.flags >> 9) & 1);
            
state.head.done true;
          }
          
strm.adler state.check /*crc32(0L, Z_NULL, 0)*/;
          
state.mode TYPE;
          break;
        case 
DICTID:
          
//=== NEEDBITS(32); */
          
while (bits 32) {
            if (
have === 0) { break inf_leave; }
            
have--;
            
hold += input[next++] << bits;
            
bits += 8;
          }
          
//===//
          
strm.adler state.check ZSWAP32(hold);
          
//=== INITBITS();
          
hold 0;
          
bits 0;
          
//===//
          
state.mode DICT;
          
/* falls through */
        
case DICT:
          if (
state.havedict === 0) {
            
//--- RESTORE() ---
            
strm.next_out put;
            
strm.avail_out left;
            
strm.next_in next;
            
strm.avail_in have;
            
state.hold hold;
            
state.bits bits;
            
//---
            
return Z_NEED_DICT;
          }
          
strm.adler state.check 1/*adler32(0L, Z_NULL, 0)*/;
          
state.mode TYPE;
          
/* falls through */
        
case TYPE:
          if (
flush === Z_BLOCK || flush === Z_TREES) { break inf_leave; }
          
/* falls through */
        
case TYPEDO:
          if (
state.last) {
            
//--- BYTEBITS() ---//
            
hold >>>= bits 7;
            
bits -= bits 7;
            
//---//
            
state.mode CHECK;
            break;
          }
          
//=== NEEDBITS(3); */
          
while (bits 3) {
            if (
have === 0) { break inf_leave; }
            
have--;
            
hold += input[next++] << bits;
            
bits += 8;
          }
          
//===//
          
state.last = (hold 0x01)/*BITS(1)*/;
          
//--- DROPBITS(1) ---//
          
hold >>>= 1;
          
bits -= 1;
          
//---//

          
switch ((hold 0x03)/*BITS(2)*/) {
          case 
0:                             /* stored block */
            //Tracev((stderr, "inflate:     stored block%sn",
            //        state.last ? " (last)" : ""));
            
state.mode STORED;
            break;
          case 
1:                             /* fixed block */
            
fixedtables(state);
            
//Tracev((stderr, "inflate:     fixed codes block%sn",
            //        state.last ? " (last)" : ""));
            
state.mode LEN_;             /* decode codes */
            
if (flush === Z_TREES) {
              
//--- DROPBITS(2) ---//
              
hold >>>= 2;
              
bits -= 2;
              
//---//
              
break inf_leave;
            }
            break;
          case 
2:                             /* dynamic block */
            //Tracev((stderr, "inflate:     dynamic codes block%sn",
            //        state.last ? " (last)" : ""));
            
state.mode TABLE;
            break;
          case 
3:
            
strm.msg 'invalid block type';
            
state.mode BAD;
          }
          
//--- DROPBITS(2) ---//
          
hold >>>= 2;
          
bits -= 2;
          
//---//
          
break;
        case 
STORED:
          
//--- BYTEBITS() ---// /* go to byte boundary */
          
hold >>>= bits 7;
          
bits -= bits 7;
          
//---//
          //=== NEEDBITS(32); */
          
while (bits 32) {
            if (
have === 0) { break inf_leave; }
            
have--;
            
hold += input[next++] << bits;
            
bits += 8;
          }
          
//===//
          
if ((hold 0xffff) !== ((hold >>> 16) ^ 0xffff)) {
            
strm.msg 'invalid stored block lengths';
            
state.mode BAD;
            break;
          }
          
state.length hold 0xffff;
          
//Tracev((stderr, "inflate:       stored length %un",
          //        state.length));
          //=== INITBITS();
          
hold 0;
          
bits 0;
          
//===//
          
state.mode COPY_;
          if (
flush === Z_TREES) { break inf_leave; }
          
/* falls through */
        
case COPY_:
          
state.mode COPY;
          
/* falls through */
        
case COPY:
          
copy state.length;
          if (
copy) {
            if (
copy have) { copy have; }
            if (
copy left) { copy left; }
            if (
copy === 0) { break inf_leave; }
            
//--- zmemcpy(put, next, copy); ---
            
utils.arraySet(outputinputnextcopyput);
            
//---//
            
have -= copy;
            
next += copy;
            
left -= copy;
            
put += copy;
            
state.length -= copy;
            break;
          }
          
//Tracev((stderr, "inflate:       stored endn"));
          
state.mode TYPE;
          break;
        case 
TABLE:
          
//=== NEEDBITS(14); */
          
while (bits 14) {
            if (
have === 0) { break inf_leave; }
            
have--;
            
hold += input[next++] << bits;
            
bits += 8;
          }
          
//===//
          
state.nlen = (hold 0x1f)/*BITS(5)*/ 257;
          
//--- DROPBITS(5) ---//
          
hold >>>= 5;
          
bits -= 5;
          
//---//
          
state.ndist = (hold 0x1f)/*BITS(5)*/ 1;
          
//--- DROPBITS(5) ---//
          
hold >>>= 5;
          
bits -= 5;
          
//---//
          
state.ncode = (hold 0x0f)/*BITS(4)*/ 4;
          
//--- DROPBITS(4) ---//
          
hold >>>= 4;
          
bits -= 4;
          
//---//
    //#ifndef PKZIP_BUG_WORKAROUND
          
if (state.nlen 286 || state.ndist 30) {
            
strm.msg 'too many length or distance symbols';
            
state.mode BAD;
            break;
          }
    
//#endif
          //Tracev((stderr, "inflate:       table sizes okn"));
          
state.have 0;
          
state.mode LENLENS;
          
/* falls through */
        
case LENLENS:
          while (
state.have state.ncode) {
            
//=== NEEDBITS(3);
            
while (bits 3) {
              if (
have === 0) { break inf_leave; }
              
have--;
              
hold += input[next++] << bits;
              
bits += 8;
            }
            
//===//
            
state.lens[order[state.have++]] = (hold 0x07);//BITS(3);
            //--- DROPBITS(3) ---//
            
hold >>>= 3;
            
bits -= 3;
            
//---//
          
}
          while (
state.have 19) {
            
state.lens[order[state.have++]] = 0;
          }
          
// We have separate tables & no pointers. 2 commented lines below not needed.
          //state.next = state.codes;
          //state.lencode = state.next;
          // Switch to use dynamic table
          
state.lencode state.lendyn;
          
state.lenbits 7;

          
opts = {bitsstate.lenbits};
          
ret inflate_table(CODESstate.lens019state.lencode0state.workopts);
          
state.lenbits opts.bits;

          if (
ret) {
            
strm.msg 'invalid code lengths set';
            
state.mode BAD;
            break;
          }
          
//Tracev((stderr, "inflate:       code lengths okn"));
          
state.have 0;
          
state.mode CODELENS;
          
/* falls through */
        
case CODELENS:
          while (
state.have state.nlen state.ndist) {
            for (;;) {
              
here state.lencode[hold & ((<< state.lenbits) - 1)];/*BITS(state.lenbits)*/
              
here_bits here >>> 24;
              
here_op = (here >>> 16) & 0xff;
              
here_val here 0xffff;

              if ((
here_bits) <= bits) { break; }
              
//--- PULLBYTE() ---//
              
if (have === 0) { break inf_leave; }
              
have--;
              
hold += input[next++] << bits;
              
bits += 8;
              
//---//
            
}
            if (
here_val 16) {
              
//--- DROPBITS(here.bits) ---//
              
hold >>>= here_bits;
              
bits -= here_bits;
              
//---//
              
state.lens[state.have++] = here_val;
            }
            else {
              if (
here_val === 16) {
                
//=== NEEDBITS(here.bits + 2);
                
here_bits 2;
                while (
bits n) {
                  if (
have === 0) { break inf_leave; }
                  
have--;
                  
hold += input[next++] << bits;
                  
bits += 8;
                }
                
//===//
                //--- DROPBITS(here.bits) ---//
                
hold >>>= here_bits;
                
bits -= here_bits;
                
//---//
                
if (state.have === 0) {
                  
strm.msg 'invalid bit length repeat';
                  
state.mode BAD;
                  break;
                }
                
len state.lens[state.have 1];
                
copy + (hold 0x03);//BITS(2);
                //--- DROPBITS(2) ---//
                
hold >>>= 2;
                
bits -= 2;
                
//---//
              
}
              else if (
here_val === 17) {
                
//=== NEEDBITS(here.bits + 3);
                
here_bits 3;
                while (
bits n) {
                  if (
have === 0) { break inf_leave; }
                  
have--;
                  
hold += input[next++] << bits;
                  
bits += 8;
                }
                
//===//
                //--- DROPBITS(here.bits) ---//
                
hold >>>= here_bits;
                
bits -= here_bits;
                
//---//
                
len 0;
                
copy + (hold 0x07);//BITS(3);
                //--- DROPBITS(3) ---//
                
hold >>>= 3;
                
bits -= 3;
                
//---//
              
}
              else {
                
//=== NEEDBITS(here.bits + 7);
                
here_bits 7;
                while (
bits n) {
                  if (
have === 0) { break inf_leave; }
                  
have--;
                  
hold += input[next++] << bits;
                  
bits += 8;
                }
                
//===//
                //--- DROPBITS(here.bits) ---//
                
hold >>>= here_bits;
                
bits -= here_bits;
                
//---//
                
len 0;
                
copy 11 + (hold 0x7f);//BITS(7);
                //--- DROPBITS(7) ---//
                
hold >>>= 7;
                
bits -= 7;
                
//---//
              
}
              if (
state.have copy state.nlen state.ndist) {
                
strm.msg 'invalid bit length repeat';
                
state.mode BAD;
                break;
              }
              while (
copy--) {
                
state.lens[state.have++] = len;
              }
            }
          }

          
/* handle error breaks in while */
          
if (state.mode === BAD) { break; }

          
/* check for end-of-block code (better have one) */
          
if (state.lens[256] === 0) {
            
strm.msg 'invalid code -- missing end-of-block';
            
state.mode BAD;
            break;
          }

          
/* build code tables -- note: do not change the lenbits or distbits
             values here (9 and 6) without reading the comments in inftrees.h
             concerning the ENOUGH constants, which depend on those values */
          
state.lenbits 9;

          
opts = {bitsstate.lenbits};
          
ret inflate_table(LENSstate.lens0state.nlenstate.lencode0state.workopts);
          
// We have separate tables & no pointers. 2 commented lines below not needed.
          // state.next_index = opts.table_index;
          
state.lenbits opts.bits;
          
// state.lencode = state.next;

          
if (ret) {
            
strm.msg 'invalid literal/lengths set';
            
state.mode BAD;
            break;
          }

          
state.distbits 6;
          
//state.distcode.copy(state.codes);
          // Switch to use dynamic table
          
state.distcode state.distdyn;
          
opts = {bitsstate.distbits};
          
ret inflate_table(DISTSstate.lensstate.nlenstate.ndiststate.distcode0state.workopts);
          
// We have separate tables & no pointers. 2 commented lines below not needed.
          // state.next_index = opts.table_index;
          
state.distbits opts.bits;
          
// state.distcode = state.next;

          
if (ret) {
            
strm.msg 'invalid distances set';
            
state.mode BAD;
            break;
          }
          
//Tracev((stderr, 'inflate:       codes okn'));
          
state.mode LEN_;
          if (
flush === Z_TREES) { break inf_leave; }
          
/* falls through */
        
case LEN_:
          
state.mode LEN;
          
/* falls through */
        
case LEN:
          if (
have >= && left >= 258) {
            
//--- RESTORE() ---
            
strm.next_out put;
            
strm.avail_out left;
            
strm.next_in next;
            
strm.avail_in have;
            
state.hold hold;
            
state.bits bits;
            
//---
            
inflate_fast(strm_out);
            
//--- LOAD() ---
            
put strm.next_out;
            
output strm.output;
            
left strm.avail_out;
            
next strm.next_in;
            
input strm.input;
            
have strm.avail_in;
            
hold state.hold;
            
bits state.bits;
            
//---

            
if (state.mode === TYPE) {
              
state.back = -1;
            }
            break;
          }
          
state.back 0;
          for (;;) {
            
here state.lencode[hold & ((<< state.lenbits) -1)];  /*BITS(state.lenbits)*/
            
here_bits here >>> 24;
            
here_op = (here >>> 16) & 0xff;
            
here_val here 0xffff;

            if (
here_bits <= bits) { break; }
            
//--- PULLBYTE() ---//
            
if (have === 0) { break inf_leave; }
            
have--;
            
hold += input[next++] << bits;
            
bits += 8;
            
//---//
          
}
          if (
here_op && (here_op 0xf0) === 0) {
            
last_bits here_bits;
            
last_op here_op;
            
last_val here_val;
            for (;;) {
              
here state.lencode[last_val +
                      ((
hold & ((<< (last_bits last_op)) -1))/*BITS(last.bits + last.op)*/ >> last_bits)];
              
here_bits here >>> 24;
              
here_op = (here >>> 16) & 0xff;
              
here_val here 0xffff;

              if ((
last_bits here_bits) <= bits) { break; }
              
//--- PULLBYTE() ---//
              
if (have === 0) { break inf_leave; }
              
have--;
              
hold += input[next++] << bits;
              
bits += 8;
              
//---//
            
}
            
//--- DROPBITS(last.bits) ---//
            
hold >>>= last_bits;
            
bits -= last_bits;
            
//---//
            
state.back += last_bits;
          }
          
//--- DROPBITS(here.bits) ---//
          
hold >>>= here_bits;
          
bits -= here_bits;
          
//---//
          
state.back += here_bits;
          
state.length here_val;
          if (
here_op === 0) {
            
//Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ?
            //        "inflate:         literal '%c'n" :
            //        "inflate:         literal 0x%02xn", here.val));
            
state.mode LIT;
            break;
          }
          if (
here_op 32) {
            
//Tracevv((stderr, "inflate:         end of blockn"));
            
state.back = -1;
            
state.mode TYPE;
            break;
          }
          if (
here_op 64) {
            
strm.msg 'invalid literal/length code';
            
state.mode BAD;
            break;
          }
          
state.extra here_op 15;
          
state.mode LENEXT;
          
/* falls through */
        
case LENEXT:
          if (
state.extra) {
            
//=== NEEDBITS(state.extra);
            
state.extra;
            while (
bits n) {
              if (
have === 0) { break inf_leave; }
              
have--;
              
hold += input[next++] << bits;
              
bits += 8;
            }
            
//===//
            
state.length += hold & ((<< state.extra) -1)/*BITS(state.extra)*/;
            
//--- DROPBITS(state.extra) ---//
            
hold >>>= state.extra;
            
bits -= state.extra;
            
//---//
            
state.back += state.extra;
          }
          
//Tracevv((stderr, "inflate:         length %un", state.length));
          
state.was state.length;
          
state.mode DIST;
          
/* falls through */
        
case DIST:
          for (;;) {
            
here state.distcode[hold & ((<< state.distbits) -1)];/*BITS(state.distbits)*/
            
here_bits here >>> 24;
            
here_op = (here >>> 16) & 0xff;
            
here_val here 0xffff;

            if ((
here_bits) <= bits) { break; }
            
//--- PULLBYTE() ---//
            
if (have === 0) { break inf_leave; }
            
have--;
            
hold += input[next++] << bits;
            
bits += 8;
            
//---//
          
}
          if ((
here_op 0xf0) === 0) {
            
last_bits here_bits;
            
last_op here_op;
            
last_val here_val;
            for (;;) {
              
here state.distcode[last_val +
                      ((
hold & ((<< (last_bits last_op)) -1))/*BITS(last.bits + last.op)*/ >> last_bits)];
              
here_bits here >>> 24;
              
here_op = (here >>> 16) & 0xff;
              
here_val here 0xffff;

              if ((
last_bits here_bits) <= bits) { break; }
              
//--- PULLBYTE() ---//
              
if (have === 0) { break inf_leave; }
              
have--;
              
hold += input[next++] << bits;
              
bits += 8;
              
//---//
            
}
            
//--- DROPBITS(last.bits) ---//
            
hold >>>= last_bits;
            
bits -= last_bits;
            
//---//
            
state.back += last_bits;
          }
          
//--- DROPBITS(here.bits) ---//
          
hold >>>= here_bits;
          
bits -= here_bits;
          
//---//
          
state.back += here_bits;
          if (
here_op 64) {
            
strm.msg 'invalid distance code';
            
state.mode BAD;
            break;
          }
          
state.offset here_val;
          
state.extra = (here_op) & 15;
          
state.mode DISTEXT;
          
/* falls through */
        
case DISTEXT:
          if (
state.extra) {
            
//=== NEEDBITS(state.extra);
            
state.extra;
            while (
bits n) {
              if (
have === 0) { break inf_leave; }
              
have--;
              
hold += input[next++] << bits;
              
bits += 8;
            }
            
//===//
            
state.offset += hold & ((<< state.extra) -1)/*BITS(state.extra)*/;
            
//--- DROPBITS(state.extra) ---//
            
hold >>>= state.extra;
            
bits -= state.extra;
            
//---//
            
state.back += state.extra;
          }
    
//#ifdef INFLATE_STRICT
          
if (state.offset state.dmax) {
            
strm.msg 'invalid distance too far back';
            
state.mode BAD;
            break;
          }
    
//#endif
          //Tracevv((stderr, "inflate:         distance %un", state.offset));
          
state.mode MATCH;
          
/* falls through */
        
case MATCH:
          if (
left === 0) { break inf_leave; }
          
copy _out left;
          if (
state.offset copy) {         /* copy from window */
            
copy state.offset copy;
            if (
copy state.whave) {
              if (
state.sane) {
                
strm.msg 'invalid distance too far back';
                
state.mode BAD;
                break;
              }
    
// (!) This block is disabled in zlib defailts,
    // don't enable it for binary compatibility
    //#ifdef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR
    //          Trace((stderr, "inflate.c too farn"));
    //          copy -= state.whave;
    //          if (copy > state.length) { copy = state.length; }
    //          if (copy > left) { copy = left; }
    //          left -= copy;
    //          state.length -= copy;
    //          do {
    //            output[put++] = 0;
    //          } while (--copy);
    //          if (state.length === 0) { state.mode = LEN; }
    //          break;
    //#endif
            
}
            if (
copy state.wnext) {
              
copy -= state.wnext;
              
from state.wsize copy;
            }
            else {
              
from state.wnext copy;
            }
            if (
copy state.length) { copy state.length; }
            
from_source state.window;
          }
          else {                              
/* copy from output */
            
from_source output;
            
from put state.offset;
            
copy state.length;
          }
          if (
copy left) { copy left; }
          
left -= copy;
          
state.length -= copy;
          do {
            
output[put++] = from_source[from++];
          } while (--
copy);
          if (
state.length === 0) { state.mode LEN; }
          break;
        case 
LIT:
          if (
left === 0) { break inf_leave; }
          
output[put++] = state.length;
          
left--;
          
state.mode LEN;
          break;
        case 
CHECK:
          if (
state.wrap) {
            
//=== NEEDBITS(32);
            
while (bits 32) {
              if (
have === 0) { break inf_leave; }
              
have--;
              
// Use '|' insdead of '+' to make sure that result is signed
              
hold |= input[next++] << bits;
              
bits += 8;
            }
            
//===//
            
_out -= left;
            
strm.total_out += _out;
            
state.total += _out;
            if (
_out) {
              
strm.adler state.check =
                  
/*UPDATE(state.check, put - _out, _out);*/
                  
(state.flags crc32(state.checkoutput_output _out) : adler32(state.checkoutput_output _out));

            }
            
_out left;
            
// NB: crc32 stored as signed 32-bit int, ZSWAP32 returns signed too
            
if ((state.flags hold ZSWAP32(hold)) !== state.check) {
              
strm.msg 'incorrect data check';
              
state.mode BAD;
              break;
            }
            
//=== INITBITS();
            
hold 0;
            
bits 0;
            
//===//
            //Tracev((stderr, "inflate:   check matches trailern"));
          
}
          
state.mode LENGTH;
          
/* falls through */
        
case LENGTH:
          if (
state.wrap && state.flags) {
            
//=== NEEDBITS(32);
            
while (bits 32) {
              if (
have === 0) { break inf_leave; }
              
have--;
              
hold += input[next++] << bits;
              
bits += 8;
            }
            
//===//
            
if (hold !== (state.total 0xffffffff)) {
              
strm.msg 'incorrect length check';
              
state.mode BAD;
              break;
            }
            
//=== INITBITS();
            
hold 0;
            
bits 0;
            
//===//
            //Tracev((stderr, "inflate:   length matches trailern"));
          
}
          
state.mode DONE;
          
/* falls through */
        
case DONE:
          
ret Z_STREAM_END;
          break 
inf_leave;
        case 
BAD:
          
ret Z_DATA_ERROR;
          break 
inf_leave;
        case 
MEM:
          return 
Z_MEM_ERROR;
        case 
SYNC:
          
/* falls through */
        
default:
          return 
Z_STREAM_ERROR;
        }
      }

      
// inf_leave <- here is real place for "goto inf_leave", emulated via "break inf_leave"

      /*
         Return from inflate(), updating the total counts and the check value.
         If there was no progress during the inflate() call, return a buffer
         error.  Call updatewindow() to create and/or update the window state.
         Note: a memory error from inflate() is non-recoverable.
       */

      //--- RESTORE() ---
      
strm.next_out put;
      
strm.avail_out left;
      
strm.next_in next;
      
strm.avail_in have;
      
state.hold hold;
      
state.bits bits;
      
//---

      
if (state.wsize || (_out !== strm.avail_out && state.mode BAD &&
                          (
state.mode CHECK || flush !== Z_FINISH))) {
        if (
updatewindow(strmstrm.outputstrm.next_out_out strm.avail_out)) {
          
state.mode MEM;
          return 
Z_MEM_ERROR;
        }
      }
      
_in -= strm.avail_in;
      
_out -= strm.avail_out;
      
strm.total_in += _in;
      
strm.total_out += _out;
      
state.total += _out;
      if (
state.wrap && _out) {
        
strm.adler state.check /*UPDATE(state.check, strm.next_out - _out, _out);*/
          
(state.flags crc32(state.checkoutput_outstrm.next_out _out) : adler32(state.checkoutput_outstrm.next_out _out));
      }
      
strm.data_type state.bits + (state.last 64 0) +
                        (
state.mode === TYPE 128 0) +
                        (
state.mode === LEN_ || state.mode === COPY_ 256 0);
      if (((
_in === && _out === 0) || flush === Z_FINISH) && ret === Z_OK) {
        
ret Z_BUF_ERROR;
      }
      return 
ret;
    }

    function 
inflateEnd(strm) {

      if (!
strm || !strm.state /*|| strm->zfree == (free_func)0*/) {
        return 
Z_STREAM_ERROR;
      }

      var 
state strm.state;
      if (
state.window) {
        
state.window null;
      }
      
strm.state null;
      return 
Z_OK;
    }

    function 
inflateGetHeader(strmhead) {
      var 
state;

      
/* check state */
      
if (!strm || !strm.state) { return Z_STREAM_ERROR; }
      
state strm.state;
      if ((
state.wrap 2) === 0) { return Z_STREAM_ERROR; }

      
/* save header structure */
      
state.head head;
      
head.done false;
      return 
Z_OK;
    }


    
exports.inflateReset inflateReset;
    
exports.inflateReset2 inflateReset2;
    
exports.inflateResetKeep inflateResetKeep;
    
exports.inflateInit inflateInit;
    
exports.inflateInit2 inflateInit2;
    
exports.inflate inflate;
    
exports.inflateEnd inflateEnd;
    
exports.inflateGetHeader inflateGetHeader;
    
exports.inflateInfo 'pako inflate (from Nodeca project)';

    
/* Not implemented
    exports.inflateCopy = inflateCopy;
    exports.inflateGetDictionary = inflateGetDictionary;
    exports.inflateMark = inflateMark;
    exports.inflatePrime = inflatePrime;
    exports.inflateSetDictionary = inflateSetDictionary;
    exports.inflateSync = inflateSync;
    exports.inflateSyncPoint = inflateSyncPoint;
    exports.inflateUndermine = inflateUndermine;
    */


/***/ 
},
/* 57 */
/***/ 
function(moduleexports) {

    
'use strict';

    
// See state defs from inflate.js
    
var BAD 30;       /* got a data error -- remain here until reset */
    
var TYPE 12;      /* i: waiting for type bits, including last-flag bit */

    /*
       Decode literal, length, and distance codes and write out the resulting
       literal and match bytes until either not enough input or output is
       available, an end-of-block is encountered, or a data error is encountered.
       When large enough input and output buffers are supplied to inflate(), for
       example, a 16K input buffer and a 64K output buffer, more than 95% of the
       inflate execution time is spent in this routine.

       Entry assumptions:

            state.mode === LEN
            strm.avail_in >= 6
            strm.avail_out >= 258
            start >= strm.avail_out
            state.bits < 8

       On return, state.mode is one of:

            LEN -- ran out of enough output space or enough available input
            TYPE -- reached end of block code, inflate() to interpret next block
            BAD -- error in block data

       Notes:

        - The maximum input bits used by a length/distance pair is 15 bits for the
          length code, 5 bits for the length extra, 15 bits for the distance code,
          and 13 bits for the distance extra.  This totals 48 bits, or six bytes.
          Therefore if strm.avail_in >= 6, then there is enough input to avoid
          checking for available input while decoding.

        - The maximum bytes that a single length/distance pair can output is 258
          bytes, which is the maximum length that can be coded.  inflate_fast()
          requires strm.avail_out >= 258 for each loop to avoid checking for
          output space.
     */
    
module.exports = function inflate_fast(strmstart) {
      var 
state;
      var 
_in;                    /* local strm.input */
      
var last;                   /* have enough input while in < last */
      
var _out;                   /* local strm.output */
      
var beg;                    /* inflate()'s initial strm.output */
      
var end;                    /* while out < end, enough space available */
    //#ifdef INFLATE_STRICT
      
var dmax;                   /* maximum distance from zlib header */
    //#endif
      
var wsize;                  /* window size or zero if not using window */
      
var whave;                  /* valid bytes in the window */
      
var wnext;                  /* window write index */
      
var window;                 /* allocated sliding window, if wsize != 0 */
      
var hold;                   /* local strm.hold */
      
var bits;                   /* local strm.bits */
      
var lcode;                  /* local strm.lencode */
      
var dcode;                  /* local strm.distcode */
      
var lmask;                  /* mask for first level of length codes */
      
var dmask;                  /* mask for first level of distance codes */
      
var here;                   /* retrieved table entry */
      
var op;                     /* code bits, operation, extra bits, or */
                                  /*  window position, window bytes to copy */
      
var len;                    /* match length, unused bytes */
      
var dist;                   /* match distance */
      
var from;                   /* where to copy match from */
      
var from_source;


      var 
inputoutput// JS specific, because we have no pointers

      /* copy state to local variables */
      
state strm.state;
      
//here = state.here;
      
_in strm.next_in;
      
input strm.input;
      
last _in + (strm.avail_in 5);
      
_out strm.next_out;
      
output strm.output;
      
beg _out - (start strm.avail_out);
      
end _out + (strm.avail_out 257);
    
//#ifdef INFLATE_STRICT
      
dmax state.dmax;
    
//#endif
      
wsize state.wsize;
      
whave state.whave;
      
wnext state.wnext;
      
window state.window;
      
hold state.hold;
      
bits state.bits;
      
lcode state.lencode;
      
dcode state.distcode;
      
lmask = (<< state.lenbits) - 1;
      
dmask = (<< state.distbits) - 1;


      
/* decode literals and length/distances until end-of-block or not enough
         input data or output space */

      
top:
      do {
        if (
bits 15) {
          
hold += input[_in++] << bits;
          
bits += 8;
          
hold += input[_in++] << bits;
          
bits += 8;
        }

        
here lcode[hold lmask];

        
dolen:
        for (;;) { 
// Goto emulation
          
op here >>> 24/*here.bits*/;
          
hold >>>= op;
          
bits -= op;
          
op = (here >>> 16) & 0xff/*here.op*/;
          if (
op === 0) {                          /* literal */
            //Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ?
            //        "inflate:         literal '%c'n" :
            //        "inflate:         literal 0x%02xn", here.val));
            
output[_out++] = here 0xffff/*here.val*/;
          }
          else if (
op 16) {                     /* length base */
            
len here 0xffff/*here.val*/;
            
op &= 15;                           /* number of extra bits */
            
if (op) {
              if (
bits op) {
                
hold += input[_in++] << bits;
                
bits += 8;
              }
              
len += hold & ((<< op) - 1);
              
hold >>>= op;
              
bits -= op;
            }
            
//Tracevv((stderr, "inflate:         length %un", len));
            
if (bits 15) {
              
hold += input[_in++] << bits;
              
bits += 8;
              
hold += input[_in++] << bits;
              
bits += 8;
            }
            
here dcode[hold dmask];

            
dodist:
            for (;;) { 
// goto emulation
              
op here >>> 24/*here.bits*/;
              
hold >>>= op;
              
bits -= op;
              
op = (here >>> 16) & 0xff/*here.op*/;

              if (
op 16) {                      /* distance base */
                
dist here 0xffff/*here.val*/;
                
op &= 15;                       /* number of extra bits */
                
if (bits op) {
                  
hold += input[_in++] << bits;
                  
bits += 8;
                  if (
bits op) {
                    
hold += input[_in++] << bits;
                    
bits += 8;
                  }
                }
                
dist += hold & ((<< op) - 1);
    
//#ifdef INFLATE_STRICT
                
if (dist dmax) {
                  
strm.msg 'invalid distance too far back';
                  
state.mode BAD;
                  break 
top;
                }
    
//#endif
                
hold >>>= op;
                
bits -= op;
                
//Tracevv((stderr, "inflate:         distance %un", dist));
                
op _out beg;                /* max distance in output */
                
if (dist op) {                /* see if copy from window */
                  
op dist op;               /* distance back in window */
                  
if (op whave) {
                    if (
state.sane) {
                      
strm.msg 'invalid distance too far back';
                      
state.mode BAD;
                      break 
top;
                    }

    
// (!) This block is disabled in zlib defailts,
    // don't enable it for binary compatibility
    //#ifdef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR
    //                if (len <= op - whave) {
    //                  do {
    //                    output[_out++] = 0;
    //                  } while (--len);
    //                  continue top;
    //                }
    //                len -= op - whave;
    //                do {
    //                  output[_out++] = 0;
    //                } while (--op > whave);
    //                if (op === 0) {
    //                  from = _out - dist;
    //                  do {
    //                    output[_out++] = output[from++];
    //                  } while (--len);
    //                  continue top;
    //                }
    //#endif
                  
}
                  
from 0// window index
                  
from_source window;
                  if (
wnext === 0) {           /* very common case */
                    
from += wsize op;
                    if (
op len) {         /* some from window */
                      
len -= op;
                      do {
                        
output[_out++] = window[from++];
                      } while (--
op);
                      
from _out dist;  /* rest from output */
                      
from_source output;
                    }
                  }
                  else if (
wnext op) {      /* wrap around window */
                    
from += wsize wnext op;
                    
op -= wnext;
                    if (
op len) {         /* some from end of window */
                      
len -= op;
                      do {
                        
output[_out++] = window[from++];
                      } while (--
op);
                      
from 0;
                      if (
wnext len) {  /* some from start of window */
                        
op wnext;
                        
len -= op;
                        do {
                          
output[_out++] = window[from++];
                        } while (--
op);
                        
from _out dist;      /* rest from output */
                        
from_source output;
                      }
                    }
                  }
                  else {                      
/* contiguous in window */
                    
from += wnext op;
                    if (
op len) {         /* some from window */
                      
len -= op;
                      do {
                        
output[_out++] = window[from++];
                      } while (--
op);
                      
from _out dist;  /* rest from output */
                      
from_source output;
                    }
                  }
                  while (
len 2) {
                    
output[_out++] = from_source[from++];
                    
output[_out++] = from_source[from++];
                    
output[_out++] = from_source[from++];
                    
len -= 3;
                  }
                  if (
len) {
                    
output[_out++] = from_source[from++];
                    if (
len 1) {
                      
output[_out++] = from_source[from++];
                    }
                  }
                }
                else {
                  
from _out dist;          /* copy direct from output */
                  
do {                        /* minimum length is three */
                    
output[_out++] = output[from++];
                    
output[_out++] = output[from++];
                    
output[_out++] = output[from++];
                    
len -= 3;
                  } while (
len 2);
                  if (
len) {
                    
output[_out++] = output[from++];
                    if (
len 1) {
                      
output[_out++] = output[from++];
                    }
                  }
                }
              }
              else if ((
op 64) === 0) {          /* 2nd level distance code */
                
here dcode[(here 0xffff)/*here.val*/ + (hold & ((<< op) - 1))];
                continue 
dodist;
              }
              else {
                
strm.msg 'invalid distance code';
                
state.mode BAD;
                break 
top;
              }

              break; 
// need to emulate goto via "continue"
            
}
          }
          else if ((
op 64) === 0) {              /* 2nd level length code */
            
here lcode[(here 0xffff)/*here.val*/ + (hold & ((<< op) - 1))];
            continue 
dolen;
          }
          else if (
op 32) {                     /* end-of-block */
            //Tracevv((stderr, "inflate:         end of blockn"));
            
state.mode TYPE;
            break 
top;
          }
          else {
            
strm.msg 'invalid literal/length code';
            
state.mode BAD;
            break 
top;
          }

          break; 
// need to emulate goto via "continue"
        
}
      } while (
_in last && _out end);

      
/* return unused bytes (on entry, bits < 8, so in won't go too far back) */
      
len bits >> 3;
      
_in -= len;
      
bits -= len << 3;
      
hold &= (<< bits) - 1;

      
/* update state and return */
      
strm.next_in _in;
      
strm.next_out _out;
      
strm.avail_in = (_in last + (last _in) : - (_in last));
      
strm.avail_out = (_out end 257 + (end _out) : 257 - (_out end));
      
state.hold hold;
      
state.bits bits;
      return;
    };


/***/ },
/* 58 */
/***/ 
function(moduleexports__webpack_require__) {

    
'use strict';


    var 
utils __webpack_require__(52);

    var 
MAXBITS 15;
    var 
ENOUGH_LENS 852;
    var 
ENOUGH_DISTS 592;
    
//var ENOUGH = (ENOUGH_LENS+ENOUGH_DISTS);

    
var CODES 0;
    var 
LENS 1;
    var 
DISTS 2;

    var 
lbase = [ /* Length codes 257..285 base */
      
3456789101113151719232731,
      
3543515967839911513116319522725800
    
];

    var 
lext = [ /* Length codes 257..285 extra */
      
16161616161616161717171718181818,
      
191919192020202021212121167278
    
];

    var 
dbase = [ /* Distance codes 0..29 base */
      
123457913172533496597129193,
      
257385513769102515372049307340976145,
      
819312289163852457700
    
];

    var 
dext = [ /* Distance codes 0..29 extra */
      
16161616171718181919202021212222,
      
23232424252526262727,
      
282829296464
    
];

    
module.exports = function inflate_table(typelenslens_indexcodestabletable_indexworkopts)
    {
      var 
bits opts.bits;
          
//here = opts.here; /* table entry for duplication */

      
var len 0;               /* a code's length in bits */
      
var sym 0;               /* index of code symbols */
      
var min 0max 0;          /* minimum and maximum code lengths */
      
var root 0;              /* number of index bits for root table */
      
var curr 0;              /* number of index bits for current table */
      
var drop 0;              /* code bits to drop for sub-table */
      
var left 0;                   /* number of prefix codes available */
      
var used 0;              /* code entries in table used */
      
var huff 0;              /* Huffman code */
      
var incr;              /* for incrementing code, index */
      
var fill;              /* index for replicating entries */
      
var low;               /* low bits for current root entry */
      
var mask;              /* mask for low root bits */
      
var next;             /* next available space in table */
      
var base null;     /* base value table to use */
      
var base_index 0;
    
//  var shoextra;    /* extra bits table to use */
      
var end;                    /* use base and extra for symbol > end */
      
var count = new utils.Buf16(MAXBITS+1); //[MAXBITS+1];    /* number of codes of each length */
      
var offs = new utils.Buf16(MAXBITS+1); //[MAXBITS+1];     /* offsets in table for each length */
      
var extra null;
      var 
extra_index 0;

      var 
here_bitshere_ophere_val;

      
/*
       Process a set of code lengths to create a canonical Huffman code.  The
       code lengths are lens[0..codes-1].  Each length corresponds to the
       symbols 0..codes-1.  The Huffman code is generated by first sorting the
       symbols by length from short to long, and retaining the symbol order
       for codes with equal lengths.  Then the code starts with all zero bits
       for the first code of the shortest length, and the codes are integer
       increments for the same length, and zeros are appended as the length
       increases.  For the deflate format, these bits are stored backwards
       from their more natural integer increment ordering, and so when the
       decoding tables are built in the large loop below, the integer codes
       are incremented backwards.

       This routine assumes, but does not check, that all of the entries in
       lens[] are in the range 0..MAXBITS.  The caller must assure this.
       1..MAXBITS is interpreted as that code length.  zero means that that
       symbol does not occur in this code.

       The codes are sorted by computing a count of codes for each length,
       creating from that a table of starting indices for each length in the
       sorted table, and then entering the symbols in order in the sorted
       table.  The sorted table is work[], with that space being provided by
       the caller.

       The length counts are used for other purposes as well, i.e. finding
       the minimum and maximum length codes, determining if there are any
       codes at all, checking for a valid set of lengths, and looking ahead
       at length counts to determine sub-table sizes when building the
       decoding tables.
       */

      /* accumulate lengths for codes (assumes lens[] all in 0..MAXBITS) */
      
for (len 0len <= MAXBITSlen++) {
        
count[len] = 0;
      }
      for (
sym 0sym codessym++) {
        
count[lens[lens_index sym]]++;
      }

      
/* bound code lengths, force root to be within code lengths */
      
root bits;
      for (
max MAXBITSmax >= 1max--) {
        if (
count[max] !== 0) { break; }
      }
      if (
root max) {
        
root max;
      }
      if (
max === 0) {                     /* no symbols to code at all */
        //table.op[opts.table_index] = 64;  //here.op = (var char)64;    /* invalid code marker */
        //table.bits[opts.table_index] = 1;   //here.bits = (var char)1;
        //table.val[opts.table_index++] = 0;   //here.val = (var short)0;
        
table[table_index++] = (<< 24) | (64 << 16) | 0;


        
//table.op[opts.table_index] = 64;
        //table.bits[opts.table_index] = 1;
        //table.val[opts.table_index++] = 0;
        
table[table_index++] = (<< 24) | (64 << 16) | 0;

        
opts.bits 1;
        return 
0;     /* no symbols, but wait for decoding to report error */
      
}
      for (
min 1min maxmin++) {
        if (
count[min] !== 0) { break; }
      }
      if (
root min) {
        
root min;
      }

      
/* check for an over-subscribed or incomplete set of lengths */
      
left 1;
      for (
len 1len <= MAXBITSlen++) {
        
left <<= 1;
        
left -= count[len];
        if (
left 0) {
          return -
1;
        }        
/* over-subscribed */
      
}
      if (
left && (type === CODES || max !== 1)) {
        return -
1;                      /* incomplete set */
      
}

      
/* generate offsets into symbol table for each length for sorting */
      
offs[1] = 0;
      for (
len 1len MAXBITSlen++) {
        
offs[len 1] = offs[len] + count[len];
      }

      
/* sort symbols by length, by symbol order within each length */
      
for (sym 0sym codessym++) {
        if (
lens[lens_index sym] !== 0) {
          
work[offs[lens[lens_index sym]]++] = sym;
        }
      }

      
/*
       Create and fill in decoding tables.  In this loop, the table being
       filled is at next and has curr index bits.  The code being used is huff
       with length len.  That code is converted to an index by dropping drop
       bits off of the bottom.  For codes where len is less than drop + curr,
       those top drop + curr - len bits are incremented through all values to
       fill the table with replicated entries.

       root is the number of index bits for the root table.  When len exceeds
       root, sub-tables are created pointed to by the root entry with an index
       of the low root bits of huff.  This is saved in low to check for when a
       new sub-table should be started.  drop is zero when the root table is
       being filled, and drop is root when sub-tables are being filled.

       When a new sub-table is needed, it is necessary to look ahead in the
       code lengths to determine what size sub-table is needed.  The length
       counts are used for this, and so count[] is decremented as codes are
       entered in the tables.

       used keeps track of how many table entries have been allocated from the
       provided *table space.  It is checked for LENS and DIST tables against
       the constants ENOUGH_LENS and ENOUGH_DISTS to guard against changes in
       the initial root table size constants.  See the comments in inftrees.h
       for more information.

       sym increments through all symbols, and the loop terminates when
       all codes of length max, i.e. all codes, have been processed.  This
       routine permits incomplete codes, so another loop after this one fills
       in the rest of the decoding tables with invalid code markers.
       */

      /* set up for code type */
      // poor man optimization - use if-else instead of switch,
      // to avoid deopts in old v8
      
if (type === CODES) {
        
base extra work;    /* dummy value--not used */
        
end 19;

      } else if (
type === LENS) {
        
base lbase;
        
base_index -= 257;
        
extra lext;
        
extra_index -= 257;
        
end 256;

      } else {                    
/* DISTS */
        
base dbase;
        
extra dext;
        
end = -1;
      }

      
/* initialize opts for loop */
      
huff 0;                   /* starting code */
      
sym 0;                    /* starting code symbol */
      
len min;                  /* starting code length */
      
next table_index;              /* current table to fill in */
      
curr root;                /* current table index bits */
      
drop 0;                   /* current bits to drop from code for index */
      
low = -1;                   /* trigger new sub-table when len > root */
      
used << root;          /* use root table entries */
      
mask used 1;            /* mask for comparing low */

      /* check available table space */
      
if ((type === LENS && used ENOUGH_LENS) ||
        (
type === DISTS && used ENOUGH_DISTS)) {
        return 
1;
      }

      var 
i=0;
      
/* process all codes and make table entries */
      
for (;;) {
        
i++;
        
/* create table entry */
        
here_bits len drop;
        if (
work[sym] < end) {
          
here_op 0;
          
here_val work[sym];
        }
        else if (
work[sym] > end) {
          
here_op extra[extra_index work[sym]];
          
here_val base[base_index work[sym]];
        }
        else {
          
here_op 32 64;         /* end of block */
          
here_val 0;
        }

        
/* replicate for those indices with low len bits equal to huff */
        
incr << (len drop);
        
fill << curr;
        
min fill;                 /* save offset to next table */
        
do {
          
fill -= incr;
          
table[next + (huff >> drop) + fill] = (here_bits << 24) | (here_op << 16) | here_val |0;
        } while (
fill !== 0);

        
/* backwards increment the len-bit code huff */
        
incr << (len 1);
        while (
huff incr) {
          
incr >>= 1;
        }
        if (
incr !== 0) {
          
huff &= incr 1;
          
huff += incr;
        } else {
          
huff 0;
        }

        
/* go to next symbol, update count, len */
        
sym++;
        if (--
count[len] === 0) {
          if (
len === max) { break; }
          
len lens[lens_index work[sym]];
        }

        
/* create new sub-table if needed */
        
if (len root && (huff mask) !== low) {
          
/* if first time, transition to sub-tables */
          
if (drop === 0) {
            
drop root;
          }

          
/* increment past last table */
          
next += min;            /* here min is 1 << curr */

          /* determine length of next table */
          
curr len drop;
          
left << curr;
          while (
curr drop max) {
            
left -= count[curr drop];
            if (
left <= 0) { break; }
            
curr++;
            
left <<= 1;
          }

          
/* check for enough space */
          
used += << curr;
          if ((
type === LENS && used ENOUGH_LENS) ||
            (
type === DISTS && used ENOUGH_DISTS)) {
            return 
1;
          }

          
/* point entry in root table to sub-table */
          
low huff mask;
          
/*table.op[low] = curr;
          table.bits[low] = root;
          table.val[low] = next - opts.table_index;*/
          
table[low] = (root << 24) | (curr << 16) | (next table_index) |0;
        }
      }

      
/* fill in remaining table entry if code is incomplete (guaranteed to have
       at most one remaining entry, since if the code is incomplete, the
       maximum code length that was allowed to get this far is one bit) */
      
if (huff !== 0) {
        
//table.op[next + huff] = 64;            /* invalid code marker */
        //table.bits[next + huff] = len - drop;
        //table.val[next + huff] = 0;
        
table[next huff] = ((len drop) << 24) | (64 << 16) |0;
      }

      
/* set return parameters */
      //opts.table_index += used;
      
opts.bits root;
      return 
0;
    };


/***/ },
/* 59 */
/***/ 
function(moduleexports) {

    
module.exports = {

      
/* Allowed flush values; see deflate() and inflate() below for details */
      
Z_NO_FLUSH:         0,
      
Z_PARTIAL_FLUSH:    1,
      
Z_SYNC_FLUSH:       2,
      
Z_FULL_FLUSH:       3,
      
Z_FINISH:           4,
      
Z_BLOCK:            5,
      
Z_TREES:            6,

      
/* Return codes for the compression/decompression functions. Negative values
      * are errors, positive values are used for special but normal events.
      */
      
Z_OK:               0,
      
Z_STREAM_END:       1,
      
Z_NEED_DICT:        2,
      
Z_ERRNO:           -1,
      
Z_STREAM_ERROR:    -2,
      
Z_DATA_ERROR:      -3,
      
//Z_MEM_ERROR:     -4,
      
Z_BUF_ERROR:       -5,
      
//Z_VERSION_ERROR: -6,

      /* compression levels */
      
Z_NO_COMPRESSION:         0,
      
Z_BEST_SPEED:             1,
      
Z_BEST_COMPRESSION:       9,
      
Z_DEFAULT_COMPRESSION:   -1,


      
Z_FILTERED:               1,
      
Z_HUFFMAN_ONLY:           2,
      
Z_RLE:                    3,
      
Z_FIXED:                  4,
      
Z_DEFAULT_STRATEGY:       0,

      
/* Possible values of the data_type field (though see inflate()) */
      
Z_BINARY:                 0,
      
Z_TEXT:                   1,
      
//Z_ASCII:                1, // = Z_TEXT (deprecated)
      
Z_UNKNOWN:                2,

      
/* The deflate compression method */
      
Z_DEFLATED:               8
      
//Z_NULL:                 null // Use -1 or null inline, depending on var type
    
};


/***/ },
/* 60 */
/***/ 
function(moduleexports__webpack_require__) {

    
/* WEBPACK VAR INJECTION */(function(global, process) {// Copyright Joyent, Inc. and other Node contributors.
    //
    // Permission is hereby granted, free of charge, to any person obtaining a
    // copy of this software and associated documentation files (the
    // "Software"), to deal in the Software without restriction, including
    // without limitation the rights to use, copy, modify, merge, publish,
    // distribute, sublicense, and/or sell copies of the Software, and to permit
    // persons to whom the Software is furnished to do so, subject to the
    // following conditions:
    //
    // The above copyright notice and this permission notice shall be included
    // in all copies or substantial portions of the Software.
    //
    // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
    // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
    // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
    // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
    // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
    // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
    // USE OR OTHER DEALINGS IN THE SOFTWARE.

    
var formatRegExp = /%[sdj%]/g;
    
exports.format = function(f) {
      if (!
isString(f)) {
        var 
objects = [];
        for (var 
0arguments.lengthi++) {
          
objects.push(inspect(arguments[i]));
        }
        return 
objects.join(' ');
      }

      var 
1;
      var 
args arguments;
      var 
len args.length;
      var 
str String(f).replace(formatRegExp, function(x) {
        if (
=== '%%') return '%';
        if (
>= len) return x;
        switch (
x) {
          case 
'%s': return String(args[i++]);
          case 
'%d': return Number(args[i++]);
          case 
'%j':
            try {
              return 
JSON.stringify(args[i++]);
            } catch (
_) {
              return 
'[Circular]';
            }
          default:
            return 
x;
        }
      });
      for (var 
args[i]; lenargs[++i]) {
        if (
isNull(x) || !isObject(x)) {
          
str += ' ' x;
        } else {
          
str += ' ' inspect(x);
        }
      }
      return 
str;
    };


    
// Mark that a method should not be used.
    // Returns a modified function which warns once by default.
    // If --no-deprecation is set, then it is a no-op.
    
exports.deprecate = function(fnmsg) {
      
// Allow for deprecating things in the process of starting up.
      
if (isUndefined(global.process)) {
        return function() {
          return 
exports.deprecate(fnmsg).apply(thisarguments);
        };
      }

      if (
process.noDeprecation === true) {
        return 
fn;
      }

      var 
warned false;
      function 
deprecated() {
        if (!
warned) {
          if (
process.throwDeprecation) {
            throw new 
Error(msg);
          } else if (
process.traceDeprecation) {
            
console.trace(msg);
          } else {
            
console.error(msg);
          }
          
warned true;
        }
        return 
fn.apply(thisarguments);
      }

      return 
deprecated;
    };


    var 
debugs = {};
    var 
debugEnviron;
    
exports.debuglog = function(set) {
      if (
isUndefined(debugEnviron))
        
debugEnviron process.env.NODE_DEBUG || '';
      
set set.toUpperCase();
      if (!
debugs[set]) {
        if (new 
RegExp('\b' set '\b''i').test(debugEnviron)) {
          var 
pid process.pid;
          
debugs[set] = function() {
            var 
msg exports.format.apply(exportsarguments);
            
console.error('%s %d: %s'setpidmsg);
          };
        } else {
          
debugs[set] = function() {};
        }
      }
      return 
debugs[set];
    };


    
/**
     * Echos the value of a value. Trys to print the value out
     * in the best way possible given the different types.
     *
     * @param {Object} obj The object to print out.
     * @param {Object} opts Optional options object that alters the output.
     */
    /* legacy: obj, showHidden, depth, colors*/
    
function inspect(objopts) {
      
// default options
      
var ctx = {
        
seen: [],
        
stylizestylizeNoColor
      
};
      
// legacy...
      
if (arguments.length >= 3ctx.depth arguments[2];
      if (
arguments.length >= 4ctx.colors arguments[3];
      if (
isBoolean(opts)) {
        
// legacy...
        
ctx.showHidden opts;
      } else if (
opts) {
        
// got an "options" object
        
exports._extend(ctxopts);
      }
      
// set default options
      
if (isUndefined(ctx.showHidden)) ctx.showHidden false;
      if (
isUndefined(ctx.depth)) ctx.depth 2;
      if (
isUndefined(ctx.colors)) ctx.colors false;
      if (
isUndefined(ctx.customInspect)) ctx.customInspect true;
      if (
ctx.colorsctx.stylize stylizeWithColor;
      return 
formatValue(ctxobjctx.depth);
    }
    
exports.inspect inspect;


    
// http://en.wikipedia.org/wiki/ANSI_escape_code#graphics
    
inspect.colors = {
      
'bold' : [122],
      
'italic' : [323],
      
'underline' : [424],
      
'inverse' : [727],
      
'white' : [3739],
      
'grey' : [9039],
      
'black' : [3039],
      
'blue' : [3439],
      
'cyan' : [3639],
      
'green' : [3239],
      
'magenta' : [3539],
      
'red' : [3139],
      
'yellow' : [3339]
    };

    
// Don't use 'blue' not visible on cmd.exe
    
inspect.styles = {
      
'special''cyan',
      
'number''yellow',
      
'boolean''yellow',
      
'undefined''grey',
      
'null''bold',
      
'string''green',
      
'date''magenta',
      
// "name": intentionally not styling
      
'regexp''red'
    
};


    function 
stylizeWithColor(strstyleType) {
      var 
style inspect.styles[styleType];

      if (
style) {
        return 
'u001b[' inspect.colors[style][0] + 'm' str +
               
'u001b[' inspect.colors[style][1] + 'm';
      } else {
        return 
str;
      }
    }


    function 
stylizeNoColor(strstyleType) {
      return 
str;
    }


    function 
arrayToHash(array) {
      var 
hash = {};

      array.forEach(function(
validx) {
        
hash[val] = true;
      });

      return 
hash;
    }


    function 
formatValue(ctxvaluerecurseTimes) {
      
// Provide a hook for user-specified inspect functions.
      // Check that value is an object with an inspect function on it
      
if (ctx.customInspect &&
          
value &&
          
isFunction(value.inspect) &&
          
// Filter out the util module, it's inspect function is special
          
value.inspect !== exports.inspect &&
          
// Also filter out any prototype objects using the circular check.
          
!(value.constructor && value.constructor.prototype === value)) {
        var 
ret value.inspect(recurseTimesctx);
        if (!
isString(ret)) {
          
ret formatValue(ctxretrecurseTimes);
        }
        return 
ret;
      }

      
// Primitive types cannot have properties
      
var primitive formatPrimitive(ctxvalue);
      if (
primitive) {
        return 
primitive;
      }

      
// Look up the keys of the object.
      
var keys Object.keys(value);
      var 
visibleKeys arrayToHash(keys);

      if (
ctx.showHidden) {
        
keys Object.getOwnPropertyNames(value);
      }

      
// IE doesn't make error fields non-enumerable
      // http://msdn.microsoft.com/en-us/library/ie/dww52sbt(v=vs.94).aspx
      
if (isError(value)
          && (
keys.indexOf('message') >= || keys.indexOf('description') >= 0)) {
        return 
formatError(value);
      }

      
// Some type of object without properties can be shortcutted.
      
if (keys.length === 0) {
        if (
isFunction(value)) {
          var 
name value.name ': ' value.name '';
          return 
ctx.stylize('[Function' name ']''special');
        }
        if (
isRegExp(value)) {
          return 
ctx.stylize(RegExp.prototype.toString.call(value), 'regexp');
        }
        if (
isDate(value)) {
          return 
ctx.stylize(Date.prototype.toString.call(value), 'date');
        }
        if (
isError(value)) {
          return 
formatError(value);
        }
      }

      var 
base '', array = falsebraces = ['{''}'];

      
// Make Array say that they are Array
      
if (isArray(value)) {
        array = 
true;
        
braces = ['['']'];
      }

      
// Make functions say that they are functions
      
if (isFunction(value)) {
        var 
value.name ': ' value.name '';
        
base ' [Function' ']';
      }

      
// Make RegExps say that they are RegExps
      
if (isRegExp(value)) {
        
base ' ' RegExp.prototype.toString.call(value);
      }

      
// Make dates with properties first say the date
      
if (isDate(value)) {
        
base ' ' Date.prototype.toUTCString.call(value);
      }

      
// Make error with message first say the error
      
if (isError(value)) {
        
base ' ' formatError(value);
      }

      if (
keys.length === && (!array || value.length == 0)) {
        return 
braces[0] + base braces[1];
      }

      if (
recurseTimes 0) {
        if (
isRegExp(value)) {
          return 
ctx.stylize(RegExp.prototype.toString.call(value), 'regexp');
        } else {
          return 
ctx.stylize('[Object]''special');
        }
      }

      
ctx.seen.push(value);

      var 
output;
      if (array) {
        
output formatArray(ctxvaluerecurseTimesvisibleKeyskeys);
      } else {
        
output keys.map(function(key) {
          return 
formatProperty(ctxvaluerecurseTimesvisibleKeyskey, array);
        });
      }

      
ctx.seen.pop();

      return 
reduceToSingleString(outputbasebraces);
    }


    function 
formatPrimitive(ctxvalue) {
      if (
isUndefined(value))
        return 
ctx.stylize('undefined''undefined');
      if (
isString(value)) {
        var 
simple ''' + JSON.stringify(value).replace(/^"|"$/g, '')
                                                 .replace(/'
/g"\'")
                                                 .
replace(/\"/g, '"') + ''';
        return 
ctx.stylize(simple'string');
      }
      if (
isNumber(value))
        return 
ctx.stylize('' value'number');
      if (
isBoolean(value))
        return 
ctx.stylize('' value'boolean');
      
// For some reason typeof null is "object", so special case here.
      
if (isNull(value))
        return 
ctx.stylize('null''null');
    }


    function 
formatError(value) {
      return 
'[' Error.prototype.toString.call(value) + ']';
    }


    function 
formatArray(ctxvaluerecurseTimesvisibleKeyskeys) {
      var 
output = [];
      for (var 
0value.lengthl; ++i) {
        if (
hasOwnProperty(valueString(i))) {
          
output.push(formatProperty(ctxvaluerecurseTimesvisibleKeys,
              
String(i), true));
        } else {
          
output.push('');
        }
      }
      
keys.forEach(function(key) {
        if (!
key.match(/^d+$/)) {
          
output.push(formatProperty(ctxvaluerecurseTimesvisibleKeys,
              
keytrue));
        }
      });
      return 
output;
    }


    function 
formatProperty(ctxvaluerecurseTimesvisibleKeyskey, array) {
      var 
namestrdesc;
      
desc Object.getOwnPropertyDescriptor(valuekey) || { valuevalue[key] };
      if (
desc.get) {
        if (
desc.set) {
          
str ctx.stylize('[Getter/Setter]''special');
        } else {
          
str ctx.stylize('[Getter]''special');
        }
      } else {
        if (
desc.set) {
          
str ctx.stylize('[Setter]''special');
        }
      }
      if (!
hasOwnProperty(visibleKeyskey)) {
        
name '[' key ']';
      }
      if (!
str) {
        if (
ctx.seen.indexOf(desc.value) < 0) {
          if (
isNull(recurseTimes)) {
            
str formatValue(ctxdesc.valuenull);
          } else {
            
str formatValue(ctxdesc.valuerecurseTimes 1);
          }
          if (
str.indexOf('n') > -1) {
            if (array) {
              
str str.split('n').map(function(line) {
                return 
'  ' line;
              }).
join('n').substr(2);
            } else {
              
str 'n' str.split('n').map(function(line) {
                return 
'   ' line;
              }).
join('n');
            }
          }
        } else {
          
str ctx.stylize('[Circular]''special');
        }
      }
      if (
isUndefined(name)) {
        if (array && 
key.match(/^d+$/)) {
          return 
str;
        }
        
name JSON.stringify('' key);
        if (
name.match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)) {
          
name name.substr(1name.length 2);
          
name ctx.stylize(name'name');
        } else {
          
name name.replace(/'/g, "\'")
                     .replace(/\"/g, '"')
                     .replace(/(^"
|"$)/g, "'");
          name = ctx.stylize(name, '
string');
        }
      }

      return name + '
' + str;
    }


    function reduceToSingleString(output, base, braces) {
      var numLinesEst = 0;
      var length = output.reduce(function(prev, cur) {
        numLinesEst++;
        if (cur.indexOf('
n') >= 0) numLinesEst++;
        return prev + cur.replace(/u001b[dd?m/g, '').length + 1;
      }, 0);

      if (length > 60) {
        return braces[0] +
               (base === '' ? '' : base + '
') +
               ' ' +
               output.join('
,n  ') +
               ' ' +
               braces[1];
      }

      return braces[0] + base + ' ' + output.join('
') + ' ' + braces[1];
    }


    // NOTE: These type checking functions intentionally don'
use `instanceof`
    
// because it is fragile and can be easily faked with `Object.create()`.
    
function isArray(ar) {
      return Array.
isArray(ar);
    }
    
exports.isArray isArray;

    function 
isBoolean(arg) {
      return 
typeof arg === 'boolean';
    }
    
exports.isBoolean isBoolean;

    function 
isNull(arg) {
      return 
arg === null;
    }
    
exports.isNull isNull;

    function 
isNullOrUndefined(arg) {
      return 
arg == null;
    }
    
exports.isNullOrUndefined isNullOrUndefined;

    function 
isNumber(arg) {
      return 
typeof arg === 'number';
    }
    
exports.isNumber isNumber;

    function 
isString(arg) {
      return 
typeof arg === 'string';
    }
    
exports.isString isString;

    function 
isSymbol(arg) {
      return 
typeof arg === 'symbol';
    }
    
exports.isSymbol isSymbol;

    function 
isUndefined(arg) {
      return 
arg === void 0;
    }
    
exports.isUndefined isUndefined;

    function 
isRegExp(re) {
      return 
isObject(re) && objectToString(re) === '[object RegExp]';
    }
    
exports.isRegExp isRegExp;

    function 
isObject(arg) {
      return 
typeof arg === 'object' && arg !== null;
    }
    
exports.isObject isObject;

    function 
isDate(d) {
      return 
isObject(d) && objectToString(d) === '[object Date]';
    }
    
exports.isDate isDate;

    function 
isError(e) {
      return 
isObject(e) &&
          (
objectToString(e) === '[object Error]' || instanceof Error);
    }
    
exports.isError isError;

    function 
isFunction(arg) {
      return 
typeof arg === 'function';
    }
    
exports.isFunction isFunction;

    function 
isPrimitive(arg) {
      return 
arg === null ||
             
typeof arg === 'boolean' ||
             
typeof arg === 'number' ||
             
typeof arg === 'string' ||
             
typeof arg === 'symbol' ||  // ES6 symbol
             
typeof arg === 'undefined';
    }
    
exports.isPrimitive isPrimitive;

    
exports.isBuffer __webpack_require__(61);

    function 
objectToString(o) {
      return 
Object.prototype.toString.call(o);
    }


    function 
pad(n) {
      return 
10 '0' n.toString(10) : n.toString(10);
    }


    var 
months = ['Jan''Feb''Mar''Apr''May''Jun''Jul''Aug''Sep',
                  
'Oct''Nov''Dec'];

    
// 26 Feb 16:19:34
    
function timestamp() {
      var 
= new Date();
      var 
time = [pad(d.getHours()),
                  
pad(d.getMinutes()),
                  
pad(d.getSeconds())].join(':');
      return [
d.getDate(), months[d.getMonth()], time].join(' ');
    }


    
// log is just a thin wrapper to console.log that prepends a timestamp
    
exports.log = function() {
      
console.log('%s - %s'timestamp(), exports.format.apply(exportsarguments));
    };


    
/**
     * Inherit the prototype methods from one constructor into another.
     *
     * The Function.prototype.inherits from lang.js rewritten as a standalone
     * function (not on Function.prototype). NOTE: If this file is to be loaded
     * during bootstrapping this function needs to be rewritten using some native
     * functions as prototype setup using normal JavaScript does not work as
     * expected during bootstrapping (see mirror.js in r114903).
     *
     * @param {function} ctor Constructor function which needs to inherit the
     *     prototype.
     * @param {function} superCtor Constructor function to inherit prototype from.
     */
    
exports.inherits __webpack_require__(62);

    
exports._extend = function(originadd) {
      
// Don't do anything if add isn't an object
      
if (!add || !isObject(add)) return origin;

      var 
keys Object.keys(add);
      var 
keys.length;
      while (
i--) {
        
origin[keys[i]] = add[keys[i]];
      }
      return 
origin;
    };

    function 
hasOwnProperty(objprop) {
      return 
Object.prototype.hasOwnProperty.call(objprop);
    }

    
/* WEBPACK VAR INJECTION */}.call(exports, (function() { return this; }()), __webpack_require__(30)))

/***/ },
/* 61 */
/***/ 
function(moduleexports) {

    
module.exports = function isBuffer(arg) {
      return 
arg && typeof arg === 'object'
        
&& typeof arg.copy === 'function'
        
&& typeof arg.fill === 'function'
        
&& typeof arg.readUInt8 === 'function';
    }

/***/ },
/* 62 */
/***/ 
function(moduleexports) {

    if (
typeof Object.create === 'function') {
      
// implementation from standard node.js 'util' module
      
module.exports = function inherits(ctorsuperCtor) {
        
ctor.super_ superCtor
        ctor
.prototype Object.create(superCtor.prototype, {
          
constructor: {
            
valuector,
            
enumerablefalse,
            
writabletrue,
            
configurabletrue
          
}
        });
      };
    } else {
      
// old school shim for old browsers
      
module.exports = function inherits(ctorsuperCtor) {
        
ctor.super_ superCtor
        
var TempCtor = function () {}
        
TempCtor.prototype superCtor.prototype
        ctor
.prototype = new TempCtor()
        
ctor.prototype.constructor ctor
      
}
    }


/***/ },
/* 63 */
/***/ 
function(moduleexports__webpack_require__) {

    
// http://wiki.commonjs.org/wiki/Unit_Testing/1.0
    //
    // THIS IS NOT TESTED NOR LIKELY TO WORK OUTSIDE V8!
    //
    // Originally from narwhal.js (http://narwhaljs.org)
    // Copyright (c) 2009 Thomas Robinson <280north.com>
    //
    // Permission is hereby granted, free of charge, to any person obtaining a copy
    // of this software and associated documentation files (the 'Software'), to
    // deal in the Software without restriction, including without limitation the
    // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
    // sell copies of the Software, and to permit persons to whom the Software is
    // furnished to do so, subject to the following conditions:
    //
    // The above copyright notice and this permission notice shall be included in
    // all copies or substantial portions of the Software.
    //
    // THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    // AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
    // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
    // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

    // when used in node, this will actually load the util module we depend on
    // versus loading the builtin util module as happens otherwise
    // this is a bug in node module loading as far as I am concerned
    
var util __webpack_require__(60);

    var 
pSlice = Array.prototype.slice;
    var 
hasOwn Object.prototype.hasOwnProperty;

    
// 1. The assert module provides functions that throw
    // AssertionError's when particular conditions are not met. The
    // assert module must conform to the following interface.

    
var assert module.exports ok;

    
// 2. The AssertionError is defined in assert.
    // new assert.AssertionError({ message: message,
    //                             actual: actual,
    //                             expected: expected })

    
assert.AssertionError = function AssertionError(options) {
      
this.name 'AssertionError';
      
this.actual options.actual;
      
this.expected options.expected;
      
this.operator options.operator;
      if (
options.message) {
        
this.message options.message;
        
this.generatedMessage false;
      } else {
        
this.message getMessage(this);
        
this.generatedMessage true;
      }
      var 
stackStartFunction options.stackStartFunction || fail;

      if (
Error.captureStackTrace) {
        
Error.captureStackTrace(thisstackStartFunction);
      }
      else {
        
// non v8 browsers so we can have a stacktrace
        
var err = new Error();
        if (
err.stack) {
          var 
out err.stack;

          
// try to strip useless frames
          
var fn_name stackStartFunction.name;
          var 
idx out.indexOf('n' fn_name);
          if (
idx >= 0) {
            
// once we have located the function frame
            // we need to strip out everything before it (and its line)
            
var next_line out.indexOf('n'idx 1);
            
out out.substring(next_line 1);
          }

          
this.stack out;
        }
      }
    };

    
// assert.AssertionError instanceof Error
    
util.inherits(assert.AssertionErrorError);

    function 
replacer(keyvalue) {
      if (
util.isUndefined(value)) {
        return 
'' value;
      }
      if (
util.isNumber(value) && !isFinite(value)) {
        return 
value.toString();
      }
      if (
util.isFunction(value) || util.isRegExp(value)) {
        return 
value.toString();
      }
      return 
value;
    }

    function 
truncate(sn) {
      if (
util.isString(s)) {
        return 
s.length s.slice(0n);
      } else {
        return 
s;
      }
    }

    function 
getMessage(self) {
      return 
truncate(JSON.stringify(self.actualreplacer), 128) + ' ' +
             
self.operator ' ' +
             
truncate(JSON.stringify(self.expectedreplacer), 128);
    }

    
// At present only the three keys mentioned above are used and
    // understood by the spec. Implementations or sub modules can pass
    // other keys to the AssertionError's constructor - they will be
    // ignored.

    // 3. All of the following functions must throw an AssertionError
    // when a corresponding condition is not met, with a message that
    // may be undefined if not provided.  All assertion methods provide
    // both the actual and expected values to the assertion error for
    // display purposes.

    
function fail(actualexpectedmessageoperatorstackStartFunction) {
      throw new 
assert.AssertionError({
        
messagemessage,
        
actualactual,
        
expectedexpected,
        
operatoroperator,
        
stackStartFunctionstackStartFunction
      
});
    }

    
// EXTENSION! allows for well behaved errors defined elsewhere.
    
assert.fail fail;

    
// 4. Pure assertion tests whether a value is truthy, as determined
    // by !!guard.
    // assert.ok(guard, message_opt);
    // This statement is equivalent to assert.equal(true, !!guard,
    // message_opt);. To test strictly for the value true, use
    // assert.strictEqual(true, guard, message_opt);.

    
function ok(valuemessage) {
      if (!
valuefail(valuetruemessage'=='assert.ok);
    }
    
assert.ok ok;

    
// 5. The equality assertion tests shallow, coercive equality with
    // ==.
    // assert.equal(actual, expected, message_opt);

    
assert.equal = function equal(actualexpectedmessage) {
      if (
actual != expectedfail(actualexpectedmessage'=='assert.equal);
    };

    
// 6. The non-equality assertion tests for whether two objects are not equal
    // with != assert.notEqual(actual, expected, message_opt);

    
assert.notEqual = function notEqual(actualexpectedmessage) {
      if (
actual == expected) {
        
fail(actualexpectedmessage'!='assert.notEqual);
      }
    };

    
// 7. The equivalence assertion tests a deep equality relation.
    // assert.deepEqual(actual, expected, message_opt);

    
assert.deepEqual = function deepEqual(actualexpectedmessage) {
      if (!
_deepEqual(actualexpected)) {
        
fail(actualexpectedmessage'deepEqual'assert.deepEqual);
      }
    };

    function 
_deepEqual(actualexpected) {
      
// 7.1. All identical values are equivalent, as determined by ===.
      
if (actual === expected) {
        return 
true;

      } else if (
util.isBuffer(actual) && util.isBuffer(expected)) {
        if (
actual.length != expected.length) return false;

        for (var 
0actual.lengthi++) {
          if (
actual[i] !== expected[i]) return false;
        }

        return 
true;

      
// 7.2. If the expected value is a Date object, the actual value is
      // equivalent if it is also a Date object that refers to the same time.
      
} else if (util.isDate(actual) && util.isDate(expected)) {
        return 
actual.getTime() === expected.getTime();

      
// 7.3 If the expected value is a RegExp object, the actual value is
      // equivalent if it is also a RegExp object with the same source and
      // properties (`global`, `multiline`, `lastIndex`, `ignoreCase`).
      
} else if (util.isRegExp(actual) && util.isRegExp(expected)) {
        return 
actual.source === expected.source &&
               
actual.global === expected.global &&
               
actual.multiline === expected.multiline &&
               
actual.lastIndex === expected.lastIndex &&
               
actual.ignoreCase === expected.ignoreCase;

      
// 7.4. Other pairs that do not both pass typeof value == 'object',
      // equivalence is determined by ==.
      
} else if (!util.isObject(actual) && !util.isObject(expected)) {
        return 
actual == expected;

      
// 7.5 For all other Object pairs, including Array objects, equivalence is
      // determined by having the same number of owned properties (as verified
      // with Object.prototype.hasOwnProperty.call), the same set of keys
      // (although not necessarily the same order), equivalent values for every
      // corresponding key, and an identical 'prototype' property. Note: this
      // accounts for both named and indexed properties on Arrays.
      
} else {
        return 
objEquiv(actualexpected);
      }
    }

    function 
isArguments(object) {
      return 
Object.prototype.toString.call(object) == '[object Arguments]';
    }

    function 
objEquiv(ab) {
      if (
util.isNullOrUndefined(a) || util.isNullOrUndefined(b))
        return 
false;
      
// an identical 'prototype' property.
      
if (a.prototype !== b.prototype) return false;
      
// if one is a primitive, the other must be same
      
if (util.isPrimitive(a) || util.isPrimitive(b)) {
        return 
=== b;
      }
      var 
aIsArgs isArguments(a),
          
bIsArgs isArguments(b);
      if ((
aIsArgs && !bIsArgs) || (!aIsArgs && bIsArgs))
        return 
false;
      if (
aIsArgs) {
        
pSlice.call(a);
        
pSlice.call(b);
        return 
_deepEqual(ab);
      }
      var 
ka objectKeys(a),
          
kb objectKeys(b),
          
keyi;
      
// having the same number of owned properties (keys incorporates
      // hasOwnProperty)
      
if (ka.length != kb.length)
        return 
false;
      
//the same set of keys (although not necessarily the same order),
      
ka.sort();
      
kb.sort();
      
//~~~cheap key test
      
for (ka.length 1>= 0i--) {
        if (
ka[i] != kb[i])
          return 
false;
      }
      
//equivalent values for every corresponding key, and
      //~~~possibly expensive deep test
      
for (ka.length 1>= 0i--) {
        
key ka[i];
        if (!
_deepEqual(a[key], b[key])) return false;
      }
      return 
true;
    }

    
// 8. The non-equivalence assertion tests for any deep inequality.
    // assert.notDeepEqual(actual, expected, message_opt);

    
assert.notDeepEqual = function notDeepEqual(actualexpectedmessage) {
      if (
_deepEqual(actualexpected)) {
        
fail(actualexpectedmessage'notDeepEqual'assert.notDeepEqual);
      }
    };

    
// 9. The strict equality assertion tests strict equality, as determined by ===.
    // assert.strictEqual(actual, expected, message_opt);

    
assert.strictEqual = function strictEqual(actualexpectedmessage) {
      if (
actual !== expected) {
        
fail(actualexpectedmessage'==='assert.strictEqual);
      }
    };

    
// 10. The strict non-equality assertion tests for strict inequality, as
    // determined by !==.  assert.notStrictEqual(actual, expected, message_opt);

    
assert.notStrictEqual = function notStrictEqual(actualexpectedmessage) {
      if (
actual === expected) {
        
fail(actualexpectedmessage'!=='assert.notStrictEqual);
      }
    };

    function 
expectedException(actualexpected) {
      if (!
actual || !expected) {
        return 
false;
      }

      if (
Object.prototype.toString.call(expected) == '[object RegExp]') {
        return 
expected.test(actual);
      } else if (
actual instanceof expected) {
        return 
true;
      } else if (
expected.call({}, actual) === true) {
        return 
true;
      }

      return 
false;
    }

    function 
_throws(shouldThrowblockexpectedmessage) {
      var 
actual;

      if (
util.isString(expected)) {
        
message expected;
        
expected null;
      }

      try {
        
block();
      } catch (
e) {
        
actual e;
      }

      
message = (expected && expected.name ' (' expected.name ').' '.') +
                (
message ' ' message '.');

      if (
shouldThrow && !actual) {
        
fail(actualexpected'Missing expected exception' message);
      }

      if (!
shouldThrow && expectedException(actualexpected)) {
        
fail(actualexpected'Got unwanted exception' message);
      }

      if ((
shouldThrow && actual && expected &&
          !
expectedException(actualexpected)) || (!shouldThrow && actual)) {
        throw 
actual;
      }
    }

    
// 11. Expected to throw an error:
    // assert.throws(block, Error_opt, message_opt);

    
assert.throws = function(block/*optional*/error/*optional*/message) {
      
_throws.apply(this, [true].concat(pSlice.call(arguments)));
    };

    
// EXTENSION! This is annoying to write outside this module.
    
assert.doesNotThrow = function(block/*optional*/message) {
      
_throws.apply(this, [false].concat(pSlice.call(arguments)));
    };

    
assert.ifError = function(err) { if (err) {throw err;}};

    var 
objectKeys Object.keys || function (obj) {
      var 
keys = [];
      for (var 
key in obj) {
        if (
hasOwn.call(objkey)) keys.push(key);
      }
      return 
keys;
    };


/***/ },
/* 64 */
/***/ 
function(moduleexports) {

    
// Generated by CoffeeScript 1.7.1

    /*
    PDFPage - represents a single page in the PDF document
    By Devon Govett
     */

    
(function() {
      var 
PDFPage;

      
PDFPage = (function() {
        var 
DEFAULT_MARGINSSIZES;

        function 
PDFPage(documentoptions) {
          var 
dimensions;
          
this.document document;
          if (
options == null) {
            
options = {};
          }
          
this.size options.size || 'letter';
          
this.layout options.layout || 'portrait';
          if (
typeof options.margin === 'number') {
            
this.margins = {
              
topoptions.margin,
              
leftoptions.margin,
              
bottomoptions.margin,
              
rightoptions.margin
            
};
          } else {
            
this.margins options.margins || DEFAULT_MARGINS;
          }
          
dimensions = Array.isArray(this.size) ? this.size SIZES[this.size.toUpperCase()];
          
this.width dimensions[this.layout === 'portrait' 1];
          
this.height dimensions[this.layout === 'portrait' 0];
          
this.content this.document.ref();
          
this.resources this.document.ref({
            
ProcSet: ['PDF''Text''ImageB''ImageC''ImageI']
          });
          
Object.defineProperties(this, {
            
fonts: {
              
get: (function(_this) {
                return function() {
                  var 
_base;
                  return (
_base _this.resources.data).Font != null _base.Font _base.Font = {};
                };
              })(
this)
            },
            
xobjects: {
              
get: (function(_this) {
                return function() {
                  var 
_base;
                  return (
_base _this.resources.data).XObject != null _base.XObject _base.XObject = {};
                };
              })(
this)
            },
            
ext_gstates: {
              
get: (function(_this) {
                return function() {
                  var 
_base;
                  return (
_base _this.resources.data).ExtGState != null _base.ExtGState _base.ExtGState = {};
                };
              })(
this)
            },
            
patterns: {
              
get: (function(_this) {
                return function() {
                  var 
_base;
                  return (
_base _this.resources.data).Pattern != null _base.Pattern _base.Pattern = {};
                };
              })(
this)
            },
            
annotations: {
              
get: (function(_this) {
                return function() {
                  var 
_base;
                  return (
_base _this.dictionary.data).Annots != null _base.Annots _base.Annots = [];
                };
              })(
this)
            }
          });
          
this.dictionary this.document.ref({
            
Type'Page',
            
Parentthis.document._root.data.Pages,
            
MediaBox: [00this.widththis.height],
            
Contentsthis.content,
            
Resourcesthis.resources
          
});
        }

        
PDFPage.prototype.maxY = function() {
          return 
this.height this.margins.bottom;
        };

        
PDFPage.prototype.write = function(chunk) {
          return 
this.content.write(chunk);
        };

        
PDFPage.prototype.end = function() {
          
this.dictionary.end();
          
this.resources.end();
          return 
this.content.end();
        };

        
DEFAULT_MARGINS = {
          
top72,
          
left72,
          
bottom72,
          
right72
        
};

        
SIZES = {
          
'4A0': [4767.876740.79],
          
'2A0': [3370.394767.87],
          
A0: [2383.943370.39],
          
A1: [1683.782383.94],
          
A2: [1190.551683.78],
          
A3: [841.891190.55],
          
A4: [595.28841.89],
          
A5: [419.53595.28],
          
A6: [297.64419.53],
          
A7: [209.76297.64],
          
A8: [147.40209.76],
          
A9: [104.88147.40],
          
A10: [73.70104.88],
          
B0: [2834.654008.19],
          
B1: [2004.092834.65],
          
B2: [1417.322004.09],
          
B3: [1000.631417.32],
          
B4: [708.661000.63],
          
B5: [498.90708.66],
          
B6: [354.33498.90],
          
B7: [249.45354.33],
          
B8: [175.75249.45],
          
B9: [124.72175.75],
          
B10: [87.87124.72],
          
C0: [2599.373676.54],
          
C1: [1836.852599.37],
          
C2: [1298.271836.85],
          
C3: [918.431298.27],
          
C4: [649.13918.43],
          
C5: [459.21649.13],
          
C6: [323.15459.21],
          
C7: [229.61323.15],
          
C8: [161.57229.61],
          
C9: [113.39161.57],
          
C10: [79.37113.39],
          
RA0: [2437.803458.27],
          
RA1: [1729.132437.80],
          
RA2: [1218.901729.13],
          
RA3: [864.571218.90],
          
RA4: [609.45864.57],
          
SRA0: [2551.183628.35],
          
SRA1: [1814.172551.18],
          
SRA2: [1275.591814.17],
          
SRA3: [907.091275.59],
          
SRA4: [637.80907.09],
          
EXECUTIVE: [521.86756.00],
          
FOLIO: [612.00936.00],
          
LEGAL: [612.001008.00],
          
LETTER: [612.00792.00],
          
TABLOID: [792.001224.00]
        };

        return 
PDFPage;

      })();

      
module.exports PDFPage;

    }).
call(this);


/***/ },
/* 65 */
/***/ 
function(moduleexports__webpack_require__) {

    
// Generated by CoffeeScript 1.7.1
    
(function() {
      var 
PDFGradientPDFLinearGradientPDFRadialGradientnamedColors_ref;

      
_ref __webpack_require__(66), PDFGradient _ref.PDFGradientPDFLinearGradient _ref.PDFLinearGradientPDFRadialGradient _ref.PDFRadialGradient;

      
module.exports = {
        
initColor: function() {
          
this._opacityRegistry = {};
          
this._opacityCount 0;
          return 
this._gradCount 0;
        },
        
_normalizeColor: function(color) {
          var 
hexpart;
          if (
color instanceof PDFGradient) {
            return 
color;
          }
          if (
typeof color === 'string') {
            if (
color.charAt(0) === '#') {
              if (
color.length === 4) {
                
color color.replace(/#([0-9A-F])([0-9A-F])([0-9A-F])/i, "#$1$1$2$2$3$3");
              
}
              
hex parseInt(color.slice(1), 16);
              
color = [hex >> 16hex >> 0xffhex 0xff];
            } else if (
namedColors[color]) {
              
color namedColors[color];
            }
          }
          if (Array.
isArray(color)) {
            if (
color.length === 3) {
              
color = (function() {
                var 
_i_len_results;
                
_results = [];
                for (
_i 0_len color.length_i _len_i++) {
                  
part color[_i];
                  
_results.push(part 255);
                }
                return 
_results;
              })();
            } else if (
color.length === 4) {
              
color = (function() {
                var 
_i_len_results;
                
_results = [];
                for (
_i 0_len color.length_i _len_i++) {
                  
part color[_i];
                  
_results.push(part 100);
                }
                return 
_results;
              })();
            }
            return 
color;
          }
          return 
null;
        },
        
_setColor: function(colorstroke) {
          var 
gstatenameopspace;
          
color this._normalizeColor(color);
          if (!
color) {
            return 
false;
          }
          if (
this._sMasked) {
            
gstate this.ref({
              
Type'ExtGState',
              
SMask'None'
            
});
            
gstate.end();
            
name "Gs" + (++this._opacityCount);
            
this.page.ext_gstates[name] = gstate;
            
this.addContent("/" name " gs");
            
this._sMasked false;
          }
          
op stroke 'SCN' 'scn';
          if (
color instanceof PDFGradient) {
            
this._setColorSpace('Pattern'stroke);
            
color.apply(op);
          } else {
            
space color.length === 'DeviceCMYK' 'DeviceRGB';
            
this._setColorSpace(spacestroke);
            
color color.join(' ');
            
this.addContent("" color " " op);
          }
          return 
true;
        },
        
_setColorSpace: function(spacestroke) {
          var 
op;
          
op stroke 'CS' 'cs';
          return 
this.addContent("/" space " " op);
        },
        
fillColor: function(coloropacity) {
          var 
set;
          if (
opacity == null) {
            
opacity 1;
          }
          
set this._setColor(colorfalse);
          if (
set) {
            
this.fillOpacity(opacity);
          }
          
this._fillColor = [coloropacity];
          return 
this;
        },
        
strokeColor: function(coloropacity) {
          var 
set;
          if (
opacity == null) {
            
opacity 1;
          }
          
set this._setColor(colortrue);
          if (
set) {
            
this.strokeOpacity(opacity);
          }
          return 
this;
        },
        
opacity: function(opacity) {
          
this._doOpacity(opacityopacity);
          return 
this;
        },
        
fillOpacity: function(opacity) {
          
this._doOpacity(opacitynull);
          return 
this;
        },
        
strokeOpacity: function(opacity) {
          
this._doOpacity(nullopacity);
          return 
this;
        },
        
_doOpacity: function(fillOpacitystrokeOpacity) {
          var 
dictionaryidkeyname_ref1;
          if (!((
fillOpacity != null) || (strokeOpacity != null))) {
            return;
          }
          if (
fillOpacity != null) {
            
fillOpacity Math.max(0Math.min(1fillOpacity));
          }
          if (
strokeOpacity != null) {
            
strokeOpacity Math.max(0Math.min(1strokeOpacity));
          }
          
key "" fillOpacity "_" strokeOpacity;
          if (
this._opacityRegistry[key]) {
            
_ref1 this._opacityRegistry[key], dictionary _ref1[0], name _ref1[1];
          } else {
            
dictionary = {
              
Type'ExtGState'
            
};
            if (
fillOpacity != null) {
              
dictionary.ca fillOpacity;
            }
            if (
strokeOpacity != null) {
              
dictionary.CA strokeOpacity;
            }
            
dictionary this.ref(dictionary);
            
dictionary.end();
            
id = ++this._opacityCount;
            
name "Gs" id;
            
this._opacityRegistry[key] = [dictionaryname];
          }
          
this.page.ext_gstates[name] = dictionary;
          return 
this.addContent("/" name " gs");
        },
        
linearGradient: function(x1y1x2y2) {
          return new 
PDFLinearGradient(thisx1y1x2y2);
        },
        
radialGradient: function(x1y1r1x2y2r2) {
          return new 
PDFRadialGradient(thisx1y1r1x2y2r2);
        }
      };

      
namedColors = {
        
aliceblue: [240248255],
        
antiquewhite: [250235215],
        
aqua: [0255255],
        
aquamarine: [127255212],
        
azure: [240255255],
        
beige: [245245220],
        
bisque: [255228196],
        
black: [000],
        
blanchedalmond: [255235205],
        
blue: [00255],
        
blueviolet: [13843226],
        
brown: [1654242],
        
burlywood: [222184135],
        
cadetblue: [95158160],
        
chartreuse: [1272550],
        
chocolate: [21010530],
        
coral: [25512780],
        
cornflowerblue: [100149237],
        
cornsilk: [255248220],
        
crimson: [2202060],
        
cyan: [0255255],
        
darkblue: [00139],
        
darkcyan: [0139139],
        
darkgoldenrod: [18413411],
        
darkgray: [169169169],
        
darkgreen: [01000],
        
darkgrey: [169169169],
        
darkkhaki: [189183107],
        
darkmagenta: [1390139],
        
darkolivegreen: [8510747],
        
darkorange: [2551400],
        
darkorchid: [15350204],
        
darkred: [13900],
        
darksalmon: [233150122],
        
darkseagreen: [143188143],
        
darkslateblue: [7261139],
        
darkslategray: [477979],
        
darkslategrey: [477979],
        
darkturquoise: [0206209],
        
darkviolet: [1480211],
        
deeppink: [25520147],
        
deepskyblue: [0191255],
        
dimgray: [105105105],
        
dimgrey: [105105105],
        
dodgerblue: [30144255],
        
firebrick: [1783434],
        
floralwhite: [255250240],
        
forestgreen: [3413934],
        
fuchsia: [2550255],
        
gainsboro: [220220220],
        
ghostwhite: [248248255],
        
gold: [2552150],
        
goldenrod: [21816532],
        
gray: [128128128],
        
grey: [128128128],
        
green: [01280],
        
greenyellow: [17325547],
        
honeydew: [240255240],
        
hotpink: [255105180],
        
indianred: [2059292],
        
indigo: [750130],
        
ivory: [255255240],
        
khaki: [240230140],
        
lavender: [230230250],
        
lavenderblush: [255240245],
        
lawngreen: [1242520],
        
lemonchiffon: [255250205],
        
lightblue: [173216230],
        
lightcoral: [240128128],
        
lightcyan: [224255255],
        
lightgoldenrodyellow: [250250210],
        
lightgray: [211211211],
        
lightgreen: [144238144],
        
lightgrey: [211211211],
        
lightpink: [255182193],
        
lightsalmon: [255160122],
        
lightseagreen: [32178170],
        
lightskyblue: [135206250],
        
lightslategray: [119136153],
        
lightslategrey: [119136153],
        
lightsteelblue: [176196222],
        
lightyellow: [255255224],
        
lime: [02550],
        
limegreen: [5020550],
        
linen: [250240230],
        
magenta: [2550255],
        
maroon: [12800],
        
mediumaquamarine: [102205170],
        
mediumblue: [00205],
        
mediumorchid: [18685211],
        
mediumpurple: [147112219],
        
mediumseagreen: [60179113],
        
mediumslateblue: [123104238],
        
mediumspringgreen: [0250154],
        
mediumturquoise: [72209204],
        
mediumvioletred: [19921133],
        
midnightblue: [2525112],
        
mintcream: [245255250],
        
mistyrose: [255228225],
        
moccasin: [255228181],
        
navajowhite: [255222173],
        
navy: [00128],
        
oldlace: [253245230],
        
olive: [1281280],
        
olivedrab: [10714235],
        
orange: [2551650],
        
orangered: [255690],
        
orchid: [218112214],
        
palegoldenrod: [238232170],
        
palegreen: [152251152],
        
paleturquoise: [175238238],
        
palevioletred: [219112147],
        
papayawhip: [255239213],
        
peachpuff: [255218185],
        
peru: [20513363],
        
pink: [255192203],
        
plum: [221160221],
        
powderblue: [176224230],
        
purple: [1280128],
        
red: [25500],
        
rosybrown: [188143143],
        
royalblue: [65105225],
        
saddlebrown: [1396919],
        
salmon: [250128114],
        
sandybrown: [24416496],
        
seagreen: [4613987],
        
seashell: [255245238],
        
sienna: [1608245],
        
silver: [192192192],
        
skyblue: [135206235],
        
slateblue: [10690205],
        
slategray: [112128144],
        
slategrey: [112128144],
        
snow: [255250250],
        
springgreen: [0255127],
        
steelblue: [70130180],
        
tan: [210180140],
        
teal: [0128128],
        
thistle: [216191216],
        
tomato: [2559971],
        
turquoise: [64224208],
        
violet: [238130238],
        
wheat: [245222179],
        
white: [255255255],
        
whitesmoke: [245245245],
        
yellow: [2552550],
        
yellowgreen: [15420550]
      };

    }).
call(this);


/***/ },
/* 66 */
/***/ 
function(moduleexports) {

    
// Generated by CoffeeScript 1.7.1
    
(function() {
      var 
PDFGradientPDFLinearGradientPDFRadialGradient,
        
__hasProp = {}.hasOwnProperty,
        
__extends = function(childparent) { for (var key in parent) { if (__hasProp.call(parentkey)) child[key] = parent[key]; } function ctor() { this.constructor child; } ctor.prototype parent.prototypechild.prototype = new ctor(); child.__super__ parent.prototype; return child; };

      
PDFGradient = (function() {
        function 
PDFGradient(doc) {
          
this.doc doc;
          
this.stops = [];
          
this.embedded false;
          
this.transform = [100100];
          
this._colorSpace 'DeviceRGB';
        }

        
PDFGradient.prototype.stop = function(poscoloropacity) {
          if (
opacity == null) {
            
opacity 1;
          }
          
opacity Math.max(0Math.min(1opacity));
          
this.stops.push([posthis.doc._normalizeColor(color), opacity]);
          return 
this;
        };

        
PDFGradient.prototype.embed = function() {
          var 
boundsdxdyencodefnformgradgroupgstateilastmm0m1m11m12m2m21m22m3m4m5namepatternresourcessMaskshaderstopstopsv_i_j_len_ref_ref1_ref2;
          if (
this.embedded || this.stops.length === 0) {
            return;
          }
          
this.embedded true;
          
last this.stops[this.stops.length 1];
          if (
last[0] < 1) {
            
this.stops.push([1last[1], last[2]]);
          }
          
bounds = [];
          
encode = [];
          
stops = [];
          for (
_i 0_ref this.stops.length 1<= _ref _i _ref _i _ref<= _ref ? ++_i : --_i) {
            
encode.push(01);
            if (
!== this.stops.length) {
              
bounds.push(this.stops[1][0]);
            }
            
fn this.doc.ref({
              
FunctionType2,
              
Domain: [01],
              
C0this.stops[0][1],
              
C1this.stops[1][1],
              
N1
            
});
            
stops.push(fn);
            
fn.end();
          }
          if (
stops.length === 1) {
            
fn stops[0];
          } else {
            
fn this.doc.ref({
              
FunctionType3,
              
Domain: [01],
              
Functionsstops,
              
Boundsbounds,
              
Encodeencode
            
});
            
fn.end();
          }
          
this.id 'Sh' + (++this.doc._gradCount);
          
this.doc._ctm.slice();
          
m0 m[0], m1 m[1], m2 m[2], m3 m[3], m4 m[4], m5 m[5];
          
_ref1 this.transformm11 _ref1[0], m12 _ref1[1], m21 _ref1[2], m22 _ref1[3], dx _ref1[4], dy _ref1[5];
          
m[0] = m0 m11 m2 m12;
          
m[1] = m1 m11 m3 m12;
          
m[2] = m0 m21 m2 m22;
          
m[3] = m1 m21 m3 m22;
          
m[4] = m0 dx m2 dy m4;
          
m[5] = m1 dx m3 dy m5;
          
shader this.shader(fn);
          
shader.end();
          
pattern this.doc.ref({
            
Type'Pattern',
            
PatternType2,
            
Shadingshader,
            
Matrix: (function() {
              var 
_j_len_results;
              
_results = [];
              for (
_j 0_len m.length_j _len_j++) {
                
m[_j];
                
_results.push(+v.toFixed(5));
              }
              return 
_results;
            })()
          });
          
this.doc.page.patterns[this.id] = pattern;
          
pattern.end();
          if (
this.stops.some(function(stop) {
            return 
stop[2] < 1;
          })) {
            
grad this.opacityGradient();
            
grad._colorSpace 'DeviceGray';
            
_ref2 this.stops;
            for (
_j 0_len _ref2.length_j _len_j++) {
              
stop _ref2[_j];
              
grad.stop(stop[0], [stop[2]]);
            }
            
grad grad.embed();
            
group this.doc.ref({
              
Type'Group',
              
S'Transparency',
              
CS'DeviceGray'
            
});
            
group.end();
            
resources this.doc.ref({
              
ProcSet: ['PDF''Text''ImageB''ImageC''ImageI'],
              
Shading: {
                
Sh1grad.data.Shading
              
}
            });
            
resources.end();
            
form this.doc.ref({
              
Type'XObject',
              
Subtype'Form',
              
FormType1,
              
BBox: [00this.doc.page.widththis.doc.page.height],
              
Groupgroup,
              
Resourcesresources
            
});
            
form.end("/Sh1 sh");
            
sMask this.doc.ref({
              
Type'Mask',
              
S'Luminosity',
              
Gform
            
});
            
sMask.end();
            
gstate this.doc.ref({
              
Type'ExtGState',
              
SMasksMask
            
});
            
this.opacity_id = ++this.doc._opacityCount;
            
name "Gs" this.opacity_id;
            
this.doc.page.ext_gstates[name] = gstate;
            
gstate.end();
          }
          return 
pattern;
        };

        
PDFGradient.prototype.apply = function(op) {
          if (!
this.embedded) {
            
this.embed();
          }
          
this.doc.addContent("/" this.id " " op);
          if (
this.opacity_id) {
            
this.doc.addContent("/Gs" this.opacity_id " gs");
            return 
this.doc._sMasked true;
          }
        };

        return 
PDFGradient;

      })();

      
PDFLinearGradient = (function(_super) {
        
__extends(PDFLinearGradient_super);

        function 
PDFLinearGradient(docx1y1x2y2) {
          
this.doc doc;
          
this.x1 x1;
          
this.y1 y1;
          
this.x2 x2;
          
this.y2 y2;
          
PDFLinearGradient.__super__.constructor.apply(thisarguments);
        }

        
PDFLinearGradient.prototype.shader = function(fn) {
          return 
this.doc.ref({
            
ShadingType2,
            
ColorSpacethis._colorSpace,
            
Coords: [this.x1this.y1this.x2this.y2],
            Function: 
fn,
            
Extend: [truetrue]
          });
        };

        
PDFLinearGradient.prototype.opacityGradient = function() {
          return new 
PDFLinearGradient(this.docthis.x1this.y1this.x2this.y2);
        };

        return 
PDFLinearGradient;

      })(
PDFGradient);

      
PDFRadialGradient = (function(_super) {
        
__extends(PDFRadialGradient_super);

        function 
PDFRadialGradient(docx1y1r1x2y2r2) {
          
this.doc doc;
          
this.x1 x1;
          
this.y1 y1;
          
this.r1 r1;
          
this.x2 x2;
          
this.y2 y2;
          
this.r2 r2;
          
PDFRadialGradient.__super__.constructor.apply(thisarguments);
        }

        
PDFRadialGradient.prototype.shader = function(fn) {
          return 
this.doc.ref({
            
ShadingType3,
            
ColorSpacethis._colorSpace,
            
Coords: [this.x1this.y1this.r1this.x2this.y2this.r2],
            Function: 
fn,
            
Extend: [truetrue]
          });
        };

        
PDFRadialGradient.prototype.opacityGradient = function() {
          return new 
PDFRadialGradient(this.docthis.x1this.y1this.r1this.x2this.y2this.r2);
        };

        return 
PDFRadialGradient;

      })(
PDFGradient);

      
module.exports = {
        
PDFGradientPDFGradient,
        
PDFLinearGradientPDFLinearGradient,
        
PDFRadialGradientPDFRadialGradient
      
};

    }).
call(this);


/***/ },
/* 67 */
/***/ 
function(moduleexports__webpack_require__) {

    
// Generated by CoffeeScript 1.7.1
    
(function() {
      var 
KAPPASVGPath,
        
__slice = [].slice;

      
SVGPath __webpack_require__(68);

      
KAPPA 4.0 * ((Math.sqrt(2) - 1.0) / 3.0);

      
module.exports = {
        
initVector: function() {
          
this._ctm = [100100];
          return 
this._ctmStack = [];
        },
        
save: function() {
          
this._ctmStack.push(this._ctm.slice());
          return 
this.addContent('q');
        },
        
restore: function() {
          
this._ctm this._ctmStack.pop() || [100100];
          return 
this.addContent('Q');
        },
        
closePath: function() {
          return 
this.addContent('h');
        },
        
lineWidth: function(w) {
          return 
this.addContent("" " w");
        },
        
_CAP_STYLES: {
          
BUTT0,
          
ROUND1,
          
SQUARE2
        
},
        
lineCap: function(c) {
          if (
typeof c === 'string') {
            
this._CAP_STYLES[c.toUpperCase()];
          }
          return 
this.addContent("" " J");
        },
        
_JOIN_STYLES: {
          
MITER0,
          
ROUND1,
          
BEVEL2
        
},
        
lineJoin: function(j) {
          if (
typeof j === 'string') {
            
this._JOIN_STYLES[j.toUpperCase()];
          }
          return 
this.addContent("" " j");
        },
        
miterLimit: function(m) {
          return 
this.addContent("" " M");
        },
        
dash: function(lengthoptions) {
          var 
phasespace_ref;
          if (
options == null) {
            
options = {};
          }
          if (
length == null) {
            return 
this;
          }
          
space = (_ref options.space) != null _ref length;
          
phase options.phase || 0;
          return 
this.addContent("[" length " " space "] " phase " d");
        },
        
undash: function() {
          return 
this.addContent("[] 0 d");
        },
        
moveTo: function(xy) {
          return 
this.addContent("" " " " m");
        },
        
lineTo: function(xy) {
          return 
this.addContent("" " " " l");
        },
        
bezierCurveTo: function(cp1xcp1ycp2xcp2yxy) {
          return 
this.addContent("" cp1x " " cp1y " " cp2x " " cp2y " " " " " c");
        },
        
quadraticCurveTo: function(cpxcpyxy) {
          return 
this.addContent("" cpx " " cpy " " " " " v");
        },
        
rect: function(xywh) {
          return 
this.addContent("" " " " " " " " re");
        },
        
roundedRect: function(xywhr) {
          if (
== null) {
            
0;
          }
          
this.moveTo(ry);
          
this.lineTo(ry);
          
this.quadraticCurveTo(wywr);
          
this.lineTo(wr);
          
this.quadraticCurveTo(whrh);
          
this.lineTo(rh);
          
this.quadraticCurveTo(xhxr);
          
this.lineTo(xr);
          return 
this.quadraticCurveTo(xyry);
        },
        
ellipse: function(xyr1r2) {
          var 
oxoyxexmyeym;
          if (
r2 == null) {
            
r2 r1;
          }
          
-= r1;
          
-= r2;
          
ox r1 KAPPA;
          
oy r2 KAPPA;
          
xe r1 2;
          
ye r2 2;
          
xm r1;
          
ym r2;
          
this.moveTo(xym);
          
this.bezierCurveTo(xym oyxm oxyxmy);
          
this.bezierCurveTo(xm oxyxeym oyxeym);
          
this.bezierCurveTo(xeym oyxm oxyexmye);
          
this.bezierCurveTo(xm oxyexym oyxym);
          return 
this.closePath();
        },
        
circle: function(xyradius) {
          return 
this.ellipse(xyradius);
        },
        
polygon: function() {
          var 
pointpoints_i_len;
          
points <= arguments.length __slice.call(arguments0) : [];
          
this.moveTo.apply(thispoints.shift());
          for (
_i 0_len points.length_i _len_i++) {
            
point points[_i];
            
this.lineTo.apply(thispoint);
          }
          return 
this.closePath();
        },
        
path: function(path) {
          
SVGPath.apply(thispath);
          return 
this;
        },
        
_windingRule: function(rule) {
          if (/
even-?odd/.test(rule)) {
            return 
'*';
          }
          return 
'';
        },
        
fill: function(colorrule) {
          if (/(
even-?odd)|(non-?zero)/.test(color)) {
            
rule color;
            
color null;
          }
          if (
color) {
            
this.fillColor(color);
          }
          return 
this.addContent('f' this._windingRule(rule));
        },
        
stroke: function(color) {
          if (
color) {
            
this.strokeColor(color);
          }
          return 
this.addContent('S');
        },
        
fillAndStroke: function(fillColorstrokeColorrule) {
          var 
isFillRule;
          if (
strokeColor == null) {
            
strokeColor fillColor;
          }
          
isFillRule = /(even-?odd)|(non-?zero)/;
          if (
isFillRule.test(fillColor)) {
            
rule fillColor;
            
fillColor null;
          }
          if (
isFillRule.test(strokeColor)) {
            
rule strokeColor;
            
strokeColor fillColor;
          }
          if (
fillColor) {
            
this.fillColor(fillColor);
            
this.strokeColor(strokeColor);
          }
          return 
this.addContent('B' this._windingRule(rule));
        },
        
clip: function(rule) {
          return 
this.addContent('W' this._windingRule(rule) + ' n');
        },
        
transform: function(m11m12m21m22dxdy) {
          var 
mm0m1m2m3m4m5vvalues;
          
this._ctm;
          
m0 m[0], m1 m[1], m2 m[2], m3 m[3], m4 m[4], m5 m[5];
          
m[0] = m0 m11 m2 m12;
          
m[1] = m1 m11 m3 m12;
          
m[2] = m0 m21 m2 m22;
          
m[3] = m1 m21 m3 m22;
          
m[4] = m0 dx m2 dy m4;
          
m[5] = m1 dx m3 dy m5;
          
values = ((function() {
            var 
_i_len_ref_results;
            
_ref = [m11m12m21m22dxdy];
            
_results = [];
            for (
_i 0_len _ref.length_i _len_i++) {
              
_ref[_i];
              
_results.push(+v.toFixed(5));
            }
            return 
_results;
          })()).
join(' ');
          return 
this.addContent("" values " cm");
        },
        
translate: function(xy) {
          return 
this.transform(1001xy);
        },
        
rotate: function(angleoptions) {
          var 
cosradsinxx1yy1_ref;
          if (
options == null) {
            
options = {};
          }
          
rad angle Math.PI 180;
          
cos Math.cos(rad);
          
sin Math.sin(rad);
          
0;
          if (
options.origin != null) {
            
_ref options.origin_ref[0], _ref[1];
            
x1 cos sin;
            
y1 sin cos;
            
-= x1;
            
-= y1;
          }
          return 
this.transform(cossin, -sincosxy);
        },
        
scale: function(xFactoryFactoroptions) {
          var 
xy_ref;
          if (
yFactor == null) {
            
yFactor xFactor;
          }
          if (
options == null) {
            
options = {};
          }
          if (
arguments.length === 2) {
            
yFactor xFactor;
            
options yFactor;
          }
          
0;
          if (
options.origin != null) {
            
_ref options.origin_ref[0], _ref[1];
            
-= xFactor x;
            
-= yFactor y;
          }
          return 
this.transform(xFactor00yFactorxy);
        }
      };

    }).
call(this);


/***/ },
/* 68 */
/***/ 
function(moduleexports) {

    
// Generated by CoffeeScript 1.7.1
    
(function() {
      var 
SVGPath;

      
SVGPath = (function() {
        var 
applyarcToSegmentscxcyparametersparsepxpyrunnerssegmentToBeziersolveArcsxsy;

        function 
SVGPath() {}

        
SVGPath.apply = function(docpath) {
          var 
commands;
          
commands parse(path);
          return 
apply(commandsdoc);
        };

        
parameters = {
          
A7,
          
a7,
          
C6,
          
c6,
          
H1,
          
h1,
          
L2,
          
l2,
          
M2,
          
m2,
          
Q4,
          
q4,
          
S4,
          
s4,
          
T2,
          
t2,
          
V1,
          
v1,
          
Z0,
          
z0
        
};

        
parse = function(path) {
          var 
argsccmdcurArgfoundDecimalparamsret_i_len;
          
ret = [];
          
args = [];
          
curArg "";
          
foundDecimal false;
          
params 0;
          for (
_i 0_len path.length_i _len_i++) {
            
path[_i];
            if (
parameters[c] != null) {
              
params parameters[c];
              if (
cmd) {
                if (
curArg.length 0) {
                  
args[args.length] = +curArg;
                }
                
ret[ret.length] = {
                  
cmdcmd,
                  
argsargs
                
};
                
args = [];
                
curArg "";
                
foundDecimal false;
              }
              
cmd c;
            } else if ((
=== " " || === ",") || (=== "-" && curArg.length && curArg[curArg.length 1] !== 'e') || (=== "." && foundDecimal)) {
              if (
curArg.length === 0) {
                continue;
              }
              if (
args.length === params) {
                
ret[ret.length] = {
                  
cmdcmd,
                  
argsargs
                
};
                
args = [+curArg];
                if (
cmd === "M") {
                  
cmd "L";
                }
                if (
cmd === "m") {
                  
cmd "l";
                }
              } else {
                
args[args.length] = +curArg;
              }
              
foundDecimal === ".";
              
curArg === '-' || === '.' '';
            } else {
              
curArg += c;
              if (
=== '.') {
                
foundDecimal true;
              }
            }
          }
          if (
curArg.length 0) {
            if (
args.length === params) {
              
ret[ret.length] = {
                
cmdcmd,
                
argsargs
              
};
              
args = [+curArg];
              if (
cmd === "M") {
                
cmd "L";
              }
              if (
cmd === "m") {
                
cmd "l";
              }
            } else {
              
args[args.length] = +curArg;
            }
          }
          
ret[ret.length] = {
            
cmdcmd,
            
argsargs
          
};
          return 
ret;
        };

        
cx cy px py sx sy 0;

        
apply = function(commandsdoc) {
          var 
ci_i_len_name;
          
cx cy px py sx sy 0;
          for (
_i 0_len commands.length_i _len= ++_i) {
            
commands[i];
            if (
typeof runners[_name c.cmd] === "function") {
              
runners[_name](docc.args);
            }
          }
          return 
cx cy px py 0;
        };

        
runners = {
          
M: function(doca) {
            
cx a[0];
            
cy a[1];
            
px py null;
            
sx cx;
            
sy cy;
            return 
doc.moveTo(cxcy);
          },
          
m: function(doca) {
            
cx += a[0];
            
cy += a[1];
            
px py null;
            
sx cx;
            
sy cy;
            return 
doc.moveTo(cxcy);
          },
          
C: function(doca) {
            
cx a[4];
            
cy a[5];
            
px a[2];
            
py a[3];
            return 
doc.bezierCurveTo.apply(doca);
          },
          
c: function(doca) {
            
doc.bezierCurveTo(a[0] + cxa[1] + cya[2] + cxa[3] + cya[4] + cxa[5] + cy);
            
px cx a[2];
            
py cy a[3];
            
cx += a[4];
            return 
cy += a[5];
          },
          
S: function(doca) {
            if (
px === null) {
              
px cx;
              
py cy;
            }
            
doc.bezierCurveTo(cx - (px cx), cy - (py cy), a[0], a[1], a[2], a[3]);
            
px a[0];
            
py a[1];
            
cx a[2];
            return 
cy a[3];
          },
          
s: function(doca) {
            if (
px === null) {
              
px cx;
              
py cy;
            }
            
doc.bezierCurveTo(cx - (px cx), cy - (py cy), cx a[0], cy a[1], cx a[2], cy a[3]);
            
px cx a[0];
            
py cy a[1];
            
cx += a[2];
            return 
cy += a[3];
          },
          
Q: function(doca) {
            
px a[0];
            
py a[1];
            
cx a[2];
            
cy a[3];
            return 
doc.quadraticCurveTo(a[0], a[1], cxcy);
          },
          
q: function(doca) {
            
doc.quadraticCurveTo(a[0] + cxa[1] + cya[2] + cxa[3] + cy);
            
px cx a[0];
            
py cy a[1];
            
cx += a[2];
            return 
cy += a[3];
          },
          
T: function(doca) {
            if (
px === null) {
              
px cx;
              
py cy;
            } else {
              
px cx - (px cx);
              
py cy - (py cy);
            }
            
doc.quadraticCurveTo(pxpya[0], a[1]);
            
px cx - (px cx);
            
py cy - (py cy);
            
cx a[0];
            return 
cy a[1];
          },
          
t: function(doca) {
            if (
px === null) {
              
px cx;
              
py cy;
            } else {
              
px cx - (px cx);
              
py cy - (py cy);
            }
            
doc.quadraticCurveTo(pxpycx a[0], cy a[1]);
            
cx += a[0];
            return 
cy += a[1];
          },
          
A: function(doca) {
            
solveArc(doccxcya);
            
cx a[5];
            return 
cy a[6];
          },
          
a: function(doca) {
            
a[5] += cx;
            
a[6] += cy;
            
solveArc(doccxcya);
            
cx a[5];
            return 
cy a[6];
          },
          
L: function(doca) {
            
cx a[0];
            
cy a[1];
            
px py null;
            return 
doc.lineTo(cxcy);
          },
          
l: function(doca) {
            
cx += a[0];
            
cy += a[1];
            
px py null;
            return 
doc.lineTo(cxcy);
          },
          
H: function(doca) {
            
cx a[0];
            
px py null;
            return 
doc.lineTo(cxcy);
          },
          
h: function(doca) {
            
cx += a[0];
            
px py null;
            return 
doc.lineTo(cxcy);
          },
          
V: function(doca) {
            
cy a[0];
            
px py null;
            return 
doc.lineTo(cxcy);
          },
          
v: function(doca) {
            
cy += a[0];
            
px py null;
            return 
doc.lineTo(cxcy);
          },
          
Z: function(doc) {
            
doc.closePath();
            
cx sx;
            return 
cy sy;
          },
          
z: function(doc) {
            
doc.closePath();
            
cx sx;
            return 
cy sy;
          }
        };

        
solveArc = function(docxycoords) {
          var 
bezexeylargerotrxrysegsegssweep_i_len_results;
          
rx coords[0], ry coords[1], rot coords[2], large coords[3], sweep coords[4], ex coords[5], ey coords[6];
          
segs arcToSegments(exeyrxrylargesweeprotxy);
          
_results = [];
          for (
_i 0_len segs.length_i _len_i++) {
            
seg segs[_i];
            
bez segmentToBezier.apply(nullseg);
            
_results.push(doc.bezierCurveTo.apply(docbez));
          }
          return 
_results;
        };

        
arcToSegments = function(xyrxrylargesweeprotateXoxoy) {
          var 
a00a01a10a11cos_thdiplresultsegmentssfactorsfactor_sqsin_ththth0th1th2th3th_arcx0x1xcy0y1yc_i;
          
th rotateX * (Math.PI 180);
          
sin_th Math.sin(th);
          
cos_th Math.cos(th);
          
rx Math.abs(rx);
          
ry Math.abs(ry);
          
px cos_th * (ox x) * 0.5 sin_th * (oy y) * 0.5;
          
py cos_th * (oy y) * 0.5 sin_th * (ox x) * 0.5;
          
pl = (px px) / (rx rx) + (py py) / (ry ry);
          if (
pl 1) {
            
pl Math.sqrt(pl);
            
rx *= pl;
            
ry *= pl;
          }
          
a00 cos_th rx;
          
a01 sin_th rx;
          
a10 = (-sin_th) / ry;
          
a11 cos_th ry;
          
x0 a00 ox a01 oy;
          
y0 a10 ox a11 oy;
          
x1 a00 a01 y;
          
y1 a10 a11 y;
          
= (x1 x0) * (x1 x0) + (y1 y0) * (y1 y0);
          
sfactor_sq 0.25;
          if (
sfactor_sq 0) {
            
sfactor_sq 0;
          }
          
sfactor Math.sqrt(sfactor_sq);
          if (
sweep === large) {
            
sfactor = -sfactor;
          }
          
xc 0.5 * (x0 x1) - sfactor * (y1 y0);
          
yc 0.5 * (y0 y1) + sfactor * (x1 x0);
          
th0 Math.atan2(y0 ycx0 xc);
          
th1 Math.atan2(y1 ycx1 xc);
          
th_arc th1 th0;
          if (
th_arc && sweep === 1) {
            
th_arc += Math.PI;
          } else if (
th_arc && sweep === 0) {
            
th_arc -= Math.PI;
          }
          
segments Math.ceil(Math.abs(th_arc / (Math.PI 0.5 0.001)));
          
result = [];
          for (
_i 0<= segments _i segments _i segments<= segments ? ++_i : --_i) {
            
th2 th0 th_arc segments;
            
th3 th0 + (1) * th_arc segments;
            
result[i] = [xcycth2th3rxrysin_thcos_th];
          }
          return 
result;
        };

        
segmentToBezier = function(cxcyth0th1rxrysin_thcos_th) {
          var 
a00a01a10a11tth_halfx1x2x3y1y2y3;
          
a00 cos_th rx;
          
a01 = -sin_th ry;
          
a10 sin_th rx;
          
a11 cos_th ry;
          
th_half 0.5 * (th1 th0);
          
= (3) * Math.sin(th_half 0.5) * Math.sin(th_half 0.5) / Math.sin(th_half);
          
x1 cx Math.cos(th0) - Math.sin(th0);
          
y1 cy Math.sin(th0) + Math.cos(th0);
          
x3 cx Math.cos(th1);
          
y3 cy Math.sin(th1);
          
x2 x3 Math.sin(th1);
          
y2 y3 Math.cos(th1);
          return [
a00 x1 a01 y1a10 x1 a11 y1a00 x2 a01 y2a10 x2 a11 y2a00 x3 a01 y3a10 x3 a11 y3];
        };

        return 
SVGPath;

      })();

      
module.exports SVGPath;

    }).
call(this);


/***/ },
/* 69 */
/***/ 
function(moduleexports__webpack_require__) {

    
// Generated by CoffeeScript 1.7.1
    
(function() {
      var 
PDFFont;

      
PDFFont __webpack_require__(70);

      
module.exports = {
        
initFonts: function() {
          
this._fontFamilies = {};
          
this._fontCount 0;
          
this._fontSize 12;
          
this._font null;
          
this._registeredFonts = {};
          
        },
        
font: function(srcfamilysize) {
          var 
cacheKeyfontid_ref;
          if (
typeof family === 'number') {
            
size family;
            
family null;
          }
          if (
typeof src === 'string' && this._registeredFonts[src]) {
            
cacheKey src;
            
_ref this._registeredFonts[src], src _ref.srcfamily _ref.family;
          } else {
            
cacheKey family || src;
            if (
typeof cacheKey !== 'string') {
              
cacheKey null;
            }
          }
          if (
size != null) {
            
this.fontSize(size);
          }
          if (
font this._fontFamilies[cacheKey]) {
            
this._font font;
            return 
this;
          }
          
id 'F' + (++this._fontCount);
          
this._font = new PDFFont(thissrcfamilyid);
          if (
font this._fontFamilies[this._font.name]) {
            
this._font font;
            return 
this;
          }
          if (
cacheKey) {
            
this._fontFamilies[cacheKey] = this._font;
          }
          
this._fontFamilies[this._font.name] = this._font;
          return 
this;
        },
        
fontSize: function(_fontSize) {
          
this._fontSize _fontSize;
          return 
this;
        },
        
currentLineHeight: function(includeGap) {
          if (
includeGap == null) {
            
includeGap false;
          }
          return 
this._font.lineHeight(this._fontSizeincludeGap);
        },
        
registerFont: function(namesrcfamily) {
          
this._registeredFonts[name] = {
            
srcsrc,
            
familyfamily
          
};
          return 
this;
        }
      };

    }).
call(this);


/***/ },
/* 70 */
/***/ 
function(moduleexports__webpack_require__) {

    
/* WEBPACK VAR INJECTION */(function(Buffer__dirname) {// Generated by CoffeeScript 1.7.1

    /*
    PDFFont - embeds fonts in PDF documents
    By Devon Govett
     */

    
(function() {
      var 
AFMFontPDFFontSubsetTTFFontfs;

      
TTFFont __webpack_require__(71);

      
AFMFont __webpack_require__(87);

      
Subset __webpack_require__(88);

      
fs __webpack_require__(44);

      
PDFFont = (function() {
        var 
STANDARD_FONTStoUnicodeCmap;

        function 
PDFFont(documentsrcfamilyid) {
          
this.document document;
          
this.id id;
          if (
typeof src === 'string') {
            if (
src in STANDARD_FONTS) {
              
this.isAFM true;
              
this.font = new AFMFont(STANDARD_FONTS[src]());
              
this.registerAFM(src);
              return;
            } else if (/.(
ttf|ttc)$/i.test(src)) {
              
this.font TTFFont.open(srcfamily);
            } else if (/.
dfont$/i.test(src)) {
              
this.font TTFFont.fromDFont(srcfamily);
            } else {
              throw new 
Error('Not a supported font format or standard PDF font.');
            }
          } else if (
Buffer.isBuffer(src)) {
            
this.font TTFFont.fromBuffer(srcfamily);
          } else if (
src instanceof Uint8Array) {
            
this.font TTFFont.fromBuffer(new Buffer(src), family);
          } else if (
src instanceof ArrayBuffer) {
            
this.font TTFFont.fromBuffer(new Buffer(new Uint8Array(src)), family);
          } else {
            throw new 
Error('Not a supported font format or standard PDF font.');
          }
          
this.subset = new Subset(this.font);
          
this.registerTTF();
        }

        
STANDARD_FONTS = {
          
"Courier": function() {
            return 
fs.readFileSync(__dirname "/font/data/Courier.afm"'utf8');
          },
          
"Courier-Bold": function() {
            return 
fs.readFileSync(__dirname "/font/data/Courier-Bold.afm"'utf8');
          },
          
"Courier-Oblique": function() {
            return 
fs.readFileSync(__dirname "/font/data/Courier-Oblique.afm"'utf8');
          },
          
"Courier-BoldOblique": function() {
            return 
fs.readFileSync(__dirname "/font/data/Courier-BoldOblique.afm"'utf8');
          },
          
"Helvetica": function() {
            return 
fs.readFileSync(__dirname "/font/data/Helvetica.afm"'utf8');
          },
          
"Helvetica-Bold": function() {
            return 
fs.readFileSync(__dirname "/font/data/Helvetica-Bold.afm"'utf8');
          },
          
"Helvetica-Oblique": function() {
            return 
fs.readFileSync(__dirname "/font/data/Helvetica-Oblique.afm"'utf8');
          },
          
"Helvetica-BoldOblique": function() {
            return 
fs.readFileSync(__dirname "/font/data/Helvetica-BoldOblique.afm"'utf8');
          },
          
"Times-Roman": function() {
            return 
fs.readFileSync(__dirname "/font/data/Times-Roman.afm"'utf8');
          },
          
"Times-Bold": function() {
            return 
fs.readFileSync(__dirname "/font/data/Times-Bold.afm"'utf8');
          },
          
"Times-Italic": function() {
            return 
fs.readFileSync(__dirname "/font/data/Times-Italic.afm"'utf8');
          },
          
"Times-BoldItalic": function() {
            return 
fs.readFileSync(__dirname "/font/data/Times-BoldItalic.afm"'utf8');
          },
          
"Symbol": function() {
            return 
fs.readFileSync(__dirname "/font/data/Symbol.afm"'utf8');
          },
          
"ZapfDingbats": function() {
            return 
fs.readFileSync(__dirname "/font/data/ZapfDingbats.afm"'utf8');
          }
        };

        
PDFFont.prototype.use = function(characters) {
          var 
_ref;
          return (
_ref this.subset) != null _ref.use(characters) : void 0;
        };

        
PDFFont.prototype.embed = function() {
          if (
this.embedded || (this.dictionary == null)) {
            return;
          }
          if (
this.isAFM) {
            
this.embedAFM();
          } else {
            
this.embedTTF();
          }
          return 
this.embedded true;
        };

        
PDFFont.prototype.encode = function(text) {
          var 
_ref;
          if (
this.isAFM) {
            return 
this.font.encodeText(text);
          } else {
            return ((
_ref this.subset) != null _ref.encodeText(text) : void 0) || text;
          }
        };

        
PDFFont.prototype.ref = function() {
          return 
this.dictionary != null this.dictionary this.dictionary this.document.ref();
        };

        
PDFFont.prototype.registerTTF = function() {
          var 
ehilowraw_ref;
          
this.name this.font.name.postscriptName;
          
this.scaleFactor 1000.0 this.font.head.unitsPerEm;
          
this.bbox = (function() {
            var 
_i_len_ref_results;
            
_ref this.font.bbox;
            
_results = [];
            for (
_i 0_len _ref.length_i _len_i++) {
              
_ref[_i];
              
_results.push(Math.round(this.scaleFactor));
            }
            return 
_results;
          }).
call(this);
          
this.stemV 0;
          if (
this.font.post.exists) {
            
raw this.font.post.italic_angle;
            
hi raw >> 16;
            
low raw 0xFF;
            if (
hi 0x8000 !== 0) {
              
hi = -((hi 0xFFFF) + 1);
            }
            
this.italicAngle = +("" hi "." low);
          } else {
            
this.italicAngle 0;
          }
          
this.ascender Math.round(this.font.ascender this.scaleFactor);
          
this.decender Math.round(this.font.decender this.scaleFactor);
          
this.lineGap Math.round(this.font.lineGap this.scaleFactor);
          
this.capHeight = (this.font.os2.exists && this.font.os2.capHeight) || this.ascender;
          
this.xHeight = (this.font.os2.exists && this.font.os2.xHeight) || 0;
          
this.familyClass = (this.font.os2.exists && this.font.os2.familyClass || 0) >> 8;
          
this.isSerif = (_ref this.familyClass) === || _ref === || _ref === || _ref === || _ref === || _ref === 7;
          
this.isScript this.familyClass === 10;
          
this.flags 0;
          if (
this.font.post.isFixedPitch) {
            
this.flags |= << 0;
          }
          if (
this.isSerif) {
            
this.flags |= << 1;
          }
          if (
this.isScript) {
            
this.flags |= << 3;
          }
          if (
this.italicAngle !== 0) {
            
this.flags |= << 6;
          }
          
this.flags |= << 5;
          if (!
this.font.cmap.unicode) {
            throw new 
Error('No unicode cmap for font');
          }
        };

        
PDFFont.prototype.embedTTF = function() {
          var 
charWidthscmapcodedatadescriptorfirstCharfontfileglyph;
          
data this.subset.encode();
          
fontfile this.document.ref();
          
fontfile.write(data);
          
fontfile.data.Length1 fontfile.uncompressedLength;
          
fontfile.end();
          
descriptor this.document.ref({
            
Type'FontDescriptor',
            
FontNamethis.subset.postscriptName,
            
FontFile2fontfile,
            
FontBBoxthis.bbox,
            
Flagsthis.flags,
            
StemVthis.stemV,
            
ItalicAnglethis.italicAngle,
            
Ascentthis.ascender,
            
Descentthis.decender,
            
CapHeightthis.capHeight,
            
XHeightthis.xHeight
          
});
          
descriptor.end();
          
firstChar = +Object.keys(this.subset.cmap)[0];
          
charWidths = (function() {
            var 
_ref_results;
            
_ref this.subset.cmap;
            
_results = [];
            for (
code in _ref) {
              
glyph _ref[code];
              
_results.push(Math.round(this.font.widthOfGlyph(glyph)));
            }
            return 
_results;
          }).
call(this);
          
cmap this.document.ref();
          
cmap.end(toUnicodeCmap(this.subset.subset));
          
this.dictionary.data = {
            
Type'Font',
            
BaseFontthis.subset.postscriptName,
            
Subtype'TrueType',
            
FontDescriptordescriptor,
            
FirstCharfirstChar,
            
LastCharfirstChar charWidths.length 1,
            
WidthscharWidths,
            
Encoding'MacRomanEncoding',
            
ToUnicodecmap
          
};
          return 
this.dictionary.end();
        };

        
toUnicodeCmap = function(map) {
          var 
codecodesrangeunicodeunicodeMap_i_len;
          
unicodeMap '/CIDInit /ProcSet findresource beginn12 dict beginnbegincmapn/CIDSystemInfo <<n  /Registry (Adobe)n  /Ordering (UCS)n  /Supplement 0n>> defn/CMapName /Adobe-Identity-UCS defn/CMapType 2 defn1 begincodespacerangen<00><ff>nendcodespacerange';
          
codes Object.keys(map).sort(function(ab) {
            return 
b;
          });
          
range = [];
          for (
_i 0_len codes.length_i _len_i++) {
            
code codes[_i];
            if (
range.length >= 100) {
              
unicodeMap += "n" range.length " beginbfcharn" + (range.join('n')) + "nendbfchar";
              
range = [];
            }
            
unicode = ('0000' map[code].toString(16)).slice(-4);
            
code = (+code).toString(16);
            
range.push("<" code "><" unicode ">");
          }
          if (
range.length) {
            
unicodeMap += "n" range.length " beginbfcharn" + (range.join('n')) + "nendbfcharn";
          }
          return 
unicodeMap += 'endcmapnCMapName currentdict /CMap defineresource popnendnend';
        };

        
PDFFont.prototype.registerAFM = function(name) {
          var 
_ref;
          
this.name name;
          return 
_ref this.fontthis.ascender _ref.ascenderthis.decender _ref.decenderthis.bbox _ref.bboxthis.lineGap _ref.lineGap_ref;
        };

        
PDFFont.prototype.embedAFM = function() {
          
this.dictionary.data = {
            
Type'Font',
            
BaseFontthis.name,
            
Subtype'Type1',
            
Encoding'WinAnsiEncoding'
          
};
          return 
this.dictionary.end();
        };

        
PDFFont.prototype.widthOfString = function(stringsize) {
          var 
charCodeiscalewidth_i_ref;
          
string '' string;
          
width 0;
          for (
_i 0_ref string.length<= _ref _i _ref _i _ref<= _ref ? ++_i : --_i) {
            
charCode string.charCodeAt(i);
            
width += this.font.widthOfGlyph(this.font.characterToGlyph(charCode)) || 0;
          }
          
scale size 1000;
          return 
width scale;
        };

        
PDFFont.prototype.lineHeight = function(sizeincludeGap) {
          var 
gap;
          if (
includeGap == null) {
            
includeGap false;
          }
          
gap includeGap this.lineGap 0;
          return (
this.ascender gap this.decender) / 1000 size;
        };

        return 
PDFFont;

      })();

      
module.exports PDFFont;

    }).
call(this);

    
/* WEBPACK VAR INJECTION */}.call(exports__webpack_require__(2).Buffer"/"))

/***/ },
/* 71 */
/***/ 
function(moduleexports__webpack_require__) {

    
// Generated by CoffeeScript 1.7.1
    
(function() {
      var 
CmapTableDFontDataDirectoryGlyfTableHeadTableHheaTableHmtxTableLocaTableMaxpTableNameTableOS2TablePostTableTTFFontfs;

      
fs __webpack_require__(44);

      
Data __webpack_require__(72);

      
DFont __webpack_require__(73);

      
Directory __webpack_require__(74);

      
NameTable __webpack_require__(75);

      
HeadTable __webpack_require__(78);

      
CmapTable __webpack_require__(79);

      
HmtxTable __webpack_require__(80);

      
HheaTable __webpack_require__(81);

      
MaxpTable __webpack_require__(82);

      
PostTable __webpack_require__(83);

      
OS2Table __webpack_require__(84);

      
LocaTable __webpack_require__(85);

      
GlyfTable __webpack_require__(86);

      
TTFFont = (function() {
        
TTFFont.open = function(filenamename) {
          var 
contents;
          
contents fs.readFileSync(filename);
          return new 
TTFFont(contentsname);
        };

        
TTFFont.fromDFont = function(filenamefamily) {
          var 
dfont;
          
dfont DFont.open(filename);
          return new 
TTFFont(dfont.getNamedFont(family));
        };

        
TTFFont.fromBuffer = function(bufferfamily) {
          var 
dfontettf;
          try {
            
ttf = new TTFFont(bufferfamily);
            if (!(
ttf.head.exists && ttf.name.exists && ttf.cmap.exists)) {
              
dfont = new DFont(buffer);
              
ttf = new TTFFont(dfont.getNamedFont(family));
              if (!(
ttf.head.exists && ttf.name.exists && ttf.cmap.exists)) {
                throw new 
Error('Invalid TTF file in DFont');
              }
            }
            return 
ttf;
          } catch (
_error) {
            
_error;
            throw new 
Error('Unknown font format in buffer: ' e.message);
          }
        };

        function 
TTFFont(rawDataname) {
          var 
datainumFontsoffsetoffsetsversion_i_j_len;
          
this.rawData rawData;
          
data this.contents = new Data(this.rawData);
          if (
data.readString(4) === 'ttcf') {
            if (!
name) {
              throw new 
Error("Must specify a font name for TTC files.");
            }
            
version data.readInt();
            
numFonts data.readInt();
            
offsets = [];
            for (
_i 0<= numFonts _i numFonts _i numFonts<= numFonts ? ++_i : --_i) {
              
offsets[i] = data.readInt();
            }
            for (
_j 0_len offsets.length_j _len= ++_j) {
              
offset offsets[i];
              
data.pos offset;
              
this.parse();
              if (
this.name.postscriptName === name) {
                return;
              }
            }
            throw new 
Error("Font " name " not found in TTC file.");
          } else {
            
data.pos 0;
            
this.parse();
          }
        }

        
TTFFont.prototype.parse = function() {
          
this.directory = new Directory(this.contents);
          
this.head = new HeadTable(this);
          
this.name = new NameTable(this);
          
this.cmap = new CmapTable(this);
          
this.hhea = new HheaTable(this);
          
this.maxp = new MaxpTable(this);
          
this.hmtx = new HmtxTable(this);
          
this.post = new PostTable(this);
          
this.os2 = new OS2Table(this);
          
this.loca = new LocaTable(this);
          
this.glyf = new GlyfTable(this);
          
this.ascender = (this.os2.exists && this.os2.ascender) || this.hhea.ascender;
          
this.decender = (this.os2.exists && this.os2.decender) || this.hhea.decender;
          
this.lineGap = (this.os2.exists && this.os2.lineGap) || this.hhea.lineGap;
          return 
this.bbox = [this.head.xMinthis.head.yMinthis.head.xMaxthis.head.yMax];
        };

        
TTFFont.prototype.characterToGlyph = function(character) {
          var 
_ref;
          return ((
_ref this.cmap.unicode) != null _ref.codeMap[character] : void 0) || 0;
        };

        
TTFFont.prototype.widthOfGlyph = function(glyph) {
          var 
scale;
          
scale 1000.0 this.head.unitsPerEm;
          return 
this.hmtx.forGlyph(glyph).advance scale;
        };

        return 
TTFFont;

      })();

      
module.exports TTFFont;

    }).
call(this);


/***/ },
/* 72 */
/***/ 
function(moduleexports) {

    
// Generated by CoffeeScript 1.7.1
    
(function() {
      var 
Data;

      
Data = (function() {
        function 
Data(data) {
          
this.data data != null data : [];
          
this.pos 0;
          
this.length this.data.length;
        }

        
Data.prototype.readByte = function() {
          return 
this.data[this.pos++];
        };

        
Data.prototype.writeByte = function(byte) {
          return 
this.data[this.pos++] = byte;
        };

        
Data.prototype.byteAt = function(index) {
          return 
this.data[index];
        };

        
Data.prototype.readBool = function() {
          return !!
this.readByte();
        };

        
Data.prototype.writeBool = function(val) {
          return 
this.writeByte(val 0);
        };

        
Data.prototype.readUInt32 = function() {
          var 
b1b2b3b4;
          
b1 this.readByte() * 0x1000000;
          
b2 this.readByte() << 16;
          
b3 this.readByte() << 8;
          
b4 this.readByte();
          return 
b1 b2 b3 b4;
        };

        
Data.prototype.writeUInt32 = function(val) {
          
this.writeByte((val >>> 24) & 0xff);
          
this.writeByte((val >> 16) & 0xff);
          
this.writeByte((val >> 8) & 0xff);
          return 
this.writeByte(val 0xff);
        };

        
Data.prototype.readInt32 = function() {
          var 
int;
          
int this.readUInt32();
          if (
int >= 0x80000000) {
            return 
int 0x100000000;
          } else {
            return 
int;
          }
        };

        
Data.prototype.writeInt32 = function(val) {
          if (
val 0) {
            
val += 0x100000000;
          }
          return 
this.writeUInt32(val);
        };

        
Data.prototype.readUInt16 = function() {
          var 
b1b2;
          
b1 this.readByte() << 8;
          
b2 this.readByte();
          return 
b1 b2;
        };

        
Data.prototype.writeUInt16 = function(val) {
          
this.writeByte((val >> 8) & 0xff);
          return 
this.writeByte(val 0xff);
        };

        
Data.prototype.readInt16 = function() {
          var 
int;
          
int this.readUInt16();
          if (
int >= 0x8000) {
            return 
int 0x10000;
          } else {
            return 
int;
          }
        };

        
Data.prototype.writeInt16 = function(val) {
          if (
val 0) {
            
val += 0x10000;
          }
          return 
this.writeUInt16(val);
        };

        
Data.prototype.readString = function(length) {
          var 
iret_i;
          
ret = [];
          for (
_i 0<= length _i length _i length<= length ? ++_i : --_i) {
            
ret[i] = String.fromCharCode(this.readByte());
          }
          return 
ret.join('');
        };

        
Data.prototype.writeString = function(val) {
          var 
i_i_ref_results;
          
_results = [];
          for (
_i 0_ref val.length<= _ref _i _ref _i _ref<= _ref ? ++_i : --_i) {
            
_results.push(this.writeByte(val.charCodeAt(i)));
          }
          return 
_results;
        };

        
Data.prototype.stringAt = function(poslength) {
          
this.pos pos;
          return 
this.readString(length);
        };

        
Data.prototype.readShort = function() {
          return 
this.readInt16();
        };

        
Data.prototype.writeShort = function(val) {
          return 
this.writeInt16(val);
        };

        
Data.prototype.readLongLong = function() {
          var 
b1b2b3b4b5b6b7b8;
          
b1 this.readByte();
          
b2 this.readByte();
          
b3 this.readByte();
          
b4 this.readByte();
          
b5 this.readByte();
          
b6 this.readByte();
          
b7 this.readByte();
          
b8 this.readByte();
          if (
b1 0x80) {
            return ((
b1 0xff) * 0x100000000000000 + (b2 0xff) * 0x1000000000000 + (b3 0xff) * 0x10000000000 + (b4 0xff) * 0x100000000 + (b5 0xff) * 0x1000000 + (b6 0xff) * 0x10000 + (b7 0xff) * 0x100 + (b8 0xff) + 1) * -1;
          }
          return 
b1 0x100000000000000 b2 0x1000000000000 b3 0x10000000000 b4 0x100000000 b5 0x1000000 b6 0x10000 b7 0x100 b8;
        };

        
Data.prototype.writeLongLong = function(val) {
          var 
highlow;
          
high Math.floor(val 0x100000000);
          
low val 0xffffffff;
          
this.writeByte((high >> 24) & 0xff);
          
this.writeByte((high >> 16) & 0xff);
          
this.writeByte((high >> 8) & 0xff);
          
this.writeByte(high 0xff);
          
this.writeByte((low >> 24) & 0xff);
          
this.writeByte((low >> 16) & 0xff);
          
this.writeByte((low >> 8) & 0xff);
          return 
this.writeByte(low 0xff);
        };

        
Data.prototype.readInt = function() {
          return 
this.readInt32();
        };

        
Data.prototype.writeInt = function(val) {
          return 
this.writeInt32(val);
        };

        
Data.prototype.slice = function(startend) {
          return 
this.data.slice(startend);
        };

        
Data.prototype.read = function(bytes) {
          var 
bufi_i;
          
buf = [];
          for (
_i 0<= bytes _i bytes _i bytes<= bytes ? ++_i : --_i) {
            
buf.push(this.readByte());
          }
          return 
buf;
        };

        
Data.prototype.write = function(bytes) {
          var 
byte_i_len_results;
          
_results = [];
          for (
_i 0_len bytes.length_i _len_i++) {
            
byte bytes[_i];
            
_results.push(this.writeByte(byte));
          }
          return 
_results;
        };

        return 
Data;

      })();

      
module.exports Data;

    }).
call(this);


/***/ },
/* 73 */
/***/ 
function(moduleexports__webpack_require__) {

    
// Generated by CoffeeScript 1.7.1
    
(function() {
      var 
DFontDataDirectoryNameTablefs;

      
fs __webpack_require__(44);

      
Data __webpack_require__(72);

      
Directory __webpack_require__(74);

      
NameTable __webpack_require__(75);

      
DFont = (function() {
        
DFont.open = function(filename) {
          var 
contents;
          
contents fs.readFileSync(filename);
          return new 
DFont(contents);
        };

        function 
DFont(contents) {
          
this.contents = new Data(contents);
          
this.parse(this.contents);
        }

        
DFont.prototype.parse = function(data) {
          var 
attrb2b3b4dataLengthdataOffsetdataOfsentryfonthandleiidjlenlengthmapLengthmapOffsetmaxIndexmaxTypeIndexnamenameListOffsetnameOfspposrefListOffsettypetypeListOffset_i_j;
          
dataOffset data.readInt();
          
mapOffset data.readInt();
          
dataLength data.readInt();
          
mapLength data.readInt();
          
this.map = {};
          
data.pos mapOffset 24;
          
typeListOffset data.readShort() + mapOffset;
          
nameListOffset data.readShort() + mapOffset;
          
data.pos typeListOffset;
          
maxIndex data.readShort();
          for (
_i 0_i <= maxIndex_i += 1) {
            
type data.readString(4);
            
maxTypeIndex data.readShort();
            
refListOffset data.readShort();
            
this.map[type] = {
              list: [],
              
named: {}
            };
            
pos data.pos;
            
data.pos typeListOffset refListOffset;
            for (
_j 0_j <= maxTypeIndex_j += 1) {
              
id data.readShort();
              
nameOfs data.readShort();
              
attr data.readByte();
              
b2 data.readByte() << 16;
              
b3 data.readByte() << 8;
              
b4 data.readByte();
              
dataOfs dataOffset + (b2 b3 b4);
              
handle data.readUInt32();
              
entry = {
                
idid,
                
attributesattr,
                
offsetdataOfs,
                
handlehandle
              
};
              
data.pos;
              if (
nameOfs !== -&& (nameListOffset nameOfs mapOffset mapLength)) {
                
data.pos nameListOffset nameOfs;
                
len data.readByte();
                
entry.name data.readString(len);
              } else if (
type === 'sfnt') {
                
data.pos entry.offset;
                
length data.readUInt32();
                
font = {};
                
font.contents = new Data(data.slice(data.posdata.pos length));
                
font.directory = new Directory(font.contents);
                
name = new NameTable(font);
                
entry.name name.fontName[0].raw;
              }
              
data.pos p;
              
this.map[type].list.push(entry);
              if (
entry.name) {
                
this.map[type].named[entry.name] = entry;
              }
            }
            
data.pos pos;
          }
        };

        
DFont.prototype.getNamedFont = function(name) {
          var 
dataentrylengthposret_ref;
          
data this.contents;
          
pos data.pos;
          
entry = (_ref this.map.sfnt) != null _ref.named[name] : void 0;
          if (!
entry) {
            throw new 
Error("Font " name " not found in DFont file.");
          }
          
data.pos entry.offset;
          
length data.readUInt32();
          
ret data.slice(data.posdata.pos length);
          
data.pos pos;
          return 
ret;
        };

        return 
DFont;

      })();

      
module.exports DFont;

    }).
call(this);


/***/ },
/* 74 */
/***/ 
function(moduleexports__webpack_require__) {

    
/* WEBPACK VAR INJECTION */(function(Buffer) {// Generated by CoffeeScript 1.7.1
    
(function() {
      var 
DataDirectory,
        
__slice = [].slice;

      
Data __webpack_require__(72);

      
Directory = (function() {
        var 
checksum;

        function 
Directory(data) {
          var 
entryi_i_ref;
          
this.scalarType data.readInt();
          
this.tableCount data.readShort();
          
this.searchRange data.readShort();
          
this.entrySelector data.readShort();
          
this.rangeShift data.readShort();
          
this.tables = {};
          for (
_i 0_ref this.tableCount<= _ref _i _ref _i _ref<= _ref ? ++_i : --_i) {
            
entry = {
              
tagdata.readString(4),
              
checksumdata.readInt(),
              
offsetdata.readInt(),
              
lengthdata.readInt()
            };
            
this.tables[entry.tag] = entry;
          }
        }

        
Directory.prototype.encode = function(tables) {
          var 
adjustmentdirectorydirectoryLengthentrySelectorheadOffsetlog2offsetrangeShiftsearchRangesumtabletableCounttableDatatag;
          
tableCount Object.keys(tables).length;
          
log2 Math.log(2);
          
searchRange Math.floor(Math.log(tableCount) / log2) * 16;
          
entrySelector Math.floor(searchRange log2);
          
rangeShift tableCount 16 searchRange;
          
directory = new Data;
          
directory.writeInt(this.scalarType);
          
directory.writeShort(tableCount);
          
directory.writeShort(searchRange);
          
directory.writeShort(entrySelector);
          
directory.writeShort(rangeShift);
          
directoryLength tableCount 16;
          
offset directory.pos directoryLength;
          
headOffset null;
          
tableData = [];
          for (
tag in tables) {
            
table tables[tag];
            
directory.writeString(tag);
            
directory.writeInt(checksum(table));
            
directory.writeInt(offset);
            
directory.writeInt(table.length);
            
tableData tableData.concat(table);
            if (
tag === 'head') {
              
headOffset offset;
            }
            
offset += table.length;
            while (
offset 4) {
              
tableData.push(0);
              
offset++;
            }
          }
          
directory.write(tableData);
          
sum checksum(directory.data);
          
adjustment 0xB1B0AFBA sum;
          
directory.pos headOffset 8;
          
directory.writeUInt32(adjustment);
          return new 
Buffer(directory.data);
        };

        
checksum = function(data) {
          var 
isumtmp_i_ref;
          
data __slice.call(data);
          while (
data.length 4) {
            
data.push(0);
          }
          
tmp = new Data(data);
          
sum 0;
          for (
_i 0_ref data.length_i _ref_i += 4) {
            
sum += tmp.readUInt32();
          }
          return 
sum 0xFFFFFFFF;
        };

        return 
Directory;

      })();

      
module.exports Directory;

    }).
call(this);

    
/* WEBPACK VAR INJECTION */}.call(exports__webpack_require__(2).Buffer))

/***/ },
/* 75 */
/***/ 
function(moduleexports__webpack_require__) {

    
// Generated by CoffeeScript 1.7.1
    
(function() {
      var 
DataNameEntryNameTableTableutils,
        
__hasProp = {}.hasOwnProperty,
        
__extends = function(childparent) { for (var key in parent) { if (__hasProp.call(parentkey)) child[key] = parent[key]; } function ctor() { this.constructor child; } ctor.prototype parent.prototypechild.prototype = new ctor(); child.__super__ parent.prototype; return child; };

      
Table __webpack_require__(76);

      
Data __webpack_require__(72);

      
utils __webpack_require__(77);

      
NameTable = (function(_super) {
        var 
subsetTag;

        
__extends(NameTable_super);

        function 
NameTable() {
          return 
NameTable.__super__.constructor.apply(thisarguments);
        }

        
NameTable.prototype.tag 'name';

        
NameTable.prototype.parse = function(data) {
          var 
countentriesentryformatinamestringOffsetstringstext_i_j_len_name;
          
data.pos this.offset;
          
format data.readShort();
          
count data.readShort();
          
stringOffset data.readShort();
          
entries = [];
          for (
_i 0<= count _i count _i count<= count ? ++_i : --_i) {
            
entries.push({
              
platformIDdata.readShort(),
              
encodingIDdata.readShort(),
              
languageIDdata.readShort(),
              
nameIDdata.readShort(),
              
lengthdata.readShort(),
              
offsetthis.offset stringOffset data.readShort()
            });
          }
          
strings = {};
          for (
_j 0_len entries.length_j _len= ++_j) {
            
entry entries[i];
            
data.pos entry.offset;
            
text data.readString(entry.length);
            
name = new NameEntry(textentry);
            if (
strings[_name entry.nameID] == null) {
              
strings[_name] = [];
            }
            
strings[entry.nameID].push(name);
          }
          
this.strings strings;
          
this.copyright strings[0];
          
this.fontFamily strings[1];
          
this.fontSubfamily strings[2];
          
this.uniqueSubfamily strings[3];
          
this.fontName strings[4];
          
this.version strings[5];
          
this.postscriptName strings[6][0].raw.replace(/[x00-x19x80-xff]/g"");
          
this.trademark strings[7];
          
this.manufacturer strings[8];
          
this.designer strings[9];
          
this.description strings[10];
          
this.vendorUrl strings[11];
          
this.designerUrl strings[12];
          
this.license strings[13];
          
this.licenseUrl strings[14];
          
this.preferredFamily strings[15];
          
this.preferredSubfamily strings[17];
          
this.compatibleFull strings[18];
          return 
this.sampleText strings[19];
        };

        
subsetTag "AAAAAA";

        
NameTable.prototype.encode = function() {
          var 
id, list, nameIDnameTablepostscriptNamestrCountstrTablestringstringstableval_i_len_ref;
          
strings = {};
          
_ref this.strings;
          for (
id in _ref) {
            
val _ref[id];
            
strings[id] = val;
          }
          
postscriptName = new NameEntry("" subsetTag "+" this.postscriptName, {
            
platformID1,
            
encodingID0,
            
languageID0
          
});
          
strings[6] = [postscriptName];
          
subsetTag utils.successorOf(subsetTag);
          
strCount 0;
          for (
id in strings) {
            list = 
strings[id];
            if (list != 
null) {
              
strCount += list.length;
            }
          }
          
table = new Data;
          
strTable = new Data;
          
table.writeShort(0);
          
table.writeShort(strCount);
          
table.writeShort(12 strCount);
          for (
nameID in strings) {
            list = 
strings[nameID];
            if (list != 
null) {
              for (
_i 0_len = list.length_i _len_i++) {
                
string = list[_i];
                
table.writeShort(string.platformID);
                
table.writeShort(string.encodingID);
                
table.writeShort(string.languageID);
                
table.writeShort(nameID);
                
table.writeShort(string.length);
                
table.writeShort(strTable.pos);
                
strTable.writeString(string.raw);
              }
            }
          }
          return 
nameTable = {
            
postscriptNamepostscriptName.raw,
            
tabletable.data.concat(strTable.data)
          };
        };

        return 
NameTable;

      })(
Table);

      
module.exports NameTable;

      
NameEntry = (function() {
        function 
NameEntry(rawentry) {
          
this.raw raw;
          
this.length this.raw.length;
          
this.platformID entry.platformID;
          
this.encodingID entry.encodingID;
          
this.languageID entry.languageID;
        }

        return 
NameEntry;

      })();

    }).
call(this);


/***/ },
/* 76 */
/***/ 
function(moduleexports) {

    
// Generated by CoffeeScript 1.7.1
    
(function() {
      var 
Table;

      
Table = (function() {
        function 
Table(file) {
          var 
info;
          
this.file file;
          
info this.file.directory.tables[this.tag];
          
this.exists = !!info;
          if (
info) {
            
this.offset info.offsetthis.length info.length;
            
this.parse(this.file.contents);
          }
        }

        
Table.prototype.parse = function() {};

        
Table.prototype.encode = function() {};

        
Table.prototype.raw = function() {
          if (!
this.exists) {
            return 
null;
          }
          
this.file.contents.pos this.offset;
          return 
this.file.contents.read(this.length);
        };

        return 
Table;

      })();

      
module.exports Table;

    }).
call(this);


/***/ },
/* 77 */
/***/ 
function(moduleexports) {

    
// Generated by CoffeeScript 1.7.1

    /*
     * An implementation of Ruby's string.succ method.
     * By Devon Govett
     *
     * Returns the successor to str. The successor is calculated by incrementing characters starting 
     * from the rightmost alphanumeric (or the rightmost character if there are no alphanumerics) in the
     * string. Incrementing a digit always results in another digit, and incrementing a letter results in
     * another letter of the same case.
     *
     * If the increment generates a carry, the character to the left of it is incremented. This 
     * process repeats until there is no carry, adding an additional character if necessary.
     *
     * succ("abcd")      == "abce"
     * succ("THX1138")   == "THX1139"
     * succ("<<koala>>") == "<<koalb>>"
     * succ("1999zzz")   == "2000aaa"
     * succ("ZZZ9999")   == "AAAA0000"
     */

    
(function() {
      
exports.successorOf = function(input) {
        var 
addedalphabetcarryiindexisUpperCaselastlengthnextresult;
        
alphabet 'abcdefghijklmnopqrstuvwxyz';
        
length alphabet.length;
        
result input;
        
input.length;
        while (
>= 0) {
          
last input.charAt(--i);
          if (
isNaN(last)) {
            
index alphabet.indexOf(last.toLowerCase());
            if (
index === -1) {
              
next last;
              
carry true;
            } else {
              
next alphabet.charAt((index 1) % length);
              
isUpperCase last === last.toUpperCase();
              if (
isUpperCase) {
                
next next.toUpperCase();
              }
              
carry index >= length;
              if (
carry && === 0) {
                
added isUpperCase 'A' 'a';
                
result added next result.slice(1);
                break;
              }
            }
          } else {
            
next = +last 1;
            
carry next 9;
            if (
carry) {
              
next 0;
            }
            if (
carry && === 0) {
              
result '1' next result.slice(1);
              break;
            }
          }
          
result result.slice(0i) + next result.slice(1);
          if (!
carry) {
            break;
          }
        }
        return 
result;
      };

      
exports.invert = function(object) {
        var 
keyretval;
        
ret = {};
        for (
key in object) {
          
val object[key];
          
ret[val] = key;
        }
        return 
ret;
      };

    }).
call(this);


/***/ },
/* 78 */
/***/ 
function(moduleexports__webpack_require__) {

    
// Generated by CoffeeScript 1.7.1
    
(function() {
      var 
DataHeadTableTable,
        
__hasProp = {}.hasOwnProperty,
        
__extends = function(childparent) { for (var key in parent) { if (__hasProp.call(parentkey)) child[key] = parent[key]; } function ctor() { this.constructor child; } ctor.prototype parent.prototypechild.prototype = new ctor(); child.__super__ parent.prototype; return child; };

      
Table __webpack_require__(76);

      
Data __webpack_require__(72);

      
HeadTable = (function(_super) {
        
__extends(HeadTable_super);

        function 
HeadTable() {
          return 
HeadTable.__super__.constructor.apply(thisarguments);
        }

        
HeadTable.prototype.tag 'head';

        
HeadTable.prototype.parse = function(data) {
          
data.pos this.offset;
          
this.version data.readInt();
          
this.revision data.readInt();
          
this.checkSumAdjustment data.readInt();
          
this.magicNumber data.readInt();
          
this.flags data.readShort();
          
this.unitsPerEm data.readShort();
          
this.created data.readLongLong();
          
this.modified data.readLongLong();
          
this.xMin data.readShort();
          
this.yMin data.readShort();
          
this.xMax data.readShort();
          
this.yMax data.readShort();
          
this.macStyle data.readShort();
          
this.lowestRecPPEM data.readShort();
          
this.fontDirectionHint data.readShort();
          
this.indexToLocFormat data.readShort();
          return 
this.glyphDataFormat data.readShort();
        };

        
HeadTable.prototype.encode = function(loca) {
          var 
table;
          
table = new Data;
          
table.writeInt(this.version);
          
table.writeInt(this.revision);
          
table.writeInt(this.checkSumAdjustment);
          
table.writeInt(this.magicNumber);
          
table.writeShort(this.flags);
          
table.writeShort(this.unitsPerEm);
          
table.writeLongLong(this.created);
          
table.writeLongLong(this.modified);
          
table.writeShort(this.xMin);
          
table.writeShort(this.yMin);
          
table.writeShort(this.xMax);
          
table.writeShort(this.yMax);
          
table.writeShort(this.macStyle);
          
table.writeShort(this.lowestRecPPEM);
          
table.writeShort(this.fontDirectionHint);
          
table.writeShort(loca.type);
          
table.writeShort(this.glyphDataFormat);
          return 
table.data;
        };

        return 
HeadTable;

      })(
Table);

      
module.exports HeadTable;

    }).
call(this);


/***/ },
/* 79 */
/***/ 
function(moduleexports__webpack_require__) {

    
// Generated by CoffeeScript 1.7.1
    
(function() {
      var 
CmapEntryCmapTableDataTable,
        
__hasProp = {}.hasOwnProperty,
        
__extends = function(childparent) { for (var key in parent) { if (__hasProp.call(parentkey)) child[key] = parent[key]; } function ctor() { this.constructor child; } ctor.prototype parent.prototypechild.prototype = new ctor(); child.__super__ parent.prototype; return child; };

      
Table __webpack_require__(76);

      
Data __webpack_require__(72);

      
CmapTable = (function(_super) {
        
__extends(CmapTable_super);

        function 
CmapTable() {
          return 
CmapTable.__super__.constructor.apply(thisarguments);
        }

        
CmapTable.prototype.tag 'cmap';

        
CmapTable.prototype.parse = function(data) {
          var 
entryitableCount_i;
          
data.pos this.offset;
          
this.version data.readUInt16();
          
tableCount data.readUInt16();
          
this.tables = [];
          
this.unicode null;
          for (
_i 0<= tableCount _i tableCount _i tableCount<= tableCount ? ++_i : --_i) {
            
entry = new CmapEntry(datathis.offset);
            
this.tables.push(entry);
            if (
entry.isUnicode) {
              if (
this.unicode == null) {
                
this.unicode entry;
              }
            }
          }
          return 
true;
        };

        
CmapTable.encode = function(charmapencoding) {
          var 
resulttable;
          if (
encoding == null) {
            
encoding 'macroman';
          }
          
result CmapEntry.encode(charmapencoding);
          
table = new Data;
          
table.writeUInt16(0);
          
table.writeUInt16(1);
          
result.table table.data.concat(result.subtable);
          return 
result;
        };

        return 
CmapTable;

      })(
Table);

      
CmapEntry = (function() {
        function 
CmapEntry(dataoffset) {
          var 
codecountendCodeglyphIdglyphIdsiidDeltaidRangeOffsetindexsaveOffsetsegCountsegCountX2startstartCodetail_i_j_k_len;
          
this.platformID data.readUInt16();
          
this.encodingID data.readShort();
          
this.offset offset data.readInt();
          
saveOffset data.pos;
          
data.pos this.offset;
          
this.format data.readUInt16();
          
this.length data.readUInt16();
          
this.language data.readUInt16();
          
this.isUnicode = (this.platformID === && this.encodingID === && this.format === 4) || this.platformID === && this.format === 4;
          
this.codeMap = {};
          switch (
this.format) {
            case 
0:
              for (
_i 0_i 256= ++_i) {
                
this.codeMap[i] = data.readByte();
              }
              break;
            case 
4:
              
segCountX2 data.readUInt16();
              
segCount segCountX2 2;
              
data.pos += 6;
              
endCode = (function() {
                var 
_j_results;
                
_results = [];
                for (
_j 0<= segCount _j segCount _j segCount<= segCount ? ++_j : --_j) {
                  
_results.push(data.readUInt16());
                }
                return 
_results;
              })();
              
data.pos += 2;
              
startCode = (function() {
                var 
_j_results;
                
_results = [];
                for (
_j 0<= segCount _j segCount _j segCount<= segCount ? ++_j : --_j) {
                  
_results.push(data.readUInt16());
                }
                return 
_results;
              })();
              
idDelta = (function() {
                var 
_j_results;
                
_results = [];
                for (
_j 0<= segCount _j segCount _j segCount<= segCount ? ++_j : --_j) {
                  
_results.push(data.readUInt16());
                }
                return 
_results;
              })();
              
idRangeOffset = (function() {
                var 
_j_results;
                
_results = [];
                for (
_j 0<= segCount _j segCount _j segCount<= segCount ? ++_j : --_j) {
                  
_results.push(data.readUInt16());
                }
                return 
_results;
              })();
              
count = (this.length data.pos this.offset) / 2;
              
glyphIds = (function() {
                var 
_j_results;
                
_results = [];
                for (
_j 0<= count _j count _j count<= count ? ++_j : --_j) {
                  
_results.push(data.readUInt16());
                }
                return 
_results;
              })();
              for (
_j 0_len endCode.length_j _len= ++_j) {
                
tail endCode[i];
                
start startCode[i];
                for (
code _k startstart <= tail _k <= tail _k >= tailcode start <= tail ? ++_k : --_k) {
                  if (
idRangeOffset[i] === 0) {
                    
glyphId code idDelta[i];
                  } else {
                    
index idRangeOffset[i] / + (code start) - (segCount i);
                    
glyphId glyphIds[index] || 0;
                    if (
glyphId !== 0) {
                      
glyphId += idDelta[i];
                    }
                  }
                  
this.codeMap[code] = glyphId 0xFFFF;
                }
              }
          }
          
data.pos saveOffset;
        }

        
CmapEntry.encode = function(charmapencoding) {
          var 
charMapcodecodeMapcodesdeltadeltasdiffendCodeendCodesentrySelectorglyphIDsiidindexeslastmapnextIDoffsetoldrangeOffsetsrangeShiftresultsearchRangesegCountsegCountX2startCodestartCodesstartGlyphsubtable_i_j_k_l_len_len1_len2_len3_len4_len5_len6_len7_m_n_name_o_p_q;
          
subtable = new Data;
          
codes Object.keys(charmap).sort(function(ab) {
            return 
b;
          });
          switch (
encoding) {
            case 
'macroman':
              
id 0;
              
indexes = (function() {
                var 
_i_results;
                
_results = [];
                for (
_i 0_i 256= ++_i) {
                  
_results.push(0);
                }
                return 
_results;
              })();
              
map = {
                
00
              
};
              
codeMap = {};
              for (
_i 0_len codes.length_i _len_i++) {
                
code codes[_i];
                if (
map[_name charmap[code]] == null) {
                  
map[_name] = ++id;
                }
                
codeMap[code] = {
                  
oldcharmap[code],
                  
"new"map[charmap[code]]
                };
                
indexes[code] = map[charmap[code]];
              }
              
subtable.writeUInt16(1);
              
subtable.writeUInt16(0);
              
subtable.writeUInt32(12);
              
subtable.writeUInt16(0);
              
subtable.writeUInt16(262);
              
subtable.writeUInt16(0);
              
subtable.write(indexes);
              return 
result = {
                
charMapcodeMap,
                
subtablesubtable.data,
                
maxGlyphIDid 1
              
};
            case 
'unicode':
              
startCodes = [];
              
endCodes = [];
              
nextID 0;
              
map = {};
              
charMap = {};
              
last diff null;
              for (
_j 0_len1 codes.length_j _len1_j++) {
                
code codes[_j];
                
old charmap[code];
                if (
map[old] == null) {
                  
map[old] = ++nextID;
                }
                
charMap[code] = {
                  
oldold,
                  
"new"map[old]
                };
                
delta map[old] - code;
                if ((
last == null) || delta !== diff) {
                  if (
last) {
                    
endCodes.push(last);
                  }
                  
startCodes.push(code);
                  
diff delta;
                }
                
last code;
              }
              if (
last) {
                
endCodes.push(last);
              }
              
endCodes.push(0xFFFF);
              
startCodes.push(0xFFFF);
              
segCount startCodes.length;
              
segCountX2 segCount 2;
              
searchRange Math.pow(Math.log(segCount) / Math.LN22);
              
entrySelector Math.log(searchRange 2) / Math.LN2;
              
rangeShift segCount searchRange;
              
deltas = [];
              
rangeOffsets = [];
              
glyphIDs = [];
              for (
_k 0_len2 startCodes.length_k _len2= ++_k) {
                
startCode startCodes[i];
                
endCode endCodes[i];
                if (
startCode === 0xFFFF) {
                  
deltas.push(0);
                  
rangeOffsets.push(0);
                  break;
                }
                
startGlyph charMap[startCode]["new"];
                if (
startCode startGlyph >= 0x8000) {
                  
deltas.push(0);
                  
rangeOffsets.push(* (glyphIDs.length segCount i));
                  for (
code _l startCodestartCode <= endCode _l <= endCode _l >= endCodecode startCode <= endCode ? ++_l : --_l) {
                    
glyphIDs.push(charMap[code]["new"]);
                  }
                } else {
                  
deltas.push(startGlyph startCode);
                  
rangeOffsets.push(0);
                }
              }
              
subtable.writeUInt16(3);
              
subtable.writeUInt16(1);
              
subtable.writeUInt32(12);
              
subtable.writeUInt16(4);
              
subtable.writeUInt16(16 segCount glyphIDs.length 2);
              
subtable.writeUInt16(0);
              
subtable.writeUInt16(segCountX2);
              
subtable.writeUInt16(searchRange);
              
subtable.writeUInt16(entrySelector);
              
subtable.writeUInt16(rangeShift);
              for (
_m 0_len3 endCodes.length_m _len3_m++) {
                
code endCodes[_m];
                
subtable.writeUInt16(code);
              }
              
subtable.writeUInt16(0);
              for (
_n 0_len4 startCodes.length_n _len4_n++) {
                
code startCodes[_n];
                
subtable.writeUInt16(code);
              }
              for (
_o 0_len5 deltas.length_o _len5_o++) {
                
delta deltas[_o];
                
subtable.writeUInt16(delta);
              }
              for (
_p 0_len6 rangeOffsets.length_p _len6_p++) {
                
offset rangeOffsets[_p];
                
subtable.writeUInt16(offset);
              }
              for (
_q 0_len7 glyphIDs.length_q _len7_q++) {
                
id glyphIDs[_q];
                
subtable.writeUInt16(id);
              }
              return 
result = {
                
charMapcharMap,
                
subtablesubtable.data,
                
maxGlyphIDnextID 1
              
};
          }
        };

        return 
CmapEntry;

      })();

      
module.exports CmapTable;

    }).
call(this);


/***/ },
/* 80 */
/***/ 
function(moduleexports__webpack_require__) {

    
// Generated by CoffeeScript 1.7.1
    
(function() {
      var 
DataHmtxTableTable,
        
__hasProp = {}.hasOwnProperty,
        
__extends = function(childparent) { for (var key in parent) { if (__hasProp.call(parentkey)) child[key] = parent[key]; } function ctor() { this.constructor child; } ctor.prototype parent.prototypechild.prototype = new ctor(); child.__super__ parent.prototype; return child; };

      
Table __webpack_require__(76);

      
Data __webpack_require__(72);

      
HmtxTable = (function(_super) {
        
__extends(HmtxTable_super);

        function 
HmtxTable() {
          return 
HmtxTable.__super__.constructor.apply(thisarguments);
        }

        
HmtxTable.prototype.tag 'hmtx';

        
HmtxTable.prototype.parse = function(data) {
          var 
ilastlsbCountm_i_j_ref_results;
          
data.pos this.offset;
          
this.metrics = [];
          for (
_i 0_ref this.file.hhea.numberOfMetrics<= _ref _i _ref _i _ref<= _ref ? ++_i : --_i) {
            
this.metrics.push({
              
advancedata.readUInt16(),
              
lsbdata.readInt16()
            });
          }
          
lsbCount this.file.maxp.numGlyphs this.file.hhea.numberOfMetrics;
          
this.leftSideBearings = (function() {
            var 
_j_results;
            
_results = [];
            for (
_j 0<= lsbCount _j lsbCount _j lsbCount<= lsbCount ? ++_j : --_j) {
              
_results.push(data.readInt16());
            }
            return 
_results;
          })();
          
this.widths = (function() {
            var 
_j_len_ref1_results;
            
_ref1 this.metrics;
            
_results = [];
            for (
_j 0_len _ref1.length_j _len_j++) {
              
_ref1[_j];
              
_results.push(m.advance);
            }
            return 
_results;
          }).
call(this);
          
last this.widths[this.widths.length 1];
          
_results = [];
          for (
_j 0<= lsbCount _j lsbCount _j lsbCount<= lsbCount ? ++_j : --_j) {
            
_results.push(this.widths.push(last));
          }
          return 
_results;
        };

        
HmtxTable.prototype.forGlyph = function(id) {
          var 
metrics;
          if (
id in this.metrics) {
            return 
this.metrics[id];
          }
          return 
metrics = {
            
advancethis.metrics[this.metrics.length 1].advance,
            
lsbthis.leftSideBearings[id this.metrics.length]
          };
        };

        
HmtxTable.prototype.encode = function(mapping) {
          var 
idmetrictable_i_len;
          
table = new Data;
          for (
_i 0_len mapping.length_i _len_i++) {
            
id mapping[_i];
            
metric this.forGlyph(id);
            
table.writeUInt16(metric.advance);
            
table.writeUInt16(metric.lsb);
          }
          return 
table.data;
        };

        return 
HmtxTable;

      })(
Table);

      
module.exports HmtxTable;

    }).
call(this);


/***/ },
/* 81 */
/***/ 
function(moduleexports__webpack_require__) {

    
// Generated by CoffeeScript 1.7.1
    
(function() {
      var 
DataHheaTableTable,
        
__hasProp = {}.hasOwnProperty,
        
__extends = function(childparent) { for (var key in parent) { if (__hasProp.call(parentkey)) child[key] = parent[key]; } function ctor() { this.constructor child; } ctor.prototype parent.prototypechild.prototype = new ctor(); child.__super__ parent.prototype; return child; };

      
Table __webpack_require__(76);

      
Data __webpack_require__(72);

      
HheaTable = (function(_super) {
        
__extends(HheaTable_super);

        function 
HheaTable() {
          return 
HheaTable.__super__.constructor.apply(thisarguments);
        }

        
HheaTable.prototype.tag 'hhea';

        
HheaTable.prototype.parse = function(data) {
          
data.pos this.offset;
          
this.version data.readInt();
          
this.ascender data.readShort();
          
this.decender data.readShort();
          
this.lineGap data.readShort();
          
this.advanceWidthMax data.readShort();
          
this.minLeftSideBearing data.readShort();
          
this.minRightSideBearing data.readShort();
          
this.xMaxExtent data.readShort();
          
this.caretSlopeRise data.readShort();
          
this.caretSlopeRun data.readShort();
          
this.caretOffset data.readShort();
          
data.pos += 2;
          
this.metricDataFormat data.readShort();
          return 
this.numberOfMetrics data.readUInt16();
        };

        
HheaTable.prototype.encode = function(ids) {
          var 
itable_i_ref;
          
table = new Data;
          
table.writeInt(this.version);
          
table.writeShort(this.ascender);
          
table.writeShort(this.decender);
          
table.writeShort(this.lineGap);
          
table.writeShort(this.advanceWidthMax);
          
table.writeShort(this.minLeftSideBearing);
          
table.writeShort(this.minRightSideBearing);
          
table.writeShort(this.xMaxExtent);
          
table.writeShort(this.caretSlopeRise);
          
table.writeShort(this.caretSlopeRun);
          
table.writeShort(this.caretOffset);
          for (
_i 0_ref 2<= _ref _i _ref _i _ref<= _ref ? ++_i : --_i) {
            
table.writeByte(0);
          }
          
table.writeShort(this.metricDataFormat);
          
table.writeUInt16(ids.length);
          return 
table.data;
        };

        return 
HheaTable;

      })(
Table);

      
module.exports HheaTable;

    }).
call(this);


/***/ },
/* 82 */
/***/ 
function(moduleexports__webpack_require__) {

    
// Generated by CoffeeScript 1.7.1
    
(function() {
      var 
DataMaxpTableTable,
        
__hasProp = {}.hasOwnProperty,
        
__extends = function(childparent) { for (var key in parent) { if (__hasProp.call(parentkey)) child[key] = parent[key]; } function ctor() { this.constructor child; } ctor.prototype parent.prototypechild.prototype = new ctor(); child.__super__ parent.prototype; return child; };

      
Table __webpack_require__(76);

      
Data __webpack_require__(72);

      
MaxpTable = (function(_super) {
        
__extends(MaxpTable_super);

        function 
MaxpTable() {
          return 
MaxpTable.__super__.constructor.apply(thisarguments);
        }

        
MaxpTable.prototype.tag 'maxp';

        
MaxpTable.prototype.parse = function(data) {
          
data.pos this.offset;
          
this.version data.readInt();
          
this.numGlyphs data.readUInt16();
          
this.maxPoints data.readUInt16();
          
this.maxContours data.readUInt16();
          
this.maxCompositePoints data.readUInt16();
          
this.maxComponentContours data.readUInt16();
          
this.maxZones data.readUInt16();
          
this.maxTwilightPoints data.readUInt16();
          
this.maxStorage data.readUInt16();
          
this.maxFunctionDefs data.readUInt16();
          
this.maxInstructionDefs data.readUInt16();
          
this.maxStackElements data.readUInt16();
          
this.maxSizeOfInstructions data.readUInt16();
          
this.maxComponentElements data.readUInt16();
          return 
this.maxComponentDepth data.readUInt16();
        };

        
MaxpTable.prototype.encode = function(ids) {
          var 
table;
          
table = new Data;
          
table.writeInt(this.version);
          
table.writeUInt16(ids.length);
          
table.writeUInt16(this.maxPoints);
          
table.writeUInt16(this.maxContours);
          
table.writeUInt16(this.maxCompositePoints);
          
table.writeUInt16(this.maxComponentContours);
          
table.writeUInt16(this.maxZones);
          
table.writeUInt16(this.maxTwilightPoints);
          
table.writeUInt16(this.maxStorage);
          
table.writeUInt16(this.maxFunctionDefs);
          
table.writeUInt16(this.maxInstructionDefs);
          
table.writeUInt16(this.maxStackElements);
          
table.writeUInt16(this.maxSizeOfInstructions);
          
table.writeUInt16(this.maxComponentElements);
          
table.writeUInt16(this.maxComponentDepth);
          return 
table.data;
        };

        return 
MaxpTable;

      })(
Table);

      
module.exports MaxpTable;

    }).
call(this);


/***/ },
/* 83 */
/***/ 
function(moduleexports__webpack_require__) {

    
// Generated by CoffeeScript 1.7.1
    
(function() {
      var 
DataPostTableTable,
        
__hasProp = {}.hasOwnProperty,
        
__extends = function(childparent) { for (var key in parent) { if (__hasProp.call(parentkey)) child[key] = parent[key]; } function ctor() { this.constructor child; } ctor.prototype parent.prototypechild.prototype = new ctor(); child.__super__ parent.prototype; return child; };

      
Table __webpack_require__(76);

      
Data __webpack_require__(72);

      
PostTable = (function(_super) {
        var 
POSTSCRIPT_GLYPHS;

        
__extends(PostTable_super);

        function 
PostTable() {
          return 
PostTable.__super__.constructor.apply(thisarguments);
        }

        
PostTable.prototype.tag 'post';

        
PostTable.prototype.parse = function(data) {
          var 
ilengthnumberOfGlyphs_i_results;
          
data.pos this.offset;
          
this.format data.readInt();
          
this.italicAngle data.readInt();
          
this.underlinePosition data.readShort();
          
this.underlineThickness data.readShort();
          
this.isFixedPitch data.readInt();
          
this.minMemType42 data.readInt();
          
this.maxMemType42 data.readInt();
          
this.minMemType1 data.readInt();
          
this.maxMemType1 data.readInt();
          switch (
this.format) {
            case 
0x00010000:
              break;
            case 
0x00020000:
              
numberOfGlyphs data.readUInt16();
              
this.glyphNameIndex = [];
              for (
_i 0<= numberOfGlyphs _i numberOfGlyphs _i numberOfGlyphs<= numberOfGlyphs ? ++_i : --_i) {
                
this.glyphNameIndex.push(data.readUInt16());
              }
              
this.names = [];
              
_results = [];
              while (
data.pos this.offset this.length) {
                
length data.readByte();
                
_results.push(this.names.push(data.readString(length)));
              }
              return 
_results;
              break;
            case 
0x00025000:
              
numberOfGlyphs data.readUInt16();
              return 
this.offsets data.read(numberOfGlyphs);
            case 
0x00030000:
              break;
            case 
0x00040000:
              return 
this.map = (function() {
                var 
_j_ref_results1;
                
_results1 = [];
                for (
_j 0_ref this.file.maxp.numGlyphs<= _ref _j _ref _j _ref<= _ref ? ++_j : --_j) {
                  
_results1.push(data.readUInt32());
                }
                return 
_results1;
              }).
call(this);
          }
        };

        
PostTable.prototype.glyphFor = function(code) {
          var 
index;
          switch (
this.format) {
            case 
0x00010000:
              return 
POSTSCRIPT_GLYPHS[code] || '.notdef';
            case 
0x00020000:
              
index this.glyphNameIndex[code];
              if (
index <= 257) {
                return 
POSTSCRIPT_GLYPHS[index];
              } else {
                return 
this.names[index 258] || '.notdef';
              }
              break;
            case 
0x00025000:
              return 
POSTSCRIPT_GLYPHS[code this.offsets[code]] || '.notdef';
            case 
0x00030000:
              return 
'.notdef';
            case 
0x00040000:
              return 
this.map[code] || 0xFFFF;
          }
        };

        
PostTable.prototype.encode = function(mapping) {
          var 
idindexindexespositionpostrawstringstringstable_i_j_k_len_len1_len2;
          if (!
this.exists) {
            return 
null;
          }
          
raw this.raw();
          if (
this.format === 0x00030000) {
            return 
raw;
          }
          
table = new Data(raw.slice(032));
          
table.writeUInt32(0x00020000);
          
table.pos 32;
          
indexes = [];
          
strings = [];
          for (
_i 0_len mapping.length_i _len_i++) {
            
id mapping[_i];
            
post this.glyphFor(id);
            
position POSTSCRIPT_GLYPHS.indexOf(post);
            if (
position !== -1) {
              
indexes.push(position);
            } else {
              
indexes.push(257 strings.length);
              
strings.push(post);
            }
          }
          
table.writeUInt16(Object.keys(mapping).length);
          for (
_j 0_len1 indexes.length_j _len1_j++) {
            
index indexes[_j];
            
table.writeUInt16(index);
          }
          for (
_k 0_len2 strings.length_k _len2_k++) {
            
string strings[_k];
            
table.writeByte(string.length);
            
table.writeString(string);
          }
          return 
table.data;
        };

        
POSTSCRIPT_GLYPHS '.notdef .null nonmarkingreturn space exclam quotedbl numbersign dollar percentnampersand quotesingle parenleft parenright asterisk plus comma hyphen period slashnzero one two three four five six seven eight nine colon semicolon less equal greaternquestion at A B C D E F G H I J K L M N O P Q R S T U V W X Y Znbracketleft backslash bracketright asciicircum underscore gravena b c d e f g h i j k l m n o p q r s t u v w x y znbraceleft bar braceright asciitilde Adieresis Aring Ccedilla Eacute Ntilde OdieresisnUdieresis aacute agrave acircumflex adieresis atilde aring ccedilla eacute egravenecircumflex edieresis iacute igrave icircumflex idieresis ntilde oacute ogravenocircumflex odieresis otilde uacute ugrave ucircumflex udieresis dagger degree centnsterling section bullet paragraph germandbls registered copyright trademark acutendieresis notequal AE Oslash infinity plusminus lessequal greaterequal yen munpartialdiff summation product pi integral ordfeminine ordmasculine Omega ae oslashnquestiondown exclamdown logicalnot radical florin approxequal Delta guillemotleftnguillemotright ellipsis nonbreakingspace Agrave Atilde Otilde OE oe endash emdashnquotedblleft quotedblright quoteleft quoteright divide lozenge ydieresis Ydieresisnfraction currency guilsinglleft guilsinglright fi fl daggerdbl periodcenterednquotesinglbase quotedblbase perthousand Acircumflex Ecircumflex Aacute EdieresisnEgrave Iacute Icircumflex Idieresis Igrave Oacute Ocircumflex apple Ograve UacutenUcircumflex Ugrave dotlessi circumflex tilde macron breve dotaccent ring cedillanhungarumlaut ogonek caron Lslash lslash Scaron scaron Zcaron zcaron brokenbar Ethneth Yacute yacute Thorn thorn minus multiply onesuperior twosuperior threesuperiornonehalf onequarter threequarters franc Gbreve gbreve Idotaccent Scedilla scedillanCacute cacute Ccaron ccaron dcroat'.split(/s+/g);

        return 
PostTable;

      })(
Table);

      
module.exports PostTable;

    }).
call(this);


/***/ },
/* 84 */
/***/ 
function(moduleexports__webpack_require__) {

    
// Generated by CoffeeScript 1.7.1
    
(function() {
      var 
OS2TableTable,
        
__hasProp = {}.hasOwnProperty,
        
__extends = function(childparent) { for (var key in parent) { if (__hasProp.call(parentkey)) child[key] = parent[key]; } function ctor() { this.constructor child; } ctor.prototype parent.prototypechild.prototype = new ctor(); child.__super__ parent.prototype; return child; };

      
Table __webpack_require__(76);

      
OS2Table = (function(_super) {
        
__extends(OS2Table_super);

        function 
OS2Table() {
          return 
OS2Table.__super__.constructor.apply(thisarguments);
        }

        
OS2Table.prototype.tag 'OS/2';

        
OS2Table.prototype.parse = function(data) {
          var 
i;
          
data.pos this.offset;
          
this.version data.readUInt16();
          
this.averageCharWidth data.readShort();
          
this.weightClass data.readUInt16();
          
this.widthClass data.readUInt16();
          
this.type data.readShort();
          
this.ySubscriptXSize data.readShort();
          
this.ySubscriptYSize data.readShort();
          
this.ySubscriptXOffset data.readShort();
          
this.ySubscriptYOffset data.readShort();
          
this.ySuperscriptXSize data.readShort();
          
this.ySuperscriptYSize data.readShort();
          
this.ySuperscriptXOffset data.readShort();
          
this.ySuperscriptYOffset data.readShort();
          
this.yStrikeoutSize data.readShort();
          
this.yStrikeoutPosition data.readShort();
          
this.familyClass data.readShort();
          
this.panose = (function() {
            var 
_i_results;
            
_results = [];
            for (
_i 0_i 10= ++_i) {
              
_results.push(data.readByte());
            }
            return 
_results;
          })();
          
this.charRange = (function() {
            var 
_i_results;
            
_results = [];
            for (
_i 0_i 4= ++_i) {
              
_results.push(data.readInt());
            }
            return 
_results;
          })();
          
this.vendorID data.readString(4);
          
this.selection data.readShort();
          
this.firstCharIndex data.readShort();
          
this.lastCharIndex data.readShort();
          if (
this.version 0) {
            
this.ascent data.readShort();
            
this.descent data.readShort();
            
this.lineGap data.readShort();
            
this.winAscent data.readShort();
            
this.winDescent data.readShort();
            
this.codePageRange = (function() {
              var 
_i_results;
              
_results = [];
              for (
_i 0_i 2= ++_i) {
                
_results.push(data.readInt());
              }
              return 
_results;
            })();
            if (
this.version 1) {
              
this.xHeight data.readShort();
              
this.capHeight data.readShort();
              
this.defaultChar data.readShort();
              
this.breakChar data.readShort();
              return 
this.maxContext data.readShort();
            }
          }
        };

        
OS2Table.prototype.encode = function() {
          return 
this.raw();
        };

        return 
OS2Table;

      })(
Table);

      
module.exports OS2Table;

    }).
call(this);


/***/ },
/* 85 */
/***/ 
function(moduleexports__webpack_require__) {

    
// Generated by CoffeeScript 1.7.1
    
(function() {
      var 
DataLocaTableTable,
        
__hasProp = {}.hasOwnProperty,
        
__extends = function(childparent) { for (var key in parent) { if (__hasProp.call(parentkey)) child[key] = parent[key]; } function ctor() { this.constructor child; } ctor.prototype parent.prototypechild.prototype = new ctor(); child.__super__ parent.prototype; return child; };

      
Table __webpack_require__(76);

      
Data __webpack_require__(72);

      
LocaTable = (function(_super) {
        
__extends(LocaTable_super);

        function 
LocaTable() {
          return 
LocaTable.__super__.constructor.apply(thisarguments);
        }

        
LocaTable.prototype.tag 'loca';

        
LocaTable.prototype.parse = function(data) {
          var 
formati;
          
data.pos this.offset;
          
format this.file.head.indexToLocFormat;
          if (
format === 0) {
            return 
this.offsets = (function() {
              var 
_i_ref_results;
              
_results = [];
              for (
_i 0_ref this.length_i _ref_i += 2) {
                
_results.push(data.readUInt16() * 2);
              }
              return 
_results;
            }).
call(this);
          } else {
            return 
this.offsets = (function() {
              var 
_i_ref_results;
              
_results = [];
              for (
_i 0_ref this.length_i _ref_i += 4) {
                
_results.push(data.readUInt32());
              }
              return 
_results;
            }).
call(this);
          }
        };

        
LocaTable.prototype.indexOf = function(id) {
          return 
this.offsets[id];
        };

        
LocaTable.prototype.lengthOf = function(id) {
          return 
this.offsets[id 1] - this.offsets[id];
        };

        
LocaTable.prototype.encode = function(offsets) {
          var 
ooffsetrettable_i_j_k_len_len1_len2_ref;
          
table = new Data;
          for (
_i 0_len offsets.length_i _len_i++) {
            
offset offsets[_i];
            if (!(
offset 0xFFFF)) {
              continue;
            }
            
_ref this.offsets;
            for (
_j 0_len1 _ref.length_j _len1_j++) {
              
_ref[_j];
              
table.writeUInt32(o);
            }
            return 
ret = {
              
format1,
              
tabletable.data
            
};
          }
          for (
_k 0_len2 offsets.length_k _len2_k++) {
            
offsets[_k];
            
table.writeUInt16(2);
          }
          return 
ret = {
            
format0,
            
tabletable.data
          
};
        };

        return 
LocaTable;

      })(
Table);

      
module.exports LocaTable;

    }).
call(this);


/***/ },
/* 86 */
/***/ 
function(moduleexports__webpack_require__) {

    
// Generated by CoffeeScript 1.7.1
    
(function() {
      var 
CompoundGlyphDataGlyfTableSimpleGlyphTable,
        
__hasProp = {}.hasOwnProperty,
        
__extends = function(childparent) { for (var key in parent) { if (__hasProp.call(parentkey)) child[key] = parent[key]; } function ctor() { this.constructor child; } ctor.prototype parent.prototypechild.prototype = new ctor(); child.__super__ parent.prototype; return child; },
        
__slice = [].slice;

      
Table __webpack_require__(76);

      
Data __webpack_require__(72);

      
GlyfTable = (function(_super) {
        
__extends(GlyfTable_super);

        function 
GlyfTable() {
          return 
GlyfTable.__super__.constructor.apply(thisarguments);
        }

        
GlyfTable.prototype.tag 'glyf';

        
GlyfTable.prototype.parse = function(data) {
          return 
this.cache = {};
        };

        
GlyfTable.prototype.glyphFor = function(id) {
          var 
dataindexlengthlocanumberOfContoursrawxMaxxMinyMaxyMin;
          if (
id in this.cache) {
            return 
this.cache[id];
          }
          
loca this.file.loca;
          
data this.file.contents;
          
index loca.indexOf(id);
          
length loca.lengthOf(id);
          if (
length === 0) {
            return 
this.cache[id] = null;
          }
          
data.pos this.offset index;
          
raw = new Data(data.read(length));
          
numberOfContours raw.readShort();
          
xMin raw.readShort();
          
yMin raw.readShort();
          
xMax raw.readShort();
          
yMax raw.readShort();
          if (
numberOfContours === -1) {
            
this.cache[id] = new CompoundGlyph(rawxMinyMinxMaxyMax);
          } else {
            
this.cache[id] = new SimpleGlyph(rawnumberOfContoursxMinyMinxMaxyMax);
          }
          return 
this.cache[id];
        };

        
GlyfTable.prototype.encode = function(glyphsmappingold2new) {
          var 
glyphidoffsetstable_i_len;
          
table = [];
          
offsets = [];
          for (
_i 0_len mapping.length_i _len_i++) {
            
id mapping[_i];
            
glyph glyphs[id];
            
offsets.push(table.length);
            if (
glyph) {
              
table table.concat(glyph.encode(old2new));
            }
          }
          
offsets.push(table.length);
          return {
            
tabletable,
            
offsetsoffsets
          
};
        };

        return 
GlyfTable;

      })(
Table);

      
SimpleGlyph = (function() {
        function 
SimpleGlyph(rawnumberOfContoursxMinyMinxMaxyMax) {
          
this.raw raw;
          
this.numberOfContours numberOfContours;
          
this.xMin xMin;
          
this.yMin yMin;
          
this.xMax xMax;
          
this.yMax yMax;
          
this.compound false;
        }

        
SimpleGlyph.prototype.encode = function() {
          return 
this.raw.data;
        };

        return 
SimpleGlyph;

      })();

      
CompoundGlyph = (function() {
        var 
ARG_1_AND_2_ARE_WORDSMORE_COMPONENTSWE_HAVE_AN_X_AND_Y_SCALEWE_HAVE_A_SCALEWE_HAVE_A_TWO_BY_TWOWE_HAVE_INSTRUCTIONS;

        
ARG_1_AND_2_ARE_WORDS 0x0001;

        
WE_HAVE_A_SCALE 0x0008;

        
MORE_COMPONENTS 0x0020;

        
WE_HAVE_AN_X_AND_Y_SCALE 0x0040;

        
WE_HAVE_A_TWO_BY_TWO 0x0080;

        
WE_HAVE_INSTRUCTIONS 0x0100;

        function 
CompoundGlyph(rawxMinyMinxMaxyMax) {
          var 
dataflags;
          
this.raw raw;
          
this.xMin xMin;
          
this.yMin yMin;
          
this.xMax xMax;
          
this.yMax yMax;
          
this.compound true;
          
this.glyphIDs = [];
          
this.glyphOffsets = [];
          
data this.raw;
          while (
true) {
            
flags data.readShort();
            
this.glyphOffsets.push(data.pos);
            
this.glyphIDs.push(data.readShort());
            if (!(
flags MORE_COMPONENTS)) {
              break;
            }
            if (
flags ARG_1_AND_2_ARE_WORDS) {
              
data.pos += 4;
            } else {
              
data.pos += 2;
            }
            if (
flags WE_HAVE_A_TWO_BY_TWO) {
              
data.pos += 8;
            } else if (
flags WE_HAVE_AN_X_AND_Y_SCALE) {
              
data.pos += 4;
            } else if (
flags WE_HAVE_A_SCALE) {
              
data.pos += 2;
            }
          }
        }

        
CompoundGlyph.prototype.encode = function(mapping) {
          var 
iidresult_i_len_ref;
          
result = new Data(__slice.call(this.raw.data));
          
_ref this.glyphIDs;
          for (
_i 0_len _ref.length_i _len= ++_i) {
            
id _ref[i];
            
result.pos this.glyphOffsets[i];
            
result.writeShort(mapping[id]);
          }
          return 
result.data;
        };

        return 
CompoundGlyph;

      })();

      
module.exports GlyfTable;

    }).
call(this);


/***/ },
/* 87 */
/***/ 
function(moduleexports__webpack_require__) {

    
// Generated by CoffeeScript 1.7.1
    
(function() {
      var 
AFMFontfs;

      
fs __webpack_require__(44);

      
AFMFont = (function() {
        var 
WIN_ANSI_MAPcharacters;

        
AFMFont.open = function(filename) {
          return new 
AFMFont(fs.readFileSync(filename'utf8'));
        };

        function 
AFMFont(contents) {
          var 
ei;
          
this.contents contents;
          
this.attributes = {};
          
this.glyphWidths = {};
          
this.boundingBoxes = {};
          
this.parse();
          
this.charWidths = (function() {
            var 
_i_results;
            
_results = [];
            for (
_i 0_i <= 255= ++_i) {
              
_results.push(this.glyphWidths[characters[i]]);
            }
            return 
_results;
          }).
call(this);
          
this.bbox = (function() {
            var 
_i_len_ref_results;
            
_ref this.attributes['FontBBox'].split(/s+/);
            
_results = [];
            for (
_i 0_len _ref.length_i _len_i++) {
              
_ref[_i];
              
_results.push(+e);
            }
            return 
_results;
          }).
call(this);
          
this.ascender = +(this.attributes['Ascender'] || 0);
          
this.decender = +(this.attributes['Descender'] || 0);
          
this.lineGap = (this.bbox[3] - this.bbox[1]) - (this.ascender this.decender);
        }

        
AFMFont.prototype.parse = function() {
          var 
akeylinematchnamesectionvalue_i_len_ref;
          
section '';
          
_ref this.contents.split('n');
          for (
_i 0_len _ref.length_i _len_i++) {
            
line _ref[_i];
            if (
match line.match(/^Start(w+)/)) {
              
section match[1];
              continue;
            } else if (
match line.match(/^End(w+)/)) {
              
section '';
              continue;
            }
            switch (
section) {
              case 
'FontMetrics':
                
match line.match(/(^w+)s+(.*)/);
                
key match[1];
                
value match[2];
                if (
this.attributes[key]) {
                  if (!Array.
isArray(a)) {
                    
this.attributes[key] = [a];
                  }
                  
a.push(value);
                } else {
                  
this.attributes[key] = value;
                }
                break;
              case 
'CharMetrics':
                if (!/^
CH?s/.test(line)) {
                  continue;
                }
                
name line.match(/bNs+(.?w+)s*;/)[1];
                
this.glyphWidths[name] = +line.match(/bWXs+(d+)s*;/)[1];
            }
          }
        };

        
WIN_ANSI_MAP = {
          
402131,
          
8211150,
          
8212151,
          
8216145,
          
8217146,
          
8218130,
          
8220147,
          
8221148,
          
8222132,
          
8224134,
          
8225135,
          
8226149,
          
8230133,
          
8364128,
          
8240137,
          
8249139,
          
8250155,
          
710136,
          
8482153,
          
338140,
          
339156,
          
732152,
          
352138,
          
353154,
          
376159,
          
381142,
          
382158
        
};

        
AFMFont.prototype.encodeText = function(text) {
          var 
charistring_i_ref;
          
string '';
          for (
_i 0_ref text.length<= _ref _i _ref _i _ref<= _ref ? ++_i : --_i) {
            
char text.charCodeAt(i);
            
char WIN_ANSI_MAP[char] || char;
            
string += String.fromCharCode(char);
          }
          return 
string;
        };

        
AFMFont.prototype.characterToGlyph = function(character) {
          return 
characters[WIN_ANSI_MAP[character] || character];
        };

        
AFMFont.prototype.widthOfGlyph = function(glyph) {
          return 
this.glyphWidths[glyph];
        };

        
characters '.notdef       .notdef        .notdef        .notdefn.notdef       .notdef        .notdef        .notdefn.notdef       .notdef        .notdef        .notdefn.notdef       .notdef        .notdef        .notdefn.notdef       .notdef        .notdef        .notdefn.notdef       .notdef        .notdef        .notdefn.notdef       .notdef        .notdef        .notdefn.notdef       .notdef        .notdef        .notdefnnspace         exclam         quotedbl       numbersignndollar        percent        ampersand      quotesinglenparenleft     parenright     asterisk       plusncomma         hyphen         period         slashnzero          one            two            threenfour          five           six            sevenneight         nine           colon          semicolonnless          equal          greater        questionnnat            A              B              CnD             E              F              GnH             I              J              KnL             M              N              OnP             Q              R              SnT             U              V              WnX             Y              Z              bracketleftnbackslash     bracketright   asciicircum    underscorenngrave         a              b              cnd             e              f              gnh             i              j              knl             m              n              onp             q              r              snt             u              v              wnx             y              z              braceleftnbar           braceright     asciitilde     .notdefnnEuro          .notdef        quotesinglbase florinnquotedblbase  ellipsis       dagger         daggerdblncircumflex    perthousand    Scaron         guilsinglleftnOE            .notdef        Zcaron         .notdefn.notdef       quoteleft      quoteright     quotedblleftnquotedblright bullet         endash         emdashntilde         trademark      scaron         guilsinglrightnoe            .notdef        zcaron         ydieresisnnspace         exclamdown     cent           sterlingncurrency      yen            brokenbar      sectionndieresis      copyright      ordfeminine    guillemotleftnlogicalnot    hyphen         registered     macronndegree        plusminus      twosuperior    threesuperiornacute         mu             paragraph      periodcenteredncedilla       onesuperior    ordmasculine   guillemotrightnonequarter    onehalf        threequarters  questiondownnnAgrave        Aacute         Acircumflex    AtildenAdieresis     Aring          AE             CcedillanEgrave        Eacute         Ecircumflex    EdieresisnIgrave        Iacute         Icircumflex    IdieresisnEth           Ntilde         Ograve         OacutenOcircumflex   Otilde         Odieresis      multiplynOslash        Ugrave         Uacute         UcircumflexnUdieresis     Yacute         Thorn          germandblsnnagrave        aacute         acircumflex    atildenadieresis     aring          ae             ccedillanegrave        eacute         ecircumflex    edieresisnigrave        iacute         icircumflex    idieresisneth           ntilde         ograve         oacutenocircumflex   otilde         odieresis      dividenoslash        ugrave         uacute         ucircumflexnudieresis     yacute         thorn          ydieresis'.split(/s+/);

        return 
AFMFont;

      })();

      
module.exports AFMFont;

    }).
call(this);


/***/ },
/* 88 */
/***/ 
function(moduleexports__webpack_require__) {

    
// Generated by CoffeeScript 1.7.1
    
(function() {
      var 
CmapTableSubsetutils,
        
__indexOf = [].indexOf || function(item) { for (var 0this.lengthli++) { if (i in this && this[i] === item) return i; } return -1; };

      
CmapTable __webpack_require__(79);

      
utils __webpack_require__(77);

      
Subset = (function() {
        function 
Subset(font) {
          
this.font font;
          
this.subset = {};
          
this.unicodes = {};
          
this.next 33;
        }

        
Subset.prototype.use = function(character) {
          var 
i_i_ref;
          if (
typeof character === 'string') {
            for (
_i 0_ref character.length<= _ref _i _ref _i _ref<= _ref ? ++_i : --_i) {
              
this.use(character.charCodeAt(i));
            }
            return;
          }
          if (!
this.unicodes[character]) {
            
this.subset[this.next] = character;
            return 
this.unicodes[character] = this.next++;
          }
        };

        
Subset.prototype.encodeText = function(text) {
          var 
charistring_i_ref;
          
string '';
          for (
_i 0_ref text.length<= _ref _i _ref _i _ref<= _ref ? ++_i : --_i) {
            
char this.unicodes[text.charCodeAt(i)];
            
string += String.fromCharCode(char);
          }
          return 
string;
        };

        
Subset.prototype.generateCmap = function() {
          var 
mappingromanunicodeunicodeCmap_ref;
          
unicodeCmap this.font.cmap.tables[0].codeMap;
          
mapping = {};
          
_ref this.subset;
          for (
roman in _ref) {
            
unicode _ref[roman];
            
mapping[roman] = unicodeCmap[unicode];
          }
          return 
mapping;
        };

        
Subset.prototype.glyphIDs = function() {
          var 
retromanunicodeunicodeCmapval_ref;
          
unicodeCmap this.font.cmap.tables[0].codeMap;
          
ret = [0];
          
_ref this.subset;
          for (
roman in _ref) {
            
unicode _ref[roman];
            
val unicodeCmap[unicode];
            if ((
val != null) && __indexOf.call(retval) < 0) {
              
ret.push(val);
            }
          }
          return 
ret.sort();
        };

        
Subset.prototype.glyphsFor = function(glyphIDs) {
          var 
additionalIDsglyphglyphsid_i_len_ref;
          
glyphs = {};
          for (
_i 0_len glyphIDs.length_i _len_i++) {
            
id glyphIDs[_i];
            
glyphs[id] = this.font.glyf.glyphFor(id);
          }
          
additionalIDs = [];
          for (
id in glyphs) {
            
glyph glyphs[id];
            if (
glyph != null glyph.compound void 0) {
              
additionalIDs.push.apply(additionalIDsglyph.glyphIDs);
            }
          }
          if (
additionalIDs.length 0) {
            
_ref this.glyphsFor(additionalIDs);
            for (
id in _ref) {
              
glyph _ref[id];
              
glyphs[id] = glyph;
            }
          }
          return 
glyphs;
        };

        
Subset.prototype.encode = function() {
          var 
cmapcodeglyfglyphsididslocanamenew2oldnewIDsnextGlyphIDold2newoldIDoldIDstables_ref_ref1;
          
cmap CmapTable.encode(this.generateCmap(), 'unicode');
          
glyphs this.glyphsFor(this.glyphIDs());
          
old2new = {
            
00
          
};
          
_ref cmap.charMap;
          for (
code in _ref) {
            
ids _ref[code];
            
old2new[ids.old] = ids["new"];
          }
          
nextGlyphID cmap.maxGlyphID;
          for (
oldID in glyphs) {
            if (!(
oldID in old2new)) {
              
old2new[oldID] = nextGlyphID++;
            }
          }
          
new2old utils.invert(old2new);
          
newIDs Object.keys(new2old).sort(function(ab) {
            return 
b;
          });
          
oldIDs = (function() {
            var 
_i_len_results;
            
_results = [];
            for (
_i 0_len newIDs.length_i _len_i++) {
              
id newIDs[_i];
              
_results.push(new2old[id]);
            }
            return 
_results;
          })();
          
glyf this.font.glyf.encode(glyphsoldIDsold2new);
          
loca this.font.loca.encode(glyf.offsets);
          
name this.font.name.encode();
          
this.postscriptName name.postscriptName;
          
this.cmap = {};
          
_ref1 cmap.charMap;
          for (
code in _ref1) {
            
ids _ref1[code];
            
this.cmap[code] = ids.old;
          }
          
tables = {
            
cmapcmap.table,
            
glyfglyf.table,
            
localoca.table,
            
hmtxthis.font.hmtx.encode(oldIDs),
            
hheathis.font.hhea.encode(oldIDs),
            
maxpthis.font.maxp.encode(oldIDs),
            
postthis.font.post.encode(oldIDs),
            
namename.table,
            
headthis.font.head.encode(loca)
          };
          if (
this.font.os2.exists) {
            
tables['OS/2'] = this.font.os2.raw();
          }
          return 
this.font.directory.encode(tables);
        };

        return 
Subset;

      })();

      
module.exports Subset;

    }).
call(this);


/***/ },
/* 89 */
/***/ 
function(moduleexports__webpack_require__) {

    
// Generated by CoffeeScript 1.7.1
    
(function() {
      var 
LineWrapper;

      
LineWrapper __webpack_require__(90);

      
module.exports = {
        
initText: function() {
          
this.0;
          
this.0;
          return 
this._lineGap 0;
        },
        
lineGap: function(_lineGap) {
          
this._lineGap _lineGap;
          return 
this;
        },
        
moveDown: function(lines) {
          if (
lines == null) {
            
lines 1;
          }
          
this.+= this.currentLineHeight(true) * lines this._lineGap;
          return 
this;
        },
        
moveUp: function(lines) {
          if (
lines == null) {
            
lines 1;
          }
          
this.-= this.currentLineHeight(true) * lines this._lineGap;
          return 
this;
        },
        
_text: function(textxyoptionslineCallback) {
          var 
linewrapper_i_len_ref;
          
options this._initOptions(xyoptions);
          
text '' text;
          if (
options.wordSpacing) {
            
text text.replace(/s{2,}/g' ');
          }
          if (
options.width) {
            
wrapper this._wrapper;
            if (!
wrapper) {
              
wrapper = new LineWrapper(thisoptions);
              
wrapper.on('line'lineCallback);
            }
            
this._wrapper options.continued wrapper null;
            
this._textOptions options.continued options null;
            
wrapper.wrap(textoptions);
          } else {
            
_ref text.split('n');
            for (
_i 0_len _ref.length_i _len_i++) {
              
line _ref[_i];
              
lineCallback(lineoptions);
            }
          }
          return 
this;
        },
        
text: function(textxyoptions) {
          return 
this._text(textxyoptionsthis._line.bind(this));
        },
        
widthOfString: function(stringoptions) {
          if (
options == null) {
            
options = {};
          }
          return 
this._font.widthOfString(stringthis._fontSize) + (options.characterSpacing || 0) * (string.length 1);
        },
        
heightOfString: function(textoptions) {
          var 
heightlineGapxy;
          if (
options == null) {
            
options = {};
          }
          
this.xthis.y;
          
options this._initOptions(options);
          
options.height Infinity;
          
lineGap options.lineGap || this._lineGap || 0;
          
this._text(textthis.xthis.yoptions, (function(_this) {
            return function(
lineoptions) {
              return 
_this.+= _this.currentLineHeight(true) + lineGap;
            };
          })(
this));
          
height this.y;
          
this.x;
          
this.y;
          return 
height;
        },
        list: function(list, 
xyoptionswrapper) {
          var 
flatteniindentitemIndentitemslevellevelsr;
          
options this._initOptions(xyoptions);
          
Math.round((this._font.ascender 1000 this._fontSize) / 3);
          
indent options.textIndent || 5;
          
itemIndent options.bulletIndent || 8;
          
level 1;
          
items = [];
          
levels = [];
          
flatten = function(list) {
            var 
iitem_i_len_results;
            
_results = [];
            for (
_i 0_len = list.length_i _len= ++_i) {
              
item = list[i];
              if (Array.
isArray(item)) {
                
level++;
                
flatten(item);
                
_results.push(level--);
              } else {
                
items.push(item);
                
_results.push(levels.push(level));
              }
            }
            return 
_results;
          };
          
flatten(list);
          
wrapper = new LineWrapper(thisoptions);
          
wrapper.on('line'this._line.bind(this));
          
level 1;
          
0;
          
wrapper.on('firstLine', (function(_this) {
            return function() {
              var 
diffl;
              if ((
levels[i++]) !== level) {
                
diff itemIndent * (level);
                
_this.+= diff;
                
wrapper.lineWidth -= diff;
                
level l;
              }
              
_this.circle(_this.indent r_this.+ (2), r);
              return 
_this.fill();
            };
          })(
this));
          
wrapper.on('sectionStart', (function(_this) {
            return function() {
              var 
pos;
              
pos indent itemIndent * (level 1);
              
_this.+= pos;
              return 
wrapper.lineWidth -= pos;
            };
          })(
this));
          
wrapper.on('sectionEnd', (function(_this) {
            return function() {
              var 
pos;
              
pos indent itemIndent * (level 1);
              
_this.-= pos;
              return 
wrapper.lineWidth += pos;
            };
          })(
this));
          
wrapper.wrap(items.join('n'), options);
          return 
this;
        },
        
_initOptions: function(xyoptions) {
          var 
keymarginsval_ref;
          if (
== null) {
            
= {};
          }
          if (
options == null) {
            
options = {};
          }
          if (
typeof x === 'object') {
            
options x;
            
null;
          }
          
options = (function() {
            var 
koptsv;
            
opts = {};
            for (
k in options) {
              
options[k];
              
opts[k] = v;
            }
            return 
opts;
          })();
          if (
this._textOptions) {
            
_ref this._textOptions;
            for (
key in _ref) {
              
val _ref[key];
              if (
key !== 'continued') {
                if (
options[key] == null) {
                  
options[key] = val;
                }
              }
            }
          }
          if (
!= null) {
            
this.x;
          }
          if (
!= null) {
            
this.y;
          }
          if (
options.lineBreak !== false) {
            
margins this.page.margins;
            if (
options.width == null) {
              
options.width this.page.width this.margins.right;
            }
          }
          
options.columns || (options.columns 0);
          if (
options.columnGap == null) {
            
options.columnGap 18;
          }
          return 
options;
        },
        
_line: function(textoptionswrapper) {
          var 
lineGap;
          if (
options == null) {
            
options = {};
          }
          
this._fragment(textthis.xthis.yoptions);
          
lineGap options.lineGap || this._lineGap || 0;
          if (!
wrapper) {
            return 
this.+= this.widthOfString(text);
          } else {
            return 
this.+= this.currentLineHeight(true) + lineGap;
          }
        },
        
_fragment: function(textxyoptions) {
          var 
aligncharacterSpacingcommandsdencodedilineWidthlineYmoderenderedWidthspaceWidthtextWidthwordwordSpacingwords_base_i_len_name;
          
text '' text;
          if (
text.length === 0) {
            return;
          }
          
align options.align || 'left';
          
wordSpacing options.wordSpacing || 0;
          
characterSpacing options.characterSpacing || 0;
          if (
options.width) {
            switch (
align) {
              case 
'right':
                
textWidth this.widthOfString(text.replace(/s+$/, ''), options);
                
+= options.lineWidth textWidth;
                break;
              case 
'center':
                
+= options.lineWidth options.textWidth 2;
                break;
              case 
'justify':
                
words text.trim().split(/s+/);
                
textWidth this.widthOfString(text.replace(/s+/g''), options);
                
spaceWidth this.widthOfString(' ') + characterSpacing;
                
wordSpacing Math.max(0, (options.lineWidth textWidth) / Math.max(1words.length 1) - spaceWidth);
            }
          }
          
renderedWidth options.textWidth + (wordSpacing * (options.wordCount 1)) + (characterSpacing * (text.length 1));
          if (
options.link) {
            
this.link(xyrenderedWidththis.currentLineHeight(), options.link);
          }
          if (
options.underline || options.strike) {
            
this.save();
            if (!
options.stroke) {
              
this.strokeColor.apply(thisthis._fillColor);
            }
            
lineWidth this._fontSize 10 0.5 Math.floor(this._fontSize 10);
            
this.lineWidth(lineWidth);
            
options.underline 2;
            
lineY this.currentLineHeight() / d;
            if (
options.underline) {
              
lineY -= lineWidth;
            }
            
this.moveTo(xlineY);
            
this.lineTo(renderedWidthlineY);
            
this.stroke();
            
this.restore();
          }
          
this.save();
          
this.transform(100, -10this.page.height);
          
this.page.height - (this._font.ascender 1000 this._fontSize);
          if ((
_base this.page.fonts)[_name this._font.id] == null) {
            
_base[_name] = this._font.ref();
          }
          
this._font.use(text);
          
this.addContent("BT");
          
this.addContent("" " " " Td");
          
this.addContent("/" this._font.id " " this._fontSize " Tf");
          
mode options.fill && options.stroke options.stroke 0;
          if (
mode) {
            
this.addContent("" mode " Tr");
          }
          if (
characterSpacing) {
            
this.addContent("" characterSpacing " Tc");
          }
          if (
wordSpacing) {
            
words text.trim().split(/s+/);
            
wordSpacing += this.widthOfString(' ') + characterSpacing;
            
wordSpacing *= 1000 this._fontSize;
            
commands = [];
            for (
_i 0_len words.length_i _len_i++) {
              
word words[_i];
              
encoded this._font.encode(word);
              
encoded = ((function() {
                var 
_j_ref_results;
                
_results = [];
                for (
_j 0_ref encoded.length_j _ref_j += 1) {
                  
_results.push(encoded.charCodeAt(i).toString(16));
                }
                return 
_results;
              })()).
join('');
              
commands.push("<" encoded "> " + (-wordSpacing));
            }
            
this.addContent("[" + (commands.join(' ')) + "] TJ");
          } else {
            
encoded this._font.encode(text);
            
encoded = ((function() {
              var 
_j_ref_results;
              
_results = [];
              for (
_j 0_ref encoded.length_j _ref_j += 1) {
                
_results.push(encoded.charCodeAt(i).toString(16));
              }
              return 
_results;
            })()).
join('');
            
this.addContent("<" encoded "> Tj");
          }
          
this.addContent("ET");
          return 
this.restore();
        }
      };

    }).
call(this);


/***/ },
/* 90 */
/***/ 
function(moduleexports__webpack_require__) {

    
// Generated by CoffeeScript 1.7.1
    
(function() {
      var 
EventEmitterLineBreakerLineWrapper,
        
__hasProp = {}.hasOwnProperty,
        
__extends = function(childparent) { for (var key in parent) { if (__hasProp.call(parentkey)) child[key] = parent[key]; } function ctor() { this.constructor child; } ctor.prototype parent.prototypechild.prototype = new ctor(); child.__super__ parent.prototype; return child; };

      
EventEmitter __webpack_require__(26).EventEmitter;

      
LineBreaker __webpack_require__(91);

      
LineWrapper = (function(_super) {
        
__extends(LineWrapper_super);

        function 
LineWrapper(documentoptions) {
          var 
_ref;
          
this.document document;
          
this.indent options.indent || 0;
          
this.characterSpacing options.characterSpacing || 0;
          
this.wordSpacing options.wordSpacing === 0;
          
this.columns options.columns || 1;
          
this.columnGap = (_ref options.columnGap) != null _ref 18;
          
this.lineWidth = (options.width - (this.columnGap * (this.columns 1))) / this.columns;
          
this.spaceLeft this.lineWidth;
          
this.startX this.document.x;
          
this.startY this.document.y;
          
this.column 1;
          
this.ellipsis options.ellipsis;
          
this.continuedX 0;
          if (
options.height != null) {
            
this.height options.height;
            
this.maxY this.startY options.height;
          } else {
            
this.maxY this.document.page.maxY();
          }
          
this.on('firstLine', (function(_this) {
            return function(
options) {
              var 
indent;
              
indent _this.continuedX || _this.indent;
              
_this.document.+= indent;
              
_this.lineWidth -= indent;
              return 
_this.once('line', function() {
                
_this.document.-= indent;
                
_this.lineWidth += indent;
                if (
options.continued && !_this.continuedX) {
                  
_this.continuedX _this.indent;
                }
                if (!
options.continued) {
                  return 
_this.continuedX 0;
                }
              });
            };
          })(
this));
          
this.on('lastLine', (function(_this) {
            return function(
options) {
              var 
align;
              
align options.align;
              if (
align === 'justify') {
                
options.align 'left';
              }
              
_this.lastLine true;
              return 
_this.once('line', function() {
                
_this.document.+= options.paragraphGap || 0;
                
options.align align;
                return 
_this.lastLine false;
              });
            };
          })(
this));
        }

        
LineWrapper.prototype.wordWidth = function(word) {
          return 
this.document.widthOfString(wordthis) + this.characterSpacing this.wordSpacing;
        };

        
LineWrapper.prototype.eachWord = function(textfn) {
          var 
bkbreakerfbkllastlbkshouldContinuewwordwordWidths;
          
breaker = new LineBreaker(text);
          
last null;
          
wordWidths = {};
          while (
bk breaker.nextBreak()) {
            
word text.slice((last != null last.position void 0) || 0bk.position);
            
wordWidths[word] != null wordWidths[word] : wordWidths[word] = this.wordWidth(word);
            if (
this.lineWidth this.continuedX) {
              
lbk last;
              
fbk = {};
              while (
word.length) {
                
word.length;
                while (
this.spaceLeft) {
                  
this.wordWidth(word.slice(0, --l));
                }
                
fbk.required word.length;
                
shouldContinue fn(word.slice(0l), wfbklbk);
                
lbk = {
                  
requiredfalse
                
};
                
word word.slice(l);
                
this.wordWidth(word);
                if (
shouldContinue === false) {
                  break;
                }
              }
            } else {
              
shouldContinue fn(wordwbklast);
            }
            if (
shouldContinue === false) {
              break;
            }
            
last bk;
          }
        };

        
LineWrapper.prototype.wrap = function(textoptions) {
          var 
bufferemitLinelcnextYtextWidthwcy;
          if (
options.indent != null) {
            
this.indent options.indent;
          }
          if (
options.characterSpacing != null) {
            
this.characterSpacing options.characterSpacing;
          }
          if (
options.wordSpacing != null) {
            
this.wordSpacing options.wordSpacing;
          }
          if (
options.ellipsis != null) {
            
this.ellipsis options.ellipsis;
          }
          
nextY this.document.this.document.currentLineHeight(true);
          if (
this.document.this.maxY || nextY this.maxY) {
            
this.nextSection();
          }
          
buffer '';
          
textWidth 0;
          
wc 0;
          
lc 0;
          
this.document.y;
          
emitLine = (function(_this) {
            return function() {
              
options.textWidth textWidth _this.wordSpacing * (wc 1);
              
options.wordCount wc;
              
options.lineWidth _this.lineWidth;
              
_this.document.y;
              
_this.emit('line'bufferoptions_this);
              return 
lc++;
            };
          })(
this);
          
this.emit('sectionStart'optionsthis);
          
this.eachWord(text, (function(_this) {
            return function(
wordwbklast) {
              var 
lhshouldContinue;
              if ((
last == null) || last.required) {
                
_this.emit('firstLine'options_this);
                
_this.spaceLeft _this.lineWidth;
              }
              if (
<= _this.spaceLeft) {
                
buffer += word;
                
textWidth += w;
                
wc++;
              }
              if (
bk.required || _this.spaceLeft) {
                if (
bk.required) {
                  
_this.emit('lastLine'options_this);
                }
                
lh _this.document.currentLineHeight(true);
                if ((
_this.height != null) && _this.ellipsis && _this.document.lh _this.maxY && _this.column >= _this.columns) {
                  if (
_this.ellipsis === true) {
                    
_this.ellipsis '…';
                  }
                  
buffer buffer.replace(/s+$/, '');
                  
textWidth _this.wordWidth(buffer _this.ellipsis);
                  while (
textWidth _this.lineWidth) {
                    
buffer buffer.slice(0, -1).replace(/s+$/, '');
                    
textWidth _this.wordWidth(buffer _this.ellipsis);
                  }
                  
buffer buffer _this.ellipsis;
                }
                
emitLine();
                if (
_this.document.lh _this.maxY) {
                  
shouldContinue _this.nextSection();
                  if (!
shouldContinue) {
                    
wc 0;
                    
buffer '';
                    return 
false;
                  }
                }
                if (
bk.required) {
                  if (
_this.spaceLeft) {
                    
buffer word;
                    
textWidth w;
                    
wc 1;
                    
emitLine();
                  }
                  
_this.spaceLeft _this.lineWidth;
                  
buffer '';
                  
textWidth 0;
                  return 
wc 0;
                } else {
                  
_this.spaceLeft _this.lineWidth w;
                  
buffer word;
                  
textWidth w;
                  return 
wc 1;
                }
              } else {
                return 
_this.spaceLeft -= w;
              }
            };
          })(
this));
          if (
wc 0) {
            
this.emit('lastLine'optionsthis);
            
emitLine();
          }
          
this.emit('sectionEnd'optionsthis);
          if (
options.continued === true) {
            if (
lc 1) {
              
this.continuedX 0;
            }
            
this.continuedX += options.textWidth;
            return 
this.document.y;
          } else {
            return 
this.document.this.startX;
          }
        };

        
LineWrapper.prototype.nextSection = function(options) {
          var 
_ref;
          
this.emit('sectionEnd'optionsthis);
          if (++
this.column this.columns) {
            if (
this.height != null) {
              return 
false;
            }
            
this.document.addPage();
            
this.column 1;
            
this.startY this.document.page.margins.top;
            
this.maxY this.document.page.maxY();
            
this.document.this.startX;
            if (
this.document._fillColor) {
              (
_ref this.document).fillColor.apply(_refthis.document._fillColor);
            }
            
this.emit('pageBreak'optionsthis);
          } else {
            
this.document.+= this.lineWidth this.columnGap;
            
this.document.this.startY;
            
this.emit('columnBreak'optionsthis);
          }
          
this.emit('sectionStart'optionsthis);
          return 
true;
        };

        return 
LineWrapper;

      })(
EventEmitter);

      
module.exports LineWrapper;

    }).
call(this);


/***/ },
/* 91 */
/***/ 
function(moduleexports__webpack_require__) {

    
// Generated by CoffeeScript 1.7.1
    
(function() {
      var 
AIALBABKCBCI_BRKCJCP_BRKCRDI_BRKIDIN_BRKLFLineBreakerNLNSPR_BRKSASGSPUnicodeTrieWJXXcharacterClassesclassTriepairTable_ref_ref1;

      
UnicodeTrie __webpack_require__(92);

      
classTrie = new UnicodeTrie(__webpack_require__(93));

      
_ref __webpack_require__(94), BK _ref.BKCR _ref.CRLF _ref.LFNL _ref.NLCB _ref.CBBA _ref.BASP _ref.SPWJ _ref.WJSP _ref.SPBK _ref.BKLF _ref.LFNL _ref.NLAI _ref.AIAL _ref.ALSA _ref.SASG _ref.SGXX _ref.XXCJ _ref.CJID _ref.IDNS _ref.NScharacterClasses _ref.characterClasses;

      
_ref1 __webpack_require__(95), DI_BRK _ref1.DI_BRKIN_BRK _ref1.IN_BRKCI_BRK _ref1.CI_BRKCP_BRK _ref1.CP_BRKPR_BRK _ref1.PR_BRKpairTable _ref1.pairTable;

      
LineBreaker = (function() {
        var Break, 
mapClassmapFirst;

        function 
LineBreaker(string) {
          
this.string string;
          
this.pos 0;
          
this.lastPos 0;
          
this.curClass null;
          
this.nextClass null;
        }

        
LineBreaker.prototype.nextCodePoint = function() {
          var 
codenext;
          
code this.string.charCodeAt(this.pos++);
          
next this.string.charCodeAt(this.pos);
          if ((
0xd800 <= code && code <= 0xdbff) && (0xdc00 <= next && next <= 0xdfff)) {
            
this.pos++;
            return ((
code 0xd800) * 0x400) + (next 0xdc00) + 0x10000;
          }
          return 
code;
        };

        
mapClass = function(c) {
          switch (
c) {
            case 
AI:
              return 
AL;
            case 
SA:
            case 
SG:
            case 
XX:
              return 
AL;
            case 
CJ:
              return 
NS;
            default:
              return 
c;
          }
        };

        
mapFirst = function(c) {
          switch (
c) {
            case 
LF:
            case 
NL:
              return 
BK;
            case 
CB:
              return 
BA;
            case 
SP:
              return 
WJ;
            default:
              return 
c;
          }
        };

        
LineBreaker.prototype.nextCharClass = function(first) {
          if (
first == null) {
            
first false;
          }
          return 
mapClass(classTrie.get(this.nextCodePoint()));
        };

        Break = (function() {
          function Break(
positionrequired) {
            
this.position position;
            
this.required required != null required false;
          }

          return Break;

        })();

        
LineBreaker.prototype.nextBreak = function() {
          var 
curlastClassshouldBreak;
          if (
this.curClass == null) {
            
this.curClass mapFirst(this.nextCharClass());
          }
          while (
this.pos this.string.length) {
            
this.lastPos this.pos;
            
lastClass this.nextClass;
            
this.nextClass this.nextCharClass();
            if (
this.curClass === BK || (this.curClass === CR && this.nextClass !== LF)) {
              
this.curClass mapFirst(mapClass(this.nextClass));
              return new Break(
this.lastPostrue);
            }
            
cur = (function() {
              switch (
this.nextClass) {
                case 
SP:
                  return 
this.curClass;
                case 
BK:
                case 
LF:
                case 
NL:
                  return 
BK;
                case 
CR:
                  return 
CR;
                case 
CB:
                  return 
BA;
              }
            }).
call(this);
            if (
cur != null) {
              
this.curClass cur;
              if (
this.nextClass === CB) {
                return new Break(
this.lastPos);
              }
              continue;
            }
            
shouldBreak false;
            switch (
pairTable[this.curClass][this.nextClass]) {
              case 
DI_BRK:
                
shouldBreak true;
                break;
              case 
IN_BRK:
                
shouldBreak lastClass === SP;
                break;
              case 
CI_BRK:
                
shouldBreak lastClass === SP;
                if (!
shouldBreak) {
                  continue;
                }
                break;
              case 
CP_BRK:
                if (
lastClass !== SP) {
                  continue;
                }
            }
            
this.curClass this.nextClass;
            if (
shouldBreak) {
              return new Break(
this.lastPos);
            }
          }
          if (
this.pos >= this.string.length) {
            if (
this.lastPos this.string.length) {
              
this.lastPos this.string.length;
              return new Break(
this.string.length);
            } else {
              return 
null;
            }
          }
        };

        return 
LineBreaker;

      })();

      
module.exports LineBreaker;

    }).
call(this);


/***/ },
/* 92 */
/***/ 
function(moduleexports) {

    
// Generated by CoffeeScript 1.7.1
    
var UnicodeTrie,
      
__slice = [].slice;

    
UnicodeTrie = (function() {
      var 
DATA_BLOCK_LENGTHDATA_GRANULARITYDATA_MASKINDEX_1_OFFSETINDEX_2_BLOCK_LENGTHINDEX_2_BMP_LENGTHINDEX_2_MASKINDEX_SHIFTLSCP_INDEX_2_LENGTHLSCP_INDEX_2_OFFSETOMITTED_BMP_INDEX_1_LENGTHSHIFT_1SHIFT_1_2SHIFT_2UTF8_2B_INDEX_2_LENGTHUTF8_2B_INDEX_2_OFFSET;

      
SHIFT_1 5;

      
SHIFT_2 5;

      
SHIFT_1_2 SHIFT_1 SHIFT_2;

      
OMITTED_BMP_INDEX_1_LENGTH 0x10000 >> SHIFT_1;

      
INDEX_2_BLOCK_LENGTH << SHIFT_1_2;

      
INDEX_2_MASK INDEX_2_BLOCK_LENGTH 1;

      
INDEX_SHIFT 2;

      
DATA_BLOCK_LENGTH << SHIFT_2;

      
DATA_MASK DATA_BLOCK_LENGTH 1;

      
LSCP_INDEX_2_OFFSET 0x10000 >> SHIFT_2;

      
LSCP_INDEX_2_LENGTH 0x400 >> SHIFT_2;

      
INDEX_2_BMP_LENGTH LSCP_INDEX_2_OFFSET LSCP_INDEX_2_LENGTH;

      
UTF8_2B_INDEX_2_OFFSET INDEX_2_BMP_LENGTH;

      
UTF8_2B_INDEX_2_LENGTH 0x800 >> 6;

      
INDEX_1_OFFSET UTF8_2B_INDEX_2_OFFSET UTF8_2B_INDEX_2_LENGTH;

      
DATA_GRANULARITY << INDEX_SHIFT;

      function 
UnicodeTrie(json) {
        var 
_ref_ref1;
        if (
json == null) {
          
json = {};
        }
        
this.data json.data || [];
        
this.highStart = (_ref json.highStart) != null _ref 0;
        
this.errorValue = (_ref1 json.errorValue) != null _ref1 : -1;
      }

      
UnicodeTrie.prototype.get = function(codePoint) {
        var 
index;
        if (
codePoint || codePoint 0x10ffff) {
          return 
this.errorValue;
        }
        if (
codePoint 0xd800 || (codePoint 0xdbff && codePoint <= 0xffff)) {
          
index = (this.data[codePoint >> SHIFT_2] << INDEX_SHIFT) + (codePoint DATA_MASK);
          return 
this.data[index];
        }
        if (
codePoint <= 0xffff) {
          
index = (this.data[LSCP_INDEX_2_OFFSET + ((codePoint 0xd800) >> SHIFT_2)] << INDEX_SHIFT) + (codePoint DATA_MASK);
          return 
this.data[index];
        }
        if (
codePoint this.highStart) {
          
index this.data[(INDEX_1_OFFSET OMITTED_BMP_INDEX_1_LENGTH) + (codePoint >> SHIFT_1)];
          
index this.data[index + ((codePoint >> SHIFT_2) & INDEX_2_MASK)];
          
index = (index << INDEX_SHIFT) + (codePoint DATA_MASK);
          return 
this.data[index];
        }
        return 
this.data[this.data.length DATA_GRANULARITY];
      };

      
UnicodeTrie.prototype.toJSON = function() {
        var 
res;
        
res = {
          
data__slice.call(this.data),
          
highStartthis.highStart,
          
errorValuethis.errorValue
        
};
        return 
res;
      };

      return 
UnicodeTrie;

    })();

    
module.exports UnicodeTrie;


/***/ },
/* 93 */
/***/ 
function(moduleexports) {

    
module.exports = {
        
"data": [
            
1961,
            
1969,
            
1977,
            
1985,
            
2025,
            
2033,
            
2041,
            
2049,
            
2057,
            
2065,
            
2073,
            
2081,
            
2089,
            
2097,
            
2105,
            
2113,
            
2121,
            
2129,
            
2137,
            
2145,
            
2153,
            
2161,
            
2169,
            
2177,
            
2185,
            
2193,
            
2201,
            
2209,
            
2217,
            
2225,
            
2233,
            
2241,
            
2249,
            
2257,
            
2265,
            
2273,
            
2281,
            
2289,
            
2297,
            
2305,
            
2313,
            
2321,
            
2329,
            
2337,
            
2345,
            
2353,
            
2361,
            
2369,
            
2377,
            
2385,
            
2393,
            
2401,
            
2409,
            
2417,
            
2425,
            
2433,
            
2441,
            
2449,
            
2457,
            
2465,
            
2473,
            
2481,
            
2489,
            
2497,
            
2505,
            
2513,
            
2521,
            
2529,
            
2529,
            
2537,
            
2009,
            
2545,
            
2553,
            
2561,
            
2569,
            
2577,
            
2585,
            
2593,
            
2601,
            
2609,
            
2617,
            
2625,
            
2633,
            
2641,
            
2649,
            
2657,
            
2665,
            
2673,
            
2681,
            
2689,
            
2697,
            
2705,
            
2713,
            
2721,
            
2729,
            
2737,
            
2745,
            
2753,
            
2761,
            
2769,
            
2777,
            
2785,
            
2793,
            
2801,
            
2809,
            
2817,
            
2825,
            
2833,
            
2841,
            
2849,
            
2857,
            
2865,
            
2873,
            
2881,
            
2889,
            
2009,
            
2897,
            
2905,
            
2913,
            
2009,
            
2921,
            
2929,
            
2937,
            
2945,
            
2953,
            
2961,
            
2969,
            
2009,
            
2977,
            
2977,
            
2985,
            
2993,
            
3001,
            
3009,
            
3009,
            
3009,
            
3017,
            
3017,
            
3017,
            
3025,
            
3025,
            
3033,
            
3041,
            
3041,
            
3049,
            
3049,
            
3049,
            
3049,
            
3049,
            
3049,
            
3049,
            
3049,
            
3049,
            
3049,
            
3057,
            
3065,
            
3073,
            
3073,
            
3073,
            
3081,
            
3089,
            
3097,
            
3097,
            
3097,
            
3097,
            
3097,
            
3097,
            
3097,
            
3097,
            
3097,
            
3097,
            
3097,
            
3097,
            
3097,
            
3097,
            
3097,
            
3097,
            
3097,
            
3097,
            
3097,
            
3105,
            
3113,
            
3113,
            
3121,
            
3129,
            
3137,
            
3145,
            
3153,
            
3161,
            
3161,
            
3169,
            
3177,
            
3185,
            
3193,
            
3193,
            
3193,
            
3193,
            
3201,
            
3209,
            
3209,
            
3217,
            
3225,
            
3233,
            
3241,
            
3241,
            
3241,
            
3249,
            
3257,
            
3265,
            
3273,
            
3273,
            
3281,
            
3289,
            
3297,
            
2009,
            
2009,
            
3305,
            
3313,
            
3321,
            
3329,
            
3337,
            
3345,
            
3353,
            
3361,
            
3369,
            
3377,
            
3385,
            
3393,
            
2009,
            
2009,
            
3401,
            
3409,
            
3417,
            
3417,
            
3417,
            
3417,
            
3417,
            
3417,
            
3425,
            
3425,
            
3433,
            
3433,
            
3433,
            
3433,
            
3433,
            
3433,
            
3433,
            
3433,
            
3433,
            
3433,
            
3433,
            
3433,
            
3433,
            
3433,
            
3433,
            
3441,
            
3449,
            
3457,
            
3465,
            
3473,
            
3481,
            
3489,
            
3497,
            
3505,
            
3513,
            
3521,
            
3529,
            
3537,
            
3545,
            
3553,
            
3561,
            
3569,
            
3577,
            
3585,
            
3593,
            
3601,
            
3609,
            
3617,
            
3625,
            
3625,
            
3633,
            
3641,
            
3649,
            
3649,
            
3649,
            
3649,
            
3649,
            
3657,
            
3665,
            
3665,
            
3673,
            
3681,
            
3681,
            
3681,
            
3681,
            
3689,
            
3697,
            
3697,
            
3705,
            
3713,
            
3721,
            
3729,
            
3737,
            
3745,
            
3753,
            
3761,
            
3769,
            
3777,
            
3785,
            
3793,
            
3801,
            
3809,
            
3817,
            
3825,
            
3833,
            
3841,
            
3849,
            
3857,
            
3865,
            
3873,
            
3881,
            
3881,
            
3881,
            
3881,
            
3881,
            
3881,
            
3881,
            
3881,
            
3881,
            
3881,
            
3881,
            
3881,
            
3889,
            
3897,
            
3905,
            
3913,
            
3921,
            
3921,
            
3921,
            
3921,
            
3921,
            
3921,
            
3921,
            
3921,
            
3921,
            
3921,
            
3929,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
3937,
            
3937,
            
3937,
            
3937,
            
3937,
            
3937,
            
3937,
            
3945,
            
3953,
            
3953,
            
3953,
            
3961,
            
3969,
            
3969,
            
3977,
            
3985,
            
3993,
            
4001,
            
2009,
            
2009,
            
4009,
            
4009,
            
4009,
            
4009,
            
4009,
            
4009,
            
4009,
            
4009,
            
4009,
            
4009,
            
4009,
            
4009,
            
4017,
            
4025,
            
4033,
            
4041,
            
4049,
            
4057,
            
4065,
            
4073,
            
4081,
            
4081,
            
4081,
            
4081,
            
4081,
            
4081,
            
4081,
            
4089,
            
4097,
            
4097,
            
4105,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4113,
            
4121,
            
4121,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4129,
            
4137,
            
4145,
            
4145,
            
4145,
            
4145,
            
4145,
            
4145,
            
4145,
            
4145,
            
4145,
            
4145,
            
4145,
            
4145,
            
4145,
            
4145,
            
4145,
            
4145,
            
4145,
            
4145,
            
4145,
            
4145,
            
4145,
            
4145,
            
4145,
            
4145,
            
4145,
            
4145,
            
4145,
            
4145,
            
4145,
            
4145,
            
4145,
            
4145,
            
4145,
            
4145,
            
4145,
            
4145,
            
4145,
            
4153,
            
4161,
            
4169,
            
4169,
            
4169,
            
4169,
            
4169,
            
4169,
            
4169,
            
4169,
            
4177,
            
4185,
            
4193,
            
4201,
            
4209,
            
4217,
            
4217,
            
4225,
            
4233,
            
4233,
            
4233,
            
4233,
            
4233,
            
4233,
            
4233,
            
4233,
            
4241,
            
4249,
            
4257,
            
4265,
            
4273,
            
4281,
            
4289,
            
4297,
            
4305,
            
4313,
            
4321,
            
4329,
            
4337,
            
4345,
            
4353,
            
4361,
            
4361,
            
4369,
            
4377,
            
4385,
            
4385,
            
4385,
            
4385,
            
4393,
            
4401,
            
4409,
            
4409,
            
4409,
            
4409,
            
4409,
            
4409,
            
4417,
            
4425,
            
4433,
            
4441,
            
4449,
            
4457,
            
4465,
            
4473,
            
4481,
            
4489,
            
4497,
            
4505,
            
4513,
            
4521,
            
4529,
            
4537,
            
4545,
            
4553,
            
4561,
            
4569,
            
4577,
            
4585,
            
4593,
            
4601,
            
4609,
            
4617,
            
4625,
            
4633,
            
4641,
            
4649,
            
4657,
            
4665,
            
4673,
            
4681,
            
4689,
            
4697,
            
4705,
            
4713,
            
4721,
            
4729,
            
4737,
            
4745,
            
4753,
            
4761,
            
4769,
            
4777,
            
4785,
            
4793,
            
4801,
            
4809,
            
4817,
            
4825,
            
4833,
            
4841,
            
4849,
            
4857,
            
4865,
            
4873,
            
4881,
            
4889,
            
4897,
            
4905,
            
4913,
            
4921,
            
4929,
            
4937,
            
4945,
            
4953,
            
4961,
            
4969,
            
4977,
            
4985,
            
4993,
            
5001,
            
5009,
            
5017,
            
5025,
            
5033,
            
5041,
            
5049,
            
5057,
            
5065,
            
5073,
            
5081,
            
5089,
            
5097,
            
5105,
            
5113,
            
5121,
            
5129,
            
5137,
            
5145,
            
5153,
            
5161,
            
5169,
            
5177,
            
5185,
            
5193,
            
5201,
            
5209,
            
5217,
            
5225,
            
5233,
            
5241,
            
5249,
            
5257,
            
5265,
            
5273,
            
5281,
            
5289,
            
5297,
            
5305,
            
5313,
            
5321,
            
5329,
            
5337,
            
5345,
            
5353,
            
5361,
            
5369,
            
5377,
            
5385,
            
5393,
            
5401,
            
5409,
            
5417,
            
5425,
            
5433,
            
5441,
            
5449,
            
5457,
            
5465,
            
5473,
            
5481,
            
5489,
            
5497,
            
5505,
            
5513,
            
5521,
            
5529,
            
5537,
            
5545,
            
5553,
            
5561,
            
5569,
            
5577,
            
5585,
            
5593,
            
5601,
            
5609,
            
5617,
            
5625,
            
5633,
            
5641,
            
5649,
            
5657,
            
5665,
            
5673,
            
5681,
            
5689,
            
5697,
            
5705,
            
5713,
            
5721,
            
5729,
            
5737,
            
5745,
            
5753,
            
5761,
            
5769,
            
5777,
            
5785,
            
5793,
            
5801,
            
5809,
            
5817,
            
5825,
            
5833,
            
5841,
            
5849,
            
5857,
            
5865,
            
5873,
            
5881,
            
5889,
            
5897,
            
5905,
            
5913,
            
5921,
            
5929,
            
5937,
            
5945,
            
5953,
            
5961,
            
5969,
            
5977,
            
5985,
            
5993,
            
6001,
            
6009,
            
6017,
            
6025,
            
6033,
            
6041,
            
6049,
            
6057,
            
6065,
            
6073,
            
6081,
            
6089,
            
6097,
            
6105,
            
6113,
            
6121,
            
6129,
            
6137,
            
6145,
            
6153,
            
6161,
            
6169,
            
6177,
            
6185,
            
6193,
            
6201,
            
6209,
            
6217,
            
6225,
            
6233,
            
6241,
            
6249,
            
6257,
            
6265,
            
6273,
            
6281,
            
6289,
            
6297,
            
6305,
            
6313,
            
6321,
            
6329,
            
6337,
            
6345,
            
6353,
            
6361,
            
6369,
            
6377,
            
6385,
            
6393,
            
6401,
            
6409,
            
6417,
            
6425,
            
6433,
            
6441,
            
6449,
            
6457,
            
6465,
            
6473,
            
6481,
            
6489,
            
6497,
            
6505,
            
6513,
            
6521,
            
6529,
            
6537,
            
6545,
            
6553,
            
6561,
            
6569,
            
6577,
            
6585,
            
6593,
            
6601,
            
6609,
            
6617,
            
6625,
            
6633,
            
6641,
            
6649,
            
6657,
            
6665,
            
6673,
            
6681,
            
6689,
            
6697,
            
6705,
            
6713,
            
6721,
            
6729,
            
6737,
            
6745,
            
6753,
            
6761,
            
6769,
            
6777,
            
6785,
            
6793,
            
6801,
            
6809,
            
6817,
            
6825,
            
6833,
            
6841,
            
6849,
            
6857,
            
6865,
            
6873,
            
6881,
            
6889,
            
6897,
            
6905,
            
6913,
            
6921,
            
6929,
            
6937,
            
6945,
            
6953,
            
6961,
            
6969,
            
6977,
            
6985,
            
6993,
            
7001,
            
7009,
            
7017,
            
7025,
            
7033,
            
7041,
            
7049,
            
7057,
            
7065,
            
7073,
            
7081,
            
7089,
            
7097,
            
7105,
            
7113,
            
7121,
            
7129,
            
7137,
            
7145,
            
7153,
            
7161,
            
7169,
            
7177,
            
7185,
            
7193,
            
7201,
            
7209,
            
7217,
            
7225,
            
7233,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
7249,
            
7249,
            
7249,
            
7249,
            
7249,
            
7249,
            
7249,
            
7249,
            
7249,
            
7249,
            
7249,
            
7249,
            
7249,
            
7249,
            
7249,
            
7249,
            
7257,
            
7265,
            
7273,
            
7281,
            
7281,
            
7281,
            
7281,
            
7281,
            
7281,
            
7281,
            
7281,
            
7281,
            
7281,
            
7281,
            
7281,
            
7281,
            
7281,
            
7289,
            
7297,
            
7305,
            
7305,
            
7305,
            
7305,
            
7313,
            
7321,
            
7329,
            
7337,
            
7345,
            
7353,
            
7353,
            
7353,
            
7361,
            
7369,
            
7377,
            
7385,
            
7393,
            
7401,
            
7409,
            
7417,
            
7425,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7241,
            
7972,
            
7972,
            
8100,
            
8164,
            
8228,
            
8292,
            
8356,
            
8420,
            
8484,
            
8548,
            
8612,
            
8676,
            
8740,
            
8804,
            
8868,
            
8932,
            
8996,
            
9060,
            
9124,
            
9188,
            
9252,
            
9316,
            
9380,
            
9444,
            
9508,
            
9572,
            
9636,
            
9700,
            
9764,
            
9828,
            
9892,
            
9956,
            
2593,
            
2657,
            
2721,
            
2529,
            
2785,
            
2529,
            
2849,
            
2913,
            
2977,
            
3041,
            
3105,
            
3169,
            
3233,
            
3297,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
3361,
            
2529,
            
2529,
            
2529,
            
3425,
            
2529,
            
2529,
            
3489,
            
3553,
            
2529,
            
3617,
            
3681,
            
3745,
            
3809,
            
3873,
            
3937,
            
4001,
            
4065,
            
4129,
            
4193,
            
4257,
            
4321,
            
4385,
            
4449,
            
4513,
            
4577,
            
4641,
            
4705,
            
4769,
            
4833,
            
4897,
            
4961,
            
5025,
            
5089,
            
5153,
            
5217,
            
5281,
            
5345,
            
5409,
            
5473,
            
5537,
            
5601,
            
5665,
            
5729,
            
5793,
            
5857,
            
5921,
            
5985,
            
6049,
            
6113,
            
6177,
            
6241,
            
6305,
            
6369,
            
6433,
            
6497,
            
6561,
            
6625,
            
6689,
            
6753,
            
6817,
            
6881,
            
6945,
            
7009,
            
7073,
            
7137,
            
7201,
            
7265,
            
7329,
            
7393,
            
7457,
            
7521,
            
7585,
            
7649,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
2529,
            
7713,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
7433,
            
7433,
            
7433,
            
7433,
            
7433,
            
7433,
            
7433,
            
7441,
            
7449,
            
7457,
            
7457,
            
7457,
            
7457,
            
7457,
            
7457,
            
7465,
            
2009,
            
2009,
            
2009,
            
2009,
            
7473,
            
7473,
            
7473,
            
7473,
            
7473,
            
7473,
            
7473,
            
7473,
            
7481,
            
7489,
            
7497,
            
7505,
            
7505,
            
7505,
            
7505,
            
7505,
            
7513,
            
7521,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
7529,
            
7529,
            
7537,
            
7545,
            
7545,
            
7545,
            
7545,
            
7545,
            
7553,
            
7561,
            
7561,
            
7561,
            
7561,
            
7561,
            
7561,
            
7561,
            
7569,
            
7577,
            
7585,
            
7593,
            
7593,
            
7593,
            
7593,
            
7593,
            
7593,
            
7601,
            
7609,
            
7609,
            
7609,
            
7609,
            
7609,
            
7609,
            
7609,
            
7609,
            
7609,
            
7609,
            
7609,
            
7609,
            
7609,
            
7609,
            
7609,
            
7609,
            
7609,
            
7609,
            
7609,
            
7609,
            
7609,
            
7609,
            
7609,
            
7609,
            
7609,
            
7617,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
7625,
            
7633,
            
7641,
            
7649,
            
7657,
            
7665,
            
7673,
            
7681,
            
7689,
            
7697,
            
7705,
            
2009,
            
7713,
            
7721,
            
7729,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
7737,
            
7745,
            
7753,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
7761,
            
7761,
            
7761,
            
7761,
            
7761,
            
7761,
            
7761,
            
7761,
            
7761,
            
7761,
            
7761,
            
7761,
            
7761,
            
7761,
            
7761,
            
7761,
            
7761,
            
7761,
            
7761,
            
7761,
            
7761,
            
7761,
            
7761,
            
7761,
            
7761,
            
7761,
            
7761,
            
7761,
            
7761,
            
7761,
            
7761,
            
7761,
            
7761,
            
7761,
            
7761,
            
7769,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
7777,
            
7777,
            
7777,
            
7777,
            
7777,
            
7777,
            
7777,
            
7777,
            
7777,
            
7777,
            
7777,
            
7777,
            
7777,
            
7777,
            
7777,
            
7777,
            
7777,
            
7777,
            
7785,
            
7793,
            
7801,
            
7809,
            
7809,
            
7809,
            
7809,
            
7809,
            
7809,
            
7817,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7825,
            
7833,
            
7841,
            
7849,
            
2009,
            
2009,
            
2009,
            
7857,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
7865,
            
7865,
            
7865,
            
7865,
            
7865,
            
7865,
            
7865,
            
7865,
            
7865,
            
7865,
            
7865,
            
7873,
            
7881,
            
7889,
            
7897,
            
7897,
            
7897,
            
7897,
            
7905,
            
7913,
            
7913,
            
7913,
            
7913,
            
7913,
            
7913,
            
7913,
            
7913,
            
7913,
            
7913,
            
7913,
            
7913,
            
7913,
            
7913,
            
7913,
            
7913,
            
7913,
            
7913,
            
7913,
            
7913,
            
7913,
            
7913,
            
7913,
            
7913,
            
7913,
            
7913,
            
7913,
            
7913,
            
7913,
            
7913,
            
7913,
            
7913,
            
7913,
            
7913,
            
7913,
            
7913,
            
7913,
            
7913,
            
7913,
            
7913,
            
7913,
            
7913,
            
7913,
            
7921,
            
7929,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
7937,
            
7937,
            
7937,
            
7937,
            
7937,
            
7937,
            
7937,
            
7945,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
7953,
            
7953,
            
7953,
            
7953,
            
7953,
            
7953,
            
7953,
            
2009,
            
7961,
            
7969,
            
7977,
            
7985,
            
7993,
            
2009,
            
2009,
            
8001,
            
8009,
            
8009,
            
8009,
            
8009,
            
8009,
            
8009,
            
8009,
            
8009,
            
8009,
            
8009,
            
8009,
            
8009,
            
8009,
            
8017,
            
8025,
            
8025,
            
8025,
            
8025,
            
8025,
            
8025,
            
8025,
            
8033,
            
8041,
            
8049,
            
8057,
            
8065,
            
8073,
            
8081,
            
8081,
            
8081,
            
8081,
            
8081,
            
8081,
            
8081,
            
8081,
            
8081,
            
8081,
            
8081,
            
8089,
            
2009,
            
8097,
            
8097,
            
8097,
            
8105,
            
2009,
            
2009,
            
2009,
            
2009,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8113,
            
8121,
            
8129,
            
8137,
            
8137,
            
8137,
            
8137,
            
8137,
            
8137,
            
8137,
            
8137,
            
8137,
            
8137,
            
8137,
            
8137,
            
8137,
            
8137,
            
8145,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
2009,
            
67496,
            
67496,
            
67496,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
17,
            
34,
            
30,
            
30,
            
33,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
38,
            
6,
            
3,
            
12,
            
9,
            
10,
            
12,
            
3,
            
0,
            
2,
            
12,
            
9,
            
8,
            
16,
            
8,
            
7,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
8,
            
8,
            
12,
            
12,
            
12,
            
6,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
0,
            
9,
            
2,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
0,
            
17,
            
1,
            
12,
            
21,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
0,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
21,
            
21,
            
21,
            
21,
            
21,
            
35,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
4,
            
0,
            
10,
            
9,
            
9,
            
9,
            
12,
            
29,
            
29,
            
12,
            
29,
            
3,
            
12,
            
17,
            
12,
            
12,
            
10,
            
9,
            
29,
            
29,
            
18,
            
12,
            
29,
            
29,
            
29,
            
29,
            
29,
            
3,
            
29,
            
29,
            
29,
            
0,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
29,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
29,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
29,
            
18,
            
29,
            
29,
            
29,
            
18,
            
29,
            
12,
            
12,
            
29,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
29,
            
29,
            
29,
            
29,
            
12,
            
29,
            
12,
            
18,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
4,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
4,
            
4,
            
4,
            
4,
            
4,
            
4,
            
4,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
8,
            
39,
            
39,
            
39,
            
39,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
8,
            
17,
            
39,
            
39,
            
39,
            
39,
            
9,
            
39,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
17,
            
21,
            
12,
            
21,
            
21,
            
12,
            
21,
            
21,
            
6,
            
21,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
10,
            
10,
            
10,
            
8,
            
8,
            
12,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
6,
            
6,
            
6,
            
6,
            
6,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
10,
            
11,
            
11,
            
12,
            
12,
            
12,
            
21,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
6,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
12,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
12,
            
12,
            
21,
            
21,
            
12,
            
21,
            
21,
            
21,
            
21,
            
12,
            
12,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
39,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
12,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
12,
            
12,
            
12,
            
12,
            
8,
            
6,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
21,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
12,
            
21,
            
21,
            
21,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
39,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
39,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
17,
            
17,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
21,
            
21,
            
21,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
39,
            
21,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
12,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
21,
            
39,
            
39,
            
39,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
39,
            
39,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
12,
            
12,
            
10,
            
10,
            
12,
            
12,
            
12,
            
12,
            
12,
            
10,
            
12,
            
9,
            
39,
            
39,
            
39,
            
39,
            
39,
            
21,
            
21,
            
21,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
39,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
21,
            
21,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
39,
            
21,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
39,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
39,
            
39,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
12,
            
9,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
21,
            
21,
            
21,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
39,
            
21,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
39,
            
39,
            
39,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
39,
            
39,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
21,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
39,
            
39,
            
39,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
39,
            
39,
            
12,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
21,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
9,
            
12,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
21,
            
21,
            
21,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
39,
            
39,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
39,
            
21,
            
21,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
39,
            
21,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
39,
            
39,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
39,
            
12,
            
12,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
21,
            
21,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
12,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
21,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
12,
            
12,
            
21,
            
21,
            
39,
            
39,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
39,
            
39,
            
10,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
39,
            
21,
            
21,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
39,
            
39,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
12,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
39,
            
39,
            
39,
            
39,
            
9,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
12,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
17,
            
17,
            
39,
            
39,
            
39,
            
39,
            
39,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
39,
            
39,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
39,
            
39,
            
36,
            
36,
            
36,
            
36,
            
12,
            
18,
            
18,
            
18,
            
18,
            
12,
            
18,
            
18,
            
4,
            
18,
            
18,
            
17,
            
4,
            
6,
            
6,
            
6,
            
6,
            
6,
            
4,
            
12,
            
6,
            
12,
            
12,
            
12,
            
21,
            
21,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
17,
            
21,
            
12,
            
21,
            
12,
            
21,
            
0,
            
1,
            
0,
            
1,
            
21,
            
21,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
39,
            
39,
            
39,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
17,
            
21,
            
21,
            
21,
            
21,
            
21,
            
17,
            
21,
            
21,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
39,
            
17,
            
17,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
18,
            
18,
            
17,
            
18,
            
12,
            
12,
            
12,
            
12,
            
12,
            
4,
            
4,
            
39,
            
39,
            
39,
            
39,
            
39,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
17,
            
17,
            
12,
            
12,
            
12,
            
12,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
39,
            
21,
            
21,
            
21,
            
12,
            
17,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
17,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
17,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
0,
            
1,
            
39,
            
39,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
17,
            
17,
            
17,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
17,
            
17,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
21,
            
21,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
17,
            
17,
            
5,
            
36,
            
17,
            
12,
            
17,
            
9,
            
36,
            
36,
            
39,
            
39,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
6,
            
6,
            
17,
            
17,
            
18,
            
12,
            
6,
            
6,
            
12,
            
21,
            
21,
            
21,
            
4,
            
39,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
39,
            
39,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
39,
            
39,
            
39,
            
39,
            
12,
            
39,
            
39,
            
39,
            
6,
            
6,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
39,
            
39,
            
12,
            
12,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
39,
            
39,
            
21,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
21,
            
21,
            
21,
            
21,
            
21,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
39,
            
39,
            
39,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
17,
            
17,
            
12,
            
17,
            
17,
            
17,
            
17,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
39,
            
39,
            
21,
            
21,
            
21,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
12,
            
12,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
39,
            
39,
            
39,
            
17,
            
17,
            
17,
            
17,
            
17,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
39,
            
39,
            
39,
            
12,
            
12,
            
12,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
17,
            
17,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
21,
            
21,
            
21,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
12,
            
12,
            
12,
            
12,
            
21,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
18,
            
12,
            
39,
            
17,
            
17,
            
17,
            
17,
            
17,
            
17,
            
17,
            
4,
            
17,
            
17,
            
17,
            
20,
            
21,
            
21,
            
21,
            
21,
            
17,
            
4,
            
17,
            
17,
            
19,
            
29,
            
29,
            
12,
            
3,
            
3,
            
0,
            
3,
            
3,
            
3,
            
0,
            
3,
            
29,
            
29,
            
12,
            
12,
            
15,
            
15,
            
15,
            
17,
            
30,
            
30,
            
21,
            
21,
            
21,
            
21,
            
21,
            
4,
            
10,
            
10,
            
10,
            
10,
            
10,
            
10,
            
10,
            
10,
            
12,
            
3,
            
3,
            
29,
            
5,
            
5,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
8,
            
0,
            
1,
            
5,
            
5,
            
5,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
17,
            
12,
            
17,
            
17,
            
17,
            
17,
            
12,
            
17,
            
17,
            
17,
            
22,
            
12,
            
12,
            
12,
            
12,
            
39,
            
39,
            
39,
            
39,
            
39,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
12,
            
12,
            
39,
            
39,
            
29,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
0,
            
1,
            
29,
            
12,
            
29,
            
29,
            
29,
            
29,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
0,
            
1,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
39,
            
39,
            
9,
            
9,
            
9,
            
9,
            
9,
            
9,
            
9,
            
10,
            
9,
            
9,
            
9,
            
9,
            
9,
            
9,
            
9,
            
9,
            
9,
            
9,
            
9,
            
9,
            
9,
            
9,
            
10,
            
9,
            
9,
            
9,
            
9,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
12,
            
12,
            
12,
            
10,
            
12,
            
29,
            
12,
            
12,
            
12,
            
10,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
29,
            
12,
            
12,
            
9,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
29,
            
29,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
29,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
29,
            
29,
            
12,
            
12,
            
12,
            
12,
            
12,
            
29,
            
12,
            
12,
            
29,
            
12,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
12,
            
12,
            
12,
            
12,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
29,
            
12,
            
29,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
29,
            
12,
            
29,
            
29,
            
12,
            
12,
            
12,
            
29,
            
29,
            
12,
            
12,
            
29,
            
12,
            
12,
            
12,
            
29,
            
12,
            
29,
            
9,
            
9,
            
12,
            
29,
            
12,
            
12,
            
12,
            
12,
            
29,
            
12,
            
12,
            
29,
            
29,
            
29,
            
29,
            
12,
            
12,
            
29,
            
12,
            
29,
            
12,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
12,
            
29,
            
12,
            
12,
            
12,
            
12,
            
12,
            
29,
            
29,
            
29,
            
29,
            
12,
            
12,
            
12,
            
12,
            
29,
            
29,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
29,
            
12,
            
12,
            
12,
            
29,
            
12,
            
12,
            
12,
            
12,
            
12,
            
29,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
29,
            
29,
            
12,
            
12,
            
29,
            
29,
            
29,
            
29,
            
12,
            
12,
            
29,
            
29,
            
12,
            
12,
            
29,
            
29,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
29,
            
29,
            
12,
            
12,
            
29,
            
29,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
29,
            
12,
            
12,
            
12,
            
29,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
29,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
29,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
29,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
14,
            
14,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
0,
            
1,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
14,
            
14,
            
14,
            
14,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
12,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
12,
            
12,
            
12,
            
12,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
12,
            
12,
            
29,
            
29,
            
29,
            
29,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
29,
            
29,
            
12,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
29,
            
29,
            
12,
            
12,
            
29,
            
29,
            
12,
            
12,
            
12,
            
12,
            
29,
            
29,
            
12,
            
12,
            
29,
            
29,
            
12,
            
12,
            
12,
            
12,
            
29,
            
29,
            
29,
            
12,
            
12,
            
29,
            
12,
            
12,
            
29,
            
29,
            
29,
            
29,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
29,
            
29,
            
29,
            
29,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
29,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
14,
            
14,
            
14,
            
14,
            
12,
            
29,
            
29,
            
12,
            
12,
            
29,
            
12,
            
12,
            
12,
            
12,
            
29,
            
29,
            
12,
            
12,
            
12,
            
12,
            
14,
            
14,
            
29,
            
29,
            
14,
            
12,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
14,
            
14,
            
14,
            
12,
            
12,
            
12,
            
12,
            
29,
            
12,
            
29,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
29,
            
29,
            
12,
            
29,
            
29,
            
29,
            
12,
            
29,
            
14,
            
29,
            
29,
            
12,
            
29,
            
29,
            
12,
            
29,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
14,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
29,
            
29,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
29,
            
29,
            
29,
            
29,
            
14,
            
12,
            
14,
            
14,
            
14,
            
29,
            
14,
            
14,
            
29,
            
29,
            
29,
            
14,
            
14,
            
29,
            
29,
            
14,
            
29,
            
29,
            
14,
            
14,
            
14,
            
12,
            
29,
            
12,
            
12,
            
12,
            
12,
            
29,
            
29,
            
14,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
14,
            
14,
            
14,
            
14,
            
14,
            
29,
            
14,
            
14,
            
14,
            
14,
            
29,
            
29,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
12,
            
12,
            
12,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
29,
            
12,
            
12,
            
12,
            
3,
            
3,
            
3,
            
3,
            
12,
            
12,
            
12,
            
6,
            
6,
            
12,
            
12,
            
12,
            
12,
            
0,
            
1,
            
0,
            
1,
            
0,
            
1,
            
0,
            
1,
            
0,
            
1,
            
0,
            
1,
            
0,
            
1,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
0,
            
1,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
0,
            
1,
            
0,
            
1,
            
0,
            
1,
            
0,
            
1,
            
0,
            
1,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
0,
            
1,
            
0,
            
1,
            
0,
            
1,
            
0,
            
1,
            
0,
            
1,
            
0,
            
1,
            
0,
            
1,
            
0,
            
1,
            
0,
            
1,
            
0,
            
1,
            
0,
            
1,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
0,
            
1,
            
0,
            
1,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
0,
            
1,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
29,
            
29,
            
29,
            
29,
            
29,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
12,
            
12,
            
39,
            
39,
            
39,
            
39,
            
39,
            
6,
            
17,
            
17,
            
17,
            
12,
            
6,
            
17,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
17,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
21,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
3,
            
3,
            
3,
            
3,
            
3,
            
3,
            
3,
            
3,
            
3,
            
3,
            
3,
            
3,
            
3,
            
3,
            
17,
            
17,
            
17,
            
17,
            
17,
            
17,
            
17,
            
17,
            
12,
            
17,
            
0,
            
17,
            
12,
            
12,
            
3,
            
3,
            
12,
            
12,
            
3,
            
3,
            
0,
            
1,
            
0,
            
1,
            
0,
            
1,
            
0,
            
1,
            
17,
            
17,
            
17,
            
17,
            
6,
            
12,
            
17,
            
17,
            
12,
            
17,
            
17,
            
12,
            
12,
            
12,
            
12,
            
12,
            
19,
            
19,
            
39,
            
39,
            
39,
            
39,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
1,
            
1,
            
14,
            
14,
            
5,
            
14,
            
14,
            
0,
            
1,
            
0,
            
1,
            
0,
            
1,
            
0,
            
1,
            
0,
            
1,
            
14,
            
14,
            
0,
            
1,
            
0,
            
1,
            
0,
            
1,
            
0,
            
1,
            
5,
            
0,
            
1,
            
1,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
5,
            
5,
            
14,
            
14,
            
14,
            
39,
            
32,
            
14,
            
32,
            
14,
            
32,
            
14,
            
32,
            
14,
            
32,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
32,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
32,
            
14,
            
32,
            
14,
            
32,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
32,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
32,
            
32,
            
39,
            
39,
            
21,
            
21,
            
5,
            
5,
            
5,
            
5,
            
14,
            
5,
            
32,
            
14,
            
32,
            
14,
            
32,
            
14,
            
32,
            
14,
            
32,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
32,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
32,
            
14,
            
32,
            
14,
            
32,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
32,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
32,
            
32,
            
14,
            
14,
            
14,
            
14,
            
5,
            
32,
            
5,
            
5,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
32,
            
32,
            
32,
            
32,
            
32,
            
32,
            
32,
            
32,
            
32,
            
32,
            
32,
            
32,
            
32,
            
32,
            
32,
            
32,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
5,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
17,
            
17,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
17,
            
6,
            
17,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
21,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
21,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
12,
            
17,
            
17,
            
17,
            
17,
            
17,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
12,
            
12,
            
12,
            
21,
            
12,
            
12,
            
12,
            
12,
            
21,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
10,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
18,
            
18,
            
6,
            
6,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
21,
            
21,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
17,
            
17,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
39,
            
39,
            
39,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
17,
            
17,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
12,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
25,
            
39,
            
39,
            
39,
            
21,
            
21,
            
21,
            
21,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
17,
            
17,
            
17,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
39,
            
39,
            
39,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
12,
            
12,
            
12,
            
21,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
39,
            
39,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
39,
            
39,
            
12,
            
17,
            
17,
            
17,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
36,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
17,
            
17,
            
12,
            
12,
            
12,
            
21,
            
21,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
17,
            
21,
            
21,
            
39,
            
39,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
23,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
24,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
26,
            
39,
            
39,
            
39,
            
39,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
27,
            
39,
            
39,
            
39,
            
39,
            
37,
            
37,
            
37,
            
37,
            
37,
            
37,
            
37,
            
37,
            
37,
            
37,
            
37,
            
37,
            
37,
            
37,
            
37,
            
37,
            
37,
            
37,
            
37,
            
37,
            
37,
            
37,
            
37,
            
37,
            
37,
            
37,
            
37,
            
37,
            
37,
            
37,
            
37,
            
37,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
39,
            
39,
            
39,
            
39,
            
13,
            
21,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
12,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
13,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
0,
            
1,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
10,
            
12,
            
39,
            
39,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
8,
            
1,
            
1,
            
8,
            
8,
            
6,
            
6,
            
0,
            
1,
            
15,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
14,
            
14,
            
14,
            
14,
            
14,
            
0,
            
1,
            
0,
            
1,
            
0,
            
1,
            
0,
            
1,
            
0,
            
1,
            
0,
            
1,
            
0,
            
1,
            
0,
            
1,
            
14,
            
14,
            
0,
            
1,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
1,
            
14,
            
1,
            
39,
            
5,
            
5,
            
6,
            
6,
            
14,
            
0,
            
1,
            
0,
            
1,
            
0,
            
1,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
9,
            
10,
            
14,
            
39,
            
39,
            
39,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
39,
            
22,
            
39,
            
6,
            
14,
            
14,
            
9,
            
10,
            
14,
            
14,
            
0,
            
1,
            
14,
            
14,
            
1,
            
14,
            
1,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
5,
            
5,
            
14,
            
14,
            
14,
            
6,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
0,
            
14,
            
1,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
0,
            
14,
            
1,
            
14,
            
0,
            
1,
            
1,
            
0,
            
1,
            
1,
            
5,
            
12,
            
32,
            
32,
            
32,
            
32,
            
32,
            
32,
            
32,
            
32,
            
32,
            
32,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
5,
            
5,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
39,
            
39,
            
10,
            
9,
            
14,
            
14,
            
14,
            
9,
            
9,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
21,
            
21,
            
21,
            
31,
            
29,
            
39,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
39,
            
39,
            
39,
            
39,
            
17,
            
17,
            
17,
            
39,
            
39,
            
39,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
39,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
17,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
17,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
39,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
17,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
39,
            
39,
            
17,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
39,
            
39,
            
39,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
17,
            
17,
            
17,
            
17,
            
17,
            
17,
            
17,
            
17,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
39,
            
39,
            
17,
            
17,
            
17,
            
17,
            
17,
            
17,
            
17,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
21,
            
21,
            
21,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
17,
            
17,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
21,
            
21,
            
21,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
12,
            
12,
            
12,
            
17,
            
17,
            
17,
            
17,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
21,
            
21,
            
21,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
39,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
17,
            
17,
            
17,
            
17,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
21,
            
21,
            
21,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
12,
            
12,
            
12,
            
12,
            
17,
            
17,
            
12,
            
17,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
17,
            
17,
            
17,
            
17,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
0,
            
0,
            
0,
            
1,
            
1,
            
1,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
1,
            
12,
            
12,
            
12,
            
0,
            
1,
            
0,
            
1,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
0,
            
1,
            
1,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
14,
            
14,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
12,
            
12,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
21,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
21,
            
21,
            
21,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
39,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
11,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
12,
            
39,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
12,
            
12,
            
39,
            
39,
            
39,
            
39,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
29,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
28,
            
28,
            
28,
            
28,
            
28,
            
28,
            
28,
            
28,
            
28,
            
28,
            
28,
            
28,
            
28,
            
28,
            
28,
            
28,
            
28,
            
28,
            
28,
            
28,
            
28,
            
28,
            
28,
            
28,
            
28,
            
28,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
12,
            
12,
            
14,
            
14,
            
14,
            
14,
            
14,
            
12,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
12,
            
14,
            
12,
            
14,
            
12,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
12,
            
14,
            
12,
            
12,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
39,
            
39,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
12,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
14,
            
39,
            
39,
            
39,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
21,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39,
            
39
        
],
        
"highStart"919552,
        
"errorValue"0
    
}

/***/ },
/* 94 */
/***/ 
function(moduleexports) {

    
// Generated by CoffeeScript 1.7.1
    
(function() {
      var 
AIALB2BABBBKCBCJCLCMCPCREXGLH2H3HLHYIDINISJLJTJVLFNLNSNUOPPOPRQURISASGSPSYWJXXZW;

      
exports.OP OP 0;

      
exports.CL CL 1;

      
exports.CP CP 2;

      
exports.QU QU 3;

      
exports.GL GL 4;

      
exports.NS NS 5;

      
exports.EX EX 6;

      
exports.SY SY 7;

      
exports.IS IS 8;

      
exports.PR PR 9;

      
exports.PO PO 10;

      
exports.NU NU 11;

      
exports.AL AL 12;

      
exports.HL HL 13;

      
exports.ID ID 14;

      
exports.IN IN 15;

      
exports.HY HY 16;

      
exports.BA BA 17;

      
exports.BB BB 18;

      
exports.B2 B2 19;

      
exports.ZW ZW 20;

      
exports.CM CM 21;

      
exports.WJ WJ 22;

      
exports.H2 H2 23;

      
exports.H3 H3 24;

      
exports.JL JL 25;

      
exports.JV JV 26;

      
exports.JT JT 27;

      
exports.RI RI 28;

      
exports.AI AI 29;

      
exports.BK BK 30;

      
exports.CB CB 31;

      
exports.CJ CJ 32;

      
exports.CR CR 33;

      
exports.LF LF 34;

      
exports.NL NL 35;

      
exports.SA SA 36;

      
exports.SG SG 37;

      
exports.SP SP 38;

      
exports.XX XX 39;

    }).
call(this);


/***/ },
/* 95 */
/***/ 
function(moduleexports) {

    
// Generated by CoffeeScript 1.7.1
    
(function() {
      var 
CI_BRKCP_BRKDI_BRKIN_BRKPR_BRK;

      
exports.DI_BRK DI_BRK 0;

      
exports.IN_BRK IN_BRK 1;

      
exports.CI_BRK CI_BRK 2;

      
exports.CP_BRK CP_BRK 3;

      
exports.PR_BRK PR_BRK 4;

      
exports.pairTable = [[PR_BRKPR_BRKPR_BRKPR_BRKPR_BRKPR_BRKPR_BRKPR_BRKPR_BRKPR_BRKPR_BRKPR_BRKPR_BRKPR_BRKPR_BRKPR_BRKPR_BRKPR_BRKPR_BRKPR_BRKPR_BRKCP_BRKPR_BRKPR_BRKPR_BRKPR_BRKPR_BRKPR_BRKPR_BRK], [DI_BRKPR_BRKPR_BRKIN_BRKIN_BRKPR_BRKPR_BRKPR_BRKPR_BRKIN_BRKIN_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKIN_BRKIN_BRKDI_BRKDI_BRKPR_BRKCI_BRKPR_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRK], [DI_BRKPR_BRKPR_BRKIN_BRKIN_BRKPR_BRKPR_BRKPR_BRKPR_BRKIN_BRKIN_BRKIN_BRKIN_BRKIN_BRKDI_BRKDI_BRKIN_BRKIN_BRKDI_BRKDI_BRKPR_BRKCI_BRKPR_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRK], [PR_BRKPR_BRKPR_BRKIN_BRKIN_BRKIN_BRKPR_BRKPR_BRKPR_BRKIN_BRKIN_BRKIN_BRKIN_BRKIN_BRKIN_BRKIN_BRKIN_BRKIN_BRKIN_BRKIN_BRKPR_BRKCI_BRKPR_BRKIN_BRKIN_BRKIN_BRKIN_BRKIN_BRKIN_BRK], [IN_BRKPR_BRKPR_BRKIN_BRKIN_BRKIN_BRKPR_BRKPR_BRKPR_BRKIN_BRKIN_BRKIN_BRKIN_BRKIN_BRKIN_BRKIN_BRKIN_BRKIN_BRKIN_BRKIN_BRKPR_BRKCI_BRKPR_BRKIN_BRKIN_BRKIN_BRKIN_BRKIN_BRKIN_BRK], [DI_BRKPR_BRKPR_BRKIN_BRKIN_BRKIN_BRKPR_BRKPR_BRKPR_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKIN_BRKIN_BRKDI_BRKDI_BRKPR_BRKCI_BRKPR_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRK], [DI_BRKPR_BRKPR_BRKIN_BRKIN_BRKIN_BRKPR_BRKPR_BRKPR_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKIN_BRKIN_BRKDI_BRKDI_BRKPR_BRKCI_BRKPR_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRK], [DI_BRKPR_BRKPR_BRKIN_BRKIN_BRKIN_BRKPR_BRKPR_BRKPR_BRKDI_BRKDI_BRKIN_BRKDI_BRKDI_BRKDI_BRKDI_BRKIN_BRKIN_BRKDI_BRKDI_BRKPR_BRKCI_BRKPR_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRK], [DI_BRKPR_BRKPR_BRKIN_BRKIN_BRKIN_BRKPR_BRKPR_BRKPR_BRKDI_BRKDI_BRKIN_BRKIN_BRKIN_BRKDI_BRKDI_BRKIN_BRKIN_BRKDI_BRKDI_BRKPR_BRKCI_BRKPR_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRK], [IN_BRKPR_BRKPR_BRKIN_BRKIN_BRKIN_BRKPR_BRKPR_BRKPR_BRKDI_BRKDI_BRKIN_BRKIN_BRKIN_BRKIN_BRKDI_BRKIN_BRKIN_BRKDI_BRKDI_BRKPR_BRKCI_BRKPR_BRKIN_BRKIN_BRKIN_BRKIN_BRKIN_BRKDI_BRK], [IN_BRKPR_BRKPR_BRKIN_BRKIN_BRKIN_BRKPR_BRKPR_BRKPR_BRKDI_BRKDI_BRKIN_BRKIN_BRKIN_BRKDI_BRKDI_BRKIN_BRKIN_BRKDI_BRKDI_BRKPR_BRKCI_BRKPR_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRK], [IN_BRKPR_BRKPR_BRKIN_BRKIN_BRKIN_BRKPR_BRKPR_BRKPR_BRKIN_BRKIN_BRKIN_BRKIN_BRKIN_BRKDI_BRKIN_BRKIN_BRKIN_BRKDI_BRKDI_BRKPR_BRKCI_BRKPR_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRK], [IN_BRKPR_BRKPR_BRKIN_BRKIN_BRKIN_BRKPR_BRKPR_BRKPR_BRKDI_BRKDI_BRKIN_BRKIN_BRKIN_BRKDI_BRKIN_BRKIN_BRKIN_BRKDI_BRKDI_BRKPR_BRKCI_BRKPR_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRK], [IN_BRKPR_BRKPR_BRKIN_BRKIN_BRKIN_BRKPR_BRKPR_BRKPR_BRKDI_BRKDI_BRKIN_BRKIN_BRKIN_BRKDI_BRKIN_BRKIN_BRKIN_BRKDI_BRKDI_BRKPR_BRKCI_BRKPR_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRK], [DI_BRKPR_BRKPR_BRKIN_BRKIN_BRKIN_BRKPR_BRKPR_BRKPR_BRKDI_BRKIN_BRKDI_BRKDI_BRKDI_BRKDI_BRKIN_BRKIN_BRKIN_BRKDI_BRKDI_BRKPR_BRKCI_BRKPR_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRK], [DI_BRKPR_BRKPR_BRKIN_BRKIN_BRKIN_BRKPR_BRKPR_BRKPR_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKIN_BRKIN_BRKIN_BRKDI_BRKDI_BRKPR_BRKCI_BRKPR_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRK], [DI_BRKPR_BRKPR_BRKIN_BRKDI_BRKIN_BRKPR_BRKPR_BRKPR_BRKDI_BRKDI_BRKIN_BRKDI_BRKDI_BRKDI_BRKDI_BRKIN_BRKIN_BRKDI_BRKDI_BRKPR_BRKCI_BRKPR_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRK], [DI_BRKPR_BRKPR_BRKIN_BRKDI_BRKIN_BRKPR_BRKPR_BRKPR_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKIN_BRKIN_BRKDI_BRKDI_BRKPR_BRKCI_BRKPR_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRK], [IN_BRKPR_BRKPR_BRKIN_BRKIN_BRKIN_BRKPR_BRKPR_BRKPR_BRKIN_BRKIN_BRKIN_BRKIN_BRKIN_BRKIN_BRKIN_BRKIN_BRKIN_BRKIN_BRKIN_BRKPR_BRKCI_BRKPR_BRKIN_BRKIN_BRKIN_BRKIN_BRKIN_BRKIN_BRK], [DI_BRKPR_BRKPR_BRKIN_BRKIN_BRKIN_BRKPR_BRKPR_BRKPR_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKIN_BRKIN_BRKDI_BRKPR_BRKPR_BRKCI_BRKPR_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRK], [DI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKPR_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRK], [IN_BRKPR_BRKPR_BRKIN_BRKIN_BRKIN_BRKPR_BRKPR_BRKPR_BRKDI_BRKDI_BRKIN_BRKIN_BRKIN_BRKDI_BRKIN_BRKIN_BRKIN_BRKDI_BRKDI_BRKPR_BRKCI_BRKPR_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRK], [IN_BRKPR_BRKPR_BRKIN_BRKIN_BRKIN_BRKPR_BRKPR_BRKPR_BRKIN_BRKIN_BRKIN_BRKIN_BRKIN_BRKIN_BRKIN_BRKIN_BRKIN_BRKIN_BRKIN_BRKPR_BRKCI_BRKPR_BRKIN_BRKIN_BRKIN_BRKIN_BRKIN_BRKIN_BRK], [DI_BRKPR_BRKPR_BRKIN_BRKIN_BRKIN_BRKPR_BRKPR_BRKPR_BRKDI_BRKIN_BRKDI_BRKDI_BRKDI_BRKDI_BRKIN_BRKIN_BRKIN_BRKDI_BRKDI_BRKPR_BRKCI_BRKPR_BRKDI_BRKDI_BRKDI_BRKIN_BRKIN_BRKDI_BRK], [DI_BRKPR_BRKPR_BRKIN_BRKIN_BRKIN_BRKPR_BRKPR_BRKPR_BRKDI_BRKIN_BRKDI_BRKDI_BRKDI_BRKDI_BRKIN_BRKIN_BRKIN_BRKDI_BRKDI_BRKPR_BRKCI_BRKPR_BRKDI_BRKDI_BRKDI_BRKDI_BRKIN_BRKDI_BRK], [DI_BRKPR_BRKPR_BRKIN_BRKIN_BRKIN_BRKPR_BRKPR_BRKPR_BRKDI_BRKIN_BRKDI_BRKDI_BRKDI_BRKDI_BRKIN_BRKIN_BRKIN_BRKDI_BRKDI_BRKPR_BRKCI_BRKPR_BRKIN_BRKIN_BRKIN_BRKIN_BRKDI_BRKDI_BRK], [DI_BRKPR_BRKPR_BRKIN_BRKIN_BRKIN_BRKPR_BRKPR_BRKPR_BRKDI_BRKIN_BRKDI_BRKDI_BRKDI_BRKDI_BRKIN_BRKIN_BRKIN_BRKDI_BRKDI_BRKPR_BRKCI_BRKPR_BRKDI_BRKDI_BRKDI_BRKIN_BRKIN_BRKDI_BRK], [DI_BRKPR_BRKPR_BRKIN_BRKIN_BRKIN_BRKPR_BRKPR_BRKPR_BRKDI_BRKIN_BRKDI_BRKDI_BRKDI_BRKDI_BRKIN_BRKIN_BRKIN_BRKDI_BRKDI_BRKPR_BRKCI_BRKPR_BRKDI_BRKDI_BRKDI_BRKDI_BRKIN_BRKDI_BRK], [DI_BRKPR_BRKPR_BRKIN_BRKIN_BRKIN_BRKPR_BRKPR_BRKPR_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKIN_BRKIN_BRKDI_BRKDI_BRKPR_BRKCI_BRKPR_BRKDI_BRKDI_BRKDI_BRKDI_BRKDI_BRKIN_BRK]];

    }).
call(this);


/***/ },
/* 96 */
/***/ 
function(moduleexports__webpack_require__) {

    
/* WEBPACK VAR INJECTION */(function(Buffer) {// Generated by CoffeeScript 1.7.1
    
(function() {
      var 
PDFImage;

      
PDFImage __webpack_require__(97);

      
module.exports = {
        
initImages: function() {
          
this._imageRegistry = {};
          return 
this._imageCount 0;
        },
        
image: function(srcxyoptions) {
          var 
bhbpbwhhpimageipwwp_base_name_ref_ref1_ref2;
          if (
options == null) {
            
options = {};
          }
          if (
typeof x === 'object') {
            
options x;
            
null;
          }
          
= (_ref != null options.x) != null _ref this.x;
          
= (_ref1 != null options.y) != null _ref1 this.y;
          if (!
Buffer.isBuffer(src)) {
            
image this._imageRegistry[src];
          }
          if (!
image) {
            
image PDFImage.open(src'I' + (++this._imageCount));
            
image.embed(this);
            if (!
Buffer.isBuffer(src)) {
              
this._imageRegistry[src] = image;
            }
          }
          if ((
_base this.page.xobjects)[_name image.label] == null) {
            
_base[_name] = image.obj;
          }
          
options.width || image.width;
          
options.height || image.height;
          if (
options.width && !options.height) {
            
wp image.width;
            
image.width wp;
            
image.height wp;
          } else if (
options.height && !options.width) {
            
hp image.height;
            
image.width hp;
            
image.height hp;
          } else if (
options.scale) {
            
image.width options.scale;
            
image.height options.scale;
          } else if (
options.fit) {
            
_ref2 options.fitbw _ref2[0], bh _ref2[1];
            
bp bw bh;
            
ip image.width image.height;
            if (
ip bp) {
              
bw;
              
bw ip;
            } else {
              
bh;
              
bh ip;
            }
            if (
options.align === 'center') {
              
bw 2;
            } else if (
options.align === 'right') {
              
bw w;
            }
            if (
options.valign === 'center') {
              
bh 2;
            } else if (
options.valign === 'bottom') {
              
bh h;
            }
          }
          if (
this.=== y) {
            
this.+= h;
          }
          
this.save();
          
this.transform(w00, -hxh);
          
this.addContent("/" image.label " Do");
          
this.restore();
          return 
this;
        }
      };

    }).
call(this);

    
/* WEBPACK VAR INJECTION */}.call(exports__webpack_require__(2).Buffer))

/***/ },
/* 97 */
/***/ 
function(moduleexports__webpack_require__) {

    
/* WEBPACK VAR INJECTION */(function(Buffer) {// Generated by CoffeeScript 1.7.1

    /*
    PDFImage - embeds images in PDF documents
    By Devon Govett
     */

    
(function() {
      var 
DataJPEGPDFImagePNGfs;

      
fs __webpack_require__(44);

      
Data __webpack_require__(72);

      
JPEG __webpack_require__(98);

      
PNG __webpack_require__(99);

      
PDFImage = (function() {
        function 
PDFImage() {}

        
PDFImage.open = function(srclabel) {
          var 
datamatch;
          if (
Buffer.isBuffer(src)) {
            
data src;
          } else {
            if (
match = /^data:.+;base64,(.*)$/.exec(src)) {
              
data = new Buffer(match[1], 'base64');
            } else {
              
data fs.readFileSync(src);
              if (!
data) {
                return;
              }
            }
          }
          if (
data[0] === 0xff && data[1] === 0xd8) {
            return new 
JPEG(datalabel);
          } else if (
data[0] === 0x89 && data.toString('ascii'14) === 'PNG') {
            return new 
PNG(datalabel);
          } else {
            throw new 
Error('Unknown image format.');
          }
        };

        return 
PDFImage;

      })();

      
module.exports PDFImage;

    }).
call(this);

    
/* WEBPACK VAR INJECTION */}.call(exports__webpack_require__(2).Buffer))

/***/ },
/* 98 */
/***/ 
function(moduleexports__webpack_require__) {

    
// Generated by CoffeeScript 1.7.1
    
(function() {
      var 
JPEGfs,
        
__indexOf = [].indexOf || function(item) { for (var 0this.lengthli++) { if (i in this && this[i] === item) return i; } return -1; };

      
fs __webpack_require__(44);

      
JPEG = (function() {
        var 
MARKERS;

        
MARKERS = [0xFFC00xFFC10xFFC20xFFC30xFFC50xFFC60xFFC70xFFC80xFFC90xFFCA0xFFCB0xFFCC0xFFCD0xFFCE0xFFCF];

        function 
JPEG(datalabel) {
          var 
channelsmarkerpos;
          
this.data data;
          
this.label label;
          if (
this.data.readUInt16BE(0) !== 0xFFD8) {
            throw 
"SOI not found in JPEG";
          }
          
pos 2;
          while (
pos this.data.length) {
            
marker this.data.readUInt16BE(pos);
            
pos += 2;
            if (
__indexOf.call(MARKERSmarker) >= 0) {
              break;
            }
            
pos += this.data.readUInt16BE(pos);
          }
          if (
__indexOf.call(MARKERSmarker) < 0) {
            throw 
"Invalid JPEG.";
          }
          
pos += 2;
          
this.bits this.data[pos++];
          
this.height this.data.readUInt16BE(pos);
          
pos += 2;
          
this.width this.data.readUInt16BE(pos);
          
pos += 2;
          
channels this.data[pos++];
          
this.colorSpace = (function() {
            switch (
channels) {
              case 
1:
                return 
'DeviceGray';
              case 
3:
                return 
'DeviceRGB';
              case 
4:
                return 
'DeviceCMYK';
            }
          })();
          
this.obj null;
        }

        
JPEG.prototype.embed = function(document) {
          if (
this.obj) {
            return;
          }
          
this.obj document.ref({
            
Type'XObject',
            
Subtype'Image',
            
BitsPerComponentthis.bits,
            
Widththis.width,
            
Heightthis.height,
            
ColorSpacethis.colorSpace,
            
Filter'DCTDecode'
          
});
          if (
this.colorSpace === 'DeviceCMYK') {
            
this.obj.data['Decode'] = [1.00.01.00.01.00.01.00.0];
          }
          
this.obj.end(this.data);
          return 
this.data null;
        };

        return 
JPEG;

      })();

      
module.exports JPEG;

    }).
call(this);


/***/ },
/* 99 */
/***/ 
function(moduleexports__webpack_require__) {

    
/* WEBPACK VAR INJECTION */(function(Buffer) {// Generated by CoffeeScript 1.7.1
    
(function() {
      var 
PNGPNGImagezlib;

      
zlib __webpack_require__(47);

      
PNG __webpack_require__(100);

      
PNGImage = (function() {
        function 
PNGImage(datalabel) {
          
this.label label;
          
this.image = new PNG(data);
          
this.width this.image.width;
          
this.height this.image.height;
          
this.imgData this.image.imgData;
          
this.obj null;
        }

        
PNGImage.prototype.embed = function(document) {
          var 
maskpaletteparamsrgbvalx_i_len;
          
this.document document;
          if (
this.obj) {
            return;
          }
          
this.obj document.ref({
            
Type'XObject',
            
Subtype'Image',
            
BitsPerComponentthis.image.bits,
            
Widththis.width,
            
Heightthis.height,
            
Filter'FlateDecode'
          
});
          if (!
this.image.hasAlphaChannel) {
            
params document.ref({
              
Predictor15,
              
Colorsthis.image.colors,
              
BitsPerComponentthis.image.bits,
              
Columnsthis.width
            
});
            
this.obj.data['DecodeParms'] = params;
            
params.end();
          }
          if (
this.image.palette.length === 0) {
            
this.obj.data['ColorSpace'] = this.image.colorSpace;
          } else {
            
palette document.ref();
            
palette.end(new Buffer(this.image.palette));
            
this.obj.data['ColorSpace'] = ['Indexed''DeviceRGB', (this.image.palette.length 3) - 1palette];
          }
          if (
this.image.transparency.grayscale) {
            
val this.image.transparency.greyscale;
            return 
this.obj.data['Mask'] = [valval];
          } else if (
this.image.transparency.rgb) {
            
rgb this.image.transparency.rgb;
            
mask = [];
            for (
_i 0_len rgb.length_i _len_i++) {
              
rgb[_i];
              
mask.push(xx);
            }
            return 
this.obj.data['Mask'] = mask;
          } else if (
this.image.transparency.indexed) {
            return 
this.loadIndexedAlphaChannel();
          } else if (
this.image.hasAlphaChannel) {
            return 
this.splitAlphaChannel();
          } else {
            return 
this.finalize();
          }
        };

        
PNGImage.prototype.finalize = function() {
          var 
sMask;
          if (
this.alphaChannel) {
            
sMask this.document.ref({
              
Type'XObject',
              
Subtype'Image',
              
Heightthis.height,
              
Widththis.width,
              
BitsPerComponent8,
              
Filter'FlateDecode',
              
ColorSpace'DeviceGray',
              
Decode: [01]
            });
            
sMask.end(this.alphaChannel);
            
this.obj.data['SMask'] = sMask;
          }
          
this.obj.end(this.imgData);
          
this.image null;
          return 
this.imgData null;
        };

        
PNGImage.prototype.splitAlphaChannel = function() {
          return 
this.image.decodePixels((function(_this) {
            return function(
pixels) {
              var 
aalphaChannelcolorByteSizedoneiimgDatalenppixelCount;
              
colorByteSize _this.image.colors _this.image.bits 8;
              
pixelCount _this.width _this.height;
              
imgData = new Buffer(pixelCount colorByteSize);
              
alphaChannel = new Buffer(pixelCount);
              
0;
              
len pixels.length;
              while (
len) {
                
imgData[p++] = pixels[i++];
                
imgData[p++] = pixels[i++];
                
imgData[p++] = pixels[i++];
                
alphaChannel[a++] = pixels[i++];
              }
              
done 0;
              
zlib.deflate(imgData, function(errimgData) {
                
_this.imgData imgData;
                if (
err) {
                  throw 
err;
                }
                if (++
done === 2) {
                  return 
_this.finalize();
                }
              });
              return 
zlib.deflate(alphaChannel, function(erralphaChannel) {
                
_this.alphaChannel alphaChannel;
                if (
err) {
                  throw 
err;
                }
                if (++
done === 2) {
                  return 
_this.finalize();
                }
              });
            };
          })(
this));
        };

        
PNGImage.prototype.loadIndexedAlphaChannel = function(fn) {
          var 
transparency;
          
transparency this.image.transparency.indexed;
          return 
this.image.decodePixels((function(_this) {
            return function(
pixels) {
              var 
alphaChannelij_i_ref;
              
alphaChannel = new Buffer(_this.width _this.height);
              
0;
              for (
_i 0_ref pixels.length_i _ref_i += 1) {
                
alphaChannel[i++] = transparency[pixels[j]];
              }
              return 
zlib.deflate(alphaChannel, function(erralphaChannel) {
                
_this.alphaChannel alphaChannel;
                if (
err) {
                  throw 
err;
                }
                return 
_this.finalize();
              });
            };
          })(
this));
        };

        return 
PNGImage;

      })();

      
module.exports PNGImage;

    }).
call(this);

    
/* WEBPACK VAR INJECTION */}.call(exports__webpack_require__(2).Buffer))

/***/ },
/* 100 */
/***/ 
function(moduleexports__webpack_require__) {

    
/* WEBPACK VAR INJECTION */(function(Buffer) {// Generated by CoffeeScript 1.4.0

    /*
    # MIT LICENSE
    # Copyright (c) 2011 Devon Govett
    # 
    # Permission is hereby granted, free of charge, to any person obtaining a copy of this 
    # software and associated documentation files (the "Software"), to deal in the Software 
    # without restriction, including without limitation the rights to use, copy, modify, merge, 
    # publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons 
    # to whom the Software is furnished to do so, subject to the following conditions:
    # 
    # The above copyright notice and this permission notice shall be included in all copies or 
    # substantial portions of the Software.
    # 
    # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING 
    # BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 
    # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 
    # DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
    # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
    */


    
(function() {
      var 
PNGfszlib;

      
fs __webpack_require__(44);

      
zlib __webpack_require__(47);

      
module.exports PNG = (function() {

        
PNG.decode = function(pathfn) {
          return 
fs.readFile(path, function(errfile) {
            var 
png;
            
png = new PNG(file);
            return 
png.decode(function(pixels) {
              return 
fn(pixels);
            });
          });
        };

        
PNG.load = function(path) {
          var 
file;
          
file fs.readFileSync(path);
          return new 
PNG(file);
        };

        function 
PNG(data) {
          var 
chunkSizecolorsiindexkeysectionshorttext_i_j_ref;
          
this.data data;
          
this.pos 8;
          
this.palette = [];
          
this.imgData = [];
          
this.transparency = {};
          
this.text = {};
          while (
true) {
            
chunkSize this.readUInt32();
            
section = ((function() {
              var 
_i_results;
              
_results = [];
              for (
_i 0_i 4= ++_i) {
                
_results.push(String.fromCharCode(this.data[this.pos++]));
              }
              return 
_results;
            }).
call(this)).join('');
            switch (
section) {
              case 
'IHDR':
                
this.width this.readUInt32();
                
this.height this.readUInt32();
                
this.bits this.data[this.pos++];
                
this.colorType this.data[this.pos++];
                
this.compressionMethod this.data[this.pos++];
                
this.filterMethod this.data[this.pos++];
                
this.interlaceMethod this.data[this.pos++];
                break;
              case 
'PLTE':
                
this.palette this.read(chunkSize);
                break;
              case 
'IDAT':
                for (
_i 0_i chunkSize_i += 1) {
                  
this.imgData.push(this.data[this.pos++]);
                }
                break;
              case 
'tRNS':
                
this.transparency = {};
                switch (
this.colorType) {
                  case 
3:
                    
this.transparency.indexed this.read(chunkSize);
                    
short 255 this.transparency.indexed.length;
                    if (
short 0) {
                      for (
_j 0<= short _j short _j short<= short ? ++_j : --_j) {
                        
this.transparency.indexed.push(255);
                      }
                    }
                    break;
                  case 
0:
                    
this.transparency.grayscale this.read(chunkSize)[0];
                    break;
                  case 
2:
                    
this.transparency.rgb this.read(chunkSize);
                }
                break;
              case 
'tEXt':
                
text this.read(chunkSize);
                
index text.indexOf(0);
                
key String.fromCharCode.apply(Stringtext.slice(0index));
                
this.text[key] = String.fromCharCode.apply(Stringtext.slice(index 1));
                break;
              case 
'IEND':
                
this.colors = (function() {
                  switch (
this.colorType) {
                    case 
0:
                    case 
3:
                    case 
4:
                      return 
1;
                    case 
2:
                    case 
6:
                      return 
3;
                  }
                }).
call(this);
                
this.hasAlphaChannel = (_ref this.colorType) === || _ref === 6;
                
colors this.colors + (this.hasAlphaChannel 0);
                
this.pixelBitlength this.bits colors;
                
this.colorSpace = (function() {
                  switch (
this.colors) {
                    case 
1:
                      return 
'DeviceGray';
                    case 
3:
                      return 
'DeviceRGB';
                  }
                }).
call(this);
                
this.imgData = new Buffer(this.imgData);
                return;
              default:
                
this.pos += chunkSize;
            }
            
this.pos += 4;
            if (
this.pos this.data.length) {
              throw new 
Error("Incomplete or corrupt PNG file");
            }
          }
          return;
        }

        
PNG.prototype.read = function(bytes) {
          var 
i_i_results;
          
_results = [];
          for (
_i 0<= bytes _i bytes _i bytes<= bytes ? ++_i : --_i) {
            
_results.push(this.data[this.pos++]);
          }
          return 
_results;
        };

        
PNG.prototype.readUInt32 = function() {
          var 
b1b2b3b4;
          
b1 this.data[this.pos++] << 24;
          
b2 this.data[this.pos++] << 16;
          
b3 this.data[this.pos++] << 8;
          
b4 this.data[this.pos++];
          return 
b1 b2 b3 b4;
        };

        
PNG.prototype.readUInt16 = function() {
          var 
b1b2;
          
b1 this.data[this.pos++] << 8;
          
b2 this.data[this.pos++];
          return 
b1 b2;
        };

        
PNG.prototype.decodePixels = function(fn) {
          var 
_this this;
          return 
zlib.inflate(this.imgData, function(errdata) {
            var 
byteccolileftlengthppapaethpbpcpixelBytespixelsposrowscanlineLengthupperupperLeft_i_j_k_l_m;
            if (
err) {
              throw 
err;
            }
            
pixelBytes _this.pixelBitlength 8;
            
scanlineLength pixelBytes _this.width;
            
pixels = new Buffer(scanlineLength _this.height);
            
length data.length;
            
row 0;
            
pos 0;
            
0;
            while (
pos length) {
              switch (
data[pos++]) {
                case 
0:
                  for (
_i 0_i scanlineLength_i += 1) {
                    
pixels[c++] = data[pos++];
                  }
                  break;
                case 
1:
                  for (
_j 0_j scanlineLength_j += 1) {
                    
byte data[pos++];
                    
left pixelBytes pixels[pixelBytes];
                    
pixels[c++] = (byte left) % 256;
                  }
                  break;
                case 
2:
                  for (
_k 0_k scanlineLength_k += 1) {
                    
byte data[pos++];
                    
col = (- (pixelBytes)) / pixelBytes;
                    
upper row && pixels[(row 1) * scanlineLength col pixelBytes + (pixelBytes)];
                    
pixels[c++] = (upper byte) % 256;
                  }
                  break;
                case 
3:
                  for (
_l 0_l scanlineLength_l += 1) {
                    
byte data[pos++];
                    
col = (- (pixelBytes)) / pixelBytes;
                    
left pixelBytes pixels[pixelBytes];
                    
upper row && pixels[(row 1) * scanlineLength col pixelBytes + (pixelBytes)];
                    
pixels[c++] = (byte Math.floor((left upper) / 2)) % 256;
                  }
                  break;
                case 
4:
                  for (
_m 0_m scanlineLength_m += 1) {
                    
byte data[pos++];
                    
col = (- (pixelBytes)) / pixelBytes;
                    
left pixelBytes pixels[pixelBytes];
                    if (
row === 0) {
                      
upper upperLeft 0;
                    } else {
                      
upper pixels[(row 1) * scanlineLength col pixelBytes + (pixelBytes)];
                      
upperLeft col && pixels[(row 1) * scanlineLength + (col 1) * pixelBytes + (pixelBytes)];
                    }
                    
left upper upperLeft;
                    
pa Math.abs(left);
                    
pb Math.abs(upper);
                    
pc Math.abs(upperLeft);
                    if (
pa <= pb && pa <= pc) {
                      
paeth left;
                    } else if (
pb <= pc) {
                      
paeth upper;
                    } else {
                      
paeth upperLeft;
                    }
                    
pixels[c++] = (byte paeth) % 256;
                  }
                  break;
                default:
                  throw new 
Error("Invalid filter algorithm: " data[pos 1]);
              }
              
row++;
            }
            return 
fn(pixels);
          });
        };

        
PNG.prototype.decodePalette = function() {
          var 
cilengthpaletteposrettransparency_i_ref_ref1;
          
palette this.palette;
          
transparency this.transparency.indexed || [];
          
ret = new Buffer(transparency.length palette.length);
          
pos 0;
          
length palette.length;
          
0;
          for (
_i 0_ref palette.length_i _ref_i += 3) {
            
ret[pos++] = palette[i];
            
ret[pos++] = palette[1];
            
ret[pos++] = palette[2];
            
ret[pos++] = (_ref1 transparency[c++]) != null _ref1 255;
          }
          return 
ret;
        };

        
PNG.prototype.copyToImageData = function(imageDatapixels) {
          var 
alphacolorsdataiinputjklengthpalettev_ref;
          
colors this.colors;
          
palette null;
          
alpha this.hasAlphaChannel;
          if (
this.palette.length) {
            
palette = (_ref this._decodedPalette) != null _ref this._decodedPalette this.decodePalette();
            
colors 4;
            
alpha true;
          }
          
data = (imageData != null imageData.data void 0) || imageData;
          
length data.length;
          
input palette || pixels;
          
0;
          if (
colors === 1) {
            while (
length) {
              
palette pixels[4] * j;
              
input[k++];
              
data[i++] = v;
              
data[i++] = v;
              
data[i++] = v;
              
data[i++] = alpha input[k++] : 255;
              
k;
            }
          } else {
            while (
length) {
              
palette pixels[4] * j;
              
data[i++] = input[k++];
              
data[i++] = input[k++];
              
data[i++] = input[k++];
              
data[i++] = alpha input[k++] : 255;
              
k;
            }
          }
        };

        
PNG.prototype.decode = function(fn) {
          var 
ret,
            
_this this;
          
ret = new Buffer(this.width this.height 4);
          return 
this.decodePixels(function(pixels) {
            
_this.copyToImageData(retpixels);
            return 
fn(ret);
          });
        };

        return 
PNG;

      })();

    }).
call(this);

    
/* WEBPACK VAR INJECTION */}.call(exports__webpack_require__(2).Buffer))

/***/ },
/* 101 */
/***/ 
function(moduleexports) {

    
// Generated by CoffeeScript 1.7.1
    
(function() {
      
module.exports = {
        
annotate: function(xywhoptions) {
          var 
keyrefval;
          
options.Type 'Annot';
          
options.Rect this._convertRect(xywh);
          
options.Border = [000];
          if (
options.Subtype !== 'Link') {
            if (
options.== null) {
              
options.this._normalizeColor(options.color || [000]);
            }
          }
          
delete options.color;
          if (
typeof options.Dest === 'string') {
            
options.Dest = new String(options.Dest);
          }
          for (
key in options) {
            
val options[key];
            
options[key[0].toUpperCase() + key.slice(1)] = val;
          }
          
ref this.ref(options);
          
this.page.annotations.push(ref);
          
ref.end();
          return 
this;
        },
        
note: function(xywhcontentsoptions) {
          if (
options == null) {
            
options = {};
          }
          
options.Subtype 'Text';
          
options.Contents = new String(contents);
          
options.Name 'Comment';
          if (
options.color == null) {
            
options.color = [24322392];
          }
          return 
this.annotate(xywhoptions);
        },
        
link: function(xywhurloptions) {
          if (
options == null) {
            
options = {};
          }
          
options.Subtype 'Link';
          
options.this.ref({
            
S'URI',
            
URI: new String(url)
          });
          
options.A.end();
          return 
this.annotate(xywhoptions);
        },
        
_markup: function(xywhoptions) {
          var 
x1x2y1y2_ref;
          if (
options == null) {
            
options = {};
          }
          
_ref this._convertRect(xywh), x1 _ref[0], y1 _ref[1], x2 _ref[2], y2 _ref[3];
          
options.QuadPoints = [x1y2x2y2x1y1x2y1];
          
options.Contents = new String;
          return 
this.annotate(xywhoptions);
        },
        
highlight: function(xywhoptions) {
          if (
options == null) {
            
options = {};
          }
          
options.Subtype 'Highlight';
          if (
options.color == null) {
            
options.color = [241238148];
          }
          return 
this._markup(xywhoptions);
        },
        
underline: function(xywhoptions) {
          if (
options == null) {
            
options = {};
          }
          
options.Subtype 'Underline';
          return 
this._markup(xywhoptions);
        },
        
strike: function(xywhoptions) {
          if (
options == null) {
            
options = {};
          }
          
options.Subtype 'StrikeOut';
          return 
this._markup(xywhoptions);
        },
        
lineAnnotation: function(x1y1x2y2options) {
          if (
options == null) {
            
options = {};
          }
          
options.Subtype 'Line';
          
options.Contents = new String;
          
options.= [x1this.page.height y1x2this.page.height y2];
          return 
this.annotate(x1y1x2y2options);
        },
        
rectAnnotation: function(xywhoptions) {
          if (
options == null) {
            
options = {};
          }
          
options.Subtype 'Square';
          
options.Contents = new String;
          return 
this.annotate(xywhoptions);
        },
        
ellipseAnnotation: function(xywhoptions) {
          if (
options == null) {
            
options = {};
          }
          
options.Subtype 'Circle';
          
options.Contents = new String;
          return 
this.annotate(xywhoptions);
        },
        
textAnnotation: function(xywhtextoptions) {
          if (
options == null) {
            
options = {};
          }
          
options.Subtype 'FreeText';
          
options.Contents = new String(text);
          
options.DA = new String;
          return 
this.annotate(xywhoptions);
        },
        
_convertRect: function(x1y1wh) {
          var 
m0m1m2m3m4m5x2y2_ref;
          
y2 y1;
          
y1 += h;
          
x2 x1 w;
          
_ref this._ctmm0 _ref[0], m1 _ref[1], m2 _ref[2], m3 _ref[3], m4 _ref[4], m5 _ref[5];
          
x1 m0 x1 m2 y1 m4;
          
y1 m1 x1 m3 y1 m5;
          
x2 m0 x2 m2 y2 m4;
          
y2 m1 x2 m3 y2 m5;
          return [
x1y1x2y2];
        }
      };

    }).
call(this);


/***/ },
/* 102 */
/***/ 
function(moduleexports) {

    
module.exports = {
        
'4A0': [4767.876740.79],
        
'2A0': [3370.394767.87],
        
A0: [2383.943370.39],
        
A1: [1683.782383.94],
        
A2: [1190.551683.78],
        
A3: [841.891190.55],
        
A4: [595.28841.89],
        
A5: [419.53595.28],
        
A6: [297.64419.53],
        
A7: [209.76297.64],
        
A8: [147.40209.76],
        
A9: [104.88147.40],
        
A10: [73.70104.88],
        
B0: [2834.654008.19],
        
B1: [2004.092834.65],
        
B2: [1417.322004.09],
        
B3: [1000.631417.32],
        
B4: [708.661000.63],
        
B5: [498.90708.66],
        
B6: [354.33498.90],
        
B7: [249.45354.33],
        
B8: [175.75249.45],
        
B9: [124.72175.75],
        
B10: [87.87124.72],
        
C0: [2599.373676.54],
        
C1: [1836.852599.37],
        
C2: [1298.271836.85],
        
C3: [918.431298.27],
        
C4: [649.13918.43],
        
C5: [459.21649.13],
        
C6: [323.15459.21],
        
C7: [229.61323.15],
        
C8: [161.57229.61],
        
C9: [113.39161.57],
        
C10: [79.37113.39],
        
RA0: [2437.803458.27],
        
RA1: [1729.132437.80],
        
RA2: [1218.901729.13],
        
RA3: [864.571218.90],
        
RA4: [609.45864.57],
        
SRA0: [2551.183628.35],
        
SRA1: [1814.172551.18],
        
SRA2: [1275.591814.17],
        
SRA3: [907.091275.59],
        
SRA4: [637.80907.09],
        
EXECUTIVE: [521.86756.00],
        
FOLIO: [612.00936.00],
        
LEGAL: [612.001008.00],
        
LETTER: [612.00792.00],
        
TABLOID: [792.001224.00]
    };


/***/ },
/* 103 */
/***/ 
function(moduleexports__webpack_require__) {

    
/* WEBPACK VAR INJECTION */(function(Buffer) {/* jslint node: true */
    
'use strict';

    var 
pdfKit __webpack_require__(24);
    var 
PDFImage __webpack_require__(97);

    function 
ImageMeasure(pdfDocimageDictionary) {
        
this.pdfDoc pdfDoc;
        
this.imageDictionary imageDictionary || {};
    }

    
ImageMeasure.prototype.measureImage = function(src) {
        var 
imagelabel;
        var 
that this;

        if (!
this.pdfDoc._imageRegistry[src]) {
            
label 'I' + (++this.pdfDoc._imageCount);
            
image PDFImage.open(realImageSrc(src), label);
            
image.embed(this.pdfDoc);
            
this.pdfDoc._imageRegistry[src] = image;
        } else {
            
image this.pdfDoc._imageRegistry[src];
        }

        return { 
widthimage.widthheightimage.height };

        function 
realImageSrc(src) {
            var 
img that.imageDictionary[src];

            if (!
img) return src;

            var 
index img.indexOf('base64,');
            if (
index 0) {
                throw 
'invalid image format, images dictionary should contain dataURL entries';
            }

            return new 
Buffer(img.substring(index 7), 'base64');
        }
    };

    
module.exports ImageMeasure;

    
/* WEBPACK VAR INJECTION */}.call(exports__webpack_require__(2).Buffer))

/***/ },
/* 104 */
/***/ 
function(moduleexports) {

    
/* jslint node: true */
    
'use strict';


    function 
groupDecorations(line) {
        var 
groups = [], curGroup null;
        for(var 
0line.inlines.lengthli++) {
            var 
inline line.inlines[i];
            var 
decoration inline.decoration;
            if(!
decoration) {
                
curGroup null;
                continue;
            }
            var 
color inline.decorationColor || inline.color || 'black';
            var 
style inline.decorationStyle || 'solid';
            
decoration = Array.isArray(decoration) ? decoration : [ decoration ];
            for(var 
ii 0ll decoration.lengthii llii++) {
                var 
deco decoration[ii];
                if(!
curGroup || deco !== curGroup.decoration ||
                        
style !== curGroup.decorationStyle || color !== curGroup.decorationColor ||
                        
deco === 'lineThrough') {
            
                    
curGroup = {
                        
lineline,
                        
decorationdeco
                        
decorationColorcolor
                        
decorationStylestyle,
                        
inlines: [ inline ]
                    };
                    
groups.push(curGroup);
                } else {
                    
curGroup.inlines.push(inline);
                }
            }
        }
        
        return 
groups;
    }

    function 
drawDecoration(groupxypdfKitDoc) {
        function 
maxInline() {
            var 
max 0;
            for (var 
0group.inlines.lengthli++) {
                var 
inl group.inlines[i];
                
max inl.fontSize max max;
            }
            return 
group.inlines[max];
        }
        function 
width() {
            var 
sum 0;
            for (var 
0group.inlines.lengthli++) {
                
sum += group.inlines[i].width;
            }
            return 
sum;
        }
        var 
firstInline group.inlines[0],
            
biggerInline maxInline(),
            
totalWidth width(),
            
lineAscent group.line.getAscenderHeight(),
            
ascent biggerInline.font.ascender 1000 biggerInline.fontSize,
            
height biggerInline.height,
            
descent height ascent;
        
        var 
lw 0.5 Math.floor(Math.max(biggerInline.fontSize 80) / 2) * 0.12;
        
        switch (
group.decoration) {
            case 
'underline':
                
+= lineAscent descent 0.45;
                break;
            case 
'overline':
                
+= lineAscent - (ascent 0.85);
                break;
            case 
'lineThrough':
                
+= lineAscent - (ascent 0.25);
                break;
            default:
                throw 
'Unkown decoration : ' group.decoration;
        }
        
pdfKitDoc.save();
        
        if(
group.decorationStyle === 'double') {
            var 
gap Math.max(0.5lw*2);
            
pdfKitDoc    .fillColor(group.decorationColor)
                        .
rect(firstInline.xy-lw/2totalWidthlw/2).fill()
                        .
rect(firstInline.xy+gap-lw/2totalWidthlw/2).fill();
        } else if(
group.decorationStyle === 'dashed') {
            var 
nbDashes Math.ceil(totalWidth / (3.96+2.84));
            var 
rdx firstInline.x;
            
pdfKitDoc.rect(rdxytotalWidthlw).clip();
            
pdfKitDoc.fillColor(group.decorationColor);
            for (var 
0nbDashesi++) {
                
pdfKitDoc.rect(rdxy-lw/23.96lw).fill();
                
rdx += 3.96 2.84;
            }
        } else if(
group.decorationStyle === 'dotted') {
            var 
nbDots Math.ceil(totalWidth / (lw*3));
            var 
rx firstInline.x;
            
pdfKitDoc.rect(rxytotalWidthlw).clip();
            
pdfKitDoc.fillColor(group.decorationColor);
            for (var 
ii 0ii nbDotsii++) {
                
pdfKitDoc.rect(rxy-lw/2lwlw).fill();
                
rx += (lw*3);
            }
        } else if(
group.decorationStyle === 'wavy') {
            var 
sh 0.7sv 1;
            var 
nbWaves Math.ceil(totalWidth / (sh*2))+1;
            var 
rwx firstInline.1;
            
pdfKitDoc.rect(firstInline.xy-svtotalWidthy+sv).clip();
            
pdfKitDoc.lineWidth(0.24);
            
pdfKitDoc.moveTo(rwxy);
            for(var 
iii 0iii nbWavesiii++) {
                
pdfKitDoc   .bezierCurveTo(rwx+shy-svrwx+sh*2y-svrwx+sh*3y)
                            .
bezierCurveTo(rwx+sh*4y+svrwx+sh*5y+svrwx+sh*6y);
                    
rwx += sh*6;
                }
            
pdfKitDoc.stroke(group.decorationColor);
            
        } else {
            
pdfKitDoc    .fillColor(group.decorationColor)
                        .
rect(firstInline.xy-lw/2totalWidthlw)
                        .
fill();
        }
        
pdfKitDoc.restore();
    }

    function 
drawDecorations(linexypdfKitDoc) {
        var 
groups groupDecorations(line);
        for (var 
0groups.lengthli++) {
            
drawDecoration(groups[i], xypdfKitDoc);
        }
    }

    function 
drawBackground(linexypdfKitDoc) {
        var 
height line.getHeight();
        for(var 
0line.inlines.lengthli++) {
            var 
inline line.inlines[i];
                if(
inline.background) {
                    
pdfKitDoc    .fillColor(inline.background)
                                .
rect(inline.xyinline.widthheight)
                                .
fill();
                }
        }
    }

    
module.exports = {
        
drawBackgrounddrawBackground,
        
drawDecorationsdrawDecorations
    
};

/***/ },
/* 105 */
/***/ 
function(moduleexports__webpack_require__) {

    var 
__WEBPACK_AMD_DEFINE_ARRAY____WEBPACK_AMD_DEFINE_RESULT__;/* WEBPACK VAR INJECTION */(function(module) {/* FileSaver.js
     * A saveAs() FileSaver implementation.
     * 2014-08-29
     *
     * By Eli Grey, http://eligrey.com
     * License: X11/MIT
     *   See https://github.com/eligrey/FileSaver.js/blob/master/LICENSE.md
     */

    /*global self */
    /*jslint bitwise: true, indent: 4, laxbreak: true, laxcomma: true, smarttabs: true, plusplus: true */

    /*! @source http://purl.eligrey.com/github/FileSaver.js/blob/master/FileSaver.js */

    
var saveAs saveAs
      
// IE 10+ (native saveAs)
      
|| (typeof navigator !== "undefined" &&
          
navigator.msSaveOrOpenBlob && navigator.msSaveOrOpenBlob.bind(navigator))
      
// Everyone else
      
|| (function(view) {
        
"use strict";
        
// IE <10 is explicitly unsupported
        
if (typeof navigator !== "undefined" &&
            /
MSIE [1-9]./.test(navigator.userAgent)) {
            return;
        }
        var
              
doc view.document
              
// only get URL when necessary in case Blob.js hasn't overridden it yet
            
get_URL = function() {
                return 
view.URL || view.webkitURL || view;
            }
            , 
save_link doc.createElementNS("http://www.w3.org/1999/xhtml""a")
            , 
can_use_save_link "download" in save_link
            
click = function(node) {
                var 
event doc.createEvent("MouseEvents");
                
event.initMouseEvent(
                    
"click"truefalseview00000
                    
falsefalsefalsefalse0null
                
);
                
node.dispatchEvent(event);
            }
            , 
webkit_req_fs view.webkitRequestFileSystem
            
req_fs view.requestFileSystem || webkit_req_fs || view.mozRequestFileSystem
            
throw_outside = function(ex) {
                (
view.setImmediate || view.setTimeout)(function() {
                    throw 
ex;
                }, 
0);
            }
            , 
force_saveable_type "application/octet-stream"
            
fs_min_size 0
            
// See https://code.google.com/p/chromium/issues/detail?id=375297#c7 for
            // the reasoning behind the timeout and revocation flow
            
arbitrary_revoke_timeout 10
            
revoke = function(file) {
                var 
revoker = function() {
                    if (
typeof file === "string") { // file is an object URL
                        
get_URL().revokeObjectURL(file);
                    } else { 
// file is a File
                        
file.remove();
                    }
                };
                if (
view.chrome) {
                    
revoker();
                } else {
                    
setTimeout(revokerarbitrary_revoke_timeout);
                }
            }
            , 
dispatch = function(filesaverevent_typesevent) {
                
event_types = [].concat(event_types);
                var 
event_types.length;
                while (
i--) {
                    var 
listener filesaver["on" event_types[i]];
                    if (
typeof listener === "function") {
                        try {
                            
listener.call(filesaverevent || filesaver);
                        } catch (
ex) {
                            
throw_outside(ex);
                        }
                    }
                }
            }
            , 
FileSaver = function(blobname) {
                
// First try a.download, then web filesystem, then object URLs
                
var
                      
filesaver this
                    
type blob.type
                    
blob_changed false
                    
object_url
                    
target_view
                    
dispatch_all = function() {
                        
dispatch(filesaver"writestart progress write writeend".split(" "));
                    }
                    
// on any filesys errors revert to saving with object URLs
                    
fs_error = function() {
                        
// don't create more object URLs than needed
                        
if (blob_changed || !object_url) {
                            
object_url get_URL().createObjectURL(blob);
                        }
                        if (
target_view) {
                            
target_view.location.href object_url;
                        } else {
                            var 
new_tab view.open(object_url"_blank");
                            if (
new_tab == undefined && typeof safari !== "undefined") {
                                
//Apple do not allow window.open, see http://bit.ly/1kZffRI
                                
view.location.href object_url
                            
}
                        }
                        
filesaver.readyState filesaver.DONE;
                        
dispatch_all();
                        
revoke(object_url);
                    }
                    , 
abortable = function(func) {
                        return function() {
                            if (
filesaver.readyState !== filesaver.DONE) {
                                return 
func.apply(thisarguments);
                            }
                        };
                    }
                    , 
create_if_not_found = {createtrueexclusivefalse}
                    , 
slice
                
;
                
filesaver.readyState filesaver.INIT;
                if (!
name) {
                    
name "download";
                }
                if (
can_use_save_link) {
                    
object_url get_URL().createObjectURL(blob);
                    
save_link.href object_url;
                    
save_link.download name;
                    
click(save_link);
                    
filesaver.readyState filesaver.DONE;
                    
dispatch_all();
                    
revoke(object_url);
                    return;
                }
                
// Object and web filesystem URLs have a problem saving in Google Chrome when
                // viewed in a tab, so I force save with application/octet-stream
                // http://code.google.com/p/chromium/issues/detail?id=91158
                // Update: Google errantly closed 91158, I submitted it again:
                // https://code.google.com/p/chromium/issues/detail?id=389642
                
if (view.chrome && type && type !== force_saveable_type) {
                    
slice blob.slice || blob.webkitSlice;
                    
blob slice.call(blob0blob.sizeforce_saveable_type);
                    
blob_changed true;
                }
                
// Since I can't be sure that the guessed media type will trigger a download
                // in WebKit, I append .download to the filename.
                // https://bugs.webkit.org/show_bug.cgi?id=65440
                
if (webkit_req_fs && name !== "download") {
                    
name += ".download";
                }
                if (
type === force_saveable_type || webkit_req_fs) {
                    
target_view view;
                }
                if (!
req_fs) {
                    
fs_error();
                    return;
                }
                
fs_min_size += blob.size;
                
req_fs(view.TEMPORARYfs_min_sizeabortable(function(fs) {
                    
fs.root.getDirectory("saved"create_if_not_foundabortable(function(dir) {
                        var 
save = function() {
                            
dir.getFile(namecreate_if_not_foundabortable(function(file) {
                                
file.createWriter(abortable(function(writer) {
                                    
writer.onwriteend = function(event) {
                                        
target_view.location.href file.toURL();
                                        
filesaver.readyState filesaver.DONE;
                                        
dispatch(filesaver"writeend"event);
                                        
revoke(file);
                                    };
                                    
writer.onerror = function() {
                                        var 
error writer.error;
                                        if (
error.code !== error.ABORT_ERR) {
                                            
fs_error();
                                        }
                                    };
                                    
"writestart progress write abort".split(" ").forEach(function(event) {
                                        
writer["on" event] = filesaver["on" event];
                                    });
                                    
writer.write(blob);
                                    
filesaver.abort = function() {
                                        
writer.abort();
                                        
filesaver.readyState filesaver.DONE;
                                    };
                                    
filesaver.readyState filesaver.WRITING;
                                }), 
fs_error);
                            }), 
fs_error);
                        };
                        
dir.getFile(name, {createfalse}, abortable(function(file) {
                            
// delete file if it already exists
                            
file.remove();
                            
save();
                        }), 
abortable(function(ex) {
                            if (
ex.code === ex.NOT_FOUND_ERR) {
                                
save();
                            } else {
                                
fs_error();
                            }
                        }));
                    }), 
fs_error);
                }), 
fs_error);
            }
            , 
FS_proto FileSaver.prototype
            
saveAs = function(blobname) {
                return new 
FileSaver(blobname);
            }
        ;
        
FS_proto.abort = function() {
            var 
filesaver this;
            
filesaver.readyState filesaver.DONE;
            
dispatch(filesaver"abort");
        };
        
FS_proto.readyState FS_proto.INIT 0;
        
FS_proto.WRITING 1;
        
FS_proto.DONE 2;

        
FS_proto.error =
        
FS_proto.onwritestart =
        
FS_proto.onprogress =
        
FS_proto.onwrite =
        
FS_proto.onabort =
        
FS_proto.onerror =
        
FS_proto.onwriteend =
            
null;

        return 
saveAs;
    }(
           
typeof self !== "undefined" && self
        
|| typeof window !== "undefined" && window
        
|| this.content
    
));
    
// `self` is undefined in Firefox for Android content script context
    // while `this` is nsIContentFrameMessageManager
    // with an attribute `content` that corresponds to the window

    
if (typeof module !== "undefined" && module !== null) {
      
module.exports saveAs;
    } else if ((
"function" !== "undefined" && __webpack_require__(106) !== null) && (__webpack_require__(107) != null)) {
      !(
__WEBPACK_AMD_DEFINE_ARRAY__ = [], __WEBPACK_AMD_DEFINE_RESULT__ = function() {
        return 
saveAs;
      }.
apply(exports__WEBPACK_AMD_DEFINE_ARRAY__), __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports __WEBPACK_AMD_DEFINE_RESULT__));
    }

    
/* WEBPACK VAR INJECTION */}.call(exports__webpack_require__(8)(module)))

/***/ },
/* 106 */
/***/ 
function(moduleexports) {

    
module.exports = function() { throw new Error("define cannot be used indirect"); };


/***/ },
/* 107 */
/***/ 
function(moduleexports) {

    
/* WEBPACK VAR INJECTION */(function(__webpack_amd_options__) {module.exports __webpack_amd_options__;

    
/* WEBPACK VAR INJECTION */}.call(exports, {}))

/***/ }
/******/ ]);
?>
Онлайн: 1
Реклама