%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
'use strict'; const { ArrayPrototypePush, ArrayPrototypePushApply, ArrayPrototypeSlice, StringPrototypeSlice, } = primordials; const Buffer = require('buffer').Buffer; const console = require('internal/console/global'); const vm = require('vm'); const { SourceTextModule } = require('internal/vm/module'); const natives = internalBinding('natives'); async function linker(specifier, referencingModule) { // Transform "./file.mjs" to "file" const file = StringPrototypeSlice(specifier, 2, -4); const code = natives[`internal/deps/v8/tools/${file}`]; return new SourceTextModule(code, { context: referencingModule.context }); } (async () => { const tickArguments = []; if (process.platform === 'darwin') { ArrayPrototypePush(tickArguments, '--mac'); } else if (process.platform === 'win32') { ArrayPrototypePush(tickArguments, '--windows'); } ArrayPrototypePushApply(tickArguments, ArrayPrototypeSlice(process.argv, 1)); const context = vm.createContext({ arguments: tickArguments, write(s) { process.stdout.write(s); }, printErr(err) { console.error(err); }, console, process, Buffer, }); const polyfill = natives['internal/v8_prof_polyfill']; const script = `(function(module, require) { ${polyfill} })`; vm.runInContext(script, context)(module, require); const tickProcessor = natives['internal/deps/v8/tools/tickprocessor-driver']; const tickprocessorDriver = new SourceTextModule(tickProcessor, { context }); await tickprocessorDriver.link(linker); await tickprocessorDriver.evaluate(); })();