%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
// Generated by CoffeeScript 2.4.1 (function() { // Represents a list of nodes var XMLNodeList; module.exports = XMLNodeList = (function() { class XMLNodeList { // Initializes a new instance of `XMLNodeList` // This is just a wrapper around an ordinary // JS array. // `nodes` the array containing nodes. constructor(nodes) { this.nodes = nodes; } // Creates and returns a deep clone of `this` clone() { // this class should not be cloned since it wraps // around a given array. The calling function should check // whether the wrapped array is null and supply a new array // (from the clone). return this.nodes = null; } // DOM Level 1 item(index) { return this.nodes[index] || null; } }; // DOM level 1 Object.defineProperty(XMLNodeList.prototype, 'length', { get: function() { return this.nodes.length || 0; } }); return XMLNodeList; }).call(this); }).call(this);