@medplum/core 0.9.10 → 0.9.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cody-pdf-test.js +1 -1
- package/dist/cjs/index.js +406 -337
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/index.min.js +1 -1
- package/dist/cjs/index.min.js.map +1 -1
- package/dist/esm/index.js +398 -338
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/index.min.js +1 -1
- package/dist/esm/index.min.js.map +1 -1
- package/dist/types/client.d.ts +61 -31
- package/dist/types/utils.d.ts +71 -1
- package/package.json +2 -2
- package/dist/types/pdf.d.ts +0 -5
- package/document.pdf +0 -0
- package/test.pdf +0 -1
- package/test2.pdf +0 -1
- package/test3.pdf.txt +0 -1
- package/test4.pdf +0 -1
- package/test5.pdf +0 -0
- package/test7-2.pdf +0 -1
- package/test7.pdf +0 -1
- package/test8-2.pdf +0 -0
- package/test8.pdf +0 -0
- package/test9-2.pdf +0 -0
- package/test9-3.pdf +0 -0
- package/test9-4.pdf +0 -0
- package/test9.pdf +0 -0
package/dist/types/client.d.ts
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
import { Binary, Bundle, Communication, OperationOutcome, Project, ProjectMembership, Reference, Resource, UserConfiguration, ValueSet } from '@medplum/fhirtypes';
|
|
1
|
+
import { Binary, Bundle, Communication, ExtractResource, OperationOutcome, Project, ProjectMembership, Reference, Resource, ResourceType, UserConfiguration, ValueSet } from '@medplum/fhirtypes';
|
|
2
2
|
/** @ts-ignore */
|
|
3
3
|
import type { CustomTableLayout, TDocumentDefinitions, TFontDictionary } from 'pdfmake/interfaces';
|
|
4
4
|
import { EventTarget } from './eventtarget';
|
|
5
5
|
import { Hl7Message } from './hl7';
|
|
6
6
|
import { ReadablePromise } from './readablepromise';
|
|
7
|
-
import { SearchRequest } from './search';
|
|
8
7
|
import { IndexedStructureDefinition } from './types';
|
|
9
8
|
import { ProfileResource } from './utils';
|
|
10
9
|
/**
|
|
@@ -67,6 +66,46 @@ export interface MedplumClientOptions {
|
|
|
67
66
|
* For nodejs applications, consider the 'node-fetch' package.
|
|
68
67
|
*/
|
|
69
68
|
fetch?: FetchLike;
|
|
69
|
+
/**
|
|
70
|
+
* Create PDF implementation.
|
|
71
|
+
*
|
|
72
|
+
* Default is none, and PDF generation is disabled.
|
|
73
|
+
*
|
|
74
|
+
* In browser environments, import the client-side pdfmake library.
|
|
75
|
+
*
|
|
76
|
+
* ```html
|
|
77
|
+
* <script src="pdfmake.min.js"></script>
|
|
78
|
+
* <script>
|
|
79
|
+
* async function createPdf(docDefinition, tableLayouts, fonts) {
|
|
80
|
+
* return new Promise((resolve) => {
|
|
81
|
+
* pdfMake.createPdf(docDefinition, tableLayouts, fonts).getBlob(resolve);
|
|
82
|
+
* });
|
|
83
|
+
* }
|
|
84
|
+
* </script>
|
|
85
|
+
* ```
|
|
86
|
+
*
|
|
87
|
+
* In nodejs applications:
|
|
88
|
+
*
|
|
89
|
+
* ```ts
|
|
90
|
+
* import type { CustomTableLayout, TDocumentDefinitions, TFontDictionary } from 'pdfmake/interfaces';
|
|
91
|
+
* function createPdf(
|
|
92
|
+
* docDefinition: TDocumentDefinitions,
|
|
93
|
+
* tableLayouts?: { [name: string]: CustomTableLayout },
|
|
94
|
+
* fonts?: TFontDictionary
|
|
95
|
+
* ): Promise<Buffer> {
|
|
96
|
+
* return new Promise((resolve, reject) => {
|
|
97
|
+
* const printer = new PdfPrinter(fonts || {});
|
|
98
|
+
* const pdfDoc = printer.createPdfKitDocument(docDefinition, { tableLayouts });
|
|
99
|
+
* const chunks: Uint8Array[] = [];
|
|
100
|
+
* pdfDoc.on('data', (chunk: Uint8Array) => chunks.push(chunk));
|
|
101
|
+
* pdfDoc.on('end', () => resolve(Buffer.concat(chunks)));
|
|
102
|
+
* pdfDoc.on('error', reject);
|
|
103
|
+
* pdfDoc.end();
|
|
104
|
+
* });
|
|
105
|
+
* }
|
|
106
|
+
* ```
|
|
107
|
+
*/
|
|
108
|
+
createPdf?: CreatePdfFunction;
|
|
70
109
|
/**
|
|
71
110
|
* Callback for when the client is unauthenticated.
|
|
72
111
|
*
|
|
@@ -79,6 +118,11 @@ export interface MedplumClientOptions {
|
|
|
79
118
|
export interface FetchLike {
|
|
80
119
|
(url: string, options?: any): Promise<any>;
|
|
81
120
|
}
|
|
121
|
+
export interface CreatePdfFunction {
|
|
122
|
+
(docDefinition: TDocumentDefinitions, tableLayouts?: {
|
|
123
|
+
[name: string]: CustomTableLayout;
|
|
124
|
+
} | undefined, fonts?: TFontDictionary | undefined): Promise<any>;
|
|
125
|
+
}
|
|
82
126
|
export interface LoginRequest {
|
|
83
127
|
readonly email: string;
|
|
84
128
|
readonly password: string;
|
|
@@ -230,7 +274,7 @@ export interface MailOptions {
|
|
|
230
274
|
* Search for a `Patient` by name:
|
|
231
275
|
*
|
|
232
276
|
* ```typescript
|
|
233
|
-
* const bundle = await medplum.search('Patient
|
|
277
|
+
* const bundle = await medplum.search('Patient', 'name=Alice');
|
|
234
278
|
* console.log(bundle.total);
|
|
235
279
|
* ```
|
|
236
280
|
*/
|
|
@@ -257,7 +301,7 @@ export declare class MedplumClient extends EventTarget {
|
|
|
257
301
|
* Invalidates all cached search results or cached requests for the given resourceType.
|
|
258
302
|
* @param resourceType The resource type to invalidate.
|
|
259
303
|
*/
|
|
260
|
-
invalidateSearches(resourceType:
|
|
304
|
+
invalidateSearches<K extends ResourceType>(resourceType: K): void;
|
|
261
305
|
/**
|
|
262
306
|
* Makes an HTTP GET request to the specified URL.
|
|
263
307
|
*
|
|
@@ -371,28 +415,14 @@ export declare class MedplumClient extends EventTarget {
|
|
|
371
415
|
* @param query The FHIR search query or structured query object.
|
|
372
416
|
* @returns The well-formed FHIR URL.
|
|
373
417
|
*/
|
|
374
|
-
fhirSearchUrl(query: string |
|
|
418
|
+
fhirSearchUrl(resourceType: ResourceType, query: URLSearchParams | string | undefined): URL;
|
|
375
419
|
/**
|
|
376
420
|
* Sends a FHIR search request.
|
|
377
421
|
*
|
|
378
422
|
* Example using a FHIR search string:
|
|
379
423
|
*
|
|
380
424
|
* ```typescript
|
|
381
|
-
* const bundle = await client.search('Patient
|
|
382
|
-
* console.log(bundle);
|
|
383
|
-
* ```
|
|
384
|
-
*
|
|
385
|
-
* Example using a structured search:
|
|
386
|
-
*
|
|
387
|
-
* ```typescript
|
|
388
|
-
* const bundle = await client.search({
|
|
389
|
-
* resourceType: 'Patient',
|
|
390
|
-
* filters: [{
|
|
391
|
-
* code: 'name',
|
|
392
|
-
* operator: 'eq',
|
|
393
|
-
* value: 'Alice',
|
|
394
|
-
* }]
|
|
395
|
-
* });
|
|
425
|
+
* const bundle = await client.search('Patient', 'name=Alice');
|
|
396
426
|
* console.log(bundle);
|
|
397
427
|
* ```
|
|
398
428
|
*
|
|
@@ -426,7 +456,7 @@ export declare class MedplumClient extends EventTarget {
|
|
|
426
456
|
* @param query The search query as either a string or a structured search object.
|
|
427
457
|
* @returns Promise to the search result bundle.
|
|
428
458
|
*/
|
|
429
|
-
search<
|
|
459
|
+
search<K extends ResourceType>(resourceType: K, query?: URLSearchParams | string, options?: RequestInit): ReadablePromise<Bundle<ExtractResource<K>>>;
|
|
430
460
|
/**
|
|
431
461
|
* Sends a FHIR search request for a single resource.
|
|
432
462
|
*
|
|
@@ -435,7 +465,7 @@ export declare class MedplumClient extends EventTarget {
|
|
|
435
465
|
* Example using a FHIR search string:
|
|
436
466
|
*
|
|
437
467
|
* ```typescript
|
|
438
|
-
* const patient = await client.searchOne('Patient
|
|
468
|
+
* const patient = await client.searchOne('Patient', 'identifier=123');
|
|
439
469
|
* console.log(patient);
|
|
440
470
|
* ```
|
|
441
471
|
*
|
|
@@ -446,7 +476,7 @@ export declare class MedplumClient extends EventTarget {
|
|
|
446
476
|
* @param query The search query as either a string or a structured search object.
|
|
447
477
|
* @returns Promise to the search result bundle.
|
|
448
478
|
*/
|
|
449
|
-
searchOne<
|
|
479
|
+
searchOne<K extends ResourceType>(resourceType: K, query?: URLSearchParams | string, options?: RequestInit): ReadablePromise<ExtractResource<K> | undefined>;
|
|
450
480
|
/**
|
|
451
481
|
* Sends a FHIR search request for an array of resources.
|
|
452
482
|
*
|
|
@@ -455,7 +485,7 @@ export declare class MedplumClient extends EventTarget {
|
|
|
455
485
|
* Example using a FHIR search string:
|
|
456
486
|
*
|
|
457
487
|
* ```typescript
|
|
458
|
-
* const patients = await client.searchResources('Patient
|
|
488
|
+
* const patients = await client.searchResources('Patient', 'name=Alice');
|
|
459
489
|
* console.log(patients);
|
|
460
490
|
* ```
|
|
461
491
|
*
|
|
@@ -466,7 +496,7 @@ export declare class MedplumClient extends EventTarget {
|
|
|
466
496
|
* @param query The search query as either a string or a structured search object.
|
|
467
497
|
* @returns Promise to the search result bundle.
|
|
468
498
|
*/
|
|
469
|
-
searchResources<
|
|
499
|
+
searchResources<K extends ResourceType>(resourceType: K, query?: URLSearchParams | string, options?: RequestInit): ReadablePromise<ExtractResource<K>[]>;
|
|
470
500
|
/**
|
|
471
501
|
* Searches a ValueSet resource using the "expand" operation.
|
|
472
502
|
* See: https://www.hl7.org/fhir/operation-valueset-expand.html
|
|
@@ -481,7 +511,7 @@ export declare class MedplumClient extends EventTarget {
|
|
|
481
511
|
* @param id The FHIR resource ID.
|
|
482
512
|
* @returns The resource if it is available in the cache; undefined otherwise.
|
|
483
513
|
*/
|
|
484
|
-
getCached<
|
|
514
|
+
getCached<K extends ResourceType>(resourceType: K, id: string): ExtractResource<K> | undefined;
|
|
485
515
|
/**
|
|
486
516
|
* Returns a cached resource if it is available.
|
|
487
517
|
* @param resourceType The FHIR resource type.
|
|
@@ -505,7 +535,7 @@ export declare class MedplumClient extends EventTarget {
|
|
|
505
535
|
* @param id The resource ID.
|
|
506
536
|
* @returns The resource if available; undefined otherwise.
|
|
507
537
|
*/
|
|
508
|
-
readResource<
|
|
538
|
+
readResource<K extends ResourceType>(resourceType: K, id: string): ReadablePromise<ExtractResource<K>>;
|
|
509
539
|
/**
|
|
510
540
|
* Reads a resource by `Reference`.
|
|
511
541
|
*
|
|
@@ -558,7 +588,7 @@ export declare class MedplumClient extends EventTarget {
|
|
|
558
588
|
* @param id The resource ID.
|
|
559
589
|
* @returns Promise to the resource history.
|
|
560
590
|
*/
|
|
561
|
-
readHistory<
|
|
591
|
+
readHistory<K extends ResourceType>(resourceType: K, id: string): ReadablePromise<Bundle<ExtractResource<K>>>;
|
|
562
592
|
/**
|
|
563
593
|
* Reads a specific version of a resource by resource type, ID, and version ID.
|
|
564
594
|
*
|
|
@@ -575,7 +605,7 @@ export declare class MedplumClient extends EventTarget {
|
|
|
575
605
|
* @param id The resource ID.
|
|
576
606
|
* @returns The resource if available; undefined otherwise.
|
|
577
607
|
*/
|
|
578
|
-
readVersion<
|
|
608
|
+
readVersion<K extends ResourceType>(resourceType: K, id: string, vid: string): ReadablePromise<ExtractResource<K>>;
|
|
579
609
|
readPatientEverything(id: string): ReadablePromise<Bundle>;
|
|
580
610
|
/**
|
|
581
611
|
* Creates a new FHIR resource.
|
|
@@ -746,7 +776,7 @@ export declare class MedplumClient extends EventTarget {
|
|
|
746
776
|
* @param operations The JSONPatch operations.
|
|
747
777
|
* @returns The result of the patch operations.
|
|
748
778
|
*/
|
|
749
|
-
patchResource<
|
|
779
|
+
patchResource<K extends ResourceType>(resourceType: K, id: string, operations: PatchOperation[]): Promise<ExtractResource<K>>;
|
|
750
780
|
/**
|
|
751
781
|
* Deletes a FHIR resource by resource type and ID.
|
|
752
782
|
*
|
|
@@ -762,7 +792,7 @@ export declare class MedplumClient extends EventTarget {
|
|
|
762
792
|
* @param id The resource ID.
|
|
763
793
|
* @returns The result of the delete operation.
|
|
764
794
|
*/
|
|
765
|
-
deleteResource(resourceType:
|
|
795
|
+
deleteResource(resourceType: ResourceType, id: string): Promise<any>;
|
|
766
796
|
/**
|
|
767
797
|
* Sends an email using the Medplum Email API.
|
|
768
798
|
*
|
package/dist/types/utils.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Patient, Practitioner, QuestionnaireResponse, QuestionnaireResponseItemAnswer, Reference, RelatedPerson, Resource } from '@medplum/fhirtypes';
|
|
1
|
+
import { CodeableConcept, ObservationDefinition, ObservationDefinitionQualifiedInterval, Patient, Practitioner, QuestionnaireResponse, QuestionnaireResponseItemAnswer, Range, Reference, RelatedPerson, Resource } from '@medplum/fhirtypes';
|
|
2
2
|
export declare type ProfileResource = Patient | Practitioner | RelatedPerson;
|
|
3
3
|
/**
|
|
4
4
|
* Creates a reference resource.
|
|
@@ -141,3 +141,73 @@ export declare function arrayBufferToHex(arrayBuffer: ArrayBuffer): string;
|
|
|
141
141
|
export declare function arrayBufferToBase64(arrayBuffer: ArrayBuffer): string;
|
|
142
142
|
export declare function capitalize(word: string): string;
|
|
143
143
|
export declare function isLowerCase(c: string): boolean;
|
|
144
|
+
/**
|
|
145
|
+
* Tries to find a code string for a given system within a given codeable concept.
|
|
146
|
+
* @param concept The codeable concept.
|
|
147
|
+
* @param system The system string.
|
|
148
|
+
* @returns The code if found; otherwise undefined.
|
|
149
|
+
*/
|
|
150
|
+
export declare function getCodeBySystem(concept: CodeableConcept, system: string): string | undefined;
|
|
151
|
+
/**
|
|
152
|
+
* Sets a code for a given system within a given codeable concept.
|
|
153
|
+
* @param concept The codeable concept.
|
|
154
|
+
* @param system The system string.
|
|
155
|
+
* @param code The code value.
|
|
156
|
+
*/
|
|
157
|
+
export declare function setCodeBySystem(concept: CodeableConcept, system: string, code: string): void;
|
|
158
|
+
/**
|
|
159
|
+
* Tries to find an observation interval for the given patient and value.
|
|
160
|
+
* @param definition The observation definition.
|
|
161
|
+
* @param patient The patient.
|
|
162
|
+
* @param value The observation value.
|
|
163
|
+
* @returns The observation interval if found; otherwise undefined.
|
|
164
|
+
*/
|
|
165
|
+
export declare function findObservationInterval(definition: ObservationDefinition, patient: Patient, value: number, category?: 'reference' | 'critical' | 'absolute'): ObservationDefinitionQualifiedInterval | undefined;
|
|
166
|
+
/**
|
|
167
|
+
* Returns true if the value is in the range accounting for precision.
|
|
168
|
+
* @param value The numeric value.
|
|
169
|
+
* @param range The numeric range.
|
|
170
|
+
* @param precision Optional precision in number of digits.
|
|
171
|
+
* @returns True if the value is within the range.
|
|
172
|
+
*/
|
|
173
|
+
export declare function matchesRange(value: number, range: Range, precision?: number): boolean;
|
|
174
|
+
/**
|
|
175
|
+
* Returns true if the two numbers are equal to the given precision.
|
|
176
|
+
* @param a The first number.
|
|
177
|
+
* @param b The second number.
|
|
178
|
+
* @param precision Optional precision in number of digits.
|
|
179
|
+
* @returns True if the two numbers are equal to the given precision.
|
|
180
|
+
*/
|
|
181
|
+
export declare function preciseEquals(a: number, b: number, precision?: number): boolean;
|
|
182
|
+
/**
|
|
183
|
+
* Returns true if the first number is less than the second number to the given precision.
|
|
184
|
+
* @param a The first number.
|
|
185
|
+
* @param b The second number.
|
|
186
|
+
* @param precision Optional precision in number of digits.
|
|
187
|
+
* @returns True if the first number is less than the second number to the given precision.
|
|
188
|
+
*/
|
|
189
|
+
export declare function preciseLessThan(a: number, b: number, precision?: number): boolean;
|
|
190
|
+
/**
|
|
191
|
+
* Returns true if the first number is greater than the second number to the given precision.
|
|
192
|
+
* @param a The first number.
|
|
193
|
+
* @param b The second number.
|
|
194
|
+
* @param precision Optional precision in number of digits.
|
|
195
|
+
* @returns True if the first number is greater than the second number to the given precision.
|
|
196
|
+
*/
|
|
197
|
+
export declare function preciseGreaterThan(a: number, b: number, precision?: number): boolean;
|
|
198
|
+
/**
|
|
199
|
+
* Returns true if the first number is less than or equal to the second number to the given precision.
|
|
200
|
+
* @param a The first number.
|
|
201
|
+
* @param b The second number.
|
|
202
|
+
* @param precision Optional precision in number of digits.
|
|
203
|
+
* @returns True if the first number is less than or equal to the second number to the given precision.
|
|
204
|
+
*/
|
|
205
|
+
export declare function preciseLessThanOrEquals(a: number, b: number, precision?: number): boolean;
|
|
206
|
+
/**
|
|
207
|
+
* Returns true if the first number is greater than or equal to the second number to the given precision.
|
|
208
|
+
* @param a The first number.
|
|
209
|
+
* @param b The second number.
|
|
210
|
+
* @param precision Optional precision in number of digits.
|
|
211
|
+
* @returns True if the first number is greater than or equal to the second number to the given precision.
|
|
212
|
+
*/
|
|
213
|
+
export declare function preciseGreaterThanOrEquals(a: number, b: number, precision?: number): boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@medplum/core",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.13",
|
|
4
4
|
"description": "Medplum TS/JS Library",
|
|
5
5
|
"author": "Medplum <hello@medplum.com>",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"test": "jest"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@medplum/fhirtypes": "0.9.
|
|
20
|
+
"@medplum/fhirtypes": "0.9.13"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"pdfmake": "0.2.5"
|
package/dist/types/pdf.d.ts
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
/** @ts-ignore */
|
|
2
|
-
import type { CustomTableLayout, TDocumentDefinitions, TFontDictionary } from 'pdfmake/interfaces';
|
|
3
|
-
export declare function generatePdf(docDefinition: TDocumentDefinitions, tableLayouts?: {
|
|
4
|
-
[name: string]: CustomTableLayout;
|
|
5
|
-
}, fonts?: TFontDictionary): Promise<Blob | Uint8Array>;
|
package/document.pdf
DELETED
|
Binary file
|
package/test.pdf
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"type":"Buffer","data":[37,80,68,70,45,49,46,51,10,37,255,255,255,255,10,56,32,48,32,111,98,106,10,60,60,10,47,84,121,112,101,32,47,69,120,116,71,83,116,97,116,101,10,47,99,97,32,49,10,47,67,65,32,49,10,62,62,10,101,110,100,111,98,106,10,55,32,48,32,111,98,106,10,60,60,10,47,84,121,112,101,32,47,80,97,103,101,10,47,80,97,114,101,110,116,32,49,32,48,32,82,10,47,77,101,100,105,97,66,111,120,32,91,48,32,48,32,54,49,50,32,55,57,50,93,10,47,67,111,110,116,101,110,116,115,32,53,32,48,32,82,10,47,82,101,115,111,117,114,99,101,115,32,54,32,48,32,82,10,62,62,10,101,110,100,111,98,106,10,54,32,48,32,111,98,106,10,60,60,10,47,80,114,111,99,83,101,116,32,91,47,80,68,70,32,47,84,101,120,116,32,47,73,109,97,103,101,66,32,47,73,109,97,103,101,67,32,47,73,109,97,103,101,73,93,10,47,69,120,116,71,83,116,97,116,101,32,60,60,10,47,71,115,49,32,56,32,48,32,82,10,62,62,10,47,70,111,110,116,32,60,60,10,47,70,49,32,57,32,48,32,82,10,62,62,10,62,62,10,101,110,100,111,98,106,10,53,32,48,32,111,98,106,10,60,60,10,47,76,101,110,103,116,104,32,49,52,49,10,47,70,105,108,116,101,114,32,47,70,108,97,116,101,68,101,99,111,100,101,10,62,62,10,115,116,114,101,97,109,10,120,156,165,78,65,10,2,49,12,188,231,21,249,128,187,73,109,211,10,75,15,139,186,224,77,233,77,60,133,173,120,80,144,130,239,55,136,23,17,79,50,48,132,97,50,51,140,100,88,176,81,92,57,212,43,244,83,99,60,55,232,215,243,227,162,243,97,26,81,27,208,203,215,244,6,21,238,192,95,95,99,121,139,140,98,162,243,29,147,195,98,113,91,70,102,44,21,142,131,79,18,68,13,213,81,70,58,97,217,193,166,192,254,255,206,148,58,102,249,213,27,98,198,37,225,32,53,186,108,17,193,78,21,255,49,225,9,162,128,58,19,10,101,110,100,115,116,114,101,97,109,10,101,110,100,111,98,106,10,49,49,32,48,32,111,98,106,10,40,112,100,102,109,97,107,101,41,10,101,110,100,111,98,106,10,49,50,32,48,32,111,98,106,10,40,112,100,102,109,97,107,101,41,10,101,110,100,111,98,106,10,49,51,32,48,32,111,98,106,10,40,68,58,50,48,50,50,48,54,48,55,50,49,52,53,48,49,90,41,10,101,110,100,111,98,106,10,49,48,32,48,32,111,98,106,10,60,60,10,47,80,114,111,100,117,99,101,114,32,49,49,32,48,32,82,10,47,67,114,101,97,116,111,114,32,49,50,32,48,32,82,10,47,67,114,101,97,116,105,111,110,68,97,116,101,32,49,51,32,48,32,82,10,62,62,10,101,110,100,111,98,106,10,57,32,48,32,111,98,106,10,60,60,10,47,84,121,112,101,32,47,70,111,110,116,10,47,66,97,115,101,70,111,110,116,32,47,72,101,108,118,101,116,105,99,97,10,47,83,117,98,116,121,112,101,32,47,84,121,112,101,49,10,47,69,110,99,111,100,105,110,103,32,47,87,105,110,65,110,115,105,69,110,99,111,100,105,110,103,10,62,62,10,101,110,100,111,98,106,10,52,32,48,32,111,98,106,10,60,60,10,62,62,10,101,110,100,111,98,106,10,51,32,48,32,111,98,106,10,60,60,10,47,84,121,112,101,32,47,67,97,116,97,108,111,103,10,47,80,97,103,101,115,32,49,32,48,32,82,10,47,78,97,109,101,115,32,50,32,48,32,82,10,62,62,10,101,110,100,111,98,106,10,49,32,48,32,111,98,106,10,60,60,10,47,84,121,112,101,32,47,80,97,103,101,115,10,47,67,111,117,110,116,32,49,10,47,75,105,100,115,32,91,55,32,48,32,82,93,10,62,62,10,101,110,100,111,98,106,10,50,32,48,32,111,98,106,10,60,60,10,47,68,101,115,116,115,32,60,60,10,32,32,47,78,97,109,101,115,32,91,10,93,10,62,62,10,62,62,10,101,110,100,111,98,106,10,120,114,101,102,10,48,32,49,52,10,48,48,48,48,48,48,48,48,48,48,32,54,53,53,51,53,32,102,32,10,48,48,48,48,48,48,48,56,52,51,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,57,48,48,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,55,56,49,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,55,54,48,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,50,56,54,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,49,54,57,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,48,54,53,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,48,49,53,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,54,54,51,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,53,56,55,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,52,57,57,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,53,50,53,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,53,53,49,32,48,48,48,48,48,32,110,32,10,116,114,97,105,108,101,114,10,60,60,10,47,83,105,122,101,32,49,52,10,47,82,111,111,116,32,51,32,48,32,82,10,47,73,110,102,111,32,49,48,32,48,32,82,10,47,73,68,32,91,60,56,54,98,53,49,100,55,49,52,102,55,55,97,48,98,99,48,53,50,51,52,55,50,100,97,57,97,102,56,48,101,55,62,32,60,56,54,98,53,49,100,55,49,52,102,55,55,97,48,98,99,48,53,50,51,52,55,50,100,97,57,97,102,56,48,101,55,62,93,10,62,62,10,115,116,97,114,116,120,114,101,102,10,57,52,55,10,37,37,69,79,70,10]}
|
package/test2.pdf
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"type":"Buffer","data":[37,80,68,70,45,49,46,51,10,37,255,255,255,255,10,56,32,48,32,111,98,106,10,60,60,10,47,84,121,112,101,32,47,69,120,116,71,83,116,97,116,101,10,47,99,97,32,49,10,47,67,65,32,49,10,62,62,10,101,110,100,111,98,106,10,55,32,48,32,111,98,106,10,60,60,10,47,84,121,112,101,32,47,80,97,103,101,10,47,80,97,114,101,110,116,32,49,32,48,32,82,10,47,77,101,100,105,97,66,111,120,32,91,48,32,48,32,54,49,50,32,55,57,50,93,10,47,67,111,110,116,101,110,116,115,32,53,32,48,32,82,10,47,82,101,115,111,117,114,99,101,115,32,54,32,48,32,82,10,62,62,10,101,110,100,111,98,106,10,54,32,48,32,111,98,106,10,60,60,10,47,80,114,111,99,83,101,116,32,91,47,80,68,70,32,47,84,101,120,116,32,47,73,109,97,103,101,66,32,47,73,109,97,103,101,67,32,47,73,109,97,103,101,73,93,10,47,69,120,116,71,83,116,97,116,101,32,60,60,10,47,71,115,49,32,56,32,48,32,82,10,62,62,10,47,70,111,110,116,32,60,60,10,47,70,49,32,57,32,48,32,82,10,62,62,10,62,62,10,101,110,100,111,98,106,10,53,32,48,32,111,98,106,10,60,60,10,47,76,101,110,103,116,104,32,52,48,54,10,47,70,105,108,116,101,114,32,47,70,108,97,116,101,68,101,99,111,100,101,10,62,62,10,115,116,114,101,97,109,10,120,156,189,150,207,74,4,49,12,198,239,125,138,190,128,217,36,77,147,22,150,61,44,234,130,55,101,110,226,197,113,71,60,40,200,130,207,111,70,87,68,150,46,130,93,25,152,25,58,127,126,253,190,38,105,40,162,31,103,228,39,171,28,199,231,176,216,236,40,62,238,194,226,124,251,246,52,110,111,54,235,56,238,2,126,188,183,27,95,194,20,94,3,29,124,181,30,246,131,20,213,7,89,128,144,227,224,191,187,164,72,20,135,41,220,46,69,181,26,91,50,97,92,69,188,139,195,85,184,24,194,245,223,153,69,64,132,91,92,67,37,227,85,36,140,75,37,181,207,187,239,17,127,94,250,206,103,246,0,19,88,62,244,128,116,171,147,137,22,205,198,189,125,32,36,200,165,197,254,141,15,60,118,159,83,54,200,40,205,73,205,86,84,75,221,177,102,160,214,246,66,180,234,131,230,222,88,158,87,128,114,11,171,212,29,72,8,90,106,19,56,186,185,226,106,199,19,104,77,9,18,182,181,242,140,238,14,21,131,106,199,244,78,158,97,118,138,236,226,66,160,168,71,66,106,234,142,172,9,74,106,70,177,71,48,233,253,202,163,206,243,183,251,250,38,78,144,141,154,122,147,185,201,154,189,124,228,184,236,95,56,82,70,168,100,255,93,56,146,17,96,109,170,158,19,202,3,172,191,217,149,192,205,108,170,53,199,142,218,221,100,193,10,249,136,90,238,175,84,124,151,46,165,141,244,202,108,222,41,248,53,107,247,242,33,202,96,165,25,84,243,218,158,34,143,165,204,169,212,198,82,255,66,41,53,67,193,99,133,50,59,246,4,205,88,102,246,4,106,130,125,55,218,119,30,253,109,246,190,75,221,105,57,236,1,191,210,214,210,15,226,59,215,156,107,120,10,101,110,100,115,116,114,101,97,109,10,101,110,100,111,98,106,10,49,49,32,48,32,111,98,106,10,40,112,100,102,109,97,107,101,41,10,101,110,100,111,98,106,10,49,50,32,48,32,111,98,106,10,40,112,100,102,109,97,107,101,41,10,101,110,100,111,98,106,10,49,51,32,48,32,111,98,106,10,40,68,58,50,48,50,50,48,54,48,55,50,49,53,50,48,51,90,41,10,101,110,100,111,98,106,10,49,48,32,48,32,111,98,106,10,60,60,10,47,80,114,111,100,117,99,101,114,32,49,49,32,48,32,82,10,47,67,114,101,97,116,111,114,32,49,50,32,48,32,82,10,47,67,114,101,97,116,105,111,110,68,97,116,101,32,49,51,32,48,32,82,10,62,62,10,101,110,100,111,98,106,10,57,32,48,32,111,98,106,10,60,60,10,47,84,121,112,101,32,47,70,111,110,116,10,47,66,97,115,101,70,111,110,116,32,47,72,101,108,118,101,116,105,99,97,10,47,83,117,98,116,121,112,101,32,47,84,121,112,101,49,10,47,69,110,99,111,100,105,110,103,32,47,87,105,110,65,110,115,105,69,110,99,111,100,105,110,103,10,62,62,10,101,110,100,111,98,106,10,52,32,48,32,111,98,106,10,60,60,10,62,62,10,101,110,100,111,98,106,10,51,32,48,32,111,98,106,10,60,60,10,47,84,121,112,101,32,47,67,97,116,97,108,111,103,10,47,80,97,103,101,115,32,49,32,48,32,82,10,47,78,97,109,101,115,32,50,32,48,32,82,10,62,62,10,101,110,100,111,98,106,10,49,32,48,32,111,98,106,10,60,60,10,47,84,121,112,101,32,47,80,97,103,101,115,10,47,67,111,117,110,116,32,49,10,47,75,105,100,115,32,91,55,32,48,32,82,93,10,62,62,10,101,110,100,111,98,106,10,50,32,48,32,111,98,106,10,60,60,10,47,68,101,115,116,115,32,60,60,10,32,32,47,78,97,109,101,115,32,91,10,93,10,62,62,10,62,62,10,101,110,100,111,98,106,10,120,114,101,102,10,48,32,49,52,10,48,48,48,48,48,48,48,48,48,48,32,54,53,53,51,53,32,102,32,10,48,48,48,48,48,48,49,49,48,56,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,49,49,54,53,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,49,48,52,54,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,49,48,50,53,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,50,56,54,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,49,54,57,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,48,54,53,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,48,49,53,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,57,50,56,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,56,53,50,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,55,54,52,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,55,57,48,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,56,49,54,32,48,48,48,48,48,32,110,32,10,116,114,97,105,108,101,114,10,60,60,10,47,83,105,122,101,32,49,52,10,47,82,111,111,116,32,51,32,48,32,82,10,47,73,110,102,111,32,49,48,32,48,32,82,10,47,73,68,32,91,60,54,98,49,53,50,51,49,56,56,98,50,54,99,102,100,49,101,97,97,55,51,51,48,56,52,52,51,57,51,53,51,102,62,32,60,54,98,49,53,50,51,49,56,56,98,50,54,99,102,100,49,101,97,97,55,51,51,48,56,52,52,51,57,51,53,51,102,62,93,10,62,62,10,115,116,97,114,116,120,114,101,102,10,49,50,49,50,10,37,37,69,79,70,10]}
|
package/test3.pdf.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"type":"Buffer","data":[37,80,68,70,45,49,46,51,10,37,255,255,255,255,10,56,32,48,32,111,98,106,10,60,60,10,47,84,121,112,101,32,47,69,120,116,71,83,116,97,116,101,10,47,99,97,32,49,10,47,67,65,32,49,10,62,62,10,101,110,100,111,98,106,10,55,32,48,32,111,98,106,10,60,60,10,47,84,121,112,101,32,47,80,97,103,101,10,47,80,97,114,101,110,116,32,49,32,48,32,82,10,47,77,101,100,105,97,66,111,120,32,91,48,32,48,32,54,49,50,32,55,57,50,93,10,47,67,111,110,116,101,110,116,115,32,53,32,48,32,82,10,47,82,101,115,111,117,114,99,101,115,32,54,32,48,32,82,10,62,62,10,101,110,100,111,98,106,10,54,32,48,32,111,98,106,10,60,60,10,47,80,114,111,99,83,101,116,32,91,47,80,68,70,32,47,84,101,120,116,32,47,73,109,97,103,101,66,32,47,73,109,97,103,101,67,32,47,73,109,97,103,101,73,93,10,47,69,120,116,71,83,116,97,116,101,32,60,60,10,47,71,115,49,32,56,32,48,32,82,10,62,62,10,47,70,111,110,116,32,60,60,10,47,70,49,32,57,32,48,32,82,10,62,62,10,62,62,10,101,110,100,111,98,106,10,53,32,48,32,111,98,106,10,60,60,10,47,76,101,110,103,116,104,32,52,48,54,10,47,70,105,108,116,101,114,32,47,70,108,97,116,101,68,101,99,111,100,101,10,62,62,10,115,116,114,101,97,109,10,120,156,189,150,207,74,4,49,12,198,239,125,138,190,128,217,36,77,147,22,150,61,44,234,130,55,101,110,226,197,113,71,60,40,200,130,207,111,70,87,68,150,46,130,93,25,152,25,58,127,126,253,190,38,105,40,162,31,103,228,39,171,28,199,231,176,216,236,40,62,238,194,226,124,251,246,52,110,111,54,235,56,238,2,126,188,183,27,95,194,20,94,3,29,124,181,30,246,131,20,213,7,89,128,144,227,224,191,187,164,72,20,135,41,220,46,69,181,26,91,50,97,92,69,188,139,195,85,184,24,194,245,223,153,69,64,132,91,92,67,37,227,85,36,140,75,37,181,207,187,239,17,127,94,250,206,103,246,0,19,88,62,244,128,116,171,147,137,22,205,198,189,125,32,36,200,165,197,254,141,15,60,118,159,83,54,200,40,205,73,205,86,84,75,221,177,102,160,214,246,66,180,234,131,230,222,88,158,87,128,114,11,171,212,29,72,8,90,106,19,56,186,185,226,106,199,19,104,77,9,18,182,181,242,140,238,14,21,131,106,199,244,78,158,97,118,138,236,226,66,160,168,71,66,106,234,142,172,9,74,106,70,177,71,48,233,253,202,163,206,243,183,251,250,38,78,144,141,154,122,147,185,201,154,189,124,228,184,236,95,56,82,70,168,100,255,93,56,146,17,96,109,170,158,19,202,3,172,191,217,149,192,205,108,170,53,199,142,218,221,100,193,10,249,136,90,238,175,84,124,151,46,165,141,244,202,108,222,41,248,53,107,247,242,33,202,96,165,25,84,243,218,158,34,143,165,204,169,212,198,82,255,66,41,53,67,193,99,133,50,59,246,4,205,88,102,246,4,106,130,125,55,218,119,30,253,109,246,190,75,221,105,57,236,1,191,210,214,210,15,226,59,215,156,107,120,10,101,110,100,115,116,114,101,97,109,10,101,110,100,111,98,106,10,49,49,32,48,32,111,98,106,10,40,112,100,102,109,97,107,101,41,10,101,110,100,111,98,106,10,49,50,32,48,32,111,98,106,10,40,112,100,102,109,97,107,101,41,10,101,110,100,111,98,106,10,49,51,32,48,32,111,98,106,10,40,68,58,50,48,50,50,48,54,48,55,50,50,48,52,52,56,90,41,10,101,110,100,111,98,106,10,49,48,32,48,32,111,98,106,10,60,60,10,47,80,114,111,100,117,99,101,114,32,49,49,32,48,32,82,10,47,67,114,101,97,116,111,114,32,49,50,32,48,32,82,10,47,67,114,101,97,116,105,111,110,68,97,116,101,32,49,51,32,48,32,82,10,62,62,10,101,110,100,111,98,106,10,57,32,48,32,111,98,106,10,60,60,10,47,84,121,112,101,32,47,70,111,110,116,10,47,66,97,115,101,70,111,110,116,32,47,72,101,108,118,101,116,105,99,97,10,47,83,117,98,116,121,112,101,32,47,84,121,112,101,49,10,47,69,110,99,111,100,105,110,103,32,47,87,105,110,65,110,115,105,69,110,99,111,100,105,110,103,10,62,62,10,101,110,100,111,98,106,10,52,32,48,32,111,98,106,10,60,60,10,62,62,10,101,110,100,111,98,106,10,51,32,48,32,111,98,106,10,60,60,10,47,84,121,112,101,32,47,67,97,116,97,108,111,103,10,47,80,97,103,101,115,32,49,32,48,32,82,10,47,78,97,109,101,115,32,50,32,48,32,82,10,62,62,10,101,110,100,111,98,106,10,49,32,48,32,111,98,106,10,60,60,10,47,84,121,112,101,32,47,80,97,103,101,115,10,47,67,111,117,110,116,32,49,10,47,75,105,100,115,32,91,55,32,48,32,82,93,10,62,62,10,101,110,100,111,98,106,10,50,32,48,32,111,98,106,10,60,60,10,47,68,101,115,116,115,32,60,60,10,32,32,47,78,97,109,101,115,32,91,10,93,10,62,62,10,62,62,10,101,110,100,111,98,106,10,120,114,101,102,10,48,32,49,52,10,48,48,48,48,48,48,48,48,48,48,32,54,53,53,51,53,32,102,32,10,48,48,48,48,48,48,49,49,48,56,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,49,49,54,53,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,49,48,52,54,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,49,48,50,53,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,50,56,54,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,49,54,57,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,48,54,53,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,48,49,53,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,57,50,56,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,56,53,50,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,55,54,52,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,55,57,48,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,56,49,54,32,48,48,48,48,48,32,110,32,10,116,114,97,105,108,101,114,10,60,60,10,47,83,105,122,101,32,49,52,10,47,82,111,111,116,32,51,32,48,32,82,10,47,73,110,102,111,32,49,48,32,48,32,82,10,47,73,68,32,91,60,51,48,51,57,100,51,48,100,51,52,98,54,54,51,48,102,48,57,97,102,51,56,54,56,48,101,101,55,51,54,52,57,62,32,60,51,48,51,57,100,51,48,100,51,52,98,54,54,51,48,102,48,57,97,102,51,56,54,56,48,101,101,55,51,54,52,57,62,93,10,62,62,10,115,116,97,114,116,120,114,101,102,10,49,50,49,50,10,37,37,69,79,70,10]}
|
package/test4.pdf
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"type":"Buffer","data":[37,80,68,70,45,49,46,51,10,37,255,255,255,255,10,56,32,48,32,111,98,106,10,60,60,10,47,84,121,112,101,32,47,69,120,116,71,83,116,97,116,101,10,47,99,97,32,49,10,47,67,65,32,49,10,62,62,10,101,110,100,111,98,106,10,55,32,48,32,111,98,106,10,60,60,10,47,84,121,112,101,32,47,80,97,103,101,10,47,80,97,114,101,110,116,32,49,32,48,32,82,10,47,77,101,100,105,97,66,111,120,32,91,48,32,48,32,54,49,50,32,55,57,50,93,10,47,67,111,110,116,101,110,116,115,32,53,32,48,32,82,10,47,82,101,115,111,117,114,99,101,115,32,54,32,48,32,82,10,62,62,10,101,110,100,111,98,106,10,54,32,48,32,111,98,106,10,60,60,10,47,80,114,111,99,83,101,116,32,91,47,80,68,70,32,47,84,101,120,116,32,47,73,109,97,103,101,66,32,47,73,109,97,103,101,67,32,47,73,109,97,103,101,73,93,10,47,69,120,116,71,83,116,97,116,101,32,60,60,10,47,71,115,49,32,56,32,48,32,82,10,62,62,10,47,70,111,110,116,32,60,60,10,47,70,49,32,57,32,48,32,82,10,62,62,10,62,62,10,101,110,100,111,98,106,10,53,32,48,32,111,98,106,10,60,60,10,47,76,101,110,103,116,104,32,52,48,54,10,47,70,105,108,116,101,114,32,47,70,108,97,116,101,68,101,99,111,100,101,10,62,62,10,115,116,114,101,97,109,10,120,156,189,150,207,74,4,49,12,198,239,125,138,190,128,217,36,77,147,22,150,61,44,234,130,55,101,110,226,197,113,71,60,40,200,130,207,111,70,87,68,150,46,130,93,25,152,25,58,127,126,253,190,38,105,40,162,31,103,228,39,171,28,199,231,176,216,236,40,62,238,194,226,124,251,246,52,110,111,54,235,56,238,2,126,188,183,27,95,194,20,94,3,29,124,181,30,246,131,20,213,7,89,128,144,227,224,191,187,164,72,20,135,41,220,46,69,181,26,91,50,97,92,69,188,139,195,85,184,24,194,245,223,153,69,64,132,91,92,67,37,227,85,36,140,75,37,181,207,187,239,17,127,94,250,206,103,246,0,19,88,62,244,128,116,171,147,137,22,205,198,189,125,32,36,200,165,197,254,141,15,60,118,159,83,54,200,40,205,73,205,86,84,75,221,177,102,160,214,246,66,180,234,131,230,222,88,158,87,128,114,11,171,212,29,72,8,90,106,19,56,186,185,226,106,199,19,104,77,9,18,182,181,242,140,238,14,21,131,106,199,244,78,158,97,118,138,236,226,66,160,168,71,66,106,234,142,172,9,74,106,70,177,71,48,233,253,202,163,206,243,183,251,250,38,78,144,141,154,122,147,185,201,154,189,124,228,184,236,95,56,82,70,168,100,255,93,56,146,17,96,109,170,158,19,202,3,172,191,217,149,192,205,108,170,53,199,142,218,221,100,193,10,249,136,90,238,175,84,124,151,46,165,141,244,202,108,222,41,248,53,107,247,242,33,202,96,165,25,84,243,218,158,34,143,165,204,169,212,198,82,255,66,41,53,67,193,99,133,50,59,246,4,205,88,102,246,4,106,130,125,55,218,119,30,253,109,246,190,75,221,105,57,236,1,191,210,214,210,15,226,59,215,156,107,120,10,101,110,100,115,116,114,101,97,109,10,101,110,100,111,98,106,10,49,49,32,48,32,111,98,106,10,40,112,100,102,109,97,107,101,41,10,101,110,100,111,98,106,10,49,50,32,48,32,111,98,106,10,40,112,100,102,109,97,107,101,41,10,101,110,100,111,98,106,10,49,51,32,48,32,111,98,106,10,40,68,58,50,48,50,50,48,54,48,55,50,50,48,52,52,56,90,41,10,101,110,100,111,98,106,10,49,48,32,48,32,111,98,106,10,60,60,10,47,80,114,111,100,117,99,101,114,32,49,49,32,48,32,82,10,47,67,114,101,97,116,111,114,32,49,50,32,48,32,82,10,47,67,114,101,97,116,105,111,110,68,97,116,101,32,49,51,32,48,32,82,10,62,62,10,101,110,100,111,98,106,10,57,32,48,32,111,98,106,10,60,60,10,47,84,121,112,101,32,47,70,111,110,116,10,47,66,97,115,101,70,111,110,116,32,47,72,101,108,118,101,116,105,99,97,10,47,83,117,98,116,121,112,101,32,47,84,121,112,101,49,10,47,69,110,99,111,100,105,110,103,32,47,87,105,110,65,110,115,105,69,110,99,111,100,105,110,103,10,62,62,10,101,110,100,111,98,106,10,52,32,48,32,111,98,106,10,60,60,10,62,62,10,101,110,100,111,98,106,10,51,32,48,32,111,98,106,10,60,60,10,47,84,121,112,101,32,47,67,97,116,97,108,111,103,10,47,80,97,103,101,115,32,49,32,48,32,82,10,47,78,97,109,101,115,32,50,32,48,32,82,10,62,62,10,101,110,100,111,98,106,10,49,32,48,32,111,98,106,10,60,60,10,47,84,121,112,101,32,47,80,97,103,101,115,10,47,67,111,117,110,116,32,49,10,47,75,105,100,115,32,91,55,32,48,32,82,93,10,62,62,10,101,110,100,111,98,106,10,50,32,48,32,111,98,106,10,60,60,10,47,68,101,115,116,115,32,60,60,10,32,32,47,78,97,109,101,115,32,91,10,93,10,62,62,10,62,62,10,101,110,100,111,98,106,10,120,114,101,102,10,48,32,49,52,10,48,48,48,48,48,48,48,48,48,48,32,54,53,53,51,53,32,102,32,10,48,48,48,48,48,48,49,49,48,56,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,49,49,54,53,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,49,48,52,54,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,49,48,50,53,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,50,56,54,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,49,54,57,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,48,54,53,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,48,49,53,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,57,50,56,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,56,53,50,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,55,54,52,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,55,57,48,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,56,49,54,32,48,48,48,48,48,32,110,32,10,116,114,97,105,108,101,114,10,60,60,10,47,83,105,122,101,32,49,52,10,47,82,111,111,116,32,51,32,48,32,82,10,47,73,110,102,111,32,49,48,32,48,32,82,10,47,73,68,32,91,60,51,48,51,57,100,51,48,100,51,52,98,54,54,51,48,102,48,57,97,102,51,56,54,56,48,101,101,55,51,54,52,57,62,32,60,51,48,51,57,100,51,48,100,51,52,98,54,54,51,48,102,48,57,97,102,51,56,54,56,48,101,101,55,51,54,52,57,62,93,10,62,62,10,115,116,97,114,116,120,114,101,102,10,49,50,49,50,10,37,37,69,79,70,10]}
|
package/test5.pdf
DELETED
|
Binary file
|
package/test7-2.pdf
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{}
|
package/test7.pdf
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{}
|
package/test8-2.pdf
DELETED
|
Binary file
|
package/test8.pdf
DELETED
|
File without changes
|
package/test9-2.pdf
DELETED
|
File without changes
|
package/test9-3.pdf
DELETED
|
File without changes
|
package/test9-4.pdf
DELETED
|
Binary file
|
package/test9.pdf
DELETED
|
File without changes
|